Cookies on ons.gov.uk

Cookies are small files stored on your device when you visit a website. We use some essential cookies to make this website work.

We would like to set additional cookies to remember your settings and understand how you use the site. This helps us to improve our services.

You have accepted all additional cookies. You have rejected all additional cookies. You can change your cookie preferences at any time.

Skip to main content

Pages Guide

Overview

The guide is a collection of related pages with features that help the user understand and navigate a topic or subject.

Each of the related pages within a guide contain a table of contents that shows all pages in the guide.

There is an additional navigation component added to a guide. The pager is displayed at the bottom of each page allowing the user to move on to the next (or previous) page.

When to use this pattern

Use this pattern when you want to present a collection of related pages on a topic.

How to use this pattern

View the Nunjucks output below which shows the components required to create the guide pattern.

The first page of a guide serves as the "parent" to the other pages. In the table of contents it should be linked as "Overview". For accessibility the title h1 should contain an additional visually hidden span that provides the additional "Overview" text, for example:

<h1 class="ons-u-mb-l">
  <span class="ons-u-fs-xxl ons-u-db">About the census</span>
  <span class="ons-u-vh">: Overview</span>
</h1>

Guide overview

Example: Guide overview contents

Nunjucks
{% extends "layout/_template.njk" %}

{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}
{% from "components/list/_macro.njk" import onsList %}
{% from "components/related-content/_macro.njk" import onsRelatedContent %}
{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}

{% set pageConfig = {
    "header": {
        "mastheadLogoUrl": "#0",
        "title": "Guide example",
        "titleUrl": "#0",
        "language": {
            "languages": [
                {
                    "url": "#0",
                    "ISOCode": "en",
                    "text": "English",
                    "current": true
                },
                {
                    "url": "#0",
                    "ISOCode": "cy",
                    "text": "Cymraeg",
                    "current": false
                }
            ]
        }
    },
    "footer": {}
} %}
{% block preMain %}
    {{
        onsBreadcrumbs({
            "ariaLabel": 'Breadcrumbs',
            "itemsList": [
                {
                    "url": '/',
                    "text": 'Home'
                },
                {
                    "url": '/#',
                    "text": 'Guide example'
                }
            ]
        })
    }}
{% endblock %}

{% block main %}
    <h1 class="ons-u-mb-l">
        <span class="ons-u-fs-xxl ons-u-db">About the census</span>
        <span class="ons-u-vh">: Overview</span>
    </h1>
    {{-
        onsTableOfContents({
            "ariaLabel": "Pages in this guide",
            "title": "Contents",
            "skipLink": {
                "url": "#section-content",
                "text": "Skip to guide content"
            },
            "itemsList": [
                {
                    "url": '#',
                    "text": 'Overview',
                    "current": true
                },
                {
                    "url": '#',
                    "text": 'Who should take part and why'
                },
                {
                    "url": '#',
                    "text": 'How your information is used'
                },
                {
                    "url": '#',
                    "text": 'The 2019 Census Rehearsal'
                },
                {
                    "url": '#',
                    "text": 'Online census'
                }
            ]
        })
    }}
    <section id="section-content" class="ons-page__body">
        <h2>What the census is</h2>
        <p>The census is a survey that happens every 10 years and gives us a picture of all the people and households in England and Wales. The census is unique. There’s simply nothing else that gives so much detail about us and the society we live in.</p>
        <p>All kinds of organisations, from local authorities to charities, use the information to help provide the services we all need, including transport, education and healthcare. Without the census, it would be much more difficult to do this.</p>
        <p>By taking part, you’ll be helping make sure you and your community get the services needed now and in the future.</p>

        <h2>Past, present and future</h2>
        <p>The first census was in 1801 and the most recent in 2011. The Office for National Statistics (ONS) runs the census in England Wales and the next one will happen on Sunday 21 March 2021. To prepare for it, we held a census rehearsal in 2019 to check our processes, systems and services were running smoothly ahead of the real thing.</p>

        <h2>Between censuses</h2>
        <p>We also need your help between each census. At the ONS, we rely on ongoing surveys to provide detailed, up-to-date information about changes to society. To make sure that we represent everyone, we ask people to take part in these surveys. We carry out interviews in person, by phone or online.</p>
        <p>These surveys do not stop while the census takes place. To find out more about the types of surveys we run throughout the year, visit <a href="http://www.ons.gov.uk/surveys">the ONS website</a>.</p>

        <h2>The census in Scotland and Northern Ireland</h2>
        <p>At the ONS, we’re responsible for planning and running the census for England and Wales.</p>
        
        <p>Find out more about the censuses in Scotland and Northern Ireland from <a href="https://www.nrscotland.gov.uk/">National Records of Scotland</a> and <a href="https://www.nisra.gov.uk/">Northern Ireland Statistics and Research Agency</a>.</p>

        <div class="ons-u-mt-xl">
            {{-
                onsContentPagination({
                    "contentPaginationItems": [
                        {
                            "rel": 'next',
                            "text": 'Next',
                            "url": '#',
                            "label": 'Who should take part and why'
                        }
                    ]
                })
            }}
        </div>
    </section>

{% endblock %}

      {% block scripts %}
        {% from "components/embeddable/macro.njk" import embeddable %}
        {{ embeddable() }}

        <style>
          body {
            height: auto;
          }
        </style>

        <script src="{{ site.baseUrl }}js/main.js?t={{ cacheTime }}"></script>
      {% endblock %}
    
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Example: Guide overview</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/main.css">
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/print.css">
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="">
    <meta property="og:title" content="">
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/opengraph.png">
    <meta property="og:image:type" content="image/png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="630">
    <meta property="og:description" content="">
    <meta property="og:site_name" content="Guide example">
    <meta property="og:locale" content="en">
    <meta property="og:locale:alternate" content="cy">
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon.ico">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-32x32.png"
      sizes="32x32">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-16x16.png"
      sizes="16x16">
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/safari-pinned-tab.svg"
      color="#000000">
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/apple-touch-icon.png" sizes="180x180">
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/manifest.json">
  </head>

  <body>
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <div class="ons-page">
      <div class="ons-page__content">
        <a class="ons-skip-to-content" href="#main-content">Skip to main content</a>
        <header class="ons-header" role="banner">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content"><span class="ons-browser-banner__lead">This website no longer
                  supports your browser.</span><span class="ons-browser-banner__cta"> You can <a
                    class="ons-browser-banner__link" href="https://www.ons.gov.uk/help/browsers">upgrade your browser to
                    the latest version</a>.</span></p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto">
                  <a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt">Office for National Statistics homepage</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt">Office for National Statistics logo</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
                <div class="ons-header__links ons-grid__col ons-u-ml-auto">
                  <div class="ons-grid__col ons-col-auto">
                    <ul class="ons-language-links">
                      <li class="ons-language-links__item">
                        <a href="#0" lang="cy">Cymraeg</a>
                      </li>
                    </ul>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid--gutterless ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="/">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="/#">Guide example</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m ">
              <main id="main-content" class="ons-page__main ">
                <h1 class="ons-u-mb-l">
                  <span class="ons-u-fs-xxl ons-u-db">About the census</span>
                  <span class="ons-u-vh">: Overview</span>
                </h1>
                <aside class="ons-toc-container" role="complementary">
                  <a class="ons-skip-to-content" href="#section-content">Skip to guide content</a>
                  <nav class="ons-toc" aria-label="Pages in this guide">
                    <h2 class="ons-toc__title ons-u-fs-r--b ons-u-mb-s">Contents</h2>
                    <ol class="ons-list ons-u-mb-m ons-list--dashed">
                      <li class="ons-list__item" aria-current="true"> Overview </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Who should take part and why</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">How your information is used</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">The 2019 Census Rehearsal</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Online census</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <section id="section-content" class="ons-page__body">
                  <h2>What the census is</h2>
                  <p>The census is a survey that happens every 10 years and gives us a picture of all the people and
                    households in England and Wales. The census is unique. There’s simply nothing else that gives so
                    much detail about us and the society we live in.</p>
                  <p>All kinds of organisations, from local authorities to charities, use the information to help
                    provide the services we all need, including transport, education and healthcare. Without the census,
                    it would be much more difficult to do this.</p>
                  <p>By taking part, you’ll be helping make sure you and your community get the services needed now and
                    in the future.</p>
                  <h2>Past, present and future</h2>
                  <p>The first census was in 1801 and the most recent in 2011. The Office for National Statistics (ONS)
                    runs the census in England Wales and the next one will happen on Sunday 21 March 2021. To prepare
                    for it, we held a census rehearsal in 2019 to check our processes, systems and services were running
                    smoothly ahead of the real thing.</p>
                  <h2>Between censuses</h2>
                  <p>We also need your help between each census. At the ONS, we rely on ongoing surveys to provide
                    detailed, up-to-date information about changes to society. To make sure that we represent everyone,
                    we ask people to take part in these surveys. We carry out interviews in person, by phone or online.
                  </p>
                  <p>These surveys do not stop while the census takes place. To find out more about the types of surveys
                    we run throughout the year, visit <a href="http://www.ons.gov.uk/surveys">the ONS website</a>.</p>
                  <h2>The census in Scotland and Northern Ireland</h2>
                  <p>At the ONS, we’re responsible for planning and running the census for England and Wales.</p>
                  <p>Find out more about the censuses in Scotland and Northern Ireland from <a
                      href="https://www.nrscotland.gov.uk/">National Records of Scotland</a> and <a
                      href="https://www.nisra.gov.uk/">Northern Ireland Statistics and Research Agency</a>.</p>
                  <div class="ons-u-mt-xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" title="ons-icon-arrow-next">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">Next</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">Who should take part and why</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </section>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
            </div>
            <div class="ons-grid ons-grid--flex ons-grid--vertical-top ons-grid--between">
              <div class="ons-grid__col">
                <a class="ons-footer__poweredBy-link" href="https://www.ons.gov.uk/">
                  <div class="ons-footer__poweredby-logo ons-u-mb-m">
                    <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                      viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                      <title id="ons-logo-en-footer-alt">Office for National Statistics</title>
                      <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                        <path
                          d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                        <path
                          d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                        <path
                          d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                        <path
                          d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                        <path
                          d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                        <path
                          d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                        <path
                          d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                        <path
                          d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                        <path
                          d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                        <path
                          d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                        <path
                          d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <path
                          d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                        <path
                          d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                        <path
                          d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <polygon
                          points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                        <path
                          d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                        <path
                          d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                        <path
                          d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                        <path
                          d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        <path
                          d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                        <path
                          d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                        <path
                          d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                      </g>
                    </svg>
                  </div>
                </a>
              </div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/70.0.4/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1713369147306"></script>
  </body>

</html>

Guide page

Other pages in the guide (below the parent) should include the title of the parent page before the title of the current page, for example:

<h1 class="ons-u-mb-l">
  <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">About the census</span>
  <span class="ons-u-vh">:</span>
  <span class="ons-u-fs-xxl ons-u-db">Why you should take part in the census</span>
</h1>

Example: Guide page contents

Nunjucks
{% extends "layout/_template.njk" %}

{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}
{% from "components/list/_macro.njk" import onsList %}
{% from "components/related-content/_macro.njk" import onsRelatedContent %}
{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}

{% set pageConfig = {
    "header": {
        "mastheadLogoUrl": "#0",
        "title": "Guide example",
        "titleUrl": "#0",
        "language": {
            "languages": [
                {
                    "url": "#0",
                    "ISOCode": "en",
                    "text": "English",
                    "current": true
                },
                {
                    "url": "#0",
                    "ISOCode": "cy",
                    "text": "Cymraeg",
                    "current": false
                }
            ]
        }
    },
    "footer": {}
} %}
{% block preMain %}
    {{
        onsBreadcrumbs({
            "ariaLabel": 'Breadcrumbs',
            "itemsList": [
                {
                    "url": '/',
                    "text": 'Home'
                },
                {
                    "url": '/#',
                    "text": 'Guide example'
                }
            ]
        })
    }}
{% endblock %}

{% block main %}
    <h1 class="ons-u-mb-l">
        <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">About the census</span> 
        <span class="ons-u-vh">: </span>
        <span class="ons-u-fs-xxl ons-u-db">Why you should take part in the census</span>
    </h1>
    {{-
        onsTableOfContents({
            "ariaLabel": "Pages in this guide",
            "title": "Contents",
            "skipLink": {
                "url": "#section-content",
                "text": "Skip to guide content"
            },
            "itemsList": [
                {
                    "url": '#',
                    "text": 'Overview'
                },
                {
                    "url": '#',
                    "text": 'Who should take part and why',
                    "current": true
                },
                {
                    "url": '#',
                    "text": 'How your information is used'
                },
                {
                    "url": '#',
                    "text": 'The 2019 Census Rehearsal'
                },
                {
                    "url": '#',
                    "text": 'Online census'
                }
            ]
        })
    }}
    <section id="section-content" class="ons-page__body">
        <p>It’s important you take part in the census. The information it gives has the power to make a real impact on our everyday lives.</p>

        <h2>The census is vital to all of us</h2>
        <p>The census helps us understand what our society needs now and what it’s likely to need in the future. The information it collects helps plan and fund services in your area. This could include transport, education and healthcare.</p>
        <p>Charities also use census information to help get the funding they need. Businesses use it to decide where to set up, which creates job opportunities.</p>

        <h2>Its success could help you</h2>
        <p>Census 2021 will help give the best picture of the needs of everyone living in England and Wales.</p>
        <p>A total of 94% of people took part in the last census, helping each area receive its share of public funding. Without the census, it would be much more difficult to provide the services you and your community need.</p>

        <h2>You must complete the census by law</h2>
        <p>You must complete the census by law. If you do not, or if you supply false information, you could be fined up to £1,000. Some questions are clearly labelled as voluntary. It is not an offence if you do not answer these.</p>

        <div class="ons-u-mt-xl">
            {{-
                onsContentPagination({
                    "contentPaginationItems": [
                        {
                            "rel": 'prev',
                            "text": 'Previous',
                            "url": '#',
                            "label": 'About the census'
                        },
                        {
                            "rel": 'next',
                            "text": 'Next',
                            "url": '#',
                            "label": 'How your information is used'
                        }
                    ]
                })
            }}
        </div>
    </section>

