Hsyndicate API Reference

This API reference is organized by resource type. Each resource type has one or more data representations and one or more methods.

Authentication

The Hsyndicate API works with standard HTTP basic authentication headers to authenticate users.
Since the Hsyndicate API is stateless, this header must be sent with every request.
All API requests must be made over HTTPS.

Authentication Error

Requests without a valid authentication headers will return an error.


          {
            "error":  "AuthenticationException[Missing authentication token]",
            "status": 401
          }
          

Permissions

Hsyndicate offers a range of databases. By default the API has access to the News database.
Contact your Hsyndicate representative to request access to additional databases.

  • Appointments (coming soon)
  • Blogs - External blogs and news sites
  • Brands (coming soon)
  • Events (coming soon)
  • Hotel Announcements (coming soon)
  • News - Hsyndicate news
  • Photos (coming soon)
  • Product Features (coming soon)

Permissions Error

Requesting documents from a database without the correct permissions will return an error.


          {
            "error": {
              "root_cause": [
                {
                  "type": "security_exception",
                  "reason": "action is unauthorized for user [your_username]"
                }
              ]
            },
            "status": 403
          }
          

List API

The List API allows you to get a chronologically sorted JSON document from all databases your account has access to.
The following call returns a JSON document containing the latest 10 documents in all databases your account has access to:
https://api.hsyndicate.org/v1/list

To limit the list results to documents from a specific database only add the database name to the call:
https://api.hsyndicate.org/v1/list/news

Arguments

q Optional query string, see filtering for more details.
from Optional, starting from index of the hits to return, see pagination for more details.
size Optional, number of results to return, see size for more details.
sort Optional, sort results, see sorting for more details.

Sample Response


          {  
             "hits":{  
                "total":940,
                "hits":[  
                   {  
                      "_type":"news",
                      "_id":"4089307",
                      "_source":{
                         "type":"opinion",
                         "published":"2018-07-18T00:53:03",
                         "name":"New York ADR Dilemma",
                         "summary":"Like most every other role at a hotel, being an owner or investor has never been easy...",
                         "organization":{  
                            "name":"Hotel Mogel Consulting Limited",
                            "id":17015152
                         },
                         "graphic":{  
                            "picture":"153038605.jpg",
                            "width":"290",
                            "height":"385",
                            "updated":"20160712135916"
                         },
                         "photo":[  
                            {  
                               "name":"New York ADR Dilemma",
                               "picture":"153091280.jpg",
                               "width":"1568",
                               "height":"1120",
                               "updated":"20180718005227"
                            }
                         ],
                         "focus":[  
                            {  
                               "name":"Revenue Management",
                               "id":147000329
                            },
                            {  
                               "name":"Markets & Performance",
                               "id":147000409
                            }
                         ],
                         "location":{  
                            "name":"New York, New York, United States",
                            "city":"New York",
                            "state":[  
                               158000354
                            ],
                            "country":[  
                               157000547
                            ],
                            "region":[  
                               150000320
                            ]
                         }
                      }
                   }
                ]
             }
          }
          

Sample Output

Using the available fields the following output can be produced.

New York ADR Dilemma

18 July 2018 - Like most every other role at a hotel, being an owner or investor has never been easy. This is perhaps nowhere more evident than in New York City where exorbitant construction costs mixed with steadily increasing wage rates, maintenance and depreciation can make the break-even point higher than practically any other locale on the continent. Thank goodness this is reflected in the average daily rates.

Opinion Hotel Mogel Consulting Limited Revenue Management Markets & Performance New York, New York, United States

powered by

Search API

The Search API allows you to search all documents your account has access to. By default the search results are sorted by relevance (score), recent documents are boosted in order to prevent older documents to appear in the top results.
https://api.hsyndicate.org/v1/search?q=F%26B

To limit the search results to documents from a specific database only add the database name to the call:
https://api.hsyndicate.org/v1/search/news?q=F%26B

Arguments

q Required query string (URL encoded)
from Optional, starting from index of the hits to return, see pagination for more details.
sort Optional, sort results, see sorting for more details.

Sample Response

The search API returns a JSON document almost identical to the list API. The only difference is the conditional highlight element. If either the name or summary/text element contain the query, an element will be available in the highlight element. You can use this to show your users where the query matches.
https://api.hsyndicate.org/v1/list


          {  
             "hits":{  
                "total":940,
                "hits":[  
                   {  
                      "_type":"news",
                      "_id":"4089307",
                      "_source":{
                         "type":"opinion",
                         "published":"2018-07-18T00:53:03",
                         "name":"New York Hotel ADR Dilemma",
                         "summary":"Like most every other role at a hotel, being an owner or investor has never been easy...",
                         "organization":{  
                            "name":"Hotel Mogel Consulting Limited",
                            "id":17015152
                         },
                         "graphic":{  
                            "picture":"153038605.jpg",
                            "width":"290",
                            "height":"385",
                            "updated":"20160712135916"
                         },
                         "photo":[  
                            {  
                               "name":"New York ADR Dilemma",
                               "picture":"153091280.jpg",
                               "width":"1568",
                               "height":"1120",
                               "updated":"20180718005227"
                            }
                         ],
                         "focus":[  
                            {  
                               "name":"Revenue Management",
                               "id":147000329
                            },
                            {  
                               "name":"Markets & Performance",
                               "id":147000409
                            }
                         ],
                         "location":{  
                            "name":"New York, New York, United States",
                            "city":"New York",
                            "state":[  
                               158000354
                            ],
                            "country":[  
                               157000547
                            ],
                            "region":[  
                               150000320
                            ]
                         }
                      },
                      "highlight": {
                        "name": ["New York Hotel ADR Dilemma"],
                        "text": ["Like most every other role at a hotel, being an owner or investor has never been easy..."]
                      }
                   }
                ]
             }
          }
          

Sample Output

Using the available fields the following output can be produced.
The highlight elements are used to highlight the search query hotel in the output.

New York Hotel ADR Dilemma

18 July 2018 - Like most every other role at a hotel, being an owner or investor has never been easy. This is perhaps nowhere more evident than in New York City where exorbitant construction costs mixed with steadily increasing wage rates, maintenance and depreciation can make the break-even point higher than practically any other locale on the continent. Thank goodness this is reflected in the average daily rates.

Opinion Hotel Mogel Consulting Limited Revenue Management Markets & Performance New York, New York, United States

powered by

Usage

Before you continue

It is important to understand the news vs blog concept Hsyndicate is using:
The news database contains all news available in the Hsyndicate database. Every news document has a type attribute allowing you to filter news.
The blog database is exactly the same as the news database, however this database contains documents from external sources only, the types are the same.
This example returns a list of all documents with all opinion articles in both, the Hsyndicate news database and all external news sources: https://api.hsyndicate.org/v1/list?q=%22Marriott%22+AND+type:%22opinion%22

Caching

We try to keep the performance of our API as high as possible. Our goal is to, depending on the number of filters, keep the response time between 30ms and 300ms. You can improve the API performance by caching the API responses. If you choose to cache the responses we suggest to set the cache lifetime anywhere between 5 and 15 minutes.

Images

Every document contains a graphic and optionally one or more photos. In general the graphic contains a company logo, the only exception are documents in the News database with the opinion type. For those documents the graphic contains a headshot.
Both can be used in the output. Images are available through the Hsyndicate Picture CDN, located at https://cdn.hsyndicate.org/picture/
https://cdn.hsyndicate.org/picture/153038605.jpg

A range of resized images is available for graphics and photos.
Each graphic and photo element contains an updated field. This field can be appended to the image source for cache-busting purposes.

Graphics (logo)
https://cdn.hsyndicate.org/picture/s_153025614.jpg  48 x 48 px
https://cdn.hsyndicate.org/picture/sl_153025614.jpg 96 x 96 px
https://cdn.hsyndicate.org/picture/d_153025614.jpg  140 x 60 px (preferred)

Graphics (Headshot)
https://cdn.hsyndicate.org/picture/h_153038605.jpg  102 x 147px

Photos
https://cdn.hsyndicate.org/picture/o_153092009.jpg   205 x px
https://cdn.hsyndicate.org/picture/p_153092009.jpg   340 x 235 px
https://cdn.hsyndicate.org/picture/f_153092009.jpg   476 x 310 px
https://cdn.hsyndicate.org/picture/l_153092009.jpg   465 x px
https://cdn.hsyndicate.org/picture/xl_153092009.jpg  780 x 520 px

Credits

powered by
Please credit any content from the Hsyndicate API using the code below.
This code will generate a powered by Hospitality Net tag as shown here.


<style>
  #hn-powered {text-align: center; position: relative;}
  #hn-powered div {text-align: center; font-size: 9px; position: absolute; width: 100%; top: -10px;}
  #hn-powered svg {margin-left: auto; margin-right: auto;}
</style>

<div id="hn-powered">
  <div>powered by</div>
  <a href="https://www.hospitalitynet.org" target="_blank">
    <svg id="hn" version="1.1" width="120" height="auto" viewBox="0 0 400 91" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: block;">
      <g id="hnlogo">
        <path id="path0" d="M103.111 28.111 C 103.050 28.172,103.000 35.935,103.000 45.361 L 103.000 62.500 106.417 62.500 L 109.833 62.500 109.833 54.250 C 109.833 48.861,109.891 46.000,110.000 46.000 C 110.092 46.000,110.167 45.775,110.167 45.500 C 110.167 45.225,110.242 45.000,110.333 45.000 C 110.425 45.000,110.500 44.829,110.500 44.620 C 110.500 44.411,110.650 44.132,110.833 44.000 C 111.017 43.868,111.167 43.658,111.167 43.535 C 111.167 43.245,111.578 42.833,111.868 42.833 C 111.992 42.833,112.201 42.683,112.333 42.500 C 112.474 42.304,112.765 42.167,113.037 42.167 C 113.292 42.167,113.500 42.092,113.500 42.000 C 113.500 41.906,113.972 41.833,114.583 41.833 C 115.194 41.833,115.667 41.906,115.667 42.000 C 115.667 42.092,115.875 42.167,116.130 42.167 C 116.402 42.167,116.692 42.304,116.833 42.500 C 116.965 42.683,117.175 42.833,117.299 42.833 C 117.423 42.833,117.631 42.940,117.762 43.071 C 117.893 43.202,118.000 43.411,118.000 43.535 C 118.000 43.658,118.150 43.868,118.333 44.000 C 118.517 44.132,118.667 44.374,118.667 44.537 C 118.667 44.700,118.742 44.833,118.833 44.833 C 118.925 44.833,119.000 45.096,119.000 45.417 C 119.000 45.737,119.075 46.000,119.167 46.000 C 119.276 46.000,119.333 48.861,119.333 54.250 L 119.333 62.500 122.667 62.500 L 126.000 62.500 126.000 53.167 C 126.000 47.056,125.942 43.833,125.833 43.833 C 125.742 43.833,125.667 43.533,125.667 43.167 C 125.667 42.800,125.592 42.500,125.500 42.500 C 125.408 42.500,125.333 42.275,125.333 42.000 C 125.333 41.725,125.258 41.500,125.167 41.500 C 125.075 41.500,125.000 41.380,125.000 41.234 C 125.000 40.478,122.740 37.667,122.133 37.667 C 122.009 37.667,121.799 37.517,121.667 37.333 C 121.535 37.150,121.293 37.000,121.130 37.000 C 120.967 37.000,120.833 36.925,120.833 36.833 C 120.833 36.742,120.683 36.667,120.500 36.667 C 120.317 36.667,120.167 36.592,120.167 36.500 C 120.167 36.408,119.984 36.333,119.760 36.333 C 119.536 36.333,119.307 36.258,119.250 36.167 C 119.193 36.075,118.968 36.000,118.750 36.000 C 118.532 36.000,118.307 35.925,118.250 35.833 C 118.189 35.735,117.193 35.667,115.823 35.667 C 114.386 35.667,113.500 35.730,113.500 35.833 C 113.500 35.925,113.275 36.000,113.000 36.000 C 112.725 36.000,112.500 36.075,112.500 36.167 C 112.500 36.258,112.275 36.333,112.000 36.333 C 111.725 36.333,111.500 36.408,111.500 36.500 C 111.500 36.592,111.367 36.667,111.203 36.667 C 111.040 36.667,110.799 36.817,110.667 37.000 C 109.911 38.049,109.833 37.645,109.833 32.667 L 109.833 28.000 106.528 28.000 C 104.710 28.000,103.172 28.050,103.111 28.111 M207.000 31.149 C 207.000 34.898,206.575 34.500,210.579 34.500 C 214.203 34.500,213.833 34.869,213.833 31.250 C 213.833 27.620,214.245 28.000,210.316 28.000 L 207.000 28.000 207.000 31.149 M219.601 28.264 C 219.546 28.409,219.500 30.284,219.500 32.430 L 219.500 36.333 218.083 36.333 L 216.667 36.333 216.667 39.417 L 216.667 42.500 218.082 42.500 L 219.497 42.500 219.540 52.458 L 219.583 62.417 222.958 62.462 L 226.333 62.507 226.333 52.503 L 226.333 42.500 228.170 42.500 L 230.008 42.500 229.962 39.458 L 229.917 36.417 228.125 36.369 L 226.333 36.322 226.333 32.161 L 226.333 28.000 223.018 28.000 C 220.148 28.000,219.689 28.035,219.601 28.264 M261.000 45.250 L 261.000 62.500 264.417 62.500 L 267.833 62.500 267.833 45.250 L 267.833 28.000 264.417 28.000 L 261.000 28.000 261.000 45.250 M272.038 31.208 L 272.083 34.417 275.083 34.464 C 279.289 34.531,278.833 34.931,278.833 31.163 L 278.833 28.000 275.413 28.000 L 271.993 28.000 272.038 31.208 M284.333 32.160 L 284.333 36.320 282.875 36.369 L 281.417 36.417 281.371 39.458 L 281.326 42.500 282.830 42.500 L 284.333 42.500 284.333 52.500 L 284.333 62.500 287.750 62.500 L 291.167 62.500 291.167 52.500 L 291.167 42.500 292.583 42.500 C 293.889 42.500,294.000 42.526,294.000 42.833 C 294.000 43.017,294.075 43.167,294.167 43.167 C 294.258 43.167,294.333 43.317,294.333 43.500 C 294.333 43.683,294.408 43.833,294.500 43.833 C 294.592 43.833,294.667 43.968,294.667 44.133 C 294.667 44.506,295.039 45.330,295.208 45.332 C 295.277 45.333,295.333 45.558,295.333 45.833 C 295.333 46.108,295.408 46.333,295.500 46.333 C 295.592 46.333,295.667 46.483,295.667 46.667 C 295.667 46.850,295.742 47.000,295.833 47.000 C 295.925 47.000,296.000 47.225,296.000 47.500 C 296.000 47.775,296.075 48.000,296.167 48.000 C 296.258 48.000,296.333 48.150,296.333 48.333 C 296.333 48.517,296.408 48.667,296.500 48.667 C 296.592 48.667,296.667 48.892,296.667 49.167 C 296.667 49.442,296.742 49.667,296.833 49.667 C 296.925 49.667,297.002 49.798,297.005 49.958 C 297.008 50.119,297.121 50.396,297.255 50.574 C 297.390 50.751,297.500 51.066,297.500 51.272 C 297.500 51.478,297.575 51.693,297.667 51.750 C 297.758 51.807,297.833 51.999,297.833 52.177 C 297.833 52.354,297.908 52.500,298.000 52.500 C 298.092 52.500,298.167 52.725,298.167 53.000 C 298.167 53.275,298.242 53.500,298.333 53.500 C 298.425 53.500,298.500 53.650,298.500 53.833 C 298.500 54.017,298.575 54.167,298.667 54.167 C 298.758 54.167,298.833 54.314,298.833 54.495 C 298.833 54.675,298.983 55.090,299.167 55.417 C 299.350 55.743,299.500 56.158,299.500 56.338 C 299.500 56.519,299.575 56.667,299.667 56.667 C 299.758 56.667,299.833 56.817,299.833 57.000 C 299.833 57.183,299.908 57.333,300.000 57.333 C 300.092 57.333,300.167 57.558,300.167 57.833 C 300.167 58.108,300.242 58.333,300.333 58.333 C 300.425 58.333,300.500 58.483,300.500 58.667 C 300.500 58.850,300.575 59.000,300.667 59.000 C 300.758 59.000,300.833 59.300,300.833 59.667 C 300.833 60.033,300.758 60.333,300.667 60.333 C 300.575 60.333,300.500 60.552,300.500 60.819 C 300.500 61.087,300.444 61.331,300.375 61.361 C 300.167 61.453,299.500 62.842,299.500 63.182 C 299.500 63.357,299.425 63.500,299.333 63.500 C 299.242 63.500,299.167 63.650,299.167 63.833 C 299.167 64.017,299.092 64.167,299.000 64.167 C 298.908 64.167,298.833 64.317,298.833 64.500 C 298.833 64.683,298.758 64.833,298.667 64.833 C 298.575 64.833,298.500 65.058,298.500 65.333 C 298.500 65.608,298.425 65.833,298.333 65.833 C 298.242 65.833,298.167 65.983,298.167 66.167 C 298.167 66.350,298.092 66.500,298.000 66.500 C 297.908 66.500,297.833 66.646,297.833 66.823 C 297.833 67.001,297.758 67.193,297.667 67.250 C 297.575 67.307,297.500 67.480,297.499 67.635 C 297.498 67.790,297.386 68.131,297.249 68.394 C 297.112 68.657,297.000 68.975,297.000 69.102 C 297.000 69.229,296.925 69.333,296.833 69.333 C 296.742 69.333,296.667 69.558,296.667 69.833 C 296.667 70.108,296.592 70.333,296.500 70.333 C 296.408 70.333,296.333 70.483,296.333 70.667 C 296.333 70.990,296.444 71.000,300.000 71.000 C 303.556 71.000,303.667 70.990,303.667 70.667 C 303.667 70.483,303.742 70.333,303.833 70.333 C 303.925 70.333,304.000 70.108,304.000 69.833 C 304.000 69.558,304.075 69.333,304.167 69.333 C 304.258 69.333,304.333 69.183,304.333 69.000 C 304.333 68.817,304.408 68.667,304.500 68.667 C 304.592 68.667,304.667 68.517,304.667 68.333 C 304.667 68.150,304.742 68.000,304.833 68.000 C 304.925 68.000,305.000 67.775,305.000 67.500 C 305.000 67.225,305.075 67.000,305.167 67.000 C 305.258 67.000,305.333 66.887,305.333 66.750 C 305.333 66.612,305.408 66.500,305.500 66.500 C 305.592 66.500,305.667 66.350,305.667 66.167 C 305.667 65.983,305.742 65.833,305.833 65.833 C 305.925 65.833,306.000 65.688,306.000 65.510 C 306.000 65.332,306.075 65.140,306.167 65.083 C 306.258 65.027,306.333 64.797,306.333 64.573 C 306.333 64.350,306.408 64.167,306.500 64.167 C 306.592 64.167,306.667 64.017,306.667 63.833 C 306.667 63.650,306.742 63.500,306.833 63.500 C 306.925 63.500,307.000 63.350,307.000 63.167 C 307.000 62.983,307.075 62.833,307.167 62.833 C 307.258 62.833,307.333 62.608,307.333 62.333 C 307.333 62.058,307.408 61.833,307.500 61.833 C 307.592 61.833,307.667 61.683,307.667 61.500 C 307.667 61.317,307.732 61.167,307.813 61.167 C 307.893 61.167,308.098 60.679,308.269 60.083 C 308.440 59.487,308.636 59.000,308.706 59.000 C 308.776 59.000,308.833 58.850,308.833 58.667 C 308.833 58.483,308.908 58.333,309.000 58.333 C 309.092 58.333,309.167 58.108,309.167 57.833 C 309.167 57.558,309.242 57.333,309.333 57.333 C 309.425 57.333,309.500 57.183,309.500 57.000 C 309.500 56.817,309.575 56.667,309.667 56.667 C 309.758 56.667,309.833 56.517,309.833 56.333 C 309.833 56.150,309.908 56.000,310.000 56.000 C 310.092 56.000,310.167 55.813,310.167 55.583 C 310.167 55.354,310.242 55.167,310.333 55.167 C 310.425 55.167,310.500 55.017,310.500 54.833 C 310.500 54.650,310.575 54.500,310.667 54.500 C 310.758 54.500,310.833 54.350,310.833 54.167 C 310.833 53.983,310.908 53.833,311.000 53.833 C 311.092 53.833,311.167 53.608,311.167 53.333 C 311.167 53.058,311.242 52.833,311.333 52.833 C 311.425 52.833,311.500 52.683,311.500 52.500 C 311.500 52.317,311.575 52.167,311.667 52.167 C 311.758 52.167,311.833 52.017,311.833 51.833 C 311.833 51.650,311.908 51.500,312.000 51.500 C 312.092 51.500,312.167 51.358,312.167 51.184 C 312.167 51.010,312.392 50.439,312.667 49.917 C 312.942 49.394,313.167 48.824,313.167 48.650 C 313.167 48.476,313.242 48.333,313.333 48.333 C 313.425 48.333,313.500 48.229,313.500 48.102 C 313.500 47.975,313.612 47.657,313.749 47.394 C 313.886 47.131,313.998 46.785,313.999 46.625 C 314.000 46.465,314.075 46.333,314.167 46.333 C 314.258 46.333,314.333 46.108,314.333 45.833 C 314.333 45.558,314.408 45.333,314.500 45.333 C 314.592 45.333,314.667 45.221,314.667 45.083 C 314.667 44.946,314.742 44.833,314.833 44.833 C 314.925 44.833,315.000 44.683,315.000 44.500 C 315.000 44.317,315.075 44.167,315.167 44.167 C 315.258 44.167,315.333 43.942,315.333 43.667 C 315.333 43.392,315.408 43.167,315.500 43.167 C 315.592 43.167,315.667 43.017,315.667 42.833 C 315.667 42.650,315.742 42.500,315.833 42.500 C 315.925 42.500,316.000 42.350,316.000 42.167 C 316.000 41.983,316.075 41.833,316.167 41.833 C 316.258 41.833,316.333 41.608,316.333 41.333 C 316.333 41.058,316.408 40.833,316.500 40.833 C 316.592 40.833,316.667 40.683,316.667 40.500 C 316.667 40.317,316.723 40.166,316.792 40.165 C 316.961 40.164,317.333 39.339,317.333 38.967 C 317.333 38.802,317.408 38.667,317.500 38.667 C 317.592 38.667,317.667 38.517,317.667 38.333 C 317.667 38.150,317.742 38.000,317.833 38.000 C 317.925 38.000,318.000 37.886,318.000 37.748 C 318.000 37.609,318.087 37.356,318.193 37.186 C 318.700 36.375,318.460 36.324,314.379 36.372 L 310.583 36.417 310.531 36.875 C 310.502 37.127,310.408 37.333,310.322 37.333 C 310.237 37.333,310.167 37.483,310.167 37.667 C 310.167 37.850,310.092 38.000,310.000 38.000 C 309.908 38.000,309.833 38.225,309.833 38.500 C 309.833 38.775,309.758 39.000,309.667 39.000 C 309.575 39.000,309.500 39.225,309.500 39.500 C 309.500 39.775,309.444 40.001,309.375 40.001 C 309.230 40.003,308.833 40.806,308.833 41.098 C 308.833 41.206,308.721 41.510,308.584 41.773 C 308.447 42.035,308.335 42.456,308.334 42.708 C 308.334 42.960,308.258 43.167,308.167 43.167 C 308.075 43.167,308.000 43.392,308.000 43.667 C 308.000 43.942,307.925 44.167,307.833 44.167 C 307.742 44.167,307.667 44.317,307.667 44.500 C 307.667 44.683,307.592 44.833,307.500 44.833 C 307.408 44.833,307.333 45.016,307.333 45.240 C 307.333 45.464,307.258 45.693,307.167 45.750 C 307.075 45.807,307.000 46.036,307.000 46.260 C 307.000 46.484,306.925 46.667,306.833 46.667 C 306.742 46.667,306.667 46.817,306.667 47.000 C 306.667 47.183,306.592 47.333,306.500 47.333 C 306.408 47.333,306.333 47.558,306.333 47.833 C 306.333 48.108,306.258 48.333,306.167 48.333 C 306.075 48.333,306.000 48.558,306.000 48.833 C 306.000 49.108,305.925 49.333,305.833 49.333 C 305.742 49.333,305.667 49.483,305.667 49.667 C 305.667 49.850,305.592 50.000,305.500 50.000 C 305.408 50.000,305.333 50.225,305.333 50.500 C 305.333 50.775,305.258 51.000,305.167 51.000 C 305.075 51.000,305.000 51.188,305.000 51.417 C 305.000 51.646,304.925 51.833,304.833 51.833 C 304.742 51.833,304.667 51.646,304.667 51.417 C 304.667 51.188,304.592 51.000,304.500 51.000 C 304.408 51.000,304.333 50.850,304.333 50.667 C 304.333 50.483,304.258 50.333,304.167 50.333 C 304.075 50.333,304.000 50.108,304.000 49.833 C 304.000 49.558,303.925 49.333,303.833 49.333 C 303.742 49.333,303.667 49.108,303.667 48.833 C 303.667 48.558,303.592 48.333,303.500 48.333 C 303.408 48.333,303.333 48.108,303.333 47.833 C 303.333 47.558,303.258 47.333,303.167 47.333 C 303.075 47.333,303.000 47.113,303.000 46.843 C 303.000 46.574,302.932 46.311,302.848 46.259 C 302.764 46.207,302.645 45.865,302.583 45.499 C 302.521 45.133,302.402 44.833,302.319 44.833 C 302.235 44.833,302.167 44.608,302.167 44.333 C 302.167 44.058,302.092 43.833,302.000 43.833 C 301.908 43.833,301.833 43.608,301.833 43.333 C 301.833 43.058,301.758 42.833,301.667 42.833 C 301.575 42.833,301.500 42.608,301.500 42.333 C 301.500 42.058,301.425 41.833,301.333 41.833 C 301.242 41.833,301.167 41.686,301.167 41.505 C 301.167 41.325,301.017 40.910,300.833 40.583 C 300.650 40.257,300.500 39.842,300.500 39.662 C 300.500 39.481,300.425 39.333,300.333 39.333 C 300.242 39.333,300.167 39.108,300.167 38.833 C 300.167 38.558,300.092 38.333,300.000 38.333 C 299.908 38.333,299.833 38.108,299.833 37.833 C 299.833 37.558,299.758 37.333,299.667 37.333 C 299.575 37.333,299.500 37.108,299.500 36.833 L 299.500 36.333 295.333 36.333 L 291.167 36.333 291.167 32.167 L 291.167 28.000 287.750 28.000 L 284.333 28.000 284.333 32.160 M381.333 32.495 L 381.333 37.000 378.750 37.000 L 376.167 37.000 376.167 38.583 L 376.167 40.167 378.750 40.167 L 381.333 40.167 381.333 51.333 L 381.333 62.500 383.333 62.500 L 385.333 62.500 385.333 51.333 L 385.333 40.167 388.250 40.167 L 391.167 40.167 391.167 38.583 L 391.167 37.000 388.253 37.000 L 385.339 37.000 385.294 32.542 L 385.250 28.083 383.292 28.036 L 381.333 27.989 381.333 32.495 M138.333 35.833 C 138.333 35.925,138.033 36.000,137.667 36.000 C 137.300 36.000,137.000 36.075,137.000 36.167 C 137.000 36.258,136.813 36.333,136.583 36.333 C 136.354 36.333,136.167 36.408,136.167 36.500 C 136.167 36.592,135.942 36.667,135.667 36.667 C 135.392 36.667,135.167 36.742,135.167 36.833 C 135.167 36.925,135.017 37.000,134.833 37.000 C 134.650 37.000,134.500 37.075,134.500 37.167 C 134.500 37.258,134.367 37.333,134.203 37.333 C 134.040 37.333,133.799 37.483,133.667 37.667 C 133.535 37.850,133.329 38.000,133.211 38.000 C 132.927 38.000,129.667 41.257,129.667 41.541 C 129.667 41.661,129.517 41.868,129.333 42.000 C 129.150 42.132,129.000 42.374,129.000 42.537 C 129.000 42.700,128.925 42.833,128.833 42.833 C 128.742 42.833,128.667 42.983,128.667 43.167 C 128.667 43.350,128.592 43.500,128.500 43.500 C 128.408 43.500,128.333 43.725,128.333 44.000 C 128.333 44.275,128.258 44.500,128.167 44.500 C 128.075 44.500,128.000 44.725,128.000 45.000 C 128.000 45.275,127.925 45.500,127.833 45.500 C 127.742 45.500,127.667 45.762,127.667 46.083 C 127.667 46.404,127.592 46.667,127.500 46.667 C 127.395 46.667,127.333 47.750,127.333 49.583 C 127.333 51.417,127.395 52.500,127.500 52.500 C 127.592 52.500,127.667 52.800,127.667 53.167 C 127.667 53.533,127.742 53.833,127.833 53.833 C 127.925 53.833,128.000 53.983,128.000 54.167 C 128.000 54.350,128.075 54.500,128.167 54.500 C 128.258 54.500,128.333 54.725,128.333 55.000 C 128.333 55.275,128.408 55.500,128.500 55.500 C 128.592 55.500,128.667 55.612,128.667 55.750 C 128.667 55.887,128.742 56.000,128.833 56.000 C 128.925 56.000,129.000 56.133,129.000 56.297 C 129.000 56.460,129.150 56.701,129.333 56.833 C 129.517 56.965,129.667 57.177,129.667 57.303 C 129.667 57.430,129.881 57.733,130.142 57.977 C 130.403 58.221,130.745 58.668,130.901 58.969 C 131.057 59.270,131.306 59.564,131.455 59.621 C 131.605 59.679,132.022 60.012,132.384 60.363 C 132.745 60.713,133.112 61.000,133.199 61.000 C 133.286 61.000,133.470 61.112,133.607 61.250 C 133.745 61.387,134.002 61.500,134.179 61.500 C 134.355 61.500,134.500 61.575,134.500 61.667 C 134.500 61.758,134.650 61.833,134.833 61.833 C 135.017 61.833,135.167 61.908,135.167 62.000 C 135.167 62.092,135.317 62.167,135.500 62.167 C 135.683 62.167,135.833 62.242,135.833 62.333 C 135.833 62.425,136.016 62.500,136.240 62.500 C 136.464 62.500,136.693 62.575,136.750 62.667 C 136.807 62.758,137.111 62.833,137.427 62.833 C 137.742 62.833,138.000 62.908,138.000 63.000 C 138.000 63.105,139.139 63.167,141.083 63.167 C 143.028 63.167,144.167 63.105,144.167 63.000 C 144.167 62.908,144.467 62.833,144.833 62.833 C 145.200 62.833,145.500 62.758,145.500 62.667 C 145.500 62.575,145.725 62.500,146.000 62.500 C 146.275 62.500,146.500 62.439,146.500 62.364 C 146.500 62.290,146.762 62.126,147.083 62.000 C 147.404 61.874,147.667 61.710,147.667 61.636 C 147.667 61.561,147.783 61.500,147.925 61.500 C 148.287 61.500,149.198 61.010,149.520 60.642 C 149.668 60.472,149.869 60.333,149.967 60.333 C 150.190 60.333,152.000 58.537,152.000 58.315 C 152.000 58.226,152.188 57.950,152.417 57.703 C 152.646 57.456,152.833 57.121,152.833 56.960 C 152.833 56.799,152.908 56.667,153.000 56.667 C 153.092 56.667,153.167 56.517,153.167 56.333 C 153.167 56.150,153.242 56.000,153.333 56.000 C 153.425 56.000,153.500 55.887,153.500 55.750 C 153.500 55.612,153.575 55.500,153.667 55.500 C 153.758 55.500,153.833 55.275,153.833 55.000 C 153.833 54.725,153.908 54.500,154.000 54.500 C 154.092 54.500,154.167 54.275,154.167 54.000 C 154.167 53.725,154.242 53.500,154.333 53.500 C 154.425 53.500,154.500 53.125,154.500 52.667 C 154.500 52.208,154.575 51.833,154.667 51.833 C 154.770 51.833,154.833 50.917,154.833 49.417 C 154.833 47.917,154.770 47.000,154.667 47.000 C 154.575 47.000,154.500 46.663,154.500 46.250 C 154.500 45.837,154.425 45.500,154.333 45.500 C 154.242 45.500,154.167 45.275,154.167 45.000 C 154.167 44.725,154.092 44.500,154.000 44.500 C 153.908 44.500,153.833 44.350,153.833 44.167 C 153.833 43.983,153.758 43.833,153.667 43.833 C 153.575 43.833,153.500 43.636,153.500 43.395 C 153.500 43.153,153.362 42.834,153.193 42.686 C 153.025 42.538,152.831 42.192,152.763 41.917 C 152.631 41.383,149.340 38.000,148.952 38.000 C 148.836 38.000,148.632 37.850,148.500 37.667 C 148.368 37.483,148.126 37.333,147.963 37.333 C 147.800 37.333,147.667 37.258,147.667 37.167 C 147.667 37.075,147.517 37.000,147.333 37.000 C 147.150 37.000,147.000 36.925,147.000 36.833 C 147.000 36.742,146.813 36.667,146.583 36.667 C 146.354 36.667,146.167 36.592,146.167 36.500 C 146.167 36.408,145.942 36.333,145.667 36.333 C 145.392 36.333,145.167 36.258,145.167 36.167 C 145.167 36.075,144.867 36.000,144.500 36.000 C 144.133 36.000,143.833 35.925,143.833 35.833 C 143.833 35.729,142.806 35.667,141.083 35.667 C 139.361 35.667,138.333 35.729,138.333 35.833 M163.667 35.833 C 163.667 35.925,163.442 36.000,163.167 36.000 C 162.892 36.000,162.667 36.075,162.667 36.167 C 162.667 36.258,162.442 36.333,162.167 36.333 C 161.892 36.333,161.667 36.408,161.667 36.500 C 161.667 36.592,161.533 36.667,161.370 36.667 C 161.207 36.667,160.965 36.817,160.833 37.000 C 160.701 37.183,160.492 37.333,160.369 37.333 C 160.014 37.333,158.543 38.941,158.311 39.583 C 158.195 39.904,158.040 40.167,157.967 40.167 C 157.893 40.167,157.833 40.317,157.833 40.500 C 157.833 40.683,157.758 40.833,157.667 40.833 C 157.575 40.833,157.500 41.058,157.500 41.333 C 157.500 41.608,157.425 41.833,157.333 41.833 C 157.232 41.833,157.167 42.583,157.167 43.750 C 157.167 44.917,157.232 45.667,157.333 45.667 C 157.425 45.667,157.500 45.967,157.500 46.333 C 157.500 46.700,157.575 47.000,157.667 47.000 C 157.758 47.000,157.833 47.150,157.833 47.333 C 157.833 47.517,157.899 47.667,157.980 47.667 C 158.060 47.667,158.226 47.908,158.349 48.203 C 158.767 49.214,160.847 50.833,161.727 50.833 C 161.877 50.833,162.000 50.908,162.000 51.000 C 162.000 51.092,162.225 51.167,162.500 51.167 C 162.775 51.167,163.000 51.242,163.000 51.333 C 163.000 51.425,163.150 51.500,163.333 51.500 C 163.517 51.500,163.667 51.575,163.667 51.667 C 163.667 51.758,163.850 51.833,164.073 51.833 C 164.297 51.833,164.527 51.908,164.583 52.000 C 164.640 52.092,164.869 52.167,165.093 52.167 C 165.317 52.167,165.500 52.242,165.500 52.333 C 165.500 52.425,165.725 52.500,166.000 52.500 C 166.275 52.500,166.500 52.575,166.500 52.667 C 166.500 52.758,166.614 52.833,166.754 52.833 C 167.285 52.833,168.500 54.280,168.500 54.912 C 168.500 55.236,168.425 55.500,168.333 55.500 C 168.242 55.500,168.167 55.645,168.167 55.822 C 168.167 55.999,168.017 56.192,167.833 56.250 C 167.650 56.308,167.500 56.426,167.500 56.511 C 167.500 56.597,167.350 56.667,167.167 56.667 C 166.983 56.667,166.833 56.742,166.833 56.833 C 166.833 56.925,166.458 57.000,166.000 57.000 C 165.542 57.000,165.167 56.925,165.167 56.833 C 165.167 56.742,165.017 56.667,164.833 56.667 C 164.650 56.667,164.500 56.597,164.500 56.511 C 164.500 56.426,164.347 56.307,164.160 56.248 C 163.958 56.184,163.780 55.942,163.722 55.653 C 163.669 55.386,163.559 55.167,163.479 55.167 C 163.399 55.167,163.333 54.974,163.333 54.738 C 163.333 53.880,163.136 53.833,159.512 53.833 L 156.167 53.833 156.167 54.667 C 156.167 55.125,156.242 55.500,156.333 55.500 C 156.425 55.500,156.500 55.837,156.500 56.250 C 156.500 56.663,156.575 57.000,156.667 57.000 C 156.758 57.000,156.833 57.225,156.833 57.500 C 156.833 57.775,156.908 58.000,157.000 58.000 C 157.092 58.000,157.167 58.150,157.167 58.333 C 157.167 58.517,157.242 58.667,157.333 58.667 C 157.425 58.667,157.500 58.780,157.500 58.918 C 157.500 59.057,157.725 59.405,158.000 59.693 C 158.275 59.981,158.500 60.284,158.500 60.366 C 158.500 60.580,159.312 61.304,159.685 61.423 C 159.858 61.478,160.000 61.592,160.000 61.678 C 160.000 61.763,160.150 61.833,160.333 61.833 C 160.517 61.833,160.667 61.908,160.667 62.000 C 160.667 62.092,160.817 62.167,161.000 62.167 C 161.183 62.167,161.333 62.242,161.333 62.333 C 161.333 62.425,161.483 62.500,161.667 62.500 C 161.850 62.500,162.000 62.575,162.000 62.667 C 162.000 62.758,162.300 62.833,162.667 62.833 C 163.033 62.833,163.333 62.908,163.333 63.000 C 163.333 63.104,164.306 63.167,165.917 63.167 C 167.528 63.167,168.500 63.104,168.500 63.000 C 168.500 62.908,168.762 62.833,169.083 62.833 C 169.404 62.833,169.667 62.758,169.667 62.667 C 169.667 62.575,169.817 62.500,170.000 62.500 C 170.183 62.500,170.333 62.425,170.333 62.333 C 170.333 62.242,170.467 62.167,170.630 62.167 C 170.793 62.167,171.035 62.017,171.167 61.833 C 171.299 61.650,171.524 61.500,171.668 61.500 C 172.021 61.500,173.667 59.937,173.667 59.601 C 173.667 59.454,173.730 59.333,173.807 59.333 C 173.956 59.333,174.476 58.309,174.824 57.333 C 175.467 55.527,175.137 51.068,174.293 50.162 C 174.132 49.989,174.000 49.767,174.000 49.668 C 174.000 49.413,172.888 48.333,172.626 48.333 C 172.505 48.333,172.299 48.183,172.167 48.000 C 172.035 47.817,171.793 47.667,171.630 47.667 C 171.467 47.667,171.333 47.592,171.333 47.500 C 171.333 47.408,171.183 47.333,171.000 47.333 C 170.817 47.333,170.667 47.258,170.667 47.167 C 170.667 47.075,170.517 47.000,170.333 47.000 C 170.150 47.000,170.000 46.925,170.000 46.833 C 170.000 46.742,169.817 46.667,169.593 46.667 C 169.369 46.667,169.140 46.592,169.083 46.500 C 169.027 46.408,168.802 46.333,168.583 46.333 C 168.365 46.333,168.140 46.258,168.083 46.167 C 168.027 46.075,167.802 46.000,167.583 46.000 C 167.365 46.000,167.143 45.930,167.091 45.845 C 167.038 45.760,166.583 45.639,166.081 45.576 C 165.578 45.513,165.167 45.395,165.167 45.314 C 165.167 45.233,165.051 45.167,164.909 45.167 C 164.427 45.167,163.833 44.389,163.833 43.758 C 163.833 43.433,163.908 43.167,164.000 43.167 C 164.092 43.167,164.167 43.049,164.167 42.905 C 164.167 42.568,164.568 42.167,164.905 42.167 C 165.049 42.167,165.167 42.092,165.167 42.000 C 165.167 41.908,165.467 41.833,165.833 41.833 C 166.200 41.833,166.500 41.908,166.500 42.000 C 166.500 42.092,166.618 42.167,166.762 42.167 C 167.099 42.167,167.500 42.568,167.500 42.905 C 167.500 43.049,167.575 43.167,167.667 43.167 C 167.758 43.167,167.833 43.393,167.833 43.670 L 167.833 44.174 171.208 44.128 L 174.583 44.083 174.636 43.436 C 174.666 43.081,174.609 42.709,174.511 42.611 C 174.413 42.513,174.333 42.148,174.333 41.800 C 174.333 41.452,174.258 41.167,174.167 41.167 C 174.075 41.167,174.000 40.979,174.000 40.750 C 174.000 40.521,173.925 40.333,173.833 40.333 C 173.742 40.333,173.667 40.200,173.667 40.037 C 173.667 39.874,173.517 39.632,173.333 39.500 C 173.150 39.368,173.000 39.162,173.000 39.042 C 173.000 38.759,171.574 37.333,171.291 37.333 C 171.172 37.333,170.965 37.183,170.833 37.000 C 170.701 36.817,170.460 36.667,170.297 36.667 C 170.133 36.667,170.000 36.592,170.000 36.500 C 170.000 36.408,169.850 36.333,169.667 36.333 C 169.483 36.333,169.333 36.258,169.333 36.167 C 169.333 36.075,169.071 36.000,168.750 36.000 C 168.429 36.000,168.167 35.925,168.167 35.833 C 168.167 35.730,167.306 35.667,165.917 35.667 C 164.528 35.667,163.667 35.730,163.667 35.833 M188.917 35.833 C 188.860 35.925,188.593 36.000,188.323 36.000 C 188.054 36.000,187.833 36.075,187.833 36.167 C 187.833 36.258,187.682 36.333,187.498 36.333 C 187.101 36.333,186.528 36.634,186.149 37.042 C 186.000 37.202,185.788 37.333,185.678 37.333 C 185.568 37.333,185.113 37.708,184.667 38.167 C 183.635 39.226,183.667 39.241,183.667 37.667 L 183.667 36.333 180.583 36.333 L 177.500 36.333 177.500 53.667 L 177.500 71.000 180.917 71.000 L 184.333 71.000 184.333 65.922 C 184.333 60.205,184.259 60.468,185.547 61.594 C 185.659 61.691,185.994 61.878,186.292 62.009 C 186.590 62.141,186.833 62.305,186.833 62.374 C 186.833 62.443,186.983 62.500,187.167 62.500 C 187.350 62.500,187.500 62.575,187.500 62.667 C 187.500 62.758,187.800 62.833,188.167 62.833 C 188.533 62.833,188.833 62.908,188.833 63.000 C 188.833 63.105,189.917 63.167,191.750 63.167 C 193.583 63.167,194.667 63.105,194.667 63.000 C 194.667 62.908,194.967 62.833,195.333 62.833 C 195.700 62.833,196.000 62.758,196.000 62.667 C 196.000 62.575,196.150 62.500,196.333 62.500 C 196.517 62.500,196.667 62.425,196.667 62.333 C 196.667 62.242,196.854 62.167,197.083 62.167 C 197.313 62.167,197.500 62.092,197.500 62.000 C 197.500 61.908,197.650 61.833,197.833 61.833 C 198.017 61.833,198.167 61.766,198.167 61.683 C 198.167 61.600,198.380 61.458,198.642 61.367 C 198.903 61.276,199.312 61.006,199.551 60.767 C 199.790 60.529,200.049 60.333,200.128 60.333 C 200.299 60.333,201.167 59.451,201.167 59.277 C 201.167 59.210,201.415 58.907,201.719 58.603 C 202.023 58.299,202.370 57.814,202.490 57.525 C 202.609 57.236,202.773 57.000,202.854 57.000 C 202.934 57.000,203.000 56.850,203.000 56.667 C 203.000 56.483,203.075 56.333,203.167 56.333 C 203.258 56.333,203.333 56.183,203.333 56.000 C 203.333 55.817,203.408 55.667,203.500 55.667 C 203.592 55.667,203.667 55.479,203.667 55.250 C 203.667 55.021,203.742 54.833,203.833 54.833 C 203.925 54.833,204.000 54.608,204.000 54.333 C 204.000 54.058,204.075 53.833,204.167 53.833 C 204.258 53.833,204.333 53.533,204.333 53.167 C 204.333 52.800,204.408 52.500,204.500 52.500 C 204.605 52.500,204.667 51.361,204.667 49.417 C 204.667 47.472,204.605 46.333,204.500 46.333 C 204.408 46.333,204.333 46.071,204.333 45.750 C 204.333 45.429,204.258 45.167,204.167 45.167 C 204.075 45.167,204.000 44.942,204.000 44.667 C 204.000 44.392,203.925 44.167,203.833 44.167 C 203.742 44.167,203.667 43.942,203.667 43.667 C 203.667 43.392,203.592 43.167,203.500 43.167 C 203.408 43.167,203.333 43.017,203.333 42.833 C 203.333 42.650,203.258 42.500,203.167 42.500 C 203.075 42.500,203.000 42.350,203.000 42.167 C 203.000 41.983,202.926 41.833,202.837 41.833 C 202.747 41.833,202.627 41.651,202.572 41.429 C 202.516 41.207,202.327 40.895,202.152 40.736 C 201.977 40.578,201.833 40.383,201.833 40.304 C 201.833 40.090,200.038 38.333,199.820 38.333 C 199.718 38.333,199.424 38.108,199.167 37.833 C 198.910 37.558,198.580 37.333,198.433 37.333 C 198.287 37.333,198.167 37.258,198.167 37.167 C 198.167 37.075,198.017 37.000,197.833 37.000 C 197.650 37.000,197.500 36.925,197.500 36.833 C 197.500 36.742,197.350 36.667,197.167 36.667 C 196.983 36.667,196.833 36.592,196.833 36.500 C 196.833 36.408,196.650 36.333,196.427 36.333 C 196.203 36.333,195.973 36.258,195.917 36.167 C 195.860 36.075,195.556 36.000,195.240 36.000 C 194.925 36.000,194.667 35.925,194.667 35.833 C 194.667 35.729,193.614 35.667,191.843 35.667 C 190.141 35.667,188.979 35.733,188.917 35.833 M240.000 35.833 C 240.000 35.925,239.700 36.000,239.333 36.000 C 238.967 36.000,238.667 36.075,238.667 36.167 C 238.667 36.258,238.442 36.333,238.167 36.333 C 237.892 36.333,237.667 36.408,237.667 36.500 C 237.667 36.592,237.517 36.667,237.333 36.667 C 237.150 36.667,237.000 36.742,237.000 36.833 C 237.000 36.925,236.850 37.000,236.667 37.000 C 236.483 37.000,236.333 37.075,236.333 37.167 C 236.333 37.258,236.221 37.333,236.083 37.333 C 235.946 37.333,235.833 37.408,235.833 37.500 C 235.833 37.592,235.725 37.667,235.592 37.667 C 235.298 37.667,231.833 41.014,231.833 41.298 C 231.833 41.409,231.758 41.500,231.667 41.500 C 231.575 41.500,231.500 41.650,231.500 41.833 C 231.500 42.017,231.425 42.167,231.333 42.167 C 231.242 42.167,231.167 42.317,231.167 42.500 C 231.167 42.683,231.092 42.833,231.000 42.833 C 230.908 42.833,230.833 42.965,230.832 43.125 C 230.832 43.285,230.719 43.631,230.582 43.894 C 230.445 44.157,230.333 44.625,230.333 44.936 C 230.333 45.246,230.258 45.500,230.167 45.500 C 230.075 45.500,230.000 45.837,230.000 46.250 C 230.000 46.663,229.925 47.000,229.833 47.000 C 229.730 47.000,229.667 47.917,229.667 49.417 C 229.667 50.917,229.730 51.833,229.833 51.833 C 229.925 51.833,230.000 52.208,230.000 52.667 C 230.000 53.125,230.075 53.500,230.167 53.500 C 230.258 53.500,230.333 53.785,230.333 54.133 C 230.333 54.482,230.398 54.838,230.477 54.925 C 230.556 55.012,230.759 55.480,230.929 55.965 C 231.098 56.449,231.371 56.990,231.535 57.166 C 231.699 57.342,231.833 57.585,231.833 57.706 C 231.833 57.827,231.983 58.035,232.167 58.167 C 232.350 58.299,232.500 58.509,232.500 58.633 C 232.500 58.884,234.613 61.000,234.865 61.000 C 234.952 61.000,235.136 61.112,235.274 61.250 C 235.411 61.387,235.668 61.500,235.845 61.500 C 236.022 61.500,236.167 61.575,236.167 61.667 C 236.167 61.758,236.279 61.833,236.417 61.833 C 236.554 61.833,236.667 61.908,236.667 62.000 C 236.667 62.092,236.817 62.167,237.000 62.167 C 237.183 62.167,237.333 62.242,237.333 62.333 C 237.333 62.425,237.558 62.500,237.833 62.500 C 238.108 62.500,238.333 62.575,238.333 62.667 C 238.333 62.758,238.558 62.833,238.833 62.833 C 239.108 62.833,239.333 62.908,239.333 63.000 C 239.333 63.104,240.361 63.167,242.083 63.167 C 243.806 63.167,244.833 63.104,244.833 63.000 C 244.833 62.908,245.133 62.833,245.500 62.833 C 245.867 62.833,246.167 62.758,246.167 62.667 C 246.167 62.575,246.354 62.500,246.583 62.500 C 246.813 62.500,247.000 62.425,247.000 62.333 C 247.000 62.242,247.150 62.167,247.333 62.167 C 247.517 62.167,247.667 62.092,247.667 62.000 C 247.667 61.908,247.817 61.833,248.000 61.833 C 248.183 61.833,248.333 61.758,248.333 61.667 C 248.333 61.575,248.478 61.500,248.655 61.500 C 248.832 61.500,249.089 61.387,249.226 61.250 C 249.364 61.112,249.545 61.000,249.630 61.000 C 249.715 61.000,250.019 60.775,250.307 60.500 C 251.008 59.831,251.000 59.822,251.000 61.250 L 251.000 62.500 254.083 62.500 L 257.167 62.500 257.167 49.417 L 257.167 36.333 254.083 36.333 L 251.000 36.333 251.000 37.667 C 251.000 39.169,250.981 39.193,250.333 38.500 C 250.076 38.225,249.763 38.000,249.637 38.000 C 249.510 38.000,249.299 37.850,249.167 37.667 C 249.035 37.483,248.793 37.333,248.630 37.333 C 248.467 37.333,248.333 37.258,248.333 37.167 C 248.333 37.075,248.190 37.000,248.014 37.000 C 247.838 37.000,247.669 36.944,247.639 36.875 C 247.525 36.619,246.118 36.000,245.651 36.000 C 245.385 36.000,245.167 35.925,245.167 35.833 C 245.167 35.729,244.194 35.667,242.583 35.667 C 240.972 35.667,240.000 35.729,240.000 35.833 M207.000 49.420 L 207.000 62.507 210.375 62.462 L 213.750 62.417 213.796 49.750 C 213.821 42.783,213.801 36.915,213.751 36.708 C 213.661 36.335,213.646 36.333,210.330 36.333 L 207.000 36.333 207.000 49.420 M272.000 49.413 L 272.000 62.500 275.418 62.500 L 278.835 62.500 278.793 49.458 L 278.750 36.417 275.375 36.372 L 272.000 36.326 272.000 49.413 M329.333 36.500 C 329.333 36.592,329.108 36.667,328.833 36.667 C 328.558 36.667,328.333 36.742,328.333 36.833 C 328.333 36.925,328.183 37.000,328.000 37.000 C 327.817 37.000,327.667 37.075,327.667 37.167 C 327.667 37.258,327.517 37.333,327.333 37.333 C 327.150 37.333,327.000 37.408,327.000 37.500 C 327.000 37.592,326.880 37.667,326.734 37.667 C 326.587 37.667,326.257 37.892,326.000 38.167 C 325.743 38.442,325.451 38.667,325.350 38.667 C 325.249 38.667,325.167 38.742,325.167 38.833 C 325.167 38.925,325.092 39.000,325.000 39.000 C 324.907 39.000,324.833 38.556,324.833 38.000 L 324.833 37.000 322.833 37.000 L 320.833 37.000 320.833 49.750 L 320.833 62.500 322.823 62.500 L 324.812 62.500 324.864 53.805 C 324.905 47.036,324.963 45.096,325.125 45.042 C 325.240 45.003,325.333 44.791,325.333 44.569 C 325.333 44.348,325.408 44.167,325.500 44.167 C 325.592 44.167,325.667 44.017,325.667 43.833 C 325.667 43.650,325.742 43.500,325.833 43.500 C 325.925 43.500,326.000 43.386,326.000 43.247 C 326.000 42.917,328.084 40.833,328.414 40.833 C 328.553 40.833,328.667 40.758,328.667 40.667 C 328.667 40.575,328.810 40.500,328.986 40.500 C 329.162 40.500,329.337 40.406,329.375 40.292 C 329.427 40.136,330.154 40.083,332.250 40.083 C 334.346 40.083,335.073 40.136,335.125 40.292 C 335.163 40.406,335.322 40.500,335.477 40.500 C 335.633 40.500,335.868 40.650,336.000 40.833 C 336.132 41.017,336.301 41.167,336.375 41.167 C 336.597 41.167,338.000 42.641,338.000 42.875 C 338.000 42.995,338.150 43.201,338.333 43.333 C 338.517 43.465,338.667 43.707,338.667 43.870 C 338.667 44.033,338.742 44.167,338.833 44.167 C 338.925 44.167,339.000 44.350,339.000 44.573 C 339.000 44.797,339.075 45.027,339.167 45.083 C 339.258 45.140,339.333 45.519,339.333 45.927 C 339.333 46.334,339.408 46.667,339.500 46.667 C 339.609 46.667,339.667 49.417,339.667 54.583 L 339.667 62.500 341.583 62.500 L 343.500 62.500 343.500 54.167 C 343.500 48.722,343.442 45.833,343.333 45.833 C 343.242 45.833,343.167 45.458,343.167 45.000 C 343.167 44.542,343.092 44.167,343.000 44.167 C 342.908 44.167,342.833 43.942,342.833 43.667 C 342.833 43.392,342.758 43.167,342.667 43.167 C 342.575 43.167,342.500 42.942,342.500 42.667 C 342.500 42.392,342.425 42.167,342.333 42.167 C 342.242 42.167,342.167 42.017,342.167 41.833 C 342.167 41.650,342.092 41.500,342.000 41.500 C 341.908 41.500,341.833 41.350,341.833 41.167 C 341.833 40.983,341.763 40.833,341.678 40.833 C 341.592 40.833,341.480 40.702,341.427 40.542 C 341.296 40.138,339.915 38.667,339.668 38.667 C 339.558 38.667,339.257 38.442,339.000 38.167 C 338.743 37.892,338.413 37.667,338.266 37.667 C 338.120 37.667,338.000 37.592,338.000 37.500 C 338.000 37.408,337.850 37.333,337.667 37.333 C 337.483 37.333,337.333 37.258,337.333 37.167 C 337.333 37.075,337.108 37.000,336.833 37.000 C 336.558 37.000,336.333 36.925,336.333 36.833 C 336.333 36.742,336.150 36.667,335.927 36.667 C 335.703 36.667,335.473 36.592,335.417 36.500 C 335.354 36.399,334.137 36.333,332.323 36.333 C 330.441 36.333,329.333 36.395,329.333 36.500 M358.167 36.500 C 358.167 36.592,357.867 36.667,357.500 36.667 C 357.133 36.667,356.833 36.742,356.833 36.833 C 356.833 36.925,356.608 37.000,356.333 37.000 C 356.058 37.000,355.833 37.075,355.833 37.167 C 355.833 37.258,355.683 37.333,355.500 37.333 C 355.317 37.333,355.167 37.408,355.167 37.500 C 355.167 37.592,355.017 37.667,354.833 37.667 C 354.650 37.667,354.500 37.742,354.500 37.833 C 354.500 37.925,354.350 38.000,354.167 38.000 C 353.983 38.000,353.833 38.075,353.833 38.167 C 353.833 38.258,353.728 38.333,353.598 38.333 C 353.469 38.333,353.174 38.558,352.942 38.833 C 352.711 39.108,352.443 39.333,352.347 39.333 C 352.144 39.333,350.667 40.715,350.667 40.905 C 350.667 40.975,350.442 41.243,350.167 41.500 C 349.892 41.757,349.667 42.070,349.667 42.197 C 349.667 42.323,349.517 42.535,349.333 42.667 C 349.150 42.799,349.000 43.040,349.000 43.203 C 349.000 43.367,348.925 43.500,348.833 43.500 C 348.742 43.500,348.667 43.650,348.667 43.833 C 348.667 44.017,348.592 44.167,348.500 44.167 C 348.408 44.167,348.333 44.392,348.333 44.667 C 348.333 44.942,348.267 45.167,348.186 45.167 C 347.774 45.167,347.119 50.685,347.487 51.053 C 347.586 51.152,347.667 51.668,347.667 52.200 C 347.667 52.733,347.741 53.167,347.833 53.167 C 347.925 53.167,348.000 53.425,348.000 53.740 C 348.000 54.056,348.075 54.360,348.167 54.417 C 348.258 54.473,348.333 54.665,348.333 54.843 C 348.333 55.021,348.394 55.167,348.469 55.167 C 348.543 55.167,348.707 55.429,348.833 55.750 C 348.959 56.071,349.123 56.333,349.198 56.333 C 349.272 56.333,349.333 56.467,349.333 56.630 C 349.333 56.793,349.483 57.035,349.667 57.167 C 349.850 57.299,350.000 57.504,350.000 57.623 C 350.000 57.817,352.721 60.667,352.907 60.667 C 352.950 60.667,353.261 60.854,353.599 61.083 C 353.937 61.313,354.353 61.500,354.523 61.500 C 354.694 61.500,354.833 61.575,354.833 61.667 C 354.833 61.758,354.983 61.833,355.167 61.833 C 355.350 61.833,355.500 61.908,355.500 62.000 C 355.500 62.092,355.725 62.167,356.000 62.167 C 356.275 62.167,356.500 62.242,356.500 62.333 C 356.500 62.425,356.725 62.500,357.000 62.500 C 357.275 62.500,357.500 62.575,357.500 62.667 C 357.500 62.758,357.912 62.833,358.417 62.833 C 358.921 62.833,359.333 62.908,359.333 63.000 C 359.333 63.099,359.944 63.167,360.833 63.167 C 361.722 63.167,362.333 63.099,362.333 63.000 C 362.333 62.908,362.746 62.833,363.250 62.833 C 363.754 62.833,364.167 62.758,364.167 62.667 C 364.167 62.575,364.392 62.500,364.667 62.500 C 364.942 62.500,365.167 62.425,365.167 62.333 C 365.167 62.242,365.392 62.167,365.667 62.167 C 365.942 62.167,366.167 62.092,366.167 62.000 C 366.167 61.908,366.317 61.833,366.500 61.833 C 366.683 61.833,366.833 61.758,366.833 61.667 C 366.833 61.575,366.973 61.500,367.143 61.500 C 367.314 61.500,367.730 61.313,368.067 61.083 C 368.405 60.854,368.717 60.667,368.760 60.667 C 368.946 60.667,371.667 57.817,371.667 57.623 C 371.667 57.504,371.817 57.299,372.000 57.167 C 372.183 57.035,372.333 56.793,372.333 56.630 C 372.333 56.467,372.394 56.333,372.469 56.333 C 372.543 56.333,372.707 56.071,372.833 55.750 C 372.959 55.429,373.123 55.167,373.198 55.167 C 373.272 55.167,373.333 54.867,373.333 54.500 L 373.333 53.833 371.488 53.833 C 369.584 53.833,369.167 53.966,369.167 54.571 C 369.167 54.715,369.092 54.833,369.000 54.833 C 368.908 54.833,368.833 54.952,368.833 55.096 C 368.833 55.241,368.543 55.635,368.187 55.971 C 366.559 57.513,365.973 58.000,365.746 58.000 C 365.610 58.000,365.500 58.075,365.500 58.167 C 365.500 58.258,365.350 58.333,365.167 58.333 C 364.983 58.333,364.833 58.390,364.832 58.458 C 364.830 58.627,364.006 59.000,363.633 59.000 C 363.468 59.000,363.333 59.075,363.333 59.167 C 363.333 59.258,362.958 59.333,362.500 59.333 C 362.042 59.333,361.667 59.408,361.667 59.500 C 361.667 59.592,361.292 59.667,360.833 59.667 C 360.375 59.667,360.000 59.592,360.000 59.500 C 360.000 59.408,359.625 59.333,359.167 59.333 C 358.708 59.333,358.333 59.258,358.333 59.167 C 358.333 59.075,358.146 59.000,357.917 59.000 C 357.688 59.000,357.500 58.925,357.500 58.833 C 357.500 58.742,357.350 58.667,357.167 58.667 C 356.983 58.667,356.833 58.592,356.833 58.500 C 356.833 58.408,356.700 58.333,356.537 58.333 C 356.374 58.333,356.132 58.183,356.000 58.000 C 355.868 57.817,355.662 57.667,355.542 57.667 C 355.422 57.667,355.000 57.348,354.604 56.958 C 354.207 56.569,353.722 56.140,353.525 56.005 C 353.328 55.870,353.167 55.626,353.167 55.463 C 353.167 55.300,353.106 55.167,353.032 55.167 C 352.885 55.167,352.333 54.005,352.333 53.694 C 352.333 53.587,352.258 53.500,352.167 53.500 C 352.075 53.500,352.000 53.275,352.000 53.000 C 352.000 52.725,351.925 52.500,351.833 52.500 C 351.742 52.500,351.667 52.200,351.667 51.833 L 351.667 51.167 363.000 51.167 L 374.333 51.167 374.333 49.583 C 374.333 48.639,374.266 48.000,374.167 48.000 C 374.075 48.000,374.000 47.592,374.000 47.093 C 374.000 46.594,373.925 46.140,373.833 46.083 C 373.742 46.027,373.667 45.797,373.667 45.573 C 373.667 45.350,373.592 45.167,373.500 45.167 C 373.408 45.167,373.333 44.942,373.333 44.667 C 373.333 44.392,373.258 44.167,373.167 44.167 C 373.075 44.167,373.000 44.033,373.000 43.870 C 373.000 43.707,372.850 43.465,372.667 43.333 C 372.483 43.201,372.333 42.960,372.333 42.797 C 372.333 42.633,372.258 42.500,372.167 42.500 C 372.075 42.500,372.000 42.380,372.000 42.234 C 372.000 42.087,371.775 41.757,371.500 41.500 C 371.225 41.243,371.000 40.975,371.000 40.905 C 371.000 40.759,369.546 39.333,369.397 39.333 C 369.344 39.333,369.090 39.108,368.833 38.833 C 368.576 38.558,368.246 38.333,368.100 38.333 C 367.953 38.333,367.833 38.258,367.833 38.167 C 367.833 38.075,367.683 38.000,367.500 38.000 C 367.317 38.000,367.167 37.925,367.167 37.833 C 367.167 37.742,367.017 37.667,366.833 37.667 C 366.650 37.667,366.500 37.592,366.500 37.500 C 366.500 37.408,366.350 37.333,366.167 37.333 C 365.983 37.333,365.833 37.258,365.833 37.167 C 365.833 37.075,365.608 37.000,365.333 37.000 C 365.058 37.000,364.833 36.925,364.833 36.833 C 364.833 36.742,364.608 36.667,364.333 36.667 C 364.058 36.667,363.833 36.592,363.833 36.500 C 363.833 36.395,362.778 36.333,361.000 36.333 C 359.222 36.333,358.167 36.395,358.167 36.500 M363.961 40.300 C 363.998 40.410,364.192 40.500,364.394 40.500 C 364.595 40.500,364.868 40.650,365.000 40.833 C 365.132 41.017,365.374 41.167,365.537 41.167 C 365.700 41.167,365.833 41.242,365.833 41.333 C 365.833 41.425,365.947 41.500,366.086 41.500 C 366.394 41.500,368.500 43.573,368.500 43.877 C 368.500 43.996,368.650 44.201,368.833 44.333 C 369.017 44.465,369.167 44.707,369.167 44.870 C 369.167 45.033,369.241 45.167,369.331 45.167 C 369.422 45.167,369.544 45.468,369.603 45.837 C 369.662 46.206,369.776 46.548,369.855 46.597 C 369.935 46.646,370.000 46.907,370.000 47.177 L 370.000 47.667 360.833 47.667 L 351.667 47.667 351.667 47.167 C 351.667 46.892,351.742 46.667,351.833 46.667 C 351.925 46.667,352.000 46.442,352.000 46.167 C 352.000 45.892,352.060 45.667,352.132 45.667 C 352.205 45.667,352.404 45.329,352.574 44.917 C 352.744 44.504,352.947 44.167,353.025 44.167 C 353.103 44.167,353.167 44.053,353.167 43.914 C 353.167 43.584,355.251 41.500,355.580 41.500 C 355.719 41.500,355.833 41.425,355.833 41.333 C 355.833 41.242,355.983 41.167,356.167 41.167 C 356.350 41.167,356.500 41.092,356.500 41.000 C 356.500 40.908,356.650 40.833,356.833 40.833 C 357.017 40.833,357.167 40.758,357.167 40.667 C 357.167 40.575,357.317 40.500,357.500 40.500 C 357.683 40.500,357.833 40.430,357.833 40.344 C 357.833 39.966,363.835 39.922,363.961 40.300 M142.167 42.000 C 142.167 42.092,142.392 42.167,142.667 42.167 C 142.942 42.167,143.167 42.242,143.167 42.333 C 143.167 42.425,143.317 42.500,143.500 42.500 C 143.683 42.500,143.833 42.575,143.833 42.667 C 143.833 42.758,143.967 42.833,144.130 42.833 C 144.293 42.833,144.535 42.983,144.667 43.167 C 144.799 43.350,145.005 43.500,145.126 43.500 C 145.378 43.500,146.500 44.576,146.500 44.818 C 146.500 44.908,146.644 45.082,146.819 45.205 C 146.994 45.327,147.190 45.707,147.254 46.047 C 147.318 46.388,147.437 46.667,147.519 46.667 C 147.600 46.667,147.667 46.925,147.667 47.240 C 147.667 47.556,147.742 47.860,147.833 47.917 C 148.037 48.043,148.056 50.892,147.856 51.294 C 147.664 51.678,147.321 52.657,147.214 53.125 C 147.166 53.331,147.062 53.500,146.981 53.500 C 146.900 53.500,146.833 53.614,146.833 53.753 C 146.833 54.171,144.768 56.118,144.190 56.245 C 143.904 56.308,143.628 56.428,143.575 56.513 C 143.523 56.597,143.302 56.667,143.083 56.667 C 142.865 56.667,142.640 56.742,142.583 56.833 C 142.527 56.925,141.847 57.000,141.073 57.000 C 140.247 57.000,139.667 56.931,139.667 56.833 C 139.667 56.742,139.442 56.667,139.167 56.667 C 138.892 56.667,138.667 56.600,138.667 56.519 C 138.667 56.437,138.394 56.319,138.061 56.257 C 137.309 56.116,135.167 54.012,135.167 53.415 C 135.167 53.279,135.092 53.167,135.000 53.167 C 134.908 53.167,134.833 53.017,134.833 52.833 C 134.833 52.650,134.758 52.500,134.667 52.500 C 134.575 52.500,134.500 52.317,134.500 52.093 C 134.500 51.869,134.425 51.640,134.333 51.583 C 134.237 51.524,134.167 50.609,134.167 49.407 C 134.167 48.136,134.231 47.333,134.333 47.333 C 134.425 47.333,134.500 47.108,134.500 46.833 C 134.500 46.558,134.575 46.333,134.667 46.333 C 134.758 46.333,134.833 46.200,134.833 46.037 C 134.833 45.874,134.983 45.632,135.167 45.500 C 135.350 45.368,135.500 45.180,135.500 45.082 C 135.500 44.790,137.109 43.167,137.399 43.167 C 137.546 43.167,137.667 43.092,137.667 43.000 C 137.667 42.908,137.817 42.833,138.000 42.833 C 138.183 42.833,138.333 42.758,138.333 42.667 C 138.333 42.575,138.483 42.500,138.667 42.500 C 138.850 42.500,139.000 42.425,139.000 42.333 C 139.000 42.242,139.225 42.167,139.500 42.167 C 139.775 42.167,140.000 42.092,140.000 42.000 C 140.000 41.906,140.472 41.833,141.083 41.833 C 141.694 41.833,142.167 41.906,142.167 42.000 M192.083 42.000 C 192.140 42.092,192.444 42.167,192.760 42.167 C 193.075 42.167,193.333 42.242,193.333 42.333 C 193.333 42.425,193.483 42.500,193.667 42.500 C 193.850 42.500,194.000 42.575,194.000 42.667 C 194.000 42.758,194.114 42.833,194.253 42.833 C 194.969 42.833,197.500 45.931,197.500 46.807 C 197.500 46.994,197.575 47.193,197.667 47.250 C 197.758 47.307,197.833 47.724,197.833 48.177 C 197.833 48.629,197.908 49.000,198.000 49.000 C 198.092 49.000,198.167 49.225,198.167 49.500 C 198.167 49.775,198.099 50.000,198.016 50.000 C 197.933 50.000,197.828 50.356,197.783 50.792 C 197.674 51.835,197.313 53.167,197.139 53.167 C 197.062 53.167,197.000 53.280,197.000 53.419 C 197.000 53.842,194.602 56.118,194.022 56.245 C 193.737 56.308,193.461 56.428,193.409 56.513 C 193.356 56.597,193.135 56.667,192.917 56.667 C 192.698 56.667,192.473 56.742,192.417 56.833 C 192.360 56.925,191.760 57.000,191.083 57.000 C 190.407 57.000,189.807 56.925,189.750 56.833 C 189.693 56.742,189.510 56.667,189.343 56.667 C 189.175 56.667,188.823 56.555,188.561 56.418 C 188.298 56.281,187.952 56.168,187.792 56.168 C 187.631 56.167,187.500 56.092,187.500 56.000 C 187.500 55.908,187.369 55.831,187.208 55.828 C 187.048 55.826,186.729 55.596,186.500 55.318 C 186.271 55.040,185.915 54.633,185.708 54.414 C 185.502 54.195,185.333 53.899,185.333 53.758 C 185.333 53.616,185.277 53.499,185.208 53.499 C 185.059 53.497,184.667 52.690,184.667 52.383 C 184.667 52.264,184.592 52.167,184.500 52.167 C 184.408 52.167,184.333 51.984,184.333 51.760 C 184.333 51.536,184.258 51.307,184.167 51.250 C 184.075 51.193,184.000 50.443,184.000 49.573 C 184.000 48.636,184.067 48.000,184.167 48.000 C 184.258 48.000,184.333 47.700,184.333 47.333 C 184.333 46.967,184.408 46.667,184.500 46.667 C 184.592 46.667,184.667 46.517,184.667 46.333 C 184.667 46.150,184.742 46.000,184.833 46.000 C 184.925 46.000,185.000 45.850,185.000 45.667 C 185.000 45.483,185.059 45.333,185.131 45.333 C 185.203 45.333,185.386 45.127,185.539 44.875 C 185.979 44.149,186.601 43.500,186.858 43.500 C 186.987 43.500,187.201 43.350,187.333 43.167 C 187.465 42.983,187.707 42.833,187.870 42.833 C 188.033 42.833,188.167 42.758,188.167 42.667 C 188.167 42.575,188.317 42.500,188.500 42.500 C 188.683 42.500,188.833 42.425,188.833 42.333 C 188.833 42.242,189.058 42.167,189.333 42.167 C 189.608 42.167,189.833 42.092,189.833 42.000 C 189.833 41.906,190.302 41.833,190.907 41.833 C 191.497 41.833,192.027 41.908,192.083 42.000 M244.833 42.000 C 244.833 42.092,245.058 42.167,245.333 42.167 C 245.608 42.167,245.833 42.242,245.833 42.333 C 245.833 42.425,246.042 42.500,246.297 42.500 C 246.569 42.500,246.859 42.638,247.000 42.833 C 247.132 43.017,247.300 43.167,247.374 43.167 C 247.570 43.167,249.333 44.963,249.333 45.163 C 249.333 45.257,249.408 45.333,249.500 45.333 C 249.592 45.333,249.667 45.483,249.667 45.667 C 249.667 45.850,249.742 46.000,249.833 46.000 C 249.925 46.000,250.000 46.150,250.000 46.333 C 250.000 46.517,250.075 46.667,250.167 46.667 C 250.258 46.667,250.333 46.967,250.333 47.333 C 250.333 47.700,250.408 48.000,250.500 48.000 C 250.598 48.000,250.667 48.580,250.667 49.407 C 250.667 50.181,250.592 50.860,250.500 50.917 C 250.408 50.973,250.333 51.278,250.333 51.593 C 250.333 51.909,250.258 52.167,250.167 52.167 C 250.075 52.167,250.000 52.317,250.000 52.500 C 250.000 52.683,249.925 52.833,249.833 52.833 C 249.742 52.833,249.667 52.983,249.667 53.167 C 249.667 53.350,249.592 53.500,249.500 53.500 C 249.408 53.500,249.333 53.614,249.333 53.753 C 249.333 54.169,247.224 56.164,246.665 56.275 C 246.391 56.330,246.167 56.441,246.167 56.521 C 246.167 56.601,245.942 56.667,245.667 56.667 C 245.392 56.667,245.167 56.742,245.167 56.833 C 245.167 56.932,244.559 57.000,243.677 57.000 C 242.857 57.000,242.140 56.925,242.083 56.833 C 242.027 56.742,241.802 56.667,241.583 56.667 C 241.365 56.667,241.140 56.592,241.083 56.500 C 241.027 56.408,240.840 56.333,240.669 56.333 C 240.497 56.333,240.245 56.221,240.107 56.083 C 239.970 55.946,239.775 55.833,239.675 55.833 C 239.397 55.833,237.667 54.042,237.667 53.754 C 237.667 53.614,237.592 53.500,237.500 53.500 C 237.408 53.500,237.333 53.350,237.333 53.167 C 237.333 52.983,237.258 52.833,237.167 52.833 C 237.075 52.833,237.000 52.683,237.000 52.500 C 237.000 52.317,236.925 52.167,236.833 52.167 C 236.742 52.167,236.667 51.942,236.667 51.667 C 236.667 51.392,236.592 51.167,236.500 51.167 C 236.401 51.167,236.333 50.528,236.333 49.583 C 236.333 48.639,236.401 48.000,236.500 48.000 C 236.592 48.000,236.667 47.775,236.667 47.500 C 236.667 47.225,236.742 47.000,236.833 47.000 C 236.925 47.000,237.000 46.775,237.000 46.500 C 237.000 46.225,237.075 46.000,237.167 46.000 C 237.258 46.000,237.333 45.868,237.333 45.707 C 237.333 45.545,237.483 45.320,237.667 45.205 C 237.850 45.091,238.000 44.921,238.000 44.828 C 238.000 44.559,239.464 43.167,239.746 43.167 C 239.886 43.167,240.000 43.106,240.000 43.031 C 240.000 42.957,240.262 42.793,240.583 42.667 C 240.904 42.541,241.167 42.377,241.167 42.302 C 241.167 42.228,241.392 42.167,241.667 42.167 C 241.942 42.167,242.167 42.092,242.167 42.000 C 242.167 41.903,242.722 41.833,243.500 41.833 C 244.278 41.833,244.833 41.903,244.833 42.000 " stroke="none" fill="#241c24" fill-rule="evenodd"></path>
        <path id="path1" d="M14.000 45.250 L 14.000 67.339 18.375 67.294 L 22.750 67.250 22.833 57.583 L 22.917 47.917 31.481 47.873 C 37.667 47.842,40.109 47.883,40.273 48.019 C 40.460 48.174,40.500 49.899,40.500 57.773 L 40.500 67.339 44.958 67.294 L 49.417 67.250 49.449 53.170 C 49.467 45.426,49.542 39.070,49.616 39.045 C 49.690 39.021,49.947 39.319,50.188 39.709 C 50.428 40.098,51.434 41.729,52.423 43.333 C 54.752 47.112,56.511 49.956,59.690 55.083 C 61.110 57.375,63.011 60.450,63.913 61.917 C 64.814 63.383,65.954 65.203,66.446 65.961 L 67.339 67.339 71.711 67.294 L 76.083 67.250 76.083 45.250 L 76.083 23.250 72.209 23.205 L 68.335 23.161 68.293 37.705 C 68.260 48.869,68.204 52.250,68.050 52.250 C 67.941 52.250,67.162 51.125,66.320 49.750 C 62.474 43.471,61.582 42.018,60.998 41.083 C 60.655 40.533,59.417 38.508,58.247 36.583 C 57.077 34.658,55.880 32.708,55.586 32.250 C 55.293 31.792,54.553 30.592,53.942 29.583 C 53.330 28.575,52.207 26.738,51.446 25.500 L 50.061 23.250 45.322 23.250 L 40.583 23.250 40.500 31.917 L 40.417 40.583 31.667 40.583 L 22.917 40.583 22.833 31.917 L 22.750 23.250 18.375 23.206 L 14.000 23.161 14.000 45.250 " stroke="none" fill="#fbf9fa" fill-rule="evenodd"></path>
        <path id="path2" d="M0.000 45.417 L 0.000 90.833 45.417 90.833 L 90.833 90.833 90.833 45.417 L 90.833 0.000 45.417 0.000 L 0.000 0.000 0.000 45.417 M22.833 31.917 L 22.917 40.583 31.667 40.583 L 40.417 40.583 40.500 31.917 L 40.583 23.250 45.322 23.250 L 50.061 23.250 51.446 25.500 C 52.207 26.738,53.330 28.575,53.942 29.583 C 54.553 30.592,55.293 31.792,55.586 32.250 C 55.880 32.708,57.077 34.658,58.247 36.583 C 59.417 38.508,60.655 40.533,60.998 41.083 C 61.582 42.018,62.474 43.471,66.320 49.750 C 67.162 51.125,67.941 52.250,68.050 52.250 C 68.204 52.250,68.260 48.869,68.293 37.705 L 68.335 23.161 72.209 23.205 L 76.083 23.250 76.083 45.250 L 76.083 67.250 71.711 67.294 L 67.339 67.339 66.446 65.961 C 65.954 65.203,64.814 63.383,63.913 61.917 C 63.011 60.450,61.110 57.375,59.690 55.083 C 56.511 49.956,54.752 47.112,52.423 43.333 C 51.434 41.729,50.428 40.098,50.188 39.709 C 49.947 39.319,49.690 39.021,49.616 39.045 C 49.542 39.070,49.467 45.426,49.449 53.170 L 49.417 67.250 44.958 67.294 L 40.500 67.339 40.500 57.773 C 40.500 49.899,40.460 48.174,40.273 48.019 C 40.109 47.883,37.667 47.842,31.481 47.873 L 22.917 47.917 22.833 57.583 L 22.750 67.250 18.375 67.294 L 14.000 67.339 14.000 45.250 L 14.000 23.161 18.375 23.206 L 22.750 23.250 22.833 31.917 " stroke="none" fill="#bb0c33" fill-rule="evenodd"></path>
      </g>
    </svg>
  </a>