{% endblock %}

      {% block scripts %}
        {% from "components/embeddable/macro.njk" import embeddable %}
        {{ embeddable() }}

        <style>
          body {
            height: auto;
          }
        </style>

        <script src="{{ site.baseUrl }}js/main.js?t={{ cacheTime }}"></script>
      {% endblock %}
    
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Example: Guide page</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/main.css">
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/print.css">
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="">
    <meta property="og:title" content="">
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/opengraph.png">
    <meta property="og:image:type" content="image/png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="630">
    <meta property="og:description" content="">
    <meta property="og:site_name" content="Guide example">
    <meta property="og:locale" content="en">
    <meta property="og:locale:alternate" content="cy">
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon.ico">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-32x32.png"
      sizes="32x32">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-16x16.png"
      sizes="16x16">
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/safari-pinned-tab.svg"
      color="#000000">
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/apple-touch-icon.png" sizes="180x180">
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/manifest.json">
  </head>

  <body>
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <div class="ons-page">
      <div class="ons-page__content">
        <a class="ons-skip-to-content" href="#main-content">Skip to main content</a>
        <header class="ons-header" role="banner">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content"><span class="ons-browser-banner__lead">This website no longer
                  supports your browser.</span><span class="ons-browser-banner__cta"> You can <a
                    class="ons-browser-banner__link" href="https://www.ons.gov.uk/help/browsers">upgrade your browser to
                    the latest version</a>.</span></p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto">
                  <a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt">Office for National Statistics homepage</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt">Office for National Statistics logo</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
                <div class="ons-header__links ons-grid__col ons-u-ml-auto">
                  <div class="ons-grid__col ons-col-auto">
                    <ul class="ons-language-links">
                      <li class="ons-language-links__item">
                        <a href="#0" lang="cy">Cymraeg</a>
                      </li>
                    </ul>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid--gutterless ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="/">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="/#">Guide example</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m ">
              <main id="main-content" class="ons-page__main ">
                <h1 class="ons-u-mb-l">
                  <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">About the census</span>
                  <span class="ons-u-vh">: </span>
                  <span class="ons-u-fs-xxl ons-u-db">Why you should take part in the census</span>
                </h1>
                <aside class="ons-toc-container" role="complementary">
                  <a class="ons-skip-to-content" href="#section-content">Skip to guide content</a>
                  <nav class="ons-toc" aria-label="Pages in this guide">
                    <h2 class="ons-toc__title ons-u-fs-r--b ons-u-mb-s">Contents</h2>
                    <ol class="ons-list ons-u-mb-m ons-list--dashed">
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Overview</a>
                      </li>
                      <li class="ons-list__item" aria-current="true"> Who should take part and why </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">How your information is used</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">The 2019 Census Rehearsal</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Online census</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <section id="section-content" class="ons-page__body">
                  <p>It’s important you take part in the census. The information it gives has the power to make a real
                    impact on our everyday lives.</p>
                  <h2>The census is vital to all of us</h2>
                  <p>The census helps us understand what our society needs now and what it’s likely to need in the
                    future. The information it collects helps plan and fund services in your area. This could include
                    transport, education and healthcare.</p>
                  <p>Charities also use census information to help get the funding they need. Businesses use it to
                    decide where to set up, which creates job opportunities.</p>
                  <h2>Its success could help you</h2>
                  <p>Census 2021 will help give the best picture of the needs of everyone living in England and Wales.
                  </p>
                  <p>A total of 94% of people took part in the last census, helping each area receive its share of
                    public funding. Without the census, it would be much more difficult to provide the services you and
                    your community need.</p>
                  <h2>You must complete the census by law</h2>
                  <p>You must complete the census by law. If you do not, or if you supply false information, you could
                    be fined up to £1,000. Some questions are clearly labelled as voluntary. It is not an offence if you
                    do not answer these.</p>
                  <div class="ons-u-mt-xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="prev">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" title="ons-icon-arrow-previous">
                                <path
                                  d="M6.4.2.3 6.4c-.2.2-.2.4 0 .6l6.2 5.8c.2.2.4.1.6 0l.8-.9c.2-.2.1-.4 0-.6l-4-3.7h12.5c.2 0 .4-.2.4-.4V6c0-.2-.2-.4-.4-.4H3.8l4-4c.2-.1.2-.4.1-.5L7 .2c-.1-.1-.4-.1-.6 0z" />
                              </svg><span class="ons-content-pagination__link-text">Previous</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">About the census</span>
                          </a>
                        </li>
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" title="ons-icon-arrow-next">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">Next</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">How your information is used</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </section>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
            </div>
            <div class="ons-grid ons-grid--flex ons-grid--vertical-top ons-grid--between">
              <div class="ons-grid__col">
                <a class="ons-footer__poweredBy-link" href="https://www.ons.gov.uk/">
                  <div class="ons-footer__poweredby-logo ons-u-mb-m">
                    <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                      viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                      <title id="ons-logo-en-footer-alt">Office for National Statistics</title>
                      <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                        <path
                          d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                        <path
                          d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                        <path
                          d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                        <path
                          d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                        <path
                          d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                        <path
                          d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                        <path
                          d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                        <path
                          d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                        <path
                          d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                        <path
                          d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                        <path
                          d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <path
                          d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                        <path
                          d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                        <path
                          d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <polygon
                          points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                        <path
                          d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                        <path
                          d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                        <path
                          d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                        <path
                          d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        <path
                          d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                        <path
                          d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                        <path
                          d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                      </g>
                    </svg>
                  </div>
                </a>
              </div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/70.0.4/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1713369147306"></script>
  </body>

</html>

Right-to-left languages

To display a guide page for a right-to-left language (for example, Arabic) you can set "bodyClasses": 'ons-rtl' in the base page template.

Example: Guide for right-to-left languages contents

Nunjucks
{% extends "layout/_template.njk" %}