</div>
          

Linking

Every document contains a unique identifier _id field. This field can be used for linking to the original content.
The endpoint for linking to content is: https://cdn.hsyndicate.org/e/_id
https://cdn.hsyndicate.org/e/4089307

Pagination

By default the List API returns the first 10 documents. Use the from argument to retrieve more documents.
The from argument defines the offset from the first document, the argument is optional and defaults to 0.
https://api.hsyndicate.org/v1/list?from=10

Size

By default the List API returns 10 documents. Use the size argument to set the number of documents to return.
The size argument is optional and defaults to 10. Please do not use values above 50 as this will impact performance.
https://api.hsyndicate.org/v1/list?size=3

Filtering

Use the q argument to filter the results based on one or more arguments.
The results can be filtered on any of the fields returned by the list API. Text filtering is enabled, however we suggest to use IDs where possible.

Sorting

By default the List API returns the documents sorted by published date. Use the sort argument to sort documents by either published date or score.
This argument must either be published or score, the argument is optional and defaults to published. Sorting by score works best in combination with a date range filter. Without a date range filter old and/or irrelevant documents might be returned by the API.
https://api.hsyndicate.org/v1/list?q=marriott+AND+published:[2018-12-01+TO+*]&sort=score

Filtering Samples

Match documents where any field contains Marriott
https://api.hsyndicate.org/v1/list?q="Marriott"

Match documents where the name field contains Marriott
https://api.hsyndicate.org/v1/list?q=name:"Marriott"

Match documents where the name field contains either Marriott or Hilton Hotels
https://api.hsyndicate.org/v1/list?q=name:("Marriott"+OR+"Hilton+Hotels")

Match documents by type, see types for more information about types
https://api.hsyndicate.org/v1/list?q=type:"opinion"

Match documents by except a specific type
https://api.hsyndicate.org/v1/list?q=NOT+(type:”supplier”)

Match multiple types
https://api.hsyndicate.org/v1/list?q=type:"opinion"+OR+type:"pr"

Match documents in a specific focus, ie. Sales & Marketing, see focus for more information about focusses
https://api.hsyndicate.org/v1/list?q=focus.id:147000325

Match documents in a specific focus, ie. matching both Sales & Marketing AND Brand Marketing
https://api.hsyndicate.org/v1/list?q=focus.id:(147000325+AND+147000408)

Match documents in a specific focus, ie. matching both Sales & Marketing OR Brand Marketing
https://api.hsyndicate.org/v1/list?q=focus.id:(147000325+OR+147000408)

Match documents in a specific region, ie. US & Canada, see locations for more information about countries
https://api.hsyndicate.org/v1/list?q=location.region:(150000320)