{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}
{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/list/_macro.njk" import onsList %}

{% set pageConfig = {
    "bodyClasses": "ons-rtl",
    "header": {
        "mastheadLogoUrl": "#0",
        "title": "Guide example",
        "titleUrl": "#0"
    },
    "language": {
        "languages": [
            {
                "url": '#0',
                "ISOCode": 'en',
                "text": 'English',
                "current": true
            },
            {
                "url": '#0',
                "ISOCode": 'cy',
                "text": 'Cymraeg',
                "current": false
            }
        ]
    },
    "footer": {
        "crest": true,
        "cols": [
            {
                "title": 'Get in touch',
                "itemsList": [
                    {
                        "text": 'Contact us',
                        "url": '#0'
                    },
                    {
                        "text": 'Media enquiries',
                        "url": '#0'
                    }
                ]
            },
            {
                "title": 'Get involved',
                "itemsList": [
                    {
                        "text": 'Local authorities',
                        "url": '#0'
                    },
                    {
                        "text": 'Community groups',
                        "url": '#0'
                    },
                    {
                        "text": 'School campaigns',
                        "url": '#0'
                    },
                    {
                        "text": 'Jobs',
                        "url": '#0'
                    }
                ]
            },
            {
                "title": 'About the census',
                "itemsList": [
                    {
                        "text": 'What is the census',
                        "url": '#0'
                    },
                    {
                        "text": 'Why you should take part',
                        "url": '#0'
                    },
                    {
                        "text": 'Census stories',
                        "url": '#0'
                    }
                ]
            }
        ],
        "legal": [
            {
                "itemsList": [
                    {
                        "text": 'Cookies',
                        "url": '#0'
                    },
                    {
                        "text": 'Accessibility statement',
                        "url": '#0'
                    },
                    {
                        "text": 'Privacy and data protection',
                        "url": '#0'
                    }
                ]
            }
        ]
    }
} %}
{% block preMain %}
    {% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}

{{
    onsBreadcrumbs({
        "ariaLabel": 'Breadcrumbs',
        "itemsList": [
            {
                "url": '#0',
                "text": 'Home'
            },
            {
                "url": '#0',
                "text": 'Help with the census'
            },
            {
                "url": '#0',
                "text": 'Languages'
            }
        ]
    })
}}
{% endblock %}
{% block main %}

    <h1 class="ons-u-mb-l">
        <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">اللغة العربية (Arabic)</span>
        <span class="ons-u-vh">: </span>
        <span class="ons-u-fs-xxl ons-u-db">نظرة عامة</span>
    </h1>

    {{ onsTableOfContents({
        "title": 'محتويات',
        "ariaLabel": 'Pages in this guide',
        "skipLink": {
            "url": "#section-content",
            "text": "Skip to guide content"
        },
        "itemsList": [
            {
                "url": '#0',
                "text": 'نظرة عامة',
                "current": true
            },
            {
                "url": '#0',
                "text": 'استكمال التعداد الخاص بك عبر الإنترنت'
            },
            {
                "url": '#0',
                "text": 'استكمال التعداد الخاص بك عبر النسخة الورقية'
            }
        ]
    }) }}

    <div id="section-content" class="ons-page__body">

        <h2>ما هو التعداد السكاني؟</h2>

        <p>التعداد السكاني هو مسح يتم كل 10 سنوات ويعطينا صورة عن جميع الأشخاص والأُسر في أيرلندا الشمالية</p>
        <p>يطرح التعداد نفس الأسئلة على الجميع في نفس اليوم - <strong>يوم التعداد: الأحد 21 مارس 2021</strong></p>

        <h2>لماذا يجب المشاركة</h2>
        <p>تُستخدم المعلومات التي تم جمعها في التعداد للمساعدة في اتخاذ قرارات حول كيفية تخطيط وتمويل الخدمات الحيوية مثل التعليم والنقل والصحة</p>
        <p>يجب إكمال التعداد بموجب القانون. إذا لم تقم بذلك ، أو قدمت معلومات خاطئة ، فقد يتم مقاضاتك وتغريمك ما يصل إلى 1000 جنيه إسترليني</p>

        <h2>متى يجب أن تكمل التعداد الخاص بك </h2>
        <p>يجب الانتهاء من ملء الاستبيان الخاص بك بحلول <strong>يوم ا</strong><strong>لأحد 21 مارس</strong><strong> 2021</strong>، أو في أقرب فرصة بعد ذلك<strong>.</strong> يجب أن تكون إجاباتك حول أسرتك في هذا التاريخ</p>
        <p>إذا لم تكمل التعداد الخاص بك ، فقد يقوم أحد موظفي التعداد الميدانيين بزيارتك بعد يوم التعداد بفترة وجيزة</p>

        <h2>من الذين يتعين عليهم الإجابة على أسئلة التعداد</h2>
        <p>يجب على رب الأسرة ملء استبيان التعداد للأسرة.</p>
        <p>رب الأسرة هو الشخص الذي يمتلك أو يستأجر العقار ، إما كليًا أو مشتركًا ، أو هو شخص مسؤول كليًا أو مشتركًا عن دفع فواتير ونفقات الأسرة</p>
        
        <h2>كيف يجب أن تكمل التعداد الخاص بك</h2>
        <p>يمكنك اختيار إما</p>

        {{ onsList({
            "itemsList": [
                {
                    "text": 'استكمال التعداد الخاص بك عبر الإنترنت',
                    "url": '#0'
                },
                {
                    "text": 'ستكمال التعداد الخاص بك عبر النسخة الورقية',
                    "url": '#0'
                }
            ]
        }) }}

        <div class="ons-u-mt-xl">
            {{ onsContentPagination({
                "contentPaginationItems": [
                    {
                        "rel": 'prev',
                        "text": 'السابق',
                        "url": '#0',
                        "label": 'استكمال التعداد الخاص بك عبر الإنترنت'
                    },
                    {
                        "rel": 'next',
                        "text": 'التالى',
                        "url": '#0',
                        "label": 'ستكمال التعداد الخاص بك عبر النسخة الورقية'
                    }
                ]
            }) }}
        </div>

    </div>

{% endblock %}

      {% block scripts %}
        {% from "components/embeddable/macro.njk" import embeddable %}
        {{ embeddable() }}

        <style>
          body {
            height: auto;
          }
        </style>

        <script src="{{ site.baseUrl }}js/main.js?t={{ cacheTime }}"></script>
      {% endblock %}
    
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Example: Guide for right-to-left languages</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/main.css">
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/css/print.css">
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="">
    <meta property="og:title" content="">
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/opengraph.png">
    <meta property="og:image:type" content="image/png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="630">
    <meta property="og:description" content="">
    <meta property="og:site_name" content="Guide example">
    <meta property="og:locale" content="en">
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon.ico">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-32x32.png"
      sizes="32x32">
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/favicon-16x16.png"
      sizes="16x16">
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/safari-pinned-tab.svg"
      color="#000000">
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/apple-touch-icon.png" sizes="180x180">
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/70.0.4/favicons/manifest.json">
  </head>

  <body class="ons-rtl">
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <div class="ons-page">
      <div class="ons-page__content">
        <a class="ons-skip-to-content" href="#main-content">Skip to main content</a>
        <header class="ons-header" role="banner">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content"><span class="ons-browser-banner__lead">This website no longer
                  supports your browser.</span><span class="ons-browser-banner__cta"> You can <a
                    class="ons-browser-banner__link" href="https://www.ons.gov.uk/help/browsers">upgrade your browser to
                    the latest version</a>.</span></p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto">
                  <a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt">Office for National Statistics homepage</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt">Office for National Statistics logo</title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid--gutterless ons-grid--flex ons-grid--between ons-grid--vertical-center ons-grid--no-wrap">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="#0">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="#0">Help with the census</a><svg class="ons-icon"
                  viewBox="0 0 8 13" xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-3">
                <a class="ons-breadcrumbs__link" href="#0">Languages</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  title="ons-icon-chevron">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m ">
              <main id="main-content" class="ons-page__main ">
                <h1 class="ons-u-mb-l">
                  <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">اللغة العربية (Arabic)</span>
                  <span class="ons-u-vh">: </span>
                  <span class="ons-u-fs-xxl ons-u-db">نظرة عامة</span>
                </h1>
                <aside class="ons-toc-container" role="complementary">
                  <a class="ons-skip-to-content" href="#section-content">Skip to guide content</a>
                  <nav class="ons-toc" aria-label="Pages in this guide">
                    <h2 class="ons-toc__title ons-u-fs-r--b ons-u-mb-s">محتويات</h2>
                    <ol class="ons-list ons-u-mb-m ons-list--dashed">
                      <li class="ons-list__item" aria-current="true"> نظرة عامة </li>
                      <li class="ons-list__item">
                        <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر الإنترنت</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر النسخة الورقية</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <div id="section-content" class="ons-page__body">
                  <h2>ما هو التعداد السكاني؟</h2>
                  <p>التعداد السكاني هو مسح يتم كل 10 سنوات ويعطينا صورة عن جميع الأشخاص والأُسر في أيرلندا الشمالية</p>
                  <p>يطرح التعداد نفس الأسئلة على الجميع في نفس اليوم - <strong>يوم التعداد: الأحد 21 مارس 2021</strong>
                  </p>
                  <h2>لماذا يجب المشاركة</h2>
                  <p>تُستخدم المعلومات التي تم جمعها في التعداد للمساعدة في اتخاذ قرارات حول كيفية تخطيط وتمويل الخدمات
                    الحيوية مثل التعليم والنقل والصحة</p>
                  <p>يجب إكمال التعداد بموجب القانون. إذا لم تقم بذلك ، أو قدمت معلومات خاطئة ، فقد يتم مقاضاتك وتغريمك
                    ما يصل إلى 1000 جنيه إسترليني</p>
                  <h2>متى يجب أن تكمل التعداد الخاص بك </h2>
                  <p>يجب الانتهاء من ملء الاستبيان الخاص بك بحلول
                    <strong>يوم ا</strong><strong>لأحد 21 مارس</strong><strong> 2021</strong>، أو في أقرب فرصة بعد
                    ذلك<strong>.</strong> يجب أن تكون إجاباتك حول أسرتك في هذا التاريخ</p>
                  <p>إذا لم تكمل التعداد الخاص بك ، فقد يقوم أحد موظفي التعداد الميدانيين بزيارتك بعد يوم التعداد بفترة
                    وجيزة</p>
                  <h2>من الذين يتعين عليهم الإجابة على أسئلة التعداد</h2>
                  <p>يجب على رب الأسرة ملء استبيان التعداد للأسرة.</p>
                  <p>رب الأسرة هو الشخص الذي يمتلك أو يستأجر العقار ، إما كليًا أو مشتركًا ، أو هو شخص مسؤول كليًا أو
                    مشتركًا عن دفع فواتير ونفقات الأسرة</p>
                  <h2>كيف يجب أن تكمل التعداد الخاص بك</h2>
                  <p>يمكنك اختيار إما</p>
                  <ul class="ons-list">
                    <li class="ons-list__item">
                      <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر الإنترنت</a>
                    </li>
                    <li class="ons-list__item">
                      <a href="#0" class="ons-list__link">ستكمال التعداد الخاص بك عبر النسخة الورقية</a>
                    </li>
                  </ul>
                  <div class="ons-u-mt-xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#0" class="ons-content-pagination__link" rel="prev">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" title="ons-icon-arrow-previous">
                                <path
                                  d="M6.4.2.3 6.4c-.2.2-.2.4 0 .6l6.2 5.8c.2.2.4.1.6 0l.8-.9c.2-.2.1-.4 0-.6l-4-3.7h12.5c.2 0 .4-.2.4-.4V6c0-.2-.2-.4-.4-.4H3.8l4-4c.2-.1.2-.4.1-.5L7 .2c-.1-.1-.4-.1-.6 0z" />
                              </svg><span class="ons-content-pagination__link-text">السابق</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">استكمال التعداد الخاص بك عبر
                              الإنترنت</span>
                          </a>
                        </li>
                        <li class="ons-content-pagination__item">
                          <a href="#0" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" title="ons-icon-arrow-next">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">التالى</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">ستكمال التعداد الخاص بك عبر النسخة
                              الورقية</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </div>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">Get in touch</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Contact us</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Media enquiries</a>
                  </li>
                </ul>
              </div>
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m ons-u-mt-m@xxs@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">Get involved</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Local authorities</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Community groups</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">School campaigns</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Jobs</a>
                  </li>
                </ul>
              </div>
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m ons-u-mt-m@xxs@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">About the census</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">What is the census</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Why you should take part</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Census stories</a>
                  </li>
                </ul>
              </div>
              <div class="ons-grid__col ons-u-mb-m">
                <hr class="ons-footer__hr">
              </div>
            </div>
            <div class="ons-grid ons-grid--flex ons-grid--vertical-top ons-grid--between">
              <div class="ons-grid__col">
                <!-- Legal -->
                <ul class="ons-list ons-u-mb-s ons-footer--rows ons-list--bare ons-list--inline">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Cookies</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Accessibility statement</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Privacy and data protection</a>
                  </li>
                </ul>
                <a class="ons-footer__poweredBy-link" href="https://www.ons.gov.uk/">
                  <div class="ons-footer__poweredby-logo ons-u-mb-m">
                    <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="197" height="19"
                      viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                      <title id="ons-logo-en-footer-alt">Office for National Statistics</title>
                      <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                        <path
                          d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                        <path
                          d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                      </g>
                      <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                        <path
                          d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                        <path
                          d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                        <path
                          d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                        <path
                          d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                        <path
                          d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                        <path
                          d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                        <path
                          d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                        <path
                          d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                        <path
                          d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                        <path
                          d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <path
                          d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                        <path
                          d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                        <path
                          d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                        <polygon
                          points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                        <path
                          d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                        <path
                          d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                        <path
                          d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                        <path
                          d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                        <path
                          d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        <path
                          d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                        <path
                          d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                        <path
                          d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                        <path
                          d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                      </g>
                    </svg>
                  </div>
                </a>
              </div>
              <!-- Crest -->
              <div class="ons-grid__col ons-footer__crest ons-u-mb-m@xxs@l"><svg class="ons-icon--logo"
                  xmlns="http://www.w3.org/2000/svg" width="115px" height="96px" viewBox="0 0 115 96" focusable="false"
                  role="img" title="ons-icon-crest">
                  <title id="crest-alt">Royal coat of arms of the United Kingdom</title>
                  <path fill="#222222"
                    d="M57.6,1c-0.7,0.8-1.1,1.5-1.2,2.3C57.1,3.2,58,2.6,58.5,2v3.2C58,4.5,57.1,4,56.4,3.8c0.1,0.8,0.6,1.6,1.3,2.1 h-3.2c0.7-0.5,1.2-1.3,1.3-2.1c-0.8,0.1-1.6,0.7-2.1,1.4V2c0.5,0.7,1.4,1.2,2.1,1.4c-0.1-0.8-0.6-1.5-1.2-2.3H57.6z M23.9,5.9 c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-1,0C23.6,6.6,23.6,6.1,23.9,5.9z M25.7,6.2c0.3-0.3,0.7-0.3,0.9,0 c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-0.9,0C25.4,6.8,25.4,6.4,25.7,6.2z M22.4,7c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,0.9 c-0.3,0.3-0.7,0.3-1,0C22.1,7.7,22.1,7.3,22.4,7z M56.7,6.3c1.2,0.3,2.1,1.2,2.3,2.4h-2.3V6.3z M55.4,6.3v2.4h-2.3 C53.3,7.5,54.3,6.5,55.4,6.3z M26.8,7.6c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-1,0C26.5,8.3,26.5,7.9,26.8,7.6z M20.5,5.5l0.1,1.3c0,0,0,0,0,0L21.5,6l0.5,1.2l-1.1-0.1c0,0,0,0.1,0,0.1c0.2,0.3,0.6,0.6,0.9,0.9c0.3,0.1,0.5,0.4,0.5,0.8 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9c0-0.4,0-1.1-0.1-1.5c0,0-0.1,0-0.1,0l-0.7,0.8L19,7l1-0.1c0,0,0-0.1,0-0.1l-0.8-0.9 L20.5,5.5z M19.1,8.4c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C18.5,8.7,18.8,8.4,19.1,8.4z M17.3,8.6 c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C16.7,8.9,17,8.6,17.3,8.6z M16.3,10c0.4,0,0.7,0.3,0.7,0.7 c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C15.6,10.3,15.9,10,16.3,10z M65.7,9.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C64.8,9.9,65.2,9.5,65.7,9.5z M46.3,9.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C45.4,9.9,45.8,9.5,46.3,9.5z M63.3,9.7c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C62.4,10.2,62.8,9.7,63.3,9.7z M48.8,9.7c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C47.8,10.2,48.3,9.7,48.8,9.7z M44,10.2c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 S43.5,10.2,44,10.2z M68.1,10.2c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9S67.6,10.2,68.1,10.2z M58.9,9.8 c-0.3,1.3-1.5,2.3-2.9,2.3c-1.4,0-2.6-1-2.9-2.3H58.9z M51.1,10.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C50.2,10.8,50.6,10.4,51.1,10.4z M61,10.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C60,10.8,60.5,10.4,61,10.4z M16.5,11.8c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7 c-0.4,0-0.7-0.3-0.7-0.7C15.8,12.1,16.1,11.8,16.5,11.8z M58.8,11.4c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 S58.3,11.4,58.8,11.4z M53.3,11.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C52.4,11.9,52.8,11.4,53.3,11.4z M69.9,11.8c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C69,12.3,69.4,11.8,69.9,11.8z M42.2,11.8c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C41.2,12.3,41.7,11.8,42.2,11.8z M70.9,14c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C70,14.4,70.4,14,70.9,14z M41.2,14c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C40.2,14.4,40.6,14,41.2,14 z M24.7,8.5c0.8,0.5,1,1.1,0.6,2c0.3-0.4,1.1-0.4,1,0.5c-0.4-0.4-0.8-0.1-0.7,0.3c0.1,0.3,0.4,0.6,0.8,0.5c0.3-0.1,0.8-0.5,0.8-1.5 c-0.2,0.1-0.4,0.3-0.6,0.6l-0.1-1.6c0.3,0.4,0.5,0.6,0.7,0.6c0-0.3-0.1-0.5-0.4-0.9l1,0c-0.2,0.8-0.3,1.9-0.1,3.6 c-1.2,0.3-3.2,0.9-4.4,1.4c-1.2,0.5-3.1,1.4-4.1,2.1c-1-1.4-1.8-2.1-2.5-2.5l0.8-0.7c0.1,0.5,0.2,0.7,0.4,0.9 c0.1-0.2,0.1-0.5,0.1-0.9l1,1.2c-0.3-0.1-0.6-0.1-0.8,0c0.8,0.7,1.3,0.7,1.6,0.5c0.4-0.2,0.4-0.7,0.2-0.9c-0.3-0.4-0.7-0.3-0.7,0.3 c-0.7-0.6-0.2-1.1,0.4-1.1c-0.9-0.4-1.2-0.9-1-1.8c1,0.3,1.2,0.8,1.2,1.7c0.2-0.7,1-0.7,1.1,0.2c-0.5-0.4-0.8,0.1-0.5,0.5 c0.2,0.4,0.9,0.5,1.5,0.2c0.9-0.5,0.7-1.1,0.5-1.7c-0.2,0.1-0.6,0.4-0.7,1.1l-0.7-1.4c0.5,0.2,0.9,0.2,1.3,0 c-0.3-0.3-1.1-0.8-1.1-0.8l1.9-0.8c0,0-0.3,0.9-0.3,1.4c0.4-0.2,0.7-0.4,0.9-0.9l0.5,1.5c-0.6-0.4-1.1-0.4-1.3-0.3 c0.2,0.5,0.5,1.1,1.5,0.8c0.7-0.2,1.1-0.7,1-1.2c-0.1-0.5-0.6-0.6-0.8,0c-0.6-0.7,0-1.2,0.6-0.9C24.4,10,24.2,9.4,24.7,8.5z M57.6,13.1v4.3h-1v-4C57,13.4,57.3,13.3,57.6,13.1z M54.4,13.1c0.3,0.2,0.7,0.3,1,0.3v4h-1V13.1z M71.2,16.3c0.5,0,0.9,0.4,0.9,0.9 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C70.3,16.7,70.7,16.3,71.2,16.3z M40.8,16.3c0.5,0,0.9,0.4,0.9,0.9 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C39.9,16.7,40.3,16.3,40.8,16.3z M30,15.4c-1,0.6-2.5,1.2-3.8,1.8 c0.6,1,1.8,1.6,2.8,0.9C29.7,17.5,29.1,16.8,30,15.4z M88.3,18.1c-0.9,0-1.1,0.5-1.2,1l0,0.2c0,0.2-0.1,0.5-0.2,0.7 c1-0.6,2.2-0.9,3.6-1C89.6,18.8,89,18.1,88.3,18.1z M41.3,18.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C40.4,19,40.8,18.5,41.3,18.5z M70.8,18.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C69.8,19,70.3,18.5,70.8,18.5z M23.5,18.2c-1.3,0.5-2.8,1.1-4,1.3c1.7,0.4,1.6,1.3,2.6,1.2C23.3,20.7,23.7,19.3,23.5,18.2z M63,16.5 c0.5,1,1,1.6,0.9,2.4c-0.1,0.8-0.9,1.4-1.3,2.2c-0.4-0.9-1-1.6-0.9-2.4C61.8,18,62.8,17,63,16.5z M49.1,16.5 c0.2,0.5,1.2,1.5,1.3,2.2c0.1,0.7-0.5,1.4-0.9,2.4c-0.4-0.8-1.2-1.4-1.3-2.2C48.1,18.1,48.6,17.5,49.1,16.5z M28.6,20 c-0.3-0.3-0.6-0.2-1.1-0.1L24,21.2c-0.4,0.2-0.7,0.4-0.7,0.8c0,0.1,0,0.2,0,0.3l0,0.2c0,0.3,0,0.5,0.2,0.6c0.4,0.1,0.4-0.9,1-1 c0.5-0.1,0.5,0.4,0.1,1.2c0.8-0.2,1.6-0.6,2,0.2c0.3,0.6,0.2,1-0.4,1.6c-0.3,0.3-0.1,0.9,0.1,1.6c0.2,0.7,1.2,1.8,2.4,1.3 c1.3-0.6,1.2-1.8,0.8-2.5c-0.3-0.7-0.6-1.3-1-1.3c-0.7,0-1.1-0.2-1.4-0.9c-0.3-0.8,0.6-1.1,1.3-1.5c-0.8-0.2-1.2-0.6-0.7-0.9 c0.5-0.4,1.2,0.3,1.4,0C29.4,20.5,28.8,20.2,28.6,20z M56.3,27.1h-0.4c-3.6,0-10.4,0.3-10.4,2.7c0,0.7,0.4,1.3,1.5,1.9 c1.8-1.2,4.8-2.5,9.2-2.5c4.4,0,7.4,1.3,9.2,2.5c1-0.6,1.5-1.2,1.5-1.9c0-2.5-7.1-2.7-10.6-2.7L56.3,27.1z M81.9,30.6 c-0.4,0-0.8,0.1-1.1,0.3c-0.4,0.3-0.6,0.7-0.6,1.1c0,0.2,0,0.3,0.2,0.5c0.3,0.4,1.1,0.4,1.6,0c0.3-0.3,0.6-0.6,0.6-1 c0-0.2,0-0.4-0.1-0.6C82.3,30.7,82,30.6,81.9,30.6z M81.8,29.8l0.2,0c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.3,0.7,0.3,1.2 c-0.1,0.6-0.4,1.1-0.9,1.5c-0.9,0.7-2.1,0.7-2.7-0.1c-0.6-0.7-0.3-1.9,0.6-2.6c0.5-0.4,1.1-0.6,1.7-0.5L81.8,29.8z M51,32.1 c0.3-0.1,0.5-0.1,0.8,0c0.2,0.1,0.4,0.3,0.5,0.6c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.3-0.1,0.4c-0.1,0.2-0.3,0.4-0.6,0.5 c-0.9,0.3-1.2-0.3-1.3-0.6c-0.1-0.2-0.1-0.5,0-0.8C50.5,32.3,50.7,32.2,51,32.1z M56.7,30.4l0,2.4c0,0.4,0,0.5-0.1,0.5 c-0.1,0.1-0.3,0.2-0.6,0.2c-0.2,0-0.4,0-0.5-0.2c-0.1-0.1-0.1-0.1-0.1-0.5v-2.5l-1.3,0l0,2.6c0,1.2,1,1.8,1.9,1.7 c0.6,0,1.1-0.2,1.5-0.6c0.3-0.3,0.5-0.8,0.5-1.3v-2.6L56.7,30.4z M59.3,30.5l-0.9,4.4l1.2,0.2l0.9-4.4L59.3,30.5z M53.4,32.2 c-0.4-1.2-1.7-1.7-2.9-1.3c-0.6,0.2-1.1,0.7-1.4,1.2c-0.2,0.5-0.2,1.1,0,1.7c0.3,1,1.3,1.5,2.3,1.4c0.2,0.1,1.2,0.3,2.2,0.1l0.5-1.2 c-0.4,0.1-0.8,0-1,0c0.2-0.4,0.4-0.8,0.4-1.2C53.6,32.7,53.5,32.4,53.4,32.2z M78.4,34.5c-0.3,0-0.4,0.1-0.6,0.2 c-0.3,0.2-0.4,0.6-0.4,1c0,0,0,0.1,0,0.1c0,0.7,0.4,1.2,0.9,1.2c0.2,0,0.4-0.1,0.6-0.2c0.3-0.2,0.4-0.6,0.5-1c0-0.4-0.1-0.8-0.3-1.1 C78.8,34.7,78.6,34.5,78.4,34.5z M63.8,31.8l-2.5,3.6l1.1,0.6l1.2-1.8l0.2,1.4l1.3-0.3L63.8,37l1,0.7l2.6-3.5l-0.8-0.6l-1.7,0.4 l-0.3-1.8L63.8,31.8z M45.8,33.5l-2.6,2.4l0.8,0.9l0.9-0.8l2,2.2l0.9-0.8c0,0-1.9-2-2-2.2l0.9-0.8L45.8,33.5z M85.7,27.9L85.7,27.9 c0,0.1-0.8,2.6-1.2,3.9l0,0.1l12.2,7l0-0.1c0.3-0.3,0.6-0.7,0.9-1l0.3-0.3c0.7-0.8,1.4-1.6,1.5-1.6l0.1-0.1l-1.4-1.1l0,0.2 c0,0.1,0,0.2,0,0.3c0,0.3,0,0.7-0.1,1.1c-0.2-0.2-0.4-0.5-0.4-0.9c0,0,0,0,0-0.1l0-0.3l-1.2,1.5h0.2c0.2,0,0.7,0.1,1,0.3 c-0.7,0.6-1.3,0.3-1.7,0c-0.7-0.5-1-0.9-0.8-1.2c0.1-0.2,0.3-0.2,0.5-0.2c0.2,0,0.5,0.2,0.5,0.6l0,0.1l0.1,0 c0.4-0.2,0.6-0.5,0.6-0.7c0-0.1,0-0.2,0-0.2c0-0.1,0-0.3-0.1-0.4c-0.1-0.2-0.4-0.4-0.7-0.4c0.6-0.5,1-1.1,1-1.8c0-0.2,0-0.3-0.1-0.5 l0-0.1l-0.1,0c-1,0.2-1.5,0.7-1.9,1.7c-0.1-0.3-0.4-0.6-0.7-0.7c-0.2,0-0.5,0.1-0.6,0.2c-0.1,0.1-0.3,0.4-0.3,0.9l0,0.1l0.1,0 c0.3-0.1,0.6,0,0.7,0.2c0.1,0.2,0.2,0.4,0.1,0.6c-0.2,0.4-0.7,0.3-1.5-0.1c-0.5-0.3-0.7-0.7-0.7-1.1c0-0.2,0.1-0.5,0.2-0.7 c0.2,0.2,0.3,0.5,0.3,1v0.1l0,0.3l1.3-2.1l-0.2,0.1c-0.1,0-0.5,0.2-0.9,0c0.4-0.4,0.8-0.7,1.2-0.7l0.3,0l-2.4-1.4l0.1,0.3 C92,31,92,31.2,92,31.4c0,0.3-0.1,0.6-0.1,0.8c-0.3-0.3-0.4-0.7-0.4-0.8l0-0.3l-1.2,2.2l0.3-0.2c0.4-0.2,0.8-0.3,1-0.3 c-0.3,0.5-0.9,0.9-1.8,0.4c-0.7-0.4-1-0.8-0.8-1.2c0.1-0.2,0.3-0.3,0.5-0.2c0.3,0,0.5,0.2,0.5,0.5l0,0.1l0.1-0.1 c0.4-0.2,0.6-0.5,0.6-0.7c0.1-0.2,0-0.5-0.1-0.7c-0.2-0.2-0.5-0.3-0.9-0.3c0.5-0.5,0.7-1,0.7-1.6c0-0.3-0.1-0.6-0.2-0.9l0-0.1 l-0.1,0c-0.9,0.3-1.5,1-1.6,2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.2,0-0.5,0.1-0.6,0.3c-0.1,0.1-0.3,0.4-0.2,0.9l0,0.1l0.1,0 c0.3-0.1,0.6,0,0.8,0.1c0.1,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.1-0.1,0.2c-0.2,0.3-0.7,0.3-1.4-0.1c-0.4-0.2-0.9-0.5-0.9-1.2 c0-0.1,0-0.2,0-0.3c0.3,0.1,0.6,0.5,0.7,0.7l0.1,0.2l0.7-1.8l-0.2,0.2c-0.3,0.2-0.7,0.2-1,0.1c0.4-0.4,0.8-0.7,1.1-0.8l0.2-0.1 L85.7,27.9z M50.9,39.2L50.9,39.2C50.8,39.3,50.8,39.3,50.9,39.2C50.8,39.4,50.9,39.3,50.9,39.2c0.1,0.1,0,0.2,0,0.2 c0.1,0,0.1,0.1,0.1,0.1c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1 c0,0-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L50.9,39.2 C50.9,39.2,50.9,39.2,50.9,39.2L50.9,39.2z M42.7,36.6l-0.8,1l3.2,2.6l0.8-1L42.7,36.6z M69.6,36.4l-4.7,1.4l1,1l0.7-0.2l0.8,1.1 L67,40.4l0.8,1.1l2.3-4.4L69.6,36.4z M41.2,40.8c0.3-0.5,0.8-0.7,1.3-0.4c0.3,0.1,0.5,0.5,0.5,0.8c0,0.1,0,0.3-0.1,0.5 c-0.1,0.2-0.3,0.4-0.6,0.5c-0.2,0.1-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.3-0.5-0.5C41.1,41.3,41.1,41.1,41.2,40.8z M55,37l0.2,0 c-1,0.2-1.1,1.2-2.6,1.3l-0.1,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.7,2.9,0,2.9,1.2c0,0.3-0.5,0.7-1.6,0.7c-0.1,0,0,0,0,0 c0.5,0,0.6,0.2,0.9,0.2c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.2,0c0,0.1,0,0.2-0.1,0.2c0,0,0,0,0,0c0,0.1,0,0.2,0.1,0.2 c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.1-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1 c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.1,0.2 c0,0,0,0-0.1,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.1-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.2,0-0.3-0.1c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.2,0.1c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.3,0 c0-0.1,0-0.1,0-0.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1,0.2,0.2-0.2,0.2c-0.2,0-0.4-0.1-0.6-0.1 c0.1,0.1,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.1,0.4c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.1,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1 c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.1 c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0L52,42c0,0,0,0.1,0.1,0.1c-0.2,0-0.2,0-0.2-0.1 c0,0,0-0.1,0-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.1,0,0.2-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.5C52.3,40.9,52.1,41,52,41c-1.1-0.1-0.2,0.3-0.8,0.4c-0.1,0-0.4,0.3-0.6,0.3 c0.1,0,0-0.1,0-0.2c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.2,0.1c0,0.1-0.2,0.2-0.3,0.2c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0 c-0.2,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.2-0.1-0.2c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0 c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.2-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0 c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.2 c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1l0,0 c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.2,0.1 c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.2-0.2c0,0,0-0.1,0-0.1C47.7,41,47.6,41,47.6,41c0.1,0,0.2,0,0.3,0 c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.1,0.1,0.2c0.1,0.2,0.5,0,0.7-0.1c0.1-0.1,0.5,0,0.5,0c0,0,0.4-0.1,0.7-0.2 c-0.2-0.2-0.2-0.4-0.3-0.4c0,0-0.1,0,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0 c-0.3,0.1-0.6-0.1-0.4-0.3c-0.1,0.2,0.3,0.3,0.3,0c0,0,0,0,0,0c-0.2,0-0.2-0.2,0-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0-0.1,0-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0C49,39.9,49,40,49,40c-0.1-0.1-0.1-0.2,0-0.2c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1,0 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c0-0.1,0-0.1,0-0.1c0,0,0,0,0.1-0.1c0-0.1,0-0.1-0.1-0.2c0.1,0,0.2,0.1,0.2,0.2c0,0,0,0.1,0,0.1c0,0.1-0.1,0.3-0.1,0.4 c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.2,0.2c0-0.1,0.1-0.4,0.2-0.7c0,0-0.1,0-0.1-0.1c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.2,0.3-0.3c0-0.1,0-0.2,0-0.3c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.1-0.1c0,0,0.1,0,0.2,0c0,0,0.1,0,0.3,0.1 c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.2 c0.1,0.2-0.2,0.5-0.2,0.7c1.1-0.3,1.6,0.1,2.2,0.1c0.8,0,1.3-0.2,1.3-0.5c0-0.8-2.9,0-2.9-1.2c0-0.2,0.1-0.3,0.3-0.4 c0-0.1,0-0.1,0.1-0.2c0.3-0.4,0.9-0.4,1.1-0.8c0,0.1-0.1,0.5-0.4,0.6c0.5,0,0.7-1,2-0.9L55,37z M43.1,39.3C42.6,39,42,39,41.5,39.1 c-0.5,0.2-1,0.6-1.3,1.1c-0.3,0.5-0.4,1.1-0.2,1.7c0.2,0.5,0.5,1,1,1.2c0.5,0.3,1.1,0.3,1.6,0.2c0.5-0.2,1-0.6,1.3-1.1 c0.2-0.4,0.3-0.7,0.3-1.1c0-0.2,0-0.4-0.1-0.6C43.9,40,43.6,39.6,43.1,39.3z M48.6,43.3C48.5,43.3,48.5,43.2,48.6,43.3 c-0.1,0-0.2,0-0.2,0.1C48.4,43.4,48.5,43.3,48.6,43.3c0,0.1,0,0.2-0.1,0.2c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1 c0,0-0.1,0.1-0.1,0.1c0,0.1-0.1,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2c0-0.1,0.1,0,0.2,0 c0-0.1,0-0.1,0-0.1c0.1,0,0.1,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L48.6,43.3z M80.2,43.6c-0.4-0.2-0.9-0.3-1.3-0.1 c-0.2,0.1-0.4,0.2-0.6,0.5c-0.3,0.6,0.1,1.3,0.9,1.7c0.4,0.2,0.9,0.3,1.3,0.1c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.3,0.1-0.5,0-0.7 C81,44.2,80.7,43.9,80.2,43.6z M46.6,42.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4 c0.2,0.1,0.3,0.3,0.4,0.4l0.2,0.1l0.2,0.1c0-0.1,0-0.2,0-0.4c0,0-0.1-0.1-0.2-0.1c0.1,0,0.2-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0.1 c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.3 c0.1,0.2-0.1,0.4-0.2,0.6c1.3-0.3,3.5,0.1,4.2,0.1c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2c-0.8,0-3.5,0.6-3.5-0.4 c0-0.5,0.6-0.5,1.3-0.4c0,0,0,0,0.1-0.1c0.5-0.3,1.3,0.1,1.8-0.2c0,0.2-0.2,0.3-0.8,0.3c1,0.2,1.7-0.5,2.6,0.2 c-0.8-0.2-2.3,0.4-3.5,0.1c-0.1,0-0.2-0.1-0.2-0.1c-0.5,0-1-0.1-1,0.2c0,0.6,2.2,0.2,3.2,0.2c1,0,1.3,0.2,1.3,0.5 c0,0.4-0.9,0.5-1.6,0.5c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0 c0,0.1,0,0.2,0.1,0.2c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.2-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3 c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0 c-0.1,0.1-0.1,0.3-0.2,0.3l0,0l0,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.2-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.3,0.1-0.3-0.1l0,0l0,0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.2,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0 c0.1-0.1,0-0.1,0-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.8,0.2c-0.3,0-0.4-0.1-0.6-0.1 c0.1,0.1,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1 c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1 c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0,0,0.1,0.1,0.1c-0.2,0.1-0.2,0-0.2-0.1 c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2,0,0.3-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6c-0.1,0.1-0.2,0.2-0.3,0.2c-1.4-0.2-0.8,0.6-1.6,0.5c-0.1,0-0.2,0-0.3,0 c-0.1,0.2-0.5,0.7-0.8,0.6c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1 c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3 c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0 c-0.1,0.1,0,0.2-0.2,0.3c0,0-0.1,0-0.1,0c0,0.1,0.1,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.3-0.3c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1 c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1l0,0l0,0 c0-0.1,0.1-0.2,0.2-0.2l0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.2,0.1,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0 c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1 c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1c0.1-0.1,0.6,0,0.7,0c0,0-0.1-0.2-0.1-0.4c-0.1,0.1-0.2-0.1-0.4-0.2 c-0.2-0.1-0.3-0.3-0.4-0.3c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.3,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1-0.1-0.2,0-0.3c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2,0-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C46.7,42.5,46.7,42.5,46.6,42.4z M78.7,42.8c0.6-0.2,1.3-0.1,1.9,0.2 c0.6,0.3,1.1,0.8,1.3,1.4c0.2,0.4,0.1,0.9,0,1.3c-0.2,0.4-0.5,0.7-1,0.8c-0.6,0.2-1.3,0.2-1.9-0.1c-1.1-0.5-1.7-1.7-1.2-2.7 C77.9,43.3,78.2,43,78.7,42.8z M73.4,46l0.4,0.8c-0.2-0.1-0.3-0.1-0.5-0.2c-0.1,0-0.2-0.1-0.3-0.1c0-0.1,0.1-0.1,0.1-0.2 C73.3,46.3,73.3,46.1,73.4,46L73.4,46z M47.4,47.4C47.3,47.4,47.3,47.4,47.4,47.4c-0.1,0-0.2,0-0.2,0.1 C47.2,47.5,47.3,47.4,47.4,47.4c0,0.1,0,0.2-0.1,0.2c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1 c0.1,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0-0.1c0,0,0-0.1-0.1-0.1L47.4,47.4z M99.8,47.1c-0.2,0-0.5,0-0.7,0.2c-0.2,0.2-0.3,0.5-0.3,0.7 c0,0.4,0.2,0.9,0.5,1.2c0.3,0.4,0.8,0.6,1.2,0.6c0.2,0,0.5,0,0.7-0.2c0.2-0.2,0.3-0.5,0.3-0.7c0-0.4-0.2-0.9-0.5-1.2 C100.6,47.3,100.2,47.1,99.8,47.1z M45.1,46.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4 c0.3,0.2,0.4,0.4,0.5,0.4c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0l0.1,0c0-0.1,0-0.2,0-0.3c0,0-0.1-0.1-0.1-0.1c0.1,0,0.2-0.2,0.2-0.4 c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0 c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.3c0.1,0.2-0.2,0.5-0.2,0.7c1.3-0.4,4.5,0,5.3,0c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2 c-0.8,0-4.3,0.6-4.3-0.4c0-0.5,0.8-0.5,1.6-0.4l0.3,0l0.1,0c0,0,0.1-0.1,0.1-0.1c0.5-0.3,1.7,0.2,2.2-0.1c0,0.2-0.6,0.3-1.2,0.3 c1,0.2,1.9-0.5,2.6,0.1c-0.9-0.3-2.2,0.5-3.5,0.2c-0.1,0-0.2-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0l-0.3,0c-0.6,0-1.2-0.1-1.2,0.2 c0,0.6,3,0.2,4,0.2c1,0,1.3,0.2,1.3,0.5c0,0.4-1,0.5-1.6,0.5c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0 c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c0,0,0,0,0,0l0,0.1c0,0.1,0,0.1,0.1,0.1c0,0.1-0.1,0.1-0.2,0.1l0,0l0,0c0.1,0,0.1,0.1,0.1,0.1 c0,0.2-0.2,0.2-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0 c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.3-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.2-0.1-0.1-0.2 c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1 c0-0.1,0.1-0.2,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0-0.1,0-0.1,0-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1 c-0.2,0.1-0.3,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.2c0.1,0.2,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.5,0 c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0l0,0c0,0,0,0-0.1,0c0,0.1,0,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.2-0.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.3-0.1-0.5 C51.2,49,51.2,49,51.1,49c-0.9-0.1-1.1,0.1-1.3,0.2l-0.1,0.1c-0.2,0.2-0.4,0.3-1.1,0.2c-0.1,0-0.1,0.3-0.4,0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.2,0c0,0.1-0.3,0.3-0.5,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.8,0-0.8,0.4 c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1 c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2 c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0 c0,0-0.1,0-0.1-0.1c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1 c-0.1-0.2,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.2,0,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0 c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0-0.1C44.5,49,44.5,49,44.4,49c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1 c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1c0.1-0.1,0.8,0,0.8,0c0,0-0.1-0.2-0.1-0.4c0,0-0.1-0.1-0.1-0.1c0,0.1-0.2,0.1-0.2,0.1 c-0.4-0.2-0.6-0.6-0.7-0.6c0,0-0.1,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.4,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.3c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C45.2,46.5,45.2,46.5,45.1,46.4z M56.6,35.7v15.5h12.9c0-2-0.4-4-1.1-5.8 c-0.7-1.9-1.7-3.6-2.9-5c-1.2-1.4-2.7-2.6-4.3-3.4C59.8,36.2,58.2,35.7,56.6,35.7z M55.8,35.7c-1.7,0-3.4,0.4-5,1.2 c-1.6,0.8-3,1.9-4.3,3.4c-1.2,1.5-2.2,3.2-2.9,5c-0.7,1.8-1,3.8-1.1,5.8h13.2V35.7z M73.3,51.9c0.1,0,0.3,0,0.4,0c0,0.1,0,0.2,0,0.2 c0,0.2-0.1,0.2-0.2,0.2c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.1-0.2L73.3,51.9z M70.6,50.6l0,1.3c0,0,0.3,0,0.6,0l0.3,0 c0.3,0,0.5,0,0.6,0v0.2c0,0.5,0.1,0.9,0.4,1.2c0.2,0.2,0.6,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-1.1l0-1.5 L70.6,50.6z M60,53.3L60,53.3C59.9,53.3,59.9,53.4,60,53.3c-0.1,0.1,0,0.1,0,0.1c0,0,0,0.1-0.1,0.1c0.1,0,0.1,0.1,0.1,0.2 c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0.1-0.1,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2 c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0-0.1c0,0,0-0.1-0.1-0.1L60,53.3C60,53.3,60,53.3,60,53.3 L60,53.3z M57.9,52.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0.1,0.2c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.4,0.4,0.5,0.4 c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0l0.2,0.1c0-0.1,0-0.2,0-0.3c0,0-0.1-0.1-0.2-0.1c0.1,0,0.2-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.3,0.1 c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.3 c0.1,0.2-0.2,0.5-0.2,0.7c1.3-0.4,4.5,0,5.3,0c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2c-0.8,0-4.3,0.6-4.3-0.4 c0-0.6,1.1-0.4,2.1-0.4c0,0,0-0.1,0.1-0.1c0.5-0.3,1.7,0.2,2.2-0.1c0,0.1-0.6,0.3-1.2,0.3c1,0.2,1.6-0.4,2.6-0.1 c-0.8-0.2-2.2,0.7-3.5,0.4c-0.1,0-0.2-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0l-0.3,0c-0.6,0-1.2-0.1-1.2,0.2c0,0.3,1,0.3,2,0.3l0.4,0 c0.6,0,1.3-0.1,1.6-0.1c1,0,1.3,0.2,1.3,0.5c0,0.4-0.9,0.5-1.6,0.5c-0.1,0,0,0,0,0c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1 c0,0.2,0.2,0.1,0.3,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c0,0.1-0.1,0.2,0.1,0.2c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0 c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.2-0.3,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1 c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0C67,56,67,56.2,66.9,56.2h-0.1c-0.1,0.1,0,0.1,0,0.2c-0.1,0-0.1-0.1-0.1-0.2 c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1v0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.2,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0.1-0.1,0-0.1,0.1-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.6,0.1 c-0.2,0.1-0.4,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.2c0.1,0.2,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.5,0 c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.2-0.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1l0,0c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6 C64,54.9,63.9,55,63.8,55c-1.9-0.2-1,0.7-2.6,0.5c-0.1,0-0.1,0.2-0.4,0.2c-0.1,0-0.3,0-0.3,0.1c0,0.2-0.4,0.4-0.5,0.3 c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.5,0-0.5,0.4c-0.1-0.1-0.1-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2 c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3 c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0 c-0.1,0.1,0,0.2-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0.1,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1 c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1-0.1,0.1-0.3,0.2-0.3 c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0-0.1 C57.7,55,57.6,55,57.5,55c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1 c0.1-0.1,0.5,0,0.6,0c0,0-0.2-0.2-0.2-0.4l-0.1,0c-0.1,0-0.1-0.1-0.1-0.2c-0.1,0-0.3,0.1-0.2,0.1c-0.4-0.2-0.6-0.6-0.6-0.6 c0,0-0.1,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.4,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0 c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2-0.1-0.3c0,0,0,0,0,0l0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C58,52.5,57.9,52.4,57.9,52.4z M99.7,54.2c-0.5-0.4-1.3-0.1-1.8,0.5 c-0.5,0.7-0.4,1.5,0.1,1.9c0.5,0.4,1.3,0.1,1.8-0.5C100.2,55.4,100.2,54.6,99.7,54.2z M52.8,53.5c-0.4,0-1.2,0.4-2.2,0.8l2.1,3 l0.3-2.1l-0.1,0c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.3-0.4,0.5-0.4l0.2,0C53.2,53.6,53.1,53.5,52.8,53.5z M70.4,53.8l-0.5,2.8l1.2,0.2 l0.3-1.5l0.3,0.1l-0.3,1.4l1.2,0.2l0.3-1.4l0.3,0.1L73,57.1l1.2,0.2l0.5-2.7L70.4,53.8z M59.9,57.2L59.9,57.2 C59.9,57.3,59.8,57.3,59.9,57.2c-0.1,0.1,0,0.1,0,0.1c0,0,0,0.1-0.1,0.1c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1 c0,0-0.1,0.1-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1c0-0.1-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0 c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L59.9,57.2C60,57.2,59.9,57.2,59.9,57.2L59.9,57.2z M50.1,54.5c-0.3,0.1-0.7,0.2-1.1,0.3l3.3,4.8c0.1-0.5,0.2-1,0.2-1.5L50.1,54.5z M40.5,58.2c0.5-0.2,1.1,0,1.3,0.6 c0.1,0.1,0.1,0.3,0.1,0.4v0c0,0.4-0.2,0.7-0.6,0.9c-0.3,0.1-0.5,0.1-0.7,0c-0.2-0.1-0.4-0.3-0.5-0.6C39.7,58.9,40,58.4,40.5,58.2z M60.2,56.5c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.2c0.1,0.1-0.1,0.4-0.2,0.6c1.2-0.2,3.3,0.1,4,0.1c0.4,0,1.3-0.1,1.3-0.3c0-0.2-0.1-0.2-0.7-0.2 c-0.8,0-3.3,0.5-3.3-0.4c0-0.5,0.7-0.4,1.2-0.4c0,0,0,0,0.1-0.1c0.5-0.3,1.7,0.1,2.1-0.1c0,0.1-0.6,0.2-1.1,0.3 c0.9,0.2,1.5-0.4,2.5,0c-0.7-0.2-2.1,0.7-3.3,0.3c-0.1,0-0.2-0.1-0.2-0.2c-0.3,0-0.9-0.1-0.9,0.2c0,0.5,2.1,0.2,3,0.2 c0.9,0,1,0.2,1,0.4c0,0.4-1.1,0.5-1.6,0.5c-0.1,0,0,0,0,0c0.5,0,0.9,0.1,1.2,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0 c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0l0,0.1c0,0.1,0,0.1,0.1,0.1c-0.1,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0 c0.1,0,0.1,0.1,0.1,0.1c-0.1,0.2-0.3,0.2-0.3,0.3c0,0.1,0.2,0.1,0,0.3c0,0-0.1,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1 c-0.1,0.1-0.2,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0,0-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.3-0.2,0.2c0,0,0,0-0.1,0 c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1,0-0.1-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.2-0.1 c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.2-0.2,0.3-0.2c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0.1-0.1,0-0.1,0.1-0.4 c0-0.1,0-0.1,0-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1-0.4,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.1c0.1,0.1,0,0.3,0.1,0.3 c0.2,0.1,0.2,0.4,0.1,0.5c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0 c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0,0-0.1,0-0.1 c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0,0,0.1,0.1,0.1c-0.2,0.1-0.2,0-0.2-0.1 c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6c-0.1,0.1-0.2,0.2-0.3,0.1c-1.3-0.2-0.7,0.5-1.5,0.5c-0.1,0-0.1,0.2-0.3,0.2 c0.1,0,0.1-0.1,0-0.1c0,0,0,0.1-0.1,0.1c-0.1,0.2-0.4,0.6-0.6,0.4c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.6,0.1-0.6,0.5 c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1 c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2 c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0-0.1,0-0.1,0c0,0.1,0,0.2,0.1,0.2c-0.1,0-0.3-0.1-0.2-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1c0,0,0,0,0,0l0-0.1 c-0.1,0-0.1,0.1-0.2,0.1c-0.1-0.1,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.3,0.1c0.1,0,0.1,0,0.2,0 c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.3-0.2c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0 c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.7-0.1c0.1-0.1,0.5,0,0.5,0c0,0,0-0.3,0-0.5l-0.2,0 c-0.1,0-0.1-0.1-0.1-0.1c-0.3-0.2-0.3-0.1-0.4-0.1c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1 c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.3,0.3,0.3,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0 c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1,0.1-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.3 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.1,0c0.1-0.1,0.3-0.1,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1 c0,0,0,0,0,0c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1 c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4C58.8,58,58.9,58,59,58c0,0,0,0,0.1,0l0.1,0c0-0.1,0-0.2,0.1-0.4c0,0-0.1-0.1-0.1-0.1 c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.3,0.3-0.3c0-0.1,0-0.2,0-0.3c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1 C60,56.5,60.2,56.5,60.2,56.5z M41.7,57c-0.5-0.2-1.1-0.2-1.7,0c-0.6,0.2-1,0.6-1.2,1.1c-0.2,0.5-0.2,1.2,0,1.8 c0.2,0.6,0.7,1.1,1.2,1.3c0.5,0.2,1.1,0.2,1.7,0c0.6-0.2,1-0.6,1.2-1.2c0.1-0.3,0.2-0.6,0.2-0.9c0-0.3-0.1-0.6-0.2-0.9 C42.7,57.7,42.3,57.3,41.7,57z M48.4,54.9c-0.2,0-0.5,0.1-0.7,0.1c-0.1,0-0.3,0-0.4,0l4.8,6.8c0.1-0.4,0.1-0.9,0.2-1.4L48.4,54.9z M59.7,61.2C59.6,61.2,59.6,61.2,59.7,61.2c-0.1,0-0.2,0-0.1,0.1C59.5,61.3,59.6,61.2,59.7,61.2c0,0.1,0,0.1-0.1,0.2 c0.1,0,0.1,0.1,0.1,0.1c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1 c0,0-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L59.7,61.2z M96.2,59.6c-0.5-0.4-1.3-0.1-1.8,0.5c-0.5,0.7-0.4,1.5,0.1,1.9c0.5,0.4,1.3,0.1,1.8-0.5C96.8,60.8,96.8,60,96.2,59.6z M69.8,56.9 l-0.5,1.1l2,0.8l-2.6,0.9l-0.4,0.9l4,1.6l0.5-1.1l-2-0.8l2.7-0.9l0.4-0.9L69.8,56.9z M46.6,55c-0.3,3.9,2.4,6.5,5.2,7.5L46.6,55z M59.8,60.5c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.2c0.1,0.2-0.2,0.5-0.3,0.7v0c1.3-0.3,2.4,0.1,3,0.1c0.8,0,1.4-0.2,1.4-0.4c0-0.1-0.6-0.1-1.3,0l-0.3,0l-0.2,0 c-0.9,0-1.3-0.1-1.3-0.4c0-0.3,0.3-0.5,0.7-0.6c0,0,0.1-0.1,0.1-0.1c0.5-0.3,1.7,0.1,2.1-0.1c0,0.1-0.6,0.3-1.1,0.3 c0.9,0.2,1.5-0.4,2.5-0.1c-0.7-0.2-2.1,0.7-3.3,0.4c-0.1,0-0.2-0.1-0.2-0.2c-0.2,0.1-0.4,0.2-0.4,0.4c0,0.2,0.7,0.2,1.5,0.2l0.3,0 c0.1,0,0.2,0,0.3,0c0.7-0.1,1,0,1,0.3c0,0.3-0.6,0.6-1.7,0.6c0,0-0.2,0-0.3,0c0,0.2,0.4,0.3,0.5,0.5c0.1,0.1,0.1,0.2-0.2,0.3 c-0.1,0.1,0.1,0.2,0.2,0.2c-0.1,0.1-0.2,0.1-0.2,0.1c0,0,0,0,0,0c0,0.1-0.2,0.1-0.1,0.2c-0.1,0-0.1,0-0.1,0l0,0c0,0,0,0,0,0 c0,0.1,0,0.1,0,0.2c-0.2,0.1-0.3-0.1-0.3,0c-0.1,0.1,0.1,0.2-0.1,0.3c0,0-0.1,0-0.1,0c0,0,0,0.1,0,0.1c-0.1,0-0.2-0.2-0.1-0.2 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.2-0.2c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.3,0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1 c0-0.1,0-0.2,0-0.2c0,0,0-0.1,0-0.1c0-0.1,0.2-0.1,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1,0-0.1c0,0,0,0,0,0 c-0.1,0-0.2,0-0.2,0c0-0.1,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.2,0.2l0,0c0.1,0,0.1-0.1,0.3-0.2c0.1,0,0-0.1,0-0.1 c0,0-0.3-0.2-0.5-0.2c-0.1,0.2-0.8,0.1-1,0c0.5,0.3,0.2,0.9,0.3,0.9c0.2,0.1,0.2,0.4,0.1,0.4c0,0.1-0.2,0-0.3,0c0,0-0.1,0-0.1,0 c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0 c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0 c0,0,0,0.1,0.1,0.1c-0.1,0-0.2,0-0.2-0.1c0,0,0-0.1,0-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0 c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.2,0.1c0-0.1,0.1-0.3,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3 c0,0,0.1,0,0.2-0.1c0,0,0,0,0,0c-0.1-0.1-0.3-0.3-0.3-0.4c0-0.1,0-0.4,0.1-0.5c-0.3,0-0.5,0.3-0.8,0.3c0,0-0.1,0-0.1,0 c-0.1,0.5-0.2,0.6-0.2,0.7c0,0.1-0.3,0.3-0.4,0.3c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.2,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.2-0.1-0.2 c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.1,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.2-0.3,0.3 c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2 c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.2c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0 c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1,0.1-0.3,0.2-0.3 c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.2,0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.2-0.2c0,0,0-0.1,0-0.1 c0-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.1,0.3,0.1 c0,0,0.1,0,0.1,0c0.2,0,0.3-0.1,0.3-0.1c0.1-0.1,0.5,0,0.6,0c0,0-0.1-0.1-0.1-0.3c-0.2,0-0.4-0.1-0.4-0.3c-0.4-0.2-0.3-0.6-0.4-0.6 c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c-0.2,0.1-0.6-0.1-0.4-0.4 c0,0.3,0.3,0.3,0.3,0c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0 c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.2c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0 c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2,0-0.2-0.2l0,0c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1,0c0.1-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0 c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1 c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.2,0.2c0,0,0,0.1,0,0.1c0,0.1-0.1,0.3-0.1,0.4c0,0.2,0,0.3,0.2,0.4c0.2,0.1,0.5,0.6,0.7,0.8 c0-0.2,0-0.5,0.1-0.8c0,0-0.1-0.1-0.1-0.1c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.2,0.3-0.2c0-0.1,0-0.2,0-0.3 c0.1,0,0.1,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1C59.7,60.5,59.8,60.5,59.8,60.5z M52.8,52.7c0.9,0,1.4,0.6,1.4,1.5l0,0.2l0.2,0 c0.2,0,0.5,0.2,0.4,0.5c0,0.3-0.3,0.4-0.5,0.4l-0.2,0l-0.2,7.5l0.2,0l-0.1,0.7c-0.1,0.2-0.3,0.3-0.5,0.3c0.1,1.2-0.9,1.4-1.3,1.4 c-0.5,0-1-0.3-1-0.9c0-0.5,0.4-0.7,0.7-0.7c0.3,0,0.5,0.1,0.4,0.4c-0.1,0.2-0.6,0-0.6,0.3c0,0.2,0.2,0.3,0.4,0.3 c0.4,0,0.6-0.2,0.6-0.6c0-0.7-0.7-0.8-1.4-0.6c-4.3-1.3-6.6-5.5-6.3-8.7c-0.1,0-0.2-0.1-0.3-0.1l0.3-0.7C45.1,54,44.9,54,44.8,54 c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0,0,0,0,0,0.1l0.3-0.6c0.7,0.4,1.8,0.8,2.7,0.8 C50.4,53.8,52,52.7,52.8,52.7z M68.5,61.2c-0.5,0.2-1,0.5-1.2,0.8c-0.2,0.3-0.3,0.7-0.2,1c0.1,0.3,0.3,0.6,0.6,0.8 c0.7,0.5,1.4,0.1,1.8-0.1c0.2-0.1,0.4-0.2,0.5-0.2c0.1,0.1,0,0.4-1.3,0.8l1.2,0.8c0.3-0.1,0.8-0.4,1-0.7c0.2-0.3,0.3-0.6,0.3-0.9 c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.3-0.6-0.6-0.8c-0.6-0.4-1.2-0.1-1.7,0.1c-0.2,0.1-0.6,0.3-0.7,0.2c0,0,0,0,0,0c0,0,0-0.1,0.1-0.2 c0.1-0.2,0.6-0.5,1.2-0.6l0.2,0L68.5,61.2z M43.7,60.6L40.2,63l0.7,1c0,0,1.1-0.8,1.3-0.9c0,0,0.1,0.2,0.3,0.4l0.2,0.3 c0.1,0.2,0.2,0.3,0.3,0.4c-0.1,0-0.3,0.2-0.5,0.4l-0.2,0.2c-0.3,0.2-0.5,0.4-0.5,0.4l0.7,1l3.5-2.5l-0.7-1c0,0-0.2,0.2-0.5,0.4 l-0.2,0.2c-0.2,0.2-0.5,0.3-0.5,0.4c0,0-0.1-0.2-0.3-0.4l-0.2-0.3c-0.1-0.2-0.2-0.3-0.3-0.4c0.1-0.1,1.3-0.9,1.3-0.9L43.7,60.6z M66.3,63.5l-2,2l0.9,0.8l1.1-1.1l0.3,0.2l-1,1l0.9,0.8l1-1l0.2,0.2l-1.1,1.1l0.9,0.9l1.9-2L66.3,63.5z M94.1,66.6 c-0.3,0-0.5,0.2-0.7,0.3c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,1,0.4,1.2c0.1,0.1,0.4,0.3,0.7,0.3l0.1,0c0.2,0,0.4-0.2,0.5-0.3 c0.3-0.3,0.5-0.7,0.5-1.2C95.2,67.3,94.7,66.6,94.1,66.6z M58.5,18.3c-0.9,0.6-1.7,1.6-1.9,2.5c0.7-0.1,1.7-0.6,2.3-1.4 c-0.2,1.4-0.2,2.3,0,3.6c-0.5-0.7-1.6-1.3-2.4-1.4c0.2,2.2,2.2,2.5,3.3,2.5c1.2,0,2.2-0.4,2.3-1.2c0.1-0.7-0.4-1-0.7-1 c-0.4,0-0.8,0.4-0.9,1.2c-0.4-0.6-0.8-2.8,0.4-2.9c0.9-0.1,1.4,1.1,1.6,2.3c0.3-1,1.2-2.3,2.1-2c1.2,0.3,0.4,2.6-0.4,3 c0.2-0.4,0.1-1.3-0.4-1.3c-0.6-0.1-0.9,0.5-0.9,0.9c0,0.7,0.9,1.2,1.8,1.5c1.7,0.4,2.9-0.5,3.3-1.1c-0.8-0.3-1.4-0.2-2.2,0.2 c0.4-0.8,0.8-2.1,1-2.9c0.2,0.9,0.8,1.5,1.5,2c0.2-0.7,0.1-1.9-0.6-3l2.7,1.1c-1.3,1.4-2.7,4.6-3.6,7.2c0.5,0.5,0.8,1,0.8,1.8 c0,1.2-0.8,2-1.6,2.5c1.5,1,2.8,2.1,4,3.5c1,1.1,1.9,2.3,2.6,3.6c-0.1,0.1-0.2,0.3-0.4,0.5c-0.1,0.2-0.2,0.3-0.3,0.4l-0.2-0.3 L68,41.8l1.3,2.6l1.1-0.5c0,0-0.6-1.3-0.7-1.4l1.6-0.8c0,0.4,0.1,0.8,0.4,1.2c0.3,0.5,0.7,1.2,1.1,2c-0.2,0.3-0.7,0.9-1,1.2 c-0.1,0.1-0.1,0.2-0.2,0.2l-1.8,0.5l0.3,1.2l1.8-0.5c0,0,0.3,0.1,0.3,0.1c0.5,0.2,1.8,0.6,2.3,0.8c0.3,0.7,0.8,1.1,1.2,1.4 c0,0.5,0,1.1,0,1.6c0,3-0.5,5.9-1.5,8.7c-1,2.7-2.4,5.1-4.2,7.1c-0.9,1-1.8,1.9-2.8,2.7c-0.3,0.2-1.4,0.4-6-0.7 c-0.6-0.1-0.7-0.3-1.3-0.4c0.1-0.6,0.2-1,0.4-1.4c0.2-0.5,0.5-1.1,0.9-1.3c1.6-0.8,3-1.9,4.3-3.4c1.2-1.4,2.2-3.1,2.9-5 c0.7-1.8,1-3.8,1.1-5.8H56.6v14.4c0.3,0,0.6,0,1,0.1l0.4,0c0.9,0.1,1.7,0.2,1.7,0.2c-0.5,0.6-0.7,1-0.9,2c-1.5-0.5-3-1-4.5-1.6 c0.5-0.5,1-0.6,1.6-0.6V51.9H42.6c0,0.4,0,0.9,0.1,1.3c-0.8-1.5,0.1-1.4-0.8-2.6c-0.6-0.8-0.9-1.3-0.9-2.5c0-0.6-0.4-1.4-1-2.2 c0.3-0.1,0.7-0.3,0.9-0.5c0.2-0.2,0.5-0.4,0.6-0.3c0,0,0,0.1,0,0.2c-0.1,0.2-0.6,0.7-1.1,1l1.2,0.5c0.4-0.3,0.8-0.7,1-1.1 c0.1-0.4,0.1-0.7,0-1.1c-0.1-0.3-0.4-0.6-0.7-0.7c-0.8-0.3-1.4,0.2-1.8,0.5c-0.1,0.1-0.4,0.3-0.5,0.3c-0.1-0.1,0.5-0.7,1.1-1.1 l-1.3-0.5c-0.3,0.2-0.7,0.6-0.8,0.9c0,0,0,0.1,0,0.1c-0.3-0.3-0.6-0.6-0.9-0.9c0-0.1,0.1-0.3,0.1-0.4c1-2.7,2.4-5,4.2-7.1 c1.2-1.4,2.5-2.5,4-3.5c-0.8-0.5-1.6-1.2-1.6-2.5c0-0.7,0.3-1.3,0.8-1.7c-0.8-2.7-2.3-5.9-3.6-7.3l2.6-1.1c-0.7,1.1-0.7,2.3-0.6,3 c0.7-0.5,1.3-1.1,1.5-2c0.1,0.8,0.6,2.1,1,2.9c-0.8-0.4-1.4-0.5-2.2-0.2c0.5,0.6,1.6,1.5,3.3,1.1c0.9-0.2,1.9-0.7,1.8-1.5 c0-0.4-0.3-1-0.9-0.9c-0.6,0.1-0.6,0.9-0.4,1.3c-0.8-0.4-1.5-2.7-0.4-3c0.9-0.3,1.8,1,2.1,2c0.2-1.2,0.7-2.3,1.6-2.3 c1.2,0.1,0.8,2.3,0.4,2.9c-0.1-0.8-0.5-1.2-0.9-1.2c-0.3,0-0.8,0.3-0.7,1c0.1,0.7,1.1,1.2,2.3,1.2c1.1,0,3.1-0.4,3.3-2.5 c-0.7,0.1-1.8,0.7-2.3,1.4c0.2-1.3,0.2-2.2,0-3.6c0.6,0.8,1.6,1.3,2.3,1.4c-0.2-0.9-1-1.9-1.9-2.5H58.5z M94.1,65.9 c0.5,0,1,0.3,1.3,0.7c0.3,0.4,0.5,1,0.5,1.6c0,0.7-0.3,1.3-0.7,1.7c-0.3,0.3-0.8,0.5-1.2,0.5c-0.4,0-0.9-0.2-1.2-0.5 c-0.4-0.4-0.6-1.1-0.6-1.7v-0.1c0-0.7,0.3-1.3,0.7-1.7C93.2,66,93.7,65.9,94.1,65.9z M110.1,66.4c-1.2,0-2.2,1-2.2,2.2 c0,1.2,1,2.2,2.2,2.2c1.2,0,2.2-1,2.2-2.2C112.2,67.3,111.3,66.4,110.1,66.4z M110.1,65.6c1.6,0,2.9,1.3,2.9,2.9 c0,1.6-1.3,2.9-2.9,2.9c-1.6,0-2.9-1.3-2.9-2.9C107.2,66.9,108.5,65.6,110.1,65.6z M52.2,69c-0.7,0-1.3,0.6-1.3,1.3 c0,0.7,0.6,1.3,1.3,1.3c0.7,0,1.3-0.6,1.3-1.3C53.5,69.6,52.9,69,52.2,69z M48.8,64.5c-1.1,0-2.4,1.3-2.7,1.6L46,66.2l-0.2,0 c-0.3-0.1-0.6-0.1-0.9-0.2c0.1,0.3,0.2,0.5,0.4,0.8l0.1,0.1l-0.1,0.1c-0.6,0.9-0.9,1.8-0.9,2.5c0,0.5,0.5,1.4,1.3,1.8 c0.5,0.3,1.1,0.2,1.6-0.1c-0.3-0.2-0.7-0.4-0.9-0.6l-0.1-0.1c-0.2-0.1-0.5-0.3-0.6-0.6c0-0.1,0-0.1,0-0.2c0-0.3,0.1-0.6,0.4-1.1 c0.1-0.1,0.1-0.2,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2l0.1-0.2l0.2,0.1c0.4,0.3,0.9,0.4,1.2,0.3c0.1,0,0.2-0.1,0.3-0.2 c0.2-0.3,0.1-0.8-0.5-1.3l-0.2-0.2l0.3-0.4c0.2-0.2,0.4-0.5,0.7-0.7c0.5-0.4,1-0.4,1.6,0l0.3,0.2c0.2,0.1,0.4,0.3,0.5,0.4 c-0.1-0.4-0.2-0.8-0.5-1.1C49.9,64.7,49.4,64.5,48.8,64.5z M106.1,70.7c-0.4-0.1-0.9,0-1.3,0.3c-0.4,0.3-0.7,0.7-0.8,1.1 c0,0.2,0,0.5,0.1,0.7c0.3,0.5,1.2,0.6,1.9,0.1c0.4-0.3,0.7-0.7,0.8-1.1c0-0.2,0-0.5-0.1-0.7C106.5,70.8,106.3,70.7,106.1,70.7z M57.7,71c-0.6,0-1.2,0.5-1.2,1.2c0,0.6,0.5,1.2,1.2,1.2c0.6,0,1.1-0.5,1.1-1.2C58.9,71.5,58.4,71,57.7,71z M98,71.6 c-0.5-0.1-0.9,0-1.3,0.2c-0.2,0.1-0.4,0.3-0.4,0.6c-0.1,0.6,0.5,1.2,1.3,1.4c0.8,0.1,1.6-0.2,1.7-0.8c0,0,0-0.1,0-0.1 C99.3,72.3,98.8,71.7,98,71.6z M96.3,71.2c0.5-0.3,1.2-0.5,1.8-0.4c1.2,0.2,2.1,1.2,1.9,2.2c-0.1,0.5-0.4,0.9-0.9,1.2 c-0.5,0.3-1.1,0.3-1.6,0.2c-0.6-0.1-1.1-0.4-1.5-0.8c-0.4-0.4-0.5-0.9-0.4-1.5C95.7,71.9,95.9,71.5,96.3,71.2z M42.9,54.3 c0.2,1.1,0.5,2.3,0.8,3.3c0.7,1.9,1.7,3.6,2.9,5c0.4,0.5,0.9,1,1.4,1.4c0.3-0.1,0.6-0.2,0.9-0.2c0.7,0,1.4,0.3,1.9,0.9 c0.5,0.6,0.8,1.3,0.7,2l0,0c3.3,1.5,6.8,2.8,9.7,3.5c1.8,0.5,4,0.9,5.5,0.7c-0.1,0.1-0.1,0.1-0.2,0.2c-0.5,0.5-1.2,1-2,1.5 c-1.9,1.2-3.8,1.9-5.2,1.9c-1.7,0-3.8-0.3-6-1c-2-0.5-3.8-1.3-5.2-2c-0.8,0.6-1.6,0.7-2.4,0.3c-1-0.5-1.6-1.6-1.6-2.3 c0-0.1,0-0.3,0-0.4c-0.7-0.6-1.3-1.2-1.9-1.9c-1.8-2.1-3.2-4.5-4.2-7.1c-0.5-1.2-0.8-2.5-1.1-3.8c1.7,0.6,2.3,0.1,2.8-0.5 c0.2,0,0.2,0.3,0.2,0.5C41.6,56.4,42.7,55.3,42.9,54.3z M75.5,73.8c0.3,0.1,0.3,0.1,0.3,0.1c1,0.3,1.2,0.8,0.9,1.4 c-0.3,0.8-0.9,1-1.7,0.7c0,0-0.2,0-0.3-0.1C74.8,75.9,75.4,74,75.5,73.8z M80.4,75.9c0,0,0.3,0.2,0.4,0.2c0.1,0.1,0.2,0.2,0.2,0.3 c0,0,0,0.1,0,0.1c0,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.3-0.1c0,0-0.2-0.1-0.3-0.2c0-0.1,0.1-0.2,0.2-0.3L80.4,75.9 C80.4,75.9,80.4,75.9,80.4,75.9z M74.6,72.3L73,76.8l1.6,0.4c1.3,0.3,2.7,0.2,3.4-1.6c0.6-1.6-0.4-2.6-1.6-2.9L74.6,72.3z M35.4,72.9L34,73.3l1.2,2.7c0.2,0.5,0.2,0.7-0.4,1c-0.5,0.2-0.8,0.1-1-0.5c0,0-1.1-2.6-1.1-2.6l-1.2,0.6l1.1,2.5 c0.5,1,1.3,1.6,2.7,1c1.5-0.6,1.6-1.6,1.1-2.7L35.4,72.9z M79.8,74.1l-2.4,4.1l1.2,0.6c0,0,0.7-1.3,0.9-1.5c0.2,0.1,0.2,0.3,0.2,0.8 l0.1,1.4c0.1,0.1,1.2,0.8,1.5,0.9c0,0-0.1-1.1-0.2-2.1c0-0.3,0-0.5-0.1-0.7c0.1,0,0.2,0,0.4,0c0.3-0.1,0.6-0.3,0.7-0.6 c0.3-0.5,0.3-0.9,0-1.3c-0.2-0.3-0.5-0.6-0.7-0.7L81.3,75C80.9,74.7,80.1,74.3,79.8,74.1z M83.9,78.7c0.3-0.1,0.6,0,0.9,0.2 c0.3,0.2,0.5,0.4,0.6,0.7c0.1,0.3,0,0.6-0.1,0.8c-0.2,0.3-0.4,0.5-0.7,0.5c-0.3,0.1-0.6,0-0.9-0.1c-0.3-0.2-0.5-0.4-0.6-0.7 c-0.1-0.3,0-0.6,0.1-0.8C83.4,78.9,83.6,78.7,83.9,78.7z M32.5,12.4c0.5,1.1,0.6,2.1,0.1,3.6c1.3,0.1,2,1.2,3.3,0.9 c-0.8,1-1.6,1-2.5,0.9l-0.3-0.1c-0.2,0-0.5-0.1-0.7-0.1c3.5,1.1,4.2,4.6,6.1,4.8c-2.1,1.6-3.5-1.3-5.3-1.2c4.7,2.4,4.7,5.2,6,5.3 c-1.5,1.3-2.6-0.4-4.5-0.9c3.7,2.5,4,4.5,3.7,6.1c0.8,0.8,1.1,1.9,1.1,3.1c0.8-0.5,1.6-0.9,2.5-1.1c-0.4,0.3-0.7,0.7-1,1.1 c-1.9,2.1-3.4,4.6-4.4,7.3c-0.8-0.8-2-1.9-2.4-2.4c-0.8-0.7-1.1-0.8-1.4-0.7c0.5,0.6,1.6,1.8,2.7,3l0.6,0.6c1.2,1.4,2.4,2.7,3,3.3 c1.2,1.4,1.1,2.4,1.2,3.4c0.2,1,1.2,1.8,1.1,2.5c-0.1,0.9,0.6,1.4,0.6,2.1c0,0.9-0.8,1.3-1.6,1.5c0.6-1.2,0.1-1.9-0.9-2.1 c0.2,2.3-1.6,2.7-2.3,2.3c0.7-0.1,1-1.2,0.6-2.2c-0.3,0.8-1.1,1.4-1.9,1.4c-0.7,0-1.3-0.5-1.5-1.1c0.8,0.6,1.5-0.1,1.5-0.5 c0-0.4-0.8-0.7-0.8-1.3c0-1.6,1.7-1.2,1.7-2.6c0-0.6-0.3-0.8-0.7-0.8c-0.4,0-0.9,0.2-1.1,1.1c-0.9-0.8,0-2.5-0.4-3.6 c0.1,1.8-1.2,1.7-1.6,2.4c-0.6-0.6,0.2-1.8-0.4-3.3c-0.2,1.7-0.8,1.4-1,2.4c-1.7-0.8-4.7-0.6-5.7,0.6c2.9,2.2,6.3,3.4,6.3,6.9 c0,2.7-4.1,3.7-4.1,5.4c0,1.7,4.3,5.7,6.5,5.7c0.7,0,1-0.9,1.6-0.9c0.6,0,1.1,0,1.6,0c0.5,0,1,0.5,0.9,1c1,0.1,2.3,1.7,1,2.9 c-0.2-0.7-0.9-1.7-2.2-1c0.5,1.2,0.1,2.3-1.4,2.7c0.5-0.7,0.5-1.7-0.3-1.7c-0.9,0-0.1,0.6-1.8,0.6c-1.6,0-1.5,0.1-2.1-0.9 c-0.7-0.9-1.1-1.3-1.5-1.2c-0.4,0.1-0.5,1.1,0.1,1.4c-3.5,0-2-3.6-3.8-4.5c0.1,1.1,0.1,2,0,2.5c-1.3-1-2.1-2.4-2.3-3.3 c-0.2-0.9-0.1-1.7-0.9-2.1c-0.3-0.1-0.6-0.4-0.5-0.9c0.1-0.4,0.3-0.3,0.9-0.5c0.7-0.3,1.7-1.1,1.7-2.9c0-1.4-0.3-3.3-2.6-4.7 c0.2,3,0.1,5.5-1.2,7.8c-1.7,2.9-4.6,4.7-6.3,5.4c-0.3,0.1-0.7,0.3-1,0.4l-0.3,0.1c-1.3,0.6-2.6,1.3-2.6,2.9c0,4.1,1.8,6.5,3.6,6.5 c1.2,0,0.9-1.3,2.6-1.3c0.7,0,1.6,0.3,1.7,0.8c0.9-0.2,1.9,0.4,1.9,1.2c0,0.9-0.4,1.4-1.1,1.5c0.6-1.1-0.8-1.4-1.3-1.2 c-0.4,0.3,0.1,0.7,0.1,1.4c0,0.7-0.2,1.3-1.4,1.7c0.3-0.4,0.3-1-0.5-1c-0.7,0-1,1.2-1.9,1.2c-1.5,0-1.9-0.7-3.4-0.4 c-1,0.2-1,0.8-0.6,1.1c-2.1,0.1-1.7-2.1-1.2-2.6c0.5-0.5,0.7-0.8,0.1-1.2c-0.6-0.4-1.6,0-1.8,1c-1.6-3,0.6-2.9-0.1-6.3 c-0.4,1.4-1.2,2.5-1.9,2.9c0.3-0.8-0.4-2.2-0.4-3.4c0-2.6,1.6-3.4,1.6-4.3c0-0.6-0.6-1.1,0-1.7c0.4-0.3,1.1,0.3,1.6,0.3 c2.1,0,3.6-2.7,3.9-5.6c0.4-3.5,1.8-6,3.2-8.6c0.1-0.4,0.1-0.8,0.2-1.3c-1.4,1.8-2.7,4.6-4.7,6.2c0.2,2.3-4.2,4.9-6.7,2.9 c0.8,0.1,2.4-0.3,2.9-1.6c-0.4,0-0.7-0.1-1.1-0.2c-1.5,0.9-4-0.2-3.9-1.9c0.6,0.7,1.4,0.9,2.1,0.6C4.3,55.4,4,54.4,4,53.3 c0-6.6,10.3-11.2,10.3-16.6c0-1.7-1.1-2.6-2.2-2.6c-0.6,0-1.3,0.2-2.1,0.6c0.5,0.5,0.8,1,0.8,1.7C10.8,42.6,1,42,0.2,46 c-0.2-2.7,1.3-3.6,2.9-4.6l0.4-0.2c1.4-0.8,2.7-1.6,2.9-3.5c-1.3,1.8-3.5,3.2-4.7,2.5c3.2,0.1,2.2-6.5,5.9-6.5 c0.4,0,0.8,0.1,1.2,0.3c1-0.8,2.2-1.3,3.2-1.3c1.5,0,3.8,1.1,3.8,4c0,6.4-10.3,10.6-10.3,16.6c0,2,1.2,3,2.8,3 c3.6,0,5.9-6.5,9.8-11.8c2.1-3.1,3.7-9.6,5.1-13.4c-1.4,1.6-1.8,4.5-3.8,4.7c1.2-1,0.4-4.2,1.1-6.6c0.3-0.9,0.4-1.7,0.2-2.6 c-0.6,0.6-0.8,1.8-1,3l-0.1,0.5c-0.3,1.7-0.7,3.3-1.9,3.6c0.8-1-0.1-2.7-0.1-4.2c0-2.9,1.5-3.3,1.6-6c-1.4,0.5-0.9,4.3-3.6,4.2 c1.9-1.9-0.1-3.9,2.1-6.1c-1.3-0.6-2.2-1.6-2.2-2.6c0.8-0.7,1.8-0.9,2.7-1c-0.4-0.6,0.1-1.3,0.7-1.8c0.2,0.2,0.5,0.8,0.8,0.6 c0.5-0.4,2.4-1.5,4-2.2c1.6-0.6,3.7-1.2,4.4-1.3c0.4-0.1,0.2-0.6,0.2-1c0.8-0.1,1.7,0,1.8,0.8C30.7,12.8,31.6,12.5,32.5,12.4z M79.2,3.4c0.1-0.1,0.3,0,0.6,0.3l11.4,11.2c0.3-0.8,0.5-1.7,0.2-2.7c1.4,0.7,2.6,2,2.8,3.3c3.5-0.1,4.4,2.1,5.5,1.4 c0.2,0.5-0.4,1.1-1.4,1.3c4,1,3,4,5.3,4.3c-0.4,0.4-0.9,0.6-1.7,0.3c2.5,3.7,0,6.1,1.9,7.8c-0.7,0.2-1.8-0.4-2.5-1.6 c0.8,3.1-0.4,4.7,0.2,6c-0.9,0.2-1.5-0.5-1.8-1.7c-0.2,0.7-0.4,1.3-0.6,1.8l0.9,0.8l-0.4,0.4l0,0l-0.1,0.1c-1.5,1.6-2.2,2.4-2.6,2.8 l-0.3,0.3c0,0-0.3-0.2-0.3-0.2c-1,1.2-1.8,2.3-1.8,3.4c0,1.3,1.7,3.7,3.6,6.2c-0.1-0.3-0.1-0.5-0.1-0.8c0,0,0,0,0-0.1 c0-0.5,0.2-0.9,0.5-1.2c0.3-0.3,0.7-0.5,1.2-0.4c0.6,0,1.2,0.3,1.7,0.8c0.5,0.5,0.7,1.1,0.7,1.7c0,0,0,0,0,0.1 c0,0.5-0.2,0.9-0.5,1.2c-0.3,0.3-0.7,0.5-1.2,0.4c-0.4,0-0.9-0.2-1.3-0.5c1.3,1.8,2.6,3.4,3.2,4.7c1.2,2.6,2.4,4.2,3.9,4.2 c1.6,0,3.1-1.2,3.1-3.1c0-6.6-8.7-7.3-8.7-14.8c0-3.5,3-5.2,4.8-5.2c1.2,0,2,0.3,2.7,1.1c0.2-0.1,0.4-0.1,0.7-0.1 c4.1,0,1.5,5.5,4.7,5.9c-1.4,0.7-3.3-0.3-4.3-2.9l0,0l0,0.3c0.4,4.6,6.2,3.7,5.6,7.1l0,0.2c-0.1-2.5-8.5-2.2-8.7-7.4 c0-1.1,0.3-1.9,0.8-2.5c-0.4-0.3-0.8-0.4-1.3-0.4c-1.5,0-3.6,1.6-3.6,4c0,3.2,2.1,5,4.2,6.9l0.5,0.4c2,1.8,4,3.8,4,7.2 c0,1.5-0.6,2.8-1.6,3.7c0.7,0.1,1.8-0.3,2.3-0.9c-0.7,2.8-3.6,2.8-4.5,1.7c-0.1,0-0.3,0-0.4,0c-0.2,0-0.5,0-0.7-0.1 c0.6,1.1,1.4,2.2,2.7,2.1c-2.5,2-5.6-0.7-5.2-3.5c-0.8-0.8-1.3-1.9-1.6-2.7c-0.3-0.6-0.7-0.3-0.7,0.4c0.1,2.2-1.7,4.4-1.7,6 c0,1.6,1.7,3.2,2.2,3.2c0.6,0,1-0.6,1.4-0.5c0.3,0.2,0.3,0.6,0.3,1.4l0,0.4c-0.1,0.8,0.1,2.7,0.2,4.8c0.2-0.5,0.5-1.1,1.1-1.4 c0.6-0.4,1.2-0.5,1.8-0.4c0.5,0.1,0.8,0.3,1.1,0.7c0.2,0.3,0.3,0.6,0.3,0.9c0,0.1,0,0.2,0,0.4c-0.1,0.6-0.5,1.2-1.1,1.5 c-0.5,0.3-1.1,0.5-1.6,0.4c-0.6,0-1-0.3-1.3-0.7c0-0.1-0.1-0.2-0.1-0.2c0,0.6,0.1,1.3,0.1,1.8c0,1.5-0.4,2.2-1,2.5 c0-0.2-0.5-0.7-1.1-0.7c-0.4,0-0.8,0.3-0.8,0.7c0,0.7,0.8,0.6,0.8,1.6c0,1-2.4,2.4-3.8,2.1c0.2-0.5,0.5-2.2,1-3.3 c-0.4,0.3-0.9,1-1.2,2c-0.4,1.3-1,1.2-1.5,0.9c0.5-0.5,1.6-3.1,2.8-3.9c1.2-0.8,1.7-1.1,2-3.1c0.3-1.9,0-3.1-0.1-4.8 c-0.1-2.3-1-1.8-1.7-1.8c-1.5,0-7.3-3.7-7.3-7.5c0-0.4,0-0.8,0.1-1.2c-2.6-0.1-4.1,0.7-4.1,3.1c0,0.8,0.1,1.6,0.7,2.1 c0.5,0.5,0.8,0.9-0.1,1.3c-0.5,0.2-2.4,1-4.4,1.8l-0.5,0.2c-2.1,0.9-4.1,1.7-4.1,1.7c-1,0.4-1.2,0-1.6-0.5c-0.4-0.5-0.9-0.7-1.4-0.4 c-0.5,0.4,0.4,0.7,0.4,1.3c0,0.6-0.2,1.9-3.9,1.7l0.9-1.5c0.2-0.5,0.4-0.8,0.2-0.9c-0.2,0-0.3,0.2-0.5,0.5L73,69l-0.1,0.1l-1.1,1.4 c-0.5,0-1-0.1-1.1-0.1l0,0c1.4-1.4,2.2-2.1,2.9-2.9c0.8-0.8,1.7-1.1,3.3-1.4c1.9-0.3,8.2-1.1,8.2-3.2c0-2.3-2.6-2.2-2.6-5.3 c0-2.7,1.2-5.7,8.6-5.5c-0.6-1.8-2.5-3.1-4.3-3.5c-3.7-0.9-4.8-3.5-5.1-6.2c-1-0.1-2.1-0.1-2.9-0.2c-2.3-0.1-3.5-0.8-4-0.4 c-0.2,0.2-0.4,0.5-0.1,1.1c0.3,0.6,1.1,1.9,1.7,2.9c0.5,0.1,1.2,0.1,1.3,0.7c0.1,0.6-0.4,0.7-0.5,1c-0.1,0.3,0.1,0.5,0.4,0.5 c0.3,0,0.5-0.3,0.4-0.5c0.3-0.2,1.1-0.2,1.9,0c0.6,0.6,1.5,1.7,1.8,2.7c-0.9-0.4-2.2-0.8-2.6-0.8c-0.5,0-0.4,0.2,0,0.3 c0.4,0.1,1.4,0.5,1.7,0.8l-0.1,1c-0.2-0.2-2-1.3-3.1-1.7c-1.1-0.4-1.7-0.6-2.3-2c-0.6-1.3-2.2-4.3-2.9-5.5c-0.5-0.8-0.3-1.1-0.1-1.4 c0.2-0.3,0.4-0.6,0.6-0.8c0.4-0.7,0.6-0.5,1.2-0.5c0.7,0.1,2.1,0.1,2.8-0.2c0.1-0.1,0.3-0.1,0.5-0.2c-1.5-1.7-3.4-4.1-3.6-4.4 c-0.3-0.4-0.7-0.6-1-0.6s-0.6,0-0.8,0.2c-0.2,0.1-0.4,0.3-0.7,0.6c-0.1-0.1-0.2-0.2-0.3-0.3c-0.3-0.4-0.7-0.7-1-1.1 c0.7-0.6,1.4-1.1,1.7-1.3c0.4-0.3,0.6-0.6,0.9-0.6c0.3,0,0.8,0,1,0c0.5,0,0.7,0.1,1,0.4c0.6,0.6,1.5,1.3,2.2,1.9 c0.1,0.1,0.2,0.1,0.2,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.2,1,0.5c0.4,0.4,0.6,1,0.5,1.6 c0,0.2-0.1,0.4-0.1,0.6c0.6,0.5,1.1,1,1.6,1.5c0.2-2.1,1.3-4.1,2.7-5.9L84,32.1c0,0,0.1-0.4,0.1-0.4c0.3-0.9,0.8-2.6,1-3.3 c0.1-0.3,0.1-0.4,0.1-0.4l0.2-0.5l2.3,0.9c0.1-0.1,0.1-0.1,0.2-0.2c2-1.9,6.8-3.2,6.8-5.9c0-0.7-0.2-1.5-0.9-2.1 c0.3,0.4,0.4,1,0.3,1.6C94,22.4,92.9,24,91,24c-1,0-1.8-1-2.2-1c-0.2,0-0.5,0.2-0.8,0.4c0.1,1.4-0.5,2.2-1.1,2.3 c0.2-0.6,0-1.6-0.1-1.5c-0.2,0.1-0.4,0.3-0.4,1.1c0,0.8-0.7,1.9-1.8,2c0.2-0.3,0.6-1.7,0.3-1.9c-0.2-0.2-0.6,0.4-0.9,0.4 s-0.5-0.3-0.6-0.6c0-0.3-0.6,0-0.7-0.3c-0.1-0.3,0.7-0.8,1.4-1.1c0.7-0.3,1.8-0.8,1.6-1.1c-0.3-0.7-2.4,0.4-3.3,1 c-1.4,0.8-0.8-0.3-1-0.8c-0.5-1.2-0.1-1.4,0.5-1.9c0.8-0.7,2.4-1.8,4.2-2.7c0-0.6,0.4-1.1,0.8-1.3c0.8-0.3,1.5-0.6,2.2-0.8L79.4,4 C79.2,3.7,79.1,3.5,79.2,3.4z M30,75.5l-2.6,1.7l2.5,4l2.7-1.7l-0.7-1.1l-1.6,1c-0.1-0.1-0.2-0.3-0.3-0.4l1.5-1L30.9,77l-1.5,1 c-0.1-0.1-0.2-0.3-0.2-0.4l1.5-1L30,75.5z M85.5,77.7c-0.6-0.3-1.3-0.5-1.9-0.3c-0.7,0.1-1.2,0.5-1.5,1.1c-0.4,0.6-0.4,1.2-0.3,1.8 c0.2,0.6,0.6,1.1,1.2,1.5c0.6,0.4,1.3,0.5,1.9,0.3c0.7-0.1,1.2-0.5,1.6-1.1c0.2-0.4,0.4-0.8,0.4-1.2c0-0.2,0-0.4-0.1-0.6 C86.5,78.6,86.1,78.1,85.5,77.7z M25.9,78.2L24.8,79l2.5,4l1.1-0.7L25.9,78.2z M21.9,82.2c0.6-0.3,1.2-0.5,1.7,0.3 c0.3,0.4,0.4,1-0.6,1.5c0,0-0.2,0.1-0.3,0.2c-0.1-0.2-1-1.7-1.1-1.8C21.8,82.3,21.9,82.2,21.9,82.2z M88.2,79.5l-2.5,4.1l1.2,0.7 l2.5-4.1L88.2,79.5z M56.1,76.9c-0.9,0.7-1.7,1.5-1.7,2.4c0,0.9,1.1,1.5,1.1,2.1c0,0.3-0.2,0.5-0.6,0.5c-0.8,0-0.4-2.2-2-2.2 c-0.9,0-1.4,0.8-1.4,1.4c0,0.3,0.1,0.8,0.4,1.2c0.2-0.4,0.5-0.6,0.8-0.6c1.2,0,0.7,3.2,2.2,3.2c0.6,0,1-0.4,1-0.9 c0-0.4-0.3-0.6-0.3-0.9c0-0.4,0.3-0.5,0.6-0.5c0.3,0,0.6,0.1,0.6,0.5c0,0.4-0.3,0.5-0.3,0.9c0,0.5,0.3,0.9,1,0.9 c1.4,0,1-3.2,2.2-3.2c0.3,0,0.6,0.2,0.8,0.6c0.2-0.5,0.4-0.9,0.4-1.2c0-0.6-0.4-1.4-1.4-1.4c-1.6,0-1.2,2.2-2,2.2 c-0.3,0-0.6-0.2-0.6-0.5c0-0.6,1.1-1.2,1.1-2.1C57.8,78.4,57,77.6,56.1,76.9z M70.8,77.8c-1.7,0.3-4,1.1-4,2.6 c0,1.8,5.8,2.5,5.2,4.9c1.8-0.9,2.9-2.1,2.9-3.2c0-1.1-1-1.9-2-2.6l-0.4-0.3C71.9,78.7,71.2,78.3,70.8,77.8z M41.3,77.8 c-0.4,0.5-1,1-1.7,1.5l-0.4,0.3c-1,0.8-2,1.6-2,2.6c0,1.1,1,2.3,2.9,3.2c-0.5-2.4,5.3-3.2,5.3-4.9C45.4,78.9,43.1,78.1,41.3,77.8z M89.8,80.5l-0.6,1.1c0.3,0.2,0.8,0.5,1.2,0.7c-0.5,0.7-1.8,2.9-1.8,2.9l1.2,0.5c0,0,0,0,0-0.1l0.1-0.2c0.2-0.4,0.6-1,0.9-1.5 l0.2-0.4c0.2-0.2,0.3-0.5,0.4-0.6c0.5,0.2,1.1,0.5,1.4,0.7l0.6-1.1C92.8,82.2,90.8,81.2,89.8,80.5z M22.7,80.7 c-0.4,0-0.9,0.1-1.4,0.4l-1.5,0.8l2.4,4l1.4-0.8c1.7-0.9,1.7-2.3,1.1-3.3c-0.2-0.4-0.5-0.7-0.9-0.9C23.5,80.8,23.1,80.7,22.7,80.7z M56.1,85.3c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C56.9,85.6,56.5,85.3,56.1,85.3z M53.5,74.9 c1.8,0.5,3.6,0.8,5.2,0.8v3.4c0.2-0.1,0.4-0.1,0.6-0.1c1.2,0,2,1,2,2c0,0.9-0.5,1.8-1,2.3c-0.3-0.6-0.5-1-0.8-1 c-0.6,0-0.3,3.1-2.1,3.2c0.1,0.2,0.1,0.3,0.1,0.5c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4c0-0.2,0-0.3,0.1-0.5 c-1.8-0.1-1.5-3.2-2.1-3.2c-0.3,0-0.5,0.4-0.7,1c-0.5-0.5-1-1.4-1-2.3c0-1,0.8-2,2-2c0.2,0,0.4,0,0.6,0.1V74.9z M61.4,90.3 c0.4,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.4,0-0.7-0.1-0.9-0.3 c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.9C60.7,90.4,61,90.3,61.4,90.3z M42.9,87.5l0.3,4.9c0.8,0.3,2,0.7,3.1,1l-0.1-1.3 c-0.6-0.1-1.3-0.3-1.8-0.5c0-0.1,0-0.5,0-0.5c0.3,0.1,1.6,0.4,1.6,0.4l0-1.3l-0.1,0c-0.3-0.1-1.4-0.4-1.6-0.4c0-0.1,0-0.4,0-0.4 c0.6,0.2,1.4,0.3,1.8,0.4l0-1.3C45.2,88.1,43.6,87.7,42.9,87.5z M69.3,87.5l-1.3,0.4c0,0-0.1,2.1-0.1,2.6l-2.1-2.1l-1,0.2l-0.3,5.1 l1.3-0.3c0,0,0-0.6,0.1-1.2l0-0.3c0-0.5,0.1-0.9,0.1-1.1c0.4,0.4,2,2.1,2,2.1l1-0.4L69.3,87.5z M46.5,88.3v1.3 c0.4,0.1,1,0.2,1.4,0.2v3.7l1.4,0.2v-3.7c0.4,0,1,0.1,1.4,0.2v-1.3C49.3,88.8,47.7,88.5,46.5,88.3z M61.6,88.9l-0.2,0 c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.1-0.8,1.8c0,0.7,0.3,1.3,0.8,1.8c0.5,0.5,1.1,0.7,1.9,0.7c0.8,0,1.4-0.3,1.9-0.8 c0.5-0.5,0.8-1.1,0.8-1.8c0-0.7-0.3-1.3-0.8-1.8c-0.5-0.5-1.2-0.7-1.9-0.7L61.6,88.9z M53.3,89.1V94l1.4,0v-2.6 c0.3,0.4,1.1,1.4,1.1,1.4s0.8-1,1.1-1.4v2.6l1.4,0v-4.9l-1.2,0c0,0-1.1,1.4-1.3,1.7c-0.2-0.2-1.4-1.7-1.4-1.7L53.3,89.1z M74.5,71.7 c3.2,0,7,2.5,10.9,5.1l0.8,0.5c4.9,3.3,9.9,6.5,14.1,5.3c-3.1,1.4-5.3,4.5-7.7,4.5c-3.1,0-6.4-2.3-9.8-4.6l-0.9-0.6 c-3.3-2.2-6.6-4.3-9.8-4.3c-0.1,0-0.2,0-0.3,0c1.6,2,3.8,2.4,3.8,4.4c0,1.4-1.2,2.2-2,4.1c-0.5,1.2-0.6,2-1.1,3.7 c-0.4,1.5-1.4,5.2-16.5,5.2c-13.6,0-15.8-3-16.3-4.7l0-0.1c0-0.1-0.1-0.3-0.1-0.4c-0.4-1.7-0.5-2.5-1.1-3.7c-0.8-1.9-2-2.7-2-4.1 c0-2,2.2-2.4,3.8-4.4c-0.1,0-0.2,0-0.3,0c-3.3,0-6.8,2.3-10.2,4.6l-0.9,0.6c-3.2,2.2-6.4,4.3-9.3,4.3c-2.5,0-4.6-3.1-7.7-4.5 c4.1,1.2,8.9-1.8,13.7-5l0.8-0.5c4.1-2.7,8.1-5.4,11.3-5.4c2,0,4.4,0.8,5.6,3.6c0.5,1.1,1,2,1.4,2.7l0.2,0.4c0.6,0.9,1,1.6,1,2.3 c0,1.2-1.1,2.1-2.8,3c-1.1,0.6-2.3,0.9-2.3,2c3.3,1.5,8.8,2.6,15.4,2.6c6.5,0,12-1.1,15.4-2.6c0.1-1.1-1.1-1.4-2.3-2 c-1.8-0.9-2.8-1.8-2.8-3c0-1.3,1.4-2.3,2.6-5.3C70.1,72.5,72.5,71.7,74.5,71.7z M61.7,40c0,0.1,0,0.2,0.2,0.2c0.1,0,0.2,0.1,0.2,0.2 c0.1,0,0.2,0,0.3,0c0.1,0.3,0,0.5,0,0.5c0.3,0.2,0.9,1.2,0.5,1.6c-0.1,0.5-0.3,1.1,0.2,1.7c0.3,0.3,0.6,0.9,1.1,1.3 c0,0,0.1,0.1,0.1,0.1c0.2,0.2,0.5,0.3,0.7,0.3c0.2,0,0.3-0.1,0.3-0.2c0-0.5-1-1-1.5-1.5c-0.6-0.6-0.5-1.4-0.3-1.8 c0.1,0.2,0.1,0.4,0.1,0.5c0.4,0.6,0.3,0.9,0.5,1.2c0.1,0.1,0.3,0.3,0.5,0.5c0.5,0.4,0.9,0.6,0.9,1.1c0,0.5-0.6,0.7-1.1,0.3 c-0.1-0.1-0.3-0.2-0.4-0.3c0,0,0,0,0,0c0,0.9,1.2,1.1,1.3,0.9c0.2-0.2,0.3-0.2,0.5,0.1c0.2,0.3,0,0.2-0.2,0.3c0.1,0,0.2,0.1,0.4,0 c-0.1,0.1-0.2,0.3-0.4,0.4v0c0,0,0.2,0.1,0.3,0.1c0,0.1-0.1,0.2-0.3,0.3c0,0,0,0,0,0c0,0.3-0.3,0.2-0.3,0.3c0,0.1,0.2,0.1,0.2,0.4 c0,0-0.1,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2-0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.1,0.3-0.2,0.3c0,0-0.1,0-0.1,0c-0.1,0.1,0,0.2,0,0.2c-0.1,0-0.2-0.1-0.2-0.2c0,0-0.1,0-0.1,0c-0.2-0.1,0-0.2,0.1-0.3 c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.2-0.1 c0.1,0,0.4,0.1,0.4,0c0.1-0.1,0-0.3,0-0.5c0-0.1,0-0.1-0.1-0.1c-0.1-0.1-0.3,0.4-0.7,0.2c-0.7-0.2-1.1-1-1.1-1.3 c-0.4-0.1-1,0.2-0.9,0.6c0.1,0.3,0.1,0.2,0.2,0.5c0,0.1,0.1,0.1-0.1,0.3c-0.1,0.1-0.4,0-0.4,0l-0.2,0.2c-0.3-0.2-0.4-0.1-0.3,0 c0,0-0.1-0.1-0.1-0.1c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0.1c0,0-0.1,0-0.1,0c0,0.1,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.2,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.4,0.4,0.6,0.3c0,0,0,0,0,0c0.3-0.1,0.4,0,0.8,0c-0.3-0.2-0.6-0.7-0.5-1c0.1-0.3,0.6-0.6,0.9-0.7 c0.2,0,0.6,0,1,0.2c-0.3-0.5-1.5-0.5-1.5-1.4c-0.1,0.1-0.2,0.3-0.2,0.4c-0.1-0.1-0.2-0.1-0.4-0.1c-0.2,0.1-0.4,0.2-0.3,0.3 c-0.2-0.1-0.3,0-0.6,0.1c0,0.1,0,0.2-0.1,0.2c-0.2,0.1-0.3-0.1-0.3-0.1c0,0,0,0,0,0c-0.1,0.1,0.1,0.2,0,0.3c0,0,0,0-0.1,0 c0,0.1,0.1,0.2,0.2,0.2c-0.1,0-0.3,0-0.4-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.2,0-0.1-0.2,0-0.4c0,0,0,0,0,0 c-0.2,0.3-0.3,0.2-0.4,0.1c0,0,0,0-0.1-0.1c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1-0.1,0-0.3,0.1-0.4c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1 c0.1-0.1,0.2,0,0.3,0c0.1,0,0.1,0,0.2-0.1c0,0,0,0,0,0c-0.3,0-0.4-0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1-0.1-0.2,0-0.2,0 c0-0.1,0.2-0.2,0.3-0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0.1,0.4-0.1,0.6-0.2 c0.2-0.2,0.4-0.5,0.7-0.7c-0.6-0.3-0.9-0.9-1-1.1c0-0.1-0.1-0.2-0.1-0.2c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0 c0,0-0.1,0-0.1,0.1c0,0,0-0.2,0-0.3c-0.3,0.1-0.6-0.1-0.4-0.4c0,0.2,0.3,0.3,0.4,0.2c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0 c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.2-0.1-0.1-0.2-0.1-0.3 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.1-0.1c0.2-0.2,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1 c0,0,0,0,0,0c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.2 c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4c0.2,0.1,0.3,0.2,0.4,0.4c0.2,0.2,0.4,0.4,0.4,0.5c0.1,0.1,0.2,0.2,0.3,0.3 c0.1-0.6,0.7-0.6,0.7-1.1c0-0.2-0.4-0.2-0.6-0.1c-0.2,0.1-0.4,0-0.4-0.1c0-0.1,0-0.2,0.1-0.2c0.2,0,0.2,0,0.4,0 c0.2,0,0.1-0.1,0.1-0.2c0-0.2-0.3-0.2-0.4-0.1l-0.1,0.2l-0.2-0.2c0,0,0,0-0.1,0c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.3,0.2-0.2 c0.2,0,0.2,0,0.4-0.1c0.1-0.1,0.1-0.1,0.3-0.1C61.5,40.2,61.6,40.1,61.7,40z M58.7,37.9c0.1,0.1,0.1,0.3,0.1,0.5 c-0.2,0-0.3-0.1-0.4-0.2v4c0.2,0,0.4,0.1,0.4,0.2c0,0.1,0,0.3-0.2,0.5c0.2,0,0.4,0.1,0.6,0.3c-0.2,0.2-0.4,0.3-0.6,0.3 c0.2,0.2,0.2,0.3,0.2,0.5c0,0.1-0.2,0.2-0.4,0.2v4.7c0.1-0.1,0.3-0.2,0.5-0.2c0,0.2-0.1,0.4-0.2,0.5h2.9c0-0.2,0.1-0.3,0.2-0.4 c0.1-0.1,0.3,0,0.5,0.2c0-0.2,0.1-0.4,0.3-0.6c0.2,0.2,0.3,0.4,0.3,0.6c0.2-0.2,0.3-0.2,0.5-0.2c0.1,0,0.2,0.2,0.2,0.4h3.4 c-0.1-0.1-0.2-0.3-0.2-0.5c0.2,0,0.3,0,0.5,0.1c-0.3-2-1-3.9-2-5.6c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.2-0.2-0.2-0.5 c-0.2,0.1-0.4,0.2-0.6,0.1c0-0.3,0.2-0.4,0.3-0.6c-0.2,0-0.4-0.1-0.4-0.3c0-0.1,0-0.2,0.1-0.3C62.6,39.9,60.7,38.6,58.7,37.9z M58,37.4l0.2,0.1c1.2,0.3,2.3,0.8,3.3,1.5c1.1,0.7,2,1.6,2.9,2.7c1.7,2.2,2.8,4.9,3.1,7.7l0,0.2H58V37.4z M57.8,37.2v12.6h10 c-0.2-3-1.4-5.9-3.2-8.2C62.8,39.2,60.4,37.7,57.8,37.2z M58.2,36.6c0.2-0.1,0.5,0.1,0.6,0.5c2.3,0.7,4.4,2.2,6.1,4.3 c0.1,0.1,0.2,0.2,0.3,0.4c0.2-0.1,0.4-0.2,0.7-0.2c-0.1,0.3-0.2,0.5-0.4,0.6c1.4,2,2.3,4.3,2.6,6.7c0.4,0,0.5,0.4,0.4,0.6 c-0.1,0.1-0.2,0.2-0.3,0.2c0,0.1,0,0.1,0,0.1c0.1,0.1,0.1,0.3,0.1,0.5c-0.2,0-0.4-0.1-0.5-0.2h-0.1c0,0.2-0.1,0.3-0.2,0.4 c-0.2,0.1-0.5,0-0.6-0.4h-4c0,0.2-0.1,0.4-0.3,0.6c-0.2-0.2-0.3-0.4-0.3-0.6h-3.5c-0.1,0.3-0.4,0.4-0.6,0.3 c-0.1-0.1-0.2-0.2-0.2-0.3h-0.1c-0.1,0.1-0.3,0.1-0.5,0.1c0-0.2,0.1-0.4,0.1-0.5v-0.1c-0.2,0-0.3-0.1-0.4-0.2 c-0.1-0.2,0-0.5,0.4-0.6v-5.3c-0.2,0-0.4-0.1-0.6-0.3c0.2-0.2,0.4-0.3,0.6-0.3v-4.9c-0.3-0.1-0.4-0.4-0.3-0.6 c0.1-0.1,0.2-0.2,0.3-0.2v0c-0.1-0.2-0.2-0.4-0.2-0.6c0.2,0,0.4,0.1,0.5,0.2c0,0,0.1,0,0.1,0C58,36.7,58.1,36.6,58.2,36.6z">
                  </path>
                </svg></div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/70.0.4/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1713369147306"></script>
  </body>

</html>

Help improve this page

Let us know how we could improve this page, or share your user research findings. Discuss the ‘Guide’ pattern on GitHub (opens in a new tab)