Match documents in a specific region with a specific focus, ie. US & Canada AND Sales & Marketing
https://api.hsyndicate.org/v1/list?q=location.region:150000320+AND+focus.id:147000325

Match documents in a specific country with a specific focus, ie. The Netherlands AND Sales & Marketing
https://api.hsyndicate.org/v1/list?q=location.country:157000482+AND+focus.id:147000325

Match documents within a specific date range
https://api.hsyndicate.org/v1/list?q=published:[2018-01-01+TO+2018-01-31]
https://api.hsyndicate.org/v1/list?q=published:[2018-08-13+TO+*]

Contact your Hsyndicate representative if you need help with filtering.

Types

Types are database specific sub categories and can be used to retrieve documents with a specific type.
API calls can be limited to a specific type by adding the q argument with a type filter.

https://api.hsyndicate.org/v1/list?q=type:"opinion"
https://api.hsyndicate.org/v1/list?q=NOT+(type:"supplier")
https://api.hsyndicate.org/v1/list?q=type:"opinion"+OR+type:"pr"

Blogs
  • blog
  • pr
  • opinion
  • editorial
  • market
  • supplier
News
  • pr
  • opinion
  • editorial
  • market
  • supplier
  • whitepaper
Hotel Announcements
  • Pipeline
  • Groundbreaking
  • Opening
  • Renovation
  • Rebranding
  • Demolition
  • Closure

Focus

News and Blog documents are categorized in one or more of the following focusses.
API calls can be limited to a specific focus by adding the q argument with a focus.id filter.

https://api.hsyndicate.org/v1/list?q=focus.id:147000325
https://api.hsyndicate.org/v1/list?q=focus.id:(147000325+AND+147000408)
https://api.hsyndicate.org/v1/list?q=focus.id:(147000325+OR+147000408)

147000321Finance
147000409Markets & Performance
147000431Asset Management
147000402Finance & Accounting
147000410Fraud Prevention
147000336Legal
147000429Partnerships, Mergers & Acquisitions
147000394Real Estate & Investment
147000414Supply Construction

147000434Food and beverage
147000411Catering & Banqueting
147000345Culinary Arts
147000333Food & Beverage
147000442Health

147000323Human Resources
147000343Appointments
147000416Compensation
147000355Diversity
147000405Education & Professional Development
147000412Hotelschools | Universities
147000359Labor Unions
147000418Recruitment

147000326Information Technology
147000439Chatbots, Robotics & AI
147000330Guestroom Technology
147000426PCI Compliance
147000327Property Technology
147000349Travel Technology
147000437Virtual Reality

147000391Lodging Industry
147000334Boutique & Lifestyle
147000440Casinos-Gaming
147000432Clubs
147000322Franchise
147000447Homesharing
147000444Hostels & Economy Lodging
147000446Housekeeping
147000392Management Companies
147000393REITs
147000448Vacation Rentals

147000438Market Segments
147000353Adventure Travel
147000369Business Travel
147000371Extended Stay
147000376Leisure Travel
147000372LGBTQ
147000417Medical Tourism
147000340MICE
147000379Religious Travel
147000380Seniors
147000449Sports Tourism

147000325Sales & Marketing
147000399Advertising
147000365Airlines
147000415Airports
147000404Amusement Parks
147000366Association Marketing
147000430Big Data
147000408Brand Marketing
147000419Celebrity Hotels
147000400Consumer Trends
147000445Content Marketing
147000341CRM & Loyalty
147000398Cruise Line Marketing
147000395Destination Marketing
147000397Digital Marketing
147000381Email marketing
147000441Guest Experience
147000420Hospitality History
147000425Innovation
147000373Mobile Marketing
147000377Online Travel Agencies (OTA)
147000370Public Relations
147000374Reputation Management
147000329Revenue Management
147000378Search Marketing
147000382Social Media
147000360Spa Wellness
147000362Timeshare Vacation Ownership
147000347Weddings & Honeymoons

147000384Miscellaneous
147000361Awards and Accolades
147000406Corporate Social Responsibility (CSR)
147000435Design and Architecture
147000320Environment & Sustainability
147000339Events & Conferences
147000344Hotel Openings
147000364Hotel Ratings & Classification
147000363Industry Rankings
147000328Safety & Security
147000443Terrorism

Locations

Documents can be filtered by region, country and state.
API calls can be limited to a specific type by adding the q argument with a location.region, location.country or location.state filter.

https://api.hsyndicate.org/v1/list?q=location.region:(150000320)
https://api.hsyndicate.org/v1/list?q=location.country:(150000320)
https://api.hsyndicate.org/v1/list?q=location.state:(150000320)

Regions

150000322Global
150000327Africa
150000323Asia Pacific
150000326Caribbean
150000325Central & South America
150000321Europe
150000324Middle East
150000320USA & Canada

Countries

157000323Afghanistan
157000326Albania
157000381Algeria
157000332American Samoa
157000321Andorra
157000329Angola
157000325Anguilla
157000330Antarctica
157000324Antigua and Barbuda
157000331Argentina
157000327Armenia
157000335Aruba
157000320Ascension Island
157000334Australia
157000333Austria
157000336Azerbaijan
157000352Bahamas
157000343Bahrain
157000339Bangladesh
157000338Barbados
157000356Belarus
157000340Belgium
157000357Belize
157000345Benin
157000346Bermuda
157000353Bhutan
157000349Bolivia
157000337Bosnia and Herzegovina
157000355Botswana
157000354Bouvet Island
157000350Brazil
157000424British West Indies
157000347Brunei Darussalam
157000342Bulgaria
157000341Burkina Faso
157000344Burundi
157000435Cambodia
157000367Cameroon
157000358Canada
157000372Cap Verde
157000442Cayman Islands
157000361Central African Republic
157000528Chad
157000366Chile
157000368China
157000373Christmas Island
157000359Cocos (Keeling) Islands
157000369Colombia
157000437Comoros
157000360Congo, Democratic Republic of the
157000362Congo, Republic of
157000365Cook Islands
157000370Costa Rica
157000364Cote d'Ivoire
157000416Croatia
157000371Cuba
157000374Cyprus
157000375Czech Republic
157000378Denmark
157000377Djibouti
157000379Dominica
157000380Dominican Republic
157000537East Timor
157000382Ecuador
157000384Egypt
157000524El Salvador
157000406Equatorial Guinea
157000386Eritrea
157000383Estonia
157000388Ethiopia
157000391Falkland Islands (Malvinas)
157000393Faroe Islands
157000390Fiji
157000389Finland
157000394France
157000398French Guiana
157000491French Polynesia
157000529French Southern Territories
157000395Gabon
157000403Gambia
157000397Georgia
157000376Germany
157000400Ghana
157000401Gibraltar
157000407Greece
157000402Greenland
157000396Grenada
157000405Guadeloupe
157000410Guam
157000409Guatemala
157000399Guernsey
157000404Guinea
157000411Guinea-Bissau
157000412Guyana
157000417Haiti
157000414Heard and McDonald Islands
157000415Honduras
157000413Hong Kong (SAR)
157000418Hungary
157000427Iceland
157000423India
157000419Indonesia
157000426Iran
157000425Iraq
157000420Ireland
157000422Isle of Man
157000421Israel
157000428Italy
157000430Jamaica
157000432Japan
157000429Jersey
157000431Jordan
157000443Kazakhstan
157000433Kenya
157000436Kiribati
157000439Korea, Democratic People's Republic
157000440Korea, Republic of
157000441Kuwait
157000434Kyrgyzstan
157000444Laos
157000453Latvia
157000445Lebanon
157000450Lesotho
157000449Liberia
157000454Libya
157000447Liechtenstein
157000451Lithuania
157000452Luxembourg
157000464Macau
157000460Macedonia
157000458Madagascar
157000472Malawi
157000474Malaysia
157000471Maldives
157000461Mali
157000469Malta
157000459Marshall Islands
157000466Martinique
157000467Mauritania
157000470Mauritius
157000560Mayotte
157000473Mexico
157000392Micronesia
157000457Moldova, Republic of
157000456Monaco
157000463Mongolia
157000561Montenegro
157000468Montserrat
157000455Morocco
157000475Mozambique
157000462Myanmar
157000476Namibia
157000485Nauru
157000484Nepal
157000482Netherlands, The
157000328Netherlands Antilles
157000477New Caledonia
157000487New Zealand
157000481Nicaragua
157000478Niger
157000480Nigeria
157000486Niue
157000479Norfolk Island
157000465Northern Mariana Islands
157000483Norway
157000488Oman
157000494Pakistan
157000501Palau
157000499Palestinian Territories
157000489Panama
157000492Papua New Guinea
157000502Paraguay
157000490Peru
157000493Philippines
157000497Pitcairn Island
157000495Poland
157000500Portugal
157000498Puerto Rico
157000503Qatar
157000504Reunion Island
157000505Romania
157000506Russian Federation
157000507Rwanda
157000572Saint Barthelemy
157000438Saint Kitts and Nevis
157000446Saint Lucia
157000551Saint Vincent and the Grenadines
157000519San Marino
157000523Sao Tome and Principe
157000508Saudi Arabia
157000520Senegal
157000562Serbia
157000510Seychelles
157000518Sierra Leone
157000513Singapore
157000517Slovak Republic
157000515Slovenia
157000509Solomon Islands
157000521Somalia
157000563South Africa
157000408South Georgia, South Sandwich Islands
157000387Spain
157000448Sri Lanka
157000514St. Helena
157000496St. Pierre and Miquelon
157000511Sudan
157000522Suriname
157000516Svalbard and Jan Mayen Islands
157000526Swaziland
157000512Sweden
157000363Switzerland
157000525Syria
157000541Taiwan
157000532Tajikistan
157000542Tanzania
157000531Thailand
157000530Togo
157000533Tokelau
157000536Tonga
157000539Trinidad and Tobago
157000535Tunisia
157000538Turkey
157000534Turkmenistan
157000527Turks and Caicos Islands
157000540Tuvalu
157000544Uganda
157000543Ukraine
157000322United Arab Emirates
157000545United Kingdom
157000547United States
157000548Uruguay
157000546US Minor Outlying Islands
157000549Uzbekistan
157000556Vanuatu
157000550Vatican
157000552Venezuela
157000555Vietnam
157000553Virgin Islands (British)
157000554Virgin Islands (USA)
157000557Wallis and Futuna Islands
157000385Western Sahara
157000558Western Samoa
157000559Yemen
157000564Zambia
157000565Zimbabwe

States

158000320Alabama
158000321Alaska
158000322Arizona
158000323Arkansas
158000324California
158000325Colorado
158000326Connecticut
158000327Delaware
158000328District of Columbia
158000329Florida
158000330Georgia
158000331Hawaii
158000332Idaho
158000333Illinois
158000334Indiana
158000335Iowa
158000336Kansas
158000337Kentucky
158000338Louisiana
158000339Maine
158000340Maryland
158000341Massachusetts
158000342Michigan
158000343Minnesota
158000344Mississippi
158000345Missouri
158000346Montana
158000347Nebraska
158000349Nevada
158000350New Hampshire
158000352New Jersey
158000353New Mexico
158000354New York
158000355North Carolina
158000356North Dakota
158000357Ohio
158000358Oklahoma
158000359Oregon
158000360Pennsylvania
158000361Rhode Island
158000362South Carolina
158000363South Dakota
158000364Tennessee
158000365Texas
158000366Utah
158000367Vermont
158000368Virginia
158000369Washington
158000370West Virginia
158000371Wisconsin
158000372Wyoming