{"info":{"_postman_id":"b38c0ebb-b186-48e0-807b-c3c8d61ca214","name":"Article CMS - External","description":"<html><head></head><body><p>This collection documents the Cortex articles CMS, which corresponds to the Content section of the Cortex platform.</p>\n<p>Articles are made up of blocks, and these blocks hold enough information in order for the consumer to pull the content and render it in order.</p>\n<p>As a headless CMS, it is a back-end only content management system built from the ground up as a content repository that makes content accessible via a RESTful API for display on any device, essentially it decouples the content from the presentation layers.</p>\n<p>The term “headless” comes from the concept of chopping the “head” (the front end, i.e. the website) off the “body” (the back end, i.e. the content repository).</p>\n<img src=\"https://media-cdn.incrowdsports.com/6dd3f85f-bdc3-4c08-b65e-71a4654ca5b7.png\">\n\n<img src=\"https://media-cdn.incrowdsports.com/3a30ee23-0e97-4575-a536-9636dcd6b173.png\">\n\n<h1 id=\"content-types\">Content Types</h1>\n<p>The CMS currently supports these content types:</p>\n<ul>\n<li><p><a href=\"#unknown\">UNKNOWN</a></p>\n</li>\n<li><p><a href=\"#text\">TEXT</a></p>\n</li>\n<li><p><a href=\"#Image\">IMAGE</a></p>\n</li>\n<li><p><a href=\"#video\">VIDEO</a></p>\n</li>\n<li><p><a href=\"#gallery\">GALLERY</a></p>\n</li>\n<li><p><a href=\"#article-link\">ARTICLE_LINK</a></p>\n</li>\n<li><p><a href=\"#promo\">PROMO</a></p>\n</li>\n<li><p><a href=\"#quote\">QUOTE</a></p>\n</li>\n<li><p><a href=\"#related-content\">RELATED_CONTENT</a></p>\n</li>\n<li><p><a href=\"#advert\">ADVERT</a></p>\n</li>\n<li><p><a href=\"#poll\">POLL</a></p>\n</li>\n<li><p><a href=\"#cloud-matrix\">CLOUD_MATRIX</a></p>\n</li>\n<li><p><a href=\"#feed\">FEED</a></p>\n</li>\n<li><p><a href=\"#form\">FORM</a></p>\n</li>\n<li><p><a href=\"#button\">BUTTON</a></p>\n</li>\n<li><p><a href=\"#collection\">COLLECTION</a></p>\n</li>\n<li><p><a href=\"#custom\">CUSTOM</a></p>\n</li>\n</ul>\n<h2 id=\"unknown\">Unknown</h2>\n<p>This shouldn't ever be the case, but if a content type happens to be UNKOWN, please ignore and do not render.</p>\n<h2 id=\"text\">Text</h2>\n<p>A Text block. Containing Markdown and / or HTML.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - TEXT</a></td>\n</tr>\n<tr>\n<td>content</td>\n<td>Yes</td>\n<td>String</td>\n<td>Combination of Markdown and HTML for viewing in a webview</td>\n</tr>\n<tr>\n<td>isHtml</td>\n<td>No</td>\n<td>Boolean</td>\n<td>Flag for whether the content is pure html or a mixture of html/markdown. True represents only html content, false represents a mixture of html/markdown. Defaults to false</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\" : \"f4daf7f7-b18a-4eb9-9412-c479305c7ff8\",\n    \"contentType\" : \"TEXT\",\n    \"content\" : \"I am some text  html html  # Markdown\",\n    \"isHtml\" : false\n}\n\n</code></pre><h2 id=\"image\">Image</h2>\n<p>An image block.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - IMAGE</a></td>\n</tr>\n<tr>\n<td>content</td>\n<td>No</td>\n<td>String</td>\n<td>Optional description of the image - only displayed in Gallery Views</td>\n</tr>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>String</td>\n<td>Optional title of the image - only displayed in Gallery Views</td>\n</tr>\n<tr>\n<td>image</td>\n<td>Yes</td>\n<td>String</td>\n<td>The URL for the image</td>\n</tr>\n<tr>\n<td>imageThumbnail</td>\n<td>No</td>\n<td>String</td>\n<td>The optional thumbnail to be used for the image - if this isn't present the image url is used instead</td>\n</tr>\n<tr>\n<td>link</td>\n<td>No</td>\n<td>String</td>\n<td>Optional link - if present on a non gallery view and tapped - the user is linked out to somewhere</td>\n</tr>\n<tr>\n<td>altText</td>\n<td>No</td>\n<td>String</td>\n<td>Optional alt text (alternative text) used to describe the appearance or function of an image. If present, should be inserted in the <code>alt</code> image tag attribute.</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\":\"40164c05-66fa-4ee2-900a-8c873bab3aa0\",\n    \"contentType\":\"IMAGE\",\n    \"title\":\"MY TITLE\",\n    \"content\":\"SOME DESCRPTION IN PLAIN TEXT\",\n    \"image\":\"https://media-cdn.incrowdsports.com/2d674f36-1152-45aa-a5ee-fed61997f635.jpg\",\n    \"imageThumbnail\":\"https://media-cdn.incrowdsports.com/2d674f36-1152-45aa-a5ee-fed61997f635.jpg?width=400\",\n    \"link\":\"https://incrowdsports.com/\"\n}\n\n</code></pre><h2 id=\"video\">Video</h2>\n<p>A video block - the actual video player rendered will depend on the sourceSystem.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - VIDEO</a></td>\n</tr>\n<tr>\n<td>content</td>\n<td>No</td>\n<td>String</td>\n<td>Optional Markdown content to go below the video</td>\n</tr>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>String</td>\n<td>Optional title of the image - only displayed in Gallery Views</td>\n</tr>\n<tr>\n<td>videoThumbnail</td>\n<td>No</td>\n<td>String</td>\n<td>The thumbnail to be used for the video</td>\n</tr>\n<tr>\n<td>link</td>\n<td>No</td>\n<td>String</td>\n<td>Optional share link for the video</td>\n</tr>\n<tr>\n<td>sourceSystem</td>\n<td>Yes</td>\n<td>String</td>\n<td>Which 3rd party system the video comes from - and therefore which player to use</td>\n</tr>\n<tr>\n<td>sourceSystemId</td>\n<td>Yes</td>\n<td>String</td>\n<td>The unique ID of the video on the source system</td>\n</tr>\n<tr>\n<td>altText</td>\n<td>No</td>\n<td>String</td>\n<td>Optional alt text (alternative text) used to describe the appearance or function of a video. If present, should be inserted in the <code>alt</code> video tag attribute.</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\":\"9a76c3a7-fe9f-4408-9ac8-44f596461d9d\",\n    \"contentType\":\"VIDEO\",\n    \"sourceSystem\":\"YOUTUBE\",\n    \"sourceSystemId\":\"RJQ6pk1230eJ8A\",\n    \"link\":\"https://www.youtube.com/watch?v=1235345\",\n    \"videoThumbnail\":\"https://media-cdn.cortextech.io/2d674f36-1152-45aa-a5ee-fed61997f635.jpg?width=400\",\n    \"content\":\"SOME DESCRPTION IN PLAIN TEXT\",\n    \"title\":\"This is a title\"\n}\n\n</code></pre><h2 id=\"gallery\">Gallery</h2>\n<p>An Image Gallery Block.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - GALLERY</a></td>\n</tr>\n<tr>\n<td>children</td>\n<td>Yes</td>\n<td>Array of Content</td>\n<td>List of Image blocks to render in the gallery</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"e00375fc-5e6d-4df9-bf2c-e79856314a0f\",\n  \"contentType\": \"GALLERY\",\n  \"children\": [\n    {\n      \"id\": \"fe254889-6e9a-4e2f-9f5e-af9793b293d5\",\n      \"contentType\": \"IMAGE\",\n      \"title\": \"InCrowd Image 1\",\n      \"image\": \"https://media-cdn.cortextech.io/2d674f36-1152-45aa-a5ee-fed61997f635.jpg\"\n    },\n    {\n      \"id\": \"8bc1eadc-ede2-4160-8d79-b12745a5281d\",\n      \"contentType\": \"IMAGE\",\n      \"title\": \"InCrowd Image 2\",\n      \"image\": \"https://media-cdn.cortextech.io/2d674f36-1152-45aa-a5ee-fed61997f635.jpg\"\n    },\n    {\n      \"id\": \"a8341fe6-b096-46db-97d0-cea9d4a932d3\",\n      \"contentType\": \"IMAGE\",\n      \"title\": \"InCrowd Image 3\",\n      \"image\": \"https://media-cdn.cortextech.io/2d674f36-1152-45aa-a5ee-fed61997f635.jpg\"\n    }\n  ]\n}\n\n</code></pre><h2 id=\"promo\">Promo</h2>\n<p>A promo block - created through the campaigns service via Bridge.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - PROMO</a></td>\n</tr>\n<tr>\n<td>sourceSystemId</td>\n<td>Yes</td>\n<td>String</td>\n<td>The unique ID of the Promo Block from the promo blocks management system</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\":\"40164c05-66fa-4ee2-900a-8c873bab3aa0\",\n    \"contentType\":\"PROMO\",\n    \"sourceSystemId\":\"e959c586-f766-49e9-b9de-527d11d521fa\"\n}\n\n</code></pre><h2 id=\"quote\">Quote</h2>\n<p>A Quote block.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - QUOTE</a></td>\n</tr>\n<tr>\n<td>text</td>\n<td>Yes</td>\n<td>String</td>\n<td>The quote itself e.g. “Talent wins games, but teamwork and intelligence wins championships\"</td>\n</tr>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>String</td>\n<td>Job Title/Role e.g. NBA Legend</td>\n</tr>\n<tr>\n<td>author</td>\n<td>No</td>\n<td>String</td>\n<td>The quoted author e.g. Michael Jordan</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\":\"40164c05-66fa-4ee2-900a-8c873bab3aa0\",\n  \"contentType\":\"QUOTE\",\n  \"title\":\"Michael Jordan, NBA Legend\",\n  \"author\":\"Michael Jordan\",\n  \"text\":\"Talent wins games, but teamwork and intelligence wins championships\"\n}\n\n</code></pre><h2 id=\"related-content\">Related Content</h2>\n<p>Related Content Block.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - RELATED_CONTENT</a></td>\n</tr>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>String</td>\n<td>Title of related content</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>No</td>\n<td>Array of String</td>\n<td>Tags to search by to find related content</td>\n</tr>\n<tr>\n<td>categoryIds</td>\n<td>No</td>\n<td>Array of String</td>\n<td>Category IDs to search by to find related content</td>\n</tr>\n<tr>\n<td>articleIds</td>\n<td>No</td>\n<td>Array of String</td>\n<td>Specific Article IDs that are related</td>\n</tr>\n<tr>\n<td>linkedIds</td>\n<td>No</td>\n<td>Array of LinkedId</td>\n<td>Linked IDs to search by to find related content</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"contentType\": \"RELATED_CONTENT\",\n  \"title\": \"Related match videos\",\n  \"tags\": [\n    \"video\"\n  ],\n  \"categoryIds\": [\n    \"6f2e9489-c3a0-4913-b8ac-782c8b74a938\"\n  ],\n  \"articleIds\": [\n    \"a5813802-d1e2-418c-9e00-57dcc8401c69\",\n    \"b817597f-c52e-4454-b57b-c709603e22ee\"\n  ],\n  \"linkedIds\": [\n    {\n      \"souceSystem\": \"OPTA_FOOTBALL_MATCH\",\n      \"sourceSystemId\": \"123456\"\n    }\n  ]\n}\n\n</code></pre><h2 id=\"advert\">Advert</h2>\n<p>An Advert block, provided by an external ad provider.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - ADVERT</a></td>\n</tr>\n<tr>\n<td>content</td>\n<td>Yes</td>\n<td>String</td>\n<td>The embed code for the advert</td>\n</tr>\n<tr>\n<td>sourceSystem</td>\n<td>Yes</td>\n<td>String</td>\n<td>The platform of the advert i.e. GOOGLE_AD_MANAGER</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\":\"40164c05-66fa-4ee2-900a-8c873bab3aa0\",\n  \"contentType\":\"ADVERT\",\n  \"content\":\"-- this is embed code for the ad --\",\n  \"sourceSystem\":\"GOOGLE_AD_MANAGER\"\n}\n\n</code></pre><h2 id=\"poll\">Poll</h2>\n<p>A poll block</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - POLL</a></td>\n</tr>\n<tr>\n<td>pollId</td>\n<td>Yes</td>\n<td>String</td>\n<td>The fanscore poll ID</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"f226c584-ae19-433c-94b8-6e4b66a49be2\",\n  \"contentType\": \"POLL\",\n  \"pollId\": \"bae78643-2f4c-38c8-beea-98c10750c218\"\n}\n\n</code></pre><h2 id=\"cloud-matrix\">Cloud Matrix</h2>\n<p>A cloud matrix block</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - CLOUD_MATRIX</a></td>\n</tr>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>String</td>\n<td>The title of the feed</td>\n</tr>\n<tr>\n<td>feedUrl</td>\n<td>Yes</td>\n<td>String</td>\n<td>The url to the cloud matrix feed</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"081d5d88-31af-483e-8dfd-41f6a7272f1b\",\n  \"contentType\": \"CLOUD_MATRIX\",\n  \"title\": \"Cloud matrix\",\n  \"feedUrl\": \"https://client.streamamg.com/api/v1/4b948f16-a85f-4674-9bdc-144e2a383620/plkoj2rqYODorCFDL5ZzTPqkZqXAwVbxQa9QgJdX6VNICCicHC/en/feed/0a22a7a2-1c32-4a25-9bda-c267eb93e918\"\n}\n\n</code></pre><h2 id=\"feed\">Feed</h2>\n<p>A feed block</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - FEED</a></td>\n</tr>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>String</td>\n<td>The title of the feed</td>\n</tr>\n<tr>\n<td>sourceSystem</td>\n<td>Yes</td>\n<td>String</td>\n<td>The source system of the feed i.e. BRIDGE</td>\n</tr>\n<tr>\n<td>sourceSystemId</td>\n<td>Yes</td>\n<td>String</td>\n<td>The source system ID of the feed for the specified source system i.e. 60c095715eb4fd8da365da6a</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"13eadf9b-2386-414f-bd9e-ea584622daad\",\n  \"contentType\": \"FEED\",\n  \"title\": \"Example Feed\",\n  \"sourceSystem\": \"BRIDGE\",\n  \"sourceSystemId\": \"60c095715eb4fd8da365da6a\"\n}\n\n</code></pre><h2 id=\"form\">Form</h2>\n<p>A form block</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - FORM</a></td>\n</tr>\n<tr>\n<td>formId</td>\n<td>Yes</td>\n<td>String</td>\n<td>The form ID i.e. 61f911a186fd2fed38662840</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"13eadf9b-2386-414f-bd9e-ea584622daad\",\n  \"contentType\": \"FORM\",\n  \"formId\": \"61f911a186fd2fed38662840\"\n}\n\n</code></pre><h2 id=\"button\">Button</h2>\n<p>A button block</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - BUTTON</a></td>\n</tr>\n<tr>\n<td>title</td>\n<td>Yes</td>\n<td>String</td>\n<td>The title/label of the button</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Yes</td>\n<td>String</td>\n<td>The destination the button should take you to</td>\n</tr>\n<tr>\n<td>openInNewTab</td>\n<td>Yes</td>\n<td>Boolean</td>\n<td>Controls whether the button should open in a new tab</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"94b3f199-2487-4367-8b67-08d27048c150\",\n  \"contentType\": \"BUTTON\",\n  \"openInNewTab\": false,\n  \"title\": \"Test\",\n  \"link\": \"https://www.google.co.uk\"\n}\n\n</code></pre><h2 id=\"collection\">Collection</h2>\n<p>A collection block which is essentially a wrapper around a list of content blocks</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - COLLECTION</a></td>\n</tr>\n<tr>\n<td>title</td>\n<td>No</td>\n<td>String</td>\n<td>The title of the collection</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Yes</td>\n<td>Array of Content</td>\n<td>List of content blocks within the collection</td>\n</tr>\n<tr>\n<td>appearance.type</td>\n<td>Yes</td>\n<td>String</td>\n<td>controls the appearance of the collection - can be ACCORDION or TAB</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"2c562e90-75b9-4e50-8745-1ee7c35d11f7\",\n  \"contentType\": \"COLLECTION\",\n  \"title\": \"Test\",\n  \"children\": [\n    {\n      \"id\": \"dd36e826-9ab9-4341-af0c-176296211017\",\n      \"children\": [\n        {\n          \"id\": \"4d9fed3e-81bf-48ef-9a90-5961c2d3c1da\",\n          \"contentType\": \"BUTTON\",\n          \"openInNewTab\": true,\n          \"title\": \"Open in new tab\",\n          \"link\": \"https://google.com\"\n        }\n      ],\n      \"title\": \"Tab 1 Example Title (DO NOT DELETE PLEASE) Example Title (DO NOT DELETE PLEASE) Example Title (DO NOT DELETE PLEASE)\"\n    }\n  ],\n  \"appearance\": {\n    \"type\": \"ACCORDION\"\n  }\n}\n\n</code></pre><h2 id=\"custom\">Custom</h2>\n<p>A custom content block which can contain custom JSON. Built within bridge via the Custom Content Block service.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Yes</td>\n<td>String (UUID)</td>\n<td>Unique ID for the element</td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>Yes</td>\n<td>String</td>\n<td><a href=\"#content-types\">Content Type - CUSTOM</a></td>\n</tr>\n<tr>\n<td>customContentType</td>\n<td>Yes</td>\n<td>String</td>\n<td>The ID of the custom content block</td>\n</tr>\n<tr>\n<td>customContent</td>\n<td>Yes</td>\n<td>Object</td>\n<td>The custom content block as defined by CCB service</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"f141d41d-3c53-4c99-9ca0-dcc80612e238\",\n  \"contentType\": \"CUSTOM\",\n  \"customContentType\": \"610bd715209b7a39199e7a0f\",\n  \"customContent\": {\n    \"playerFirstName_string\": \"John\",\n    \"playerLastName_string\": \"Andrew\",\n    \"shirtNumber_number\": \"\",\n    \"position_string\": \"Hooker\",\n    \"shopLink_string\": \"https://www.ulsterrugbyshop.com/?utm_source=Ulster+website&amp;utm_medium=Web+link&amp;utm_campaign=Retail&amp;utm_id=Retail\",\n    \"dateOfBirth_string\": \"26/05/1993\",\n    \"signedDate_string\": \"\",\n    \"height_string\": \"1.8 m\",\n    \"country_string\": \"Ballymena\",\n    \"position_select\": \"Hooker\",\n    \"weight_string\": \"100 kg\",\n    \"honours_string\": \"\",\n    \"personalised_content\": {\n      \"sourceSystemId\": \"f839b79d-6abe-56d0-9daf-6ae894862f7b\"\n    },\n    \"appearances_string\": \"91\"\n  }\n}\n\n</code></pre><h1 id=\"webhooks\">Webhooks</h1>\n<p>This sections details the webhook service with can be configured for clients. The webhook service sends the article in its new state to the clients configured URL (note this can be multiple URLs if required). This service is useful for cleaing caches and updating external services that consume articles from the CMS.</p>\n<p>The webhook service also allow for custom headers to be added to the request as the client needs in order for them to validate the request has come from us. The topic of the update will be also send as a header <code>X-CMS-Topic</code> to the webhook URL.</p>\n<p>Topic types:</p>\n<ul>\n<li><p>CREATED</p>\n</li>\n<li><p>UPDATED</p>\n</li>\n<li><p>PUBLISHED</p>\n</li>\n<li><p>UNPUBLISHED</p>\n</li>\n<li><p>DELETED</p>\n</li>\n</ul>\n<p>The default HTTP method is a POST and the body will be the article.</p>\n<h1 id=\"article-preview\">Article Preview</h1>\n<p>This section describes article preview feature. This allows the ability to preview an article externally within the context of a live site and see how it displays.</p>\n<p>Each article has a previewSecret. This is in the format of a UUID and will be generated for all articles. This preview secret allows for an article to be fetched from the CMS via the API without any restrictions applying (geo-blocking/logged in/published etc)</p>\n<p>For example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Article id: d9304a36-ed73-41ea-b3a0-8e0f688f4f46\nArticle clientId: DEMO\nArticle previewSecret: c1c87602-34fd-43b9-97cc-75b77ef9d479\nPreview API Request: {baseUrl}/v2/articles/d9304a36-ed73-41ea-b3a0-8e0f688f4f46/preview?clientId=INCROWD&amp;secret=c1c87602-34fd-43b9-97cc-75b77ef9d479\n\n</code></pre><p>The article will be returned regardless of whether its published/requires a login etc.</p>\n<p>Via Bridge, an admin has the ability to regenerate a new preview secret via bridge should they feel it could be compromised. This will regenerate a new UUID which upon saving will update the secret.</p>\n<h1 id=\"client-ids\">Client IDs</h1>\n<p>When integrating with the API a client ID will be provided along with this documentation.</p>\n<h1 id=\"article-sort-options\">Article Sort Options</h1>\n<p>The following fields can be used to sort an article</p>\n<ul>\n<li><p>slug (string)</p>\n</li>\n<li><p>publishDate (date time)</p>\n</li>\n<li><p>pinned (boolean)</p>\n</li>\n<li><p>singlePage (boolean)</p>\n</li>\n<li><p>deleted (boolean)</p>\n</li>\n<li><p>heroMedia.title (string)</p>\n</li>\n<li><p>source.sourceSystem (string)</p>\n</li>\n<li><p>source.sourceSystemId (string)</p>\n</li>\n<li><p>source.overwriteEnabled (boolean)</p>\n</li>\n<li><p>articleMetadata.title (string)</p>\n</li>\n<li><p>articleMetadata.description (string)</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Content Types","slug":"content-types"},{"content":"Webhooks","slug":"webhooks"},{"content":"Article Preview","slug":"article-preview"},{"content":"Client IDs","slug":"client-ids"},{"content":"Article Sort Options","slug":"article-sort-options"}],"owner":"2607016","collectionId":"b38c0ebb-b186-48e0-807b-c3c8d61ca214","publishedId":"S1TZxFbp","public":true,"customColor":{"top-bar":"16365C","right-sidebar":"16365C","highlight":"F16F23"},"publishDate":"2019-12-24T15:11:40.000Z"},"item":[{"name":"Articles","item":[{"name":"Articles","id":"dff1ba65-b6ab-4949-926c-139916c4e938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"<p>Anonymous/user token.\n[optional]</p>\n","type":"text"}],"url":"{{url}}/v2/articles?clientId={{clientId}}&page=0&size=100&sort=-publishDate&tags=Match&singlePage=true&title=Article title&linkedId.sourceSystem=OPTA_FOOTBALL_MATCH&linkedId.sourceSystemId=123456&language=en&categoryId=ed03f87e-7b5f-4ca0-9673-4589a261c012&categorySlug=this-is-a-test-slug&linkedIds=OPTA_FOOTBALL_PLAYER:9844;OPTA_FOOTBALL_MATCH:1060072,1060073&notTags=News&articleId=34f7a684-ea95-488e-95a8-9125b33926f0,ce00de60-e2a7-4c2f-a4fe-c1627fda95e5","urlObject":{"path":["v2","articles"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID, e.g. INCROWD\n[required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"description":{"content":"<p>Page number, zero-indexed\n[optional, default = 0]</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Page size. It is recommended never to exceed a value greater than 1000 items\n[optional, default = 100]</p>\n","type":"text/plain"},"key":"size","value":"100"},{"description":{"content":"<p>Sort parameter. Putting a '-' in front of the parameter will sort descending. Possible values are all the fields being passed in to this query. See top of document for a list of sort options.\n[optional, default = \"-pinned,-publishDate\"]</p>\n","type":"text/plain"},"key":"sort","value":"-publishDate"},{"description":{"content":"<p>Contains these tags (Comma separated), e.g. \"tags=football,club\"\n[optional]</p>\n","type":"text/plain"},"key":"tags","value":"Match"},{"description":{"content":"<p>Single page articles only (boolean)\n[optional]</p>\n","type":"text/plain"},"key":"singlePage","value":"true"},{"description":{"content":"<p>Hero media title. Will match on exact string only.\n[optional]</p>\n","type":"text/plain"},"key":"title","value":"Article title"},{"description":{"content":"<p>Source System Name, e.g. OPTA_FOOTBALL_MATCH\n[optional]</p>\n","type":"text/plain"},"key":"linkedId.sourceSystem","value":"OPTA_FOOTBALL_MATCH"},{"description":{"content":"<p>Source System ID, e.g. 123456\n[optional]</p>\n","type":"text/plain"},"key":"linkedId.sourceSystemId","value":"123456"},{"description":{"content":"<p>Language code, e.g. \"EN\"\n[optional]</p>\n","type":"text/plain"},"key":"language","value":"en"},{"description":{"content":"<p>List of category IDs, each category ID is a GUID (Comma separated) e.g. \"categoryId=ed03f87e-7b5f-4ca0-9673-4589a261c012,348cf624-99fb-4cd3-a81b-e7ea1ac0164f\"\n[optional]</p>\n","type":"text/plain"},"key":"categoryId","value":"ed03f87e-7b5f-4ca0-9673-4589a261c012"},{"description":{"content":"<p>Single category slug. Returns all articles containing this category slug\n[optional]</p>\n","type":"text/plain"},"key":"categorySlug","value":"this-is-a-test-slug"},{"description":{"content":"<p>Query by multiple linkedIds. Each source system is separated by \";\". The source system and source system IDs are separated by \":\". Source system IDs can be a comma separated list. e.g. OPTA_FOOTBALL_PLAYER:9844 will find all articles that are tagged with a source system of OPTA_FOOTBALL_PLAYER AND a source system ID of 9844\n[optional]</p>\n","type":"text/plain"},"key":"linkedIds","value":"OPTA_FOOTBALL_PLAYER:9844;OPTA_FOOTBALL_MATCH:1060072,1060073"},{"description":{"content":"<p>Tags to exclude (Comma separated), e.g. \"notTags=news,clubs\"\n[optional]</p>\n","type":"text/plain"},"key":"notTags","value":"News"},{"description":{"content":"<p>List of article IDs, a comma-delimited list of GUID, e.g. \"articleId=34f7a684-ea95-488e-95a8-9125b33926f0,ce00de60-e2a7-4c2f-a4fe-c1627fda95e5\"\n[optional]</p>\n","type":"text/plain"},"key":"articleId","value":"34f7a684-ea95-488e-95a8-9125b33926f0,ce00de60-e2a7-4c2f-a4fe-c1627fda95e5"}],"variable":[]}},"response":[{"id":"e40293d2-fe55-4ed9-b3d5-7a54184c3b85","name":"Articles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{articleCmsURL}}/v2/articles?clientId={{clientId}}","host":["{{articleCmsURL}}"],"path":["v2","articles"],"query":[{"key":"clientId","value":"{{clientId}}","description":"clientId"},{"key":"page","value":"0","description":"Page number","warning":"","disabled":true},{"key":"size","value":"100","description":"Page size","warning":"","disabled":true},{"key":"sort","value":"-publishDate","description":"Sort parameter","warning":"","disabled":true},{"key":"tags","value":"Match","description":"Contains these tags (Comma separated)","warning":"","disabled":true},{"key":"singlePage","value":"true","description":"Single page articles only (boolean)","warning":"","disabled":true},{"key":"title","value":"Article title","description":"Hero media title","warning":"","disabled":true},{"key":"linkedId.sourceSystem","value":"OPTA_MATCH","description":"Source System Name","warning":"","disabled":true},{"key":"linkedId.sourceSystemId","value":"123456","description":"Source System ID","warning":"","disabled":true},{"key":"language","value":"en","description":"Language code","warning":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:32:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"0","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"JmXL7L_2jaTUJOKEcVWR0Bm_5co3Bw7WFmPsQbDoW70tgHlGHa-bEQ==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"success\",\"data\":{\"articles\":[{\"id\":\"7f7f31ce-bbad-361c-9a1a-c9eb5c8e1902\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby’s trip to Connacht presents a meeting of two Guinness PRO14 play-off chasers with the Italians sitting second in Conference B and the Irishmen equal third in Conference A.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides will be keen to maintain their position in their respective Conferences with the chasing packs close behind.\\r\\n\\r\\nUlster are just a point behind Benetton while Scarlets are currently five back meaning that defeat could prove costly for Kieran Crowley’s men.\\r\\n\\r\\nMeanwhile Cardiff Blues are level with Connacht, making a win imperative if they are to ensure that they stay in the hunt for a play-off spot.\\r\\n\\r\\n<strong>Team news (Connacht) </strong>Jack Carty, Kieran Marmion and Ultan Dillane all return from Guinness Six Nations duty to bolster the Connacht ranks.\\r\\n\\r\\nCarty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.\\r\\n\\r\\nDillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.\\r\\n\\r\\nIn the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.\\r\\n\\r\\nThe back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.\\r\\n\\r\\n<strong>Teams news (Benetton) </strong>Full-back for Benetton will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.\\r\\n\\r\\nThe half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.\\r\\n\\r\\nThe front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.\\r\\n\\r\\nLocks will be Irné Herbst and Alessandro Zanni and the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi combine.\\r\\n\\r\\n<strong>Talking points: </strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “Benetton have been great all year. I’m not surprised they’re sitting in second spot.\\r\\n\\r\\n“They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground.\\r\\n\\r\\n“We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”\\r\\n\\r\\n<strong>Key battle – Tom Farrell vs Tommaso Benvenuti</strong>\\r\\n\\r\\nBoth men were picked in the wider Guinness Six Nations this year for their respective countries.\\r\\n\\r\\nBut Benvenuti made just one appearance off the bench for Italy while Farrell missed out altogether for Ireland.\\r\\n\\r\\nSo both will be keen to show their international coaches what they missed out on.\\r\\n\\r\\nThe two centres will be looking to exploit space and carry the fight in midfield as the Guinness PRO14 resumes.\\r\\n\\r\\n<strong>Key fact </strong>Connacht’s last four matches in the Guinness PRO14 have all been won by the home side on the day whilst their only defeat at The Sportsground in any competition since September was 24-31 to Munster in January.\\r\\n\\r\\n<strong>Did you know? </strong>The Italians have won only once against an Irish opponent since April 2016, 17-15 against Leinster at the RDS Arena in round 20 last year.\\r\\n\\r\\n<strong>Connacht:</strong> Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (c).\\r\\n\\r\\n<strong>Replacements:</strong> Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.\\r\\n\\r\\n<strong>Benetton:</strong> Luca Sperandio, Ratuva Tavuyara, Tommaso Benvenuti, Alberto Sgarbi (c), Monty Ioane, Ian McKinley (c), Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Alessandro Zanni, Irné Herbst, Marco Riccioni, Hame Faiva, Nicola Quaglio.\\r\\n\\r\\n<strong>Substitutes:</strong> Tomas Baravalle, Derrick Appiah, Tiziano Pasquali, Marco Barbini, Robert Barbieri, Giorgio Bronzini, Antonio Rizzi, Tommaso Iannone\\r\\n\\r\\n<strong>At:</strong> The Sportsground, Galway, 7.35pm.\\r\\n\\r\\n<strong>Referee:</strong> Mike Adamson\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sam Grove-White, Graeme Ormiston\\r\\n\\r\\n<strong>TMO:</strong> Andrew McMenemy\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"413b63c60ade38680ae1c519b795dc92ce60376e610a8fcf417a851fc16a4ad5\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht Rugby v Benetton\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419182\"}],\"publishDate\":\"2019-03-21T15:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e6f59981-265f-30ce-8791-2f2182a3f1c0\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>With just four rounds of the Guinness PRO14 season to go, 11 teams are still fighting to secure seeding and home advantage for the Final Series – including Ospreys.</p> \\n  <p>The Welsh outfit are still in with a shout of making it out of Conference A but will have to be near-perfect if they want to make it through.</p> \\n  <p>But Allen Clarke’s men know what they need to do, and it begins with a win in their Round 18 match at home to Dragons.</p> \\n  <p><img class=\\\"alignnone size-full wp-image-70769\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800.jpg\\\" alt=\\\"\\\" width=\\\"800\\\" height=\\\"450\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800.jpg 800w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800-768x432.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\"></p> \\n  <p>Clarke’s side find themselves eight points adrift of Cardiff Blues, despite having one less&nbsp;win, due to the team from the Welsh&nbsp;capital’s ability to pick up those crucial bonus points.</p> \\n  <p>The two sides face off in the final round of action, with the pair and Irish side Connacht likely to be fighting it out for the crucial third qualification spot in their division.</p> \\n  <p><strong>What does their remaining schedule look like?</strong></p> \\n  <p>If Ospreys could choose who to face going into the final four weekends of action, it would not be far off the teams they will face – and they will hope to get 20 points from the 20 available.</p> \\n  <p>Round 18’s fixture against Conference B’s bottom side Scarlets could yield a win before they make a trip to South Africa.</p> \\n  <p>A win over Toyota Cheetahs in Round 19 would go a long way to prevent any chance of them dropping down Conference A, as a win would extend the gap between the two sides.</p> \\n  <p>The final two rounds will be all about grinding out the necessary wins – particularly on the final weekend, with a trip to the Welsh capital against Cardiff Blues on the agenda.</p> \\n  <p><strong>Ospreys run-in:</strong></p> \\n  <p><strong>R18: Dragons (H)</strong> Saturday, March 23, 15:00</p> \\n  <p><strong>R19: Toyota Cheetahs (A)</strong> Saturday, April 6, 16:30</p> \\n  <p><strong>R20: Isuzu Southern Kings (A)</strong> Friday, April 12, 19:35</p> \\n  <p><strong>R21: Cardiff Blues (A)</strong> Saturday, April 27, 17:15</p> \\n  <p><strong>Who are going to be the difference-makers if Ospreys can reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>Justin Tipuric is now in his 10th season with the Ospreys and his influence from the back row could be an integral part of any charge into the knock-out rounds.</p> \\n  <p>He has been in stellar form in his club jersey this term, scoring four tries in nine Guinness PRO14 starts in 2018-19.</p> \\n  <p><img class=\\\"size-full wp-image-70772\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705.jpg\\\" alt=\\\"\\\" width=\\\"800\\\" height=\\\"552\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705.jpg 800w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705-300x207.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705-768x530.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\"></p> \\n  <p>Once he returns from Wales duty, the Ospreys will look to him to be one of the main men as they hunt down as many points as possible.</p> \\n  <p>Owen Watkin could be crucial in the backline as he looks to come back into the Ospreys fold having last featured in the Guinness PRO14 in December.</p> \\n  <p>The inside centre has been dangerous in his appearances for Wales this spring and had impressed for his club prior to the turn of the year, tackling hard and carrying with purpose.</p> \\n  <p>There are a host of experienced internationals the Ospreys can hope to fall back on to carry them to the end of the season – with any of George North, Alun Wyn Jones and Dan Lydiate able to step up to inspire a victory against any opponent.</p> \\n  <p><strong>What’s the ‘must-win’ game for the Ospreys?</strong></p> \\n  <p>The Ospreys’ final-round match-up with Cardiff Blues may be the one to decide which team makes it into the Finals Series.</p> \\n  <p>It could be a straight shoot-out between the two as they both push for a berth in the knock-out rounds.</p> \\n  <p>Ospreys will be hoping they will know what is needed on the final weekend of action thanks to a game in the preceding earlier round.</p> \\n  <p>Their requirements may well be decided in Round 20 when the Blues and fellow Finals Series rivals Connacht do battle at the Sportsground.</p> \\n  <p><strong>Can Ospreys go all the way if they reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>As the second-most successful team in the competition’s history, the Ospreys definitely have the pedigree to make it to the competition’s climax.</p> \\n  <p>Their four wins is only bettered by Leinster, but they last lifted the trophy at the end of the 2011-12 season.</p> \\n  <p>They undoubted have the quality in their squad, with the likes of Lydiate, North and Jones all veterans with international calibre, but their patchy form up until now&nbsp;means they will be underdogs to make it through.</p> \\n  <p>One thing worth remembering is that the Ospreys have never lost a final when they have made it there – with four wins from their four finals appearances.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/can-the-ospreys-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"30815dfebf3d8e1902483be0b0fea91b5f4433b7224d40fb4915823b72ae970e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/can-the-ospreys-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Can the Ospreys reach the Guinness PRO14 Final? Here's what they need to do\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-21T14:25:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8ed452d3-51e7-3568-a3ab-f5dfc5e4f621\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Defending champions Leinster face a serious test of their Guinness PRO14 credentials when they travel to face Edinburgh at BT Murrayfield on Friday evening.\\r\\n\\r\\nWith all to play for and both sides welcoming back Guinness Six Nations talent, the stage is very much set for a clash to remember in the Scottish capital.\\r\\n\\r\\n<strong>What’s at stake? </strong>\\r\\n\\r\\nFifth in Conference B heading into the Friday night showdown, Edinburgh are aiming to regain momentum ahead of a late charge for the play-offs.\\r\\n\\r\\nHaving tasted victory three times on the trot over the Christmas and New Year period, the Edinburgh have won just one in four since, most recently losing to the ever-improving Benetton.\\r\\n\\r\\nVisitors Leinster, meanwhile, are sitting pretty at the top of the Conference B table, with Leo Cullen’s side a whopping 22 points clear of closest challengers Benetton.\\r\\n\\r\\nWith a play-off berth already secured, they'll be looking to quickly hit their stride after a short break from league action.\\r\\n\\r\\n<strong>Team news (Edinburgh Rugby)</strong>\\r\\n\\r\\nScotland international back-row John Barclay will make his long-awaited Edinburgh debut in Friday's encounter.\\r\\n\\r\\nThe flanker is named in a starting XV that features ten Scottish internationalists – four of whom started in last weekend’s remarkable 38-38 Calcutta Cup draw at Twickenham.\\r\\n\\r\\nDarcy Graham, Hamish Watson, Ben Toolis and WP Nel all start in a strong home lineup.\\r\\n\\r\\n<strong>Team news (Leinster Rugby) </strong>\\r\\n\\r\\nThere is a welcome return to competitive action for a number of players that have been out with injury for the last few months as Leinster look to get back up and running in the Guinness PRO14.\\r\\n\\r\\nLuke McGrath is back from a knee injury to take his place at scrum-half, while Ireland hooker Seán Cronin starts in the pack.\\r\\n\\r\\nCaptain Rhys Ruddock is joined in the back row by Dan Leavy who has recovered from a calf injury ahead of what could be an intriguing battle of the breakdown against the likes of Barclay and Hamish Watson.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Edinburgh Rugby head coach Richard Cockerill said: \\\"</strong>We need to be as strong as we can be because we’ve had some poor results where we’ve slipped up where we shouldn’t have.\\r\\n\\r\\n\\\"That’s put us in a situation where, with four league games to go, we’re probably going to have to win all of them if we want to qualify for the play-offs.\\r\\n\\r\\n\\\"There’s been a lot of disruption over the last two months because of the Six Nations, but it is now back to the bread and butter of the league and making sure we get it right tomorrow night.\\\"\\r\\n\\r\\n<strong>Leinster Rugby senior coach Stuart Lancaster: </strong>“The last two weeks were the calm before the storm. We’ve got a massive game on Friday night against Edinburgh who are fighting hard to get into a playoff spot.\\r\\n\\r\\n\\\"We’ve got the re-integration of the Ireland players coming back in this week alongside running a team to play Edinburgh.\\r\\n\\r\\n\\\"With the combination of 45/50-odd players fit and available for selection, we need to build a team that’s got cohesion and confidence and belief going into the Ulster game.\\\"\\r\\n\\r\\n<strong>Key battle Hamish Watson  v Dan Leavy</strong>\\r\\n\\r\\nTwo international class No.7s are primed to go head-to-head on Friday evening as Hamish Watson does battle with fit-again Irishman Dan Leavy.\\r\\n\\r\\nA standout for Scotland at the end of the Six Nations due to his ball-carrying and dynamism, the return of Watson beefs up an impressive Edinburgh back-row also containing Bill Mata.\\r\\n\\r\\nHis fight for supremacy with star Ireland international Leavy promises to excite and thrill - but it will also go a long way to deciding the outcome of Friday's fixture.\\r\\n\\r\\n<strong>Key fact </strong>\\r\\n\\r\\nEdinburgh Rugby have won just one of their last four Guinness PRO14 fixtures: 34-17 at home to Dragons in Round 15.\\r\\n\\r\\n<strong>Did you know? </strong>\\r\\n\\r\\nLeinster’s only Championship victory in Scotland since May 2015 came on their visit to BT Murrayfield in May 2016.\\r\\n\\r\\n<strong>Edinburgh Rugby</strong>: Dougie Fife, Darcy Graham, James Johnstone, Matt Scott, Duhan van der Merwe, Jaco van der Walt, Henry Pyrgos (c), Pierre Schoeman, Ross Ford, WP Nel, Fraser McKenzie, Ben Toolis, John Barclay, Hamish Watson, Viliame Mata\\r\\n\\r\\n<strong>Replacements: </strong>Cameron Fenton, Allan Dell, Simon Berghan, Callum Hunter-Hill, Magnus Bradbury, Charlie Shiel, Simon Hickey, Chris Dean\\r\\n\\r\\n<strong>Leinster Rugby: </strong>Ciarán Frawley, Fergus McFadden, Noel Reid, Joe Tomane, Barry Daly, Ross Byrne, Luke McGrath, Ed Byrne, Seán Cronin, Michael Bent, Josh Murphy, Mick Kearney, Rhys Ruddock (c), Dan Leavy, Max Deegan\\r\\n\\r\\n<strong>Replacements: </strong>Bryan Byrne, Jack McGrath, Andrew Porter, Jack Dunne, Oisín Dowling, Nick McCarthy, Jimmy O’Brien, Conor O’Brien\\r\\n\\r\\n<strong>TV: </strong>At BT Murrayfield, Edinburgh, 19.35pm. Live on Premier Sports and Eir Sport\\r\\n\\r\\n<strong>Referee:</strong> Ben Whitehouse (WRU)\\r\\n\\r\\n<strong>Assistant Referees: </strong>Wayne Davies, Rhys Jones (both WRU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-edinburgh-rugby-v-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"3afb41fd66a52e44efb72f8ce938f92ffbd69b9b248668f767d235ee6f905c6a\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-edinburgh-rugby-v-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Edinburgh Rugby v Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419183\"}],\"publishDate\":\"2019-03-21T14:23:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"5783db17-9b6b-32aa-a5a9-c0d42c1d99ad\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>John Mulvihill has called upon his entire Wales contingent for Friday’s Guinness PRO14 derby between Cardiff Blues and Scarlets (7.35pm).</p> \\n  <p>Following their Grand Slam heroics Josh Navidi and Gareth Anscombe go straight into the starting line-up, with Dillon Lewis named on the bench.</p> \\n  <p>Fellow Six Nations squad members Seb Davies, Josh Turnbull, Tomos Williams and Jarrod Evans are also all included in the match-day 23 for the Cardiff Arms Park encounter.</p> \\n  <p>It is a significant boost to the Blues, who are battling to reach the PRO14 play-offs and qualification for the Heineken Champions Cup.</p> \\n  <p>Mulvihill said: “It’s great to be able to include all of our Wales internationals following a hugely successful Six Nations.</p> \\n  <p>“They will have no problem getting themselves up for a Welsh derby and we are all hugely motivated for this crucial fixture.</p> \\n  <p>“The Scarlets traditionally, are a team who really like to move the ball and will test us across the park so we will have to be at our defensive best to negate their attacking threats.</p> \\n  <p>“They have proven in the past they are a champion team and they have their own top three aspirations so we know they will be desperate to win this contest.</p> \\n  <p>“But we set ourselves the target of being the number one team in Wales at the start of the season and a victory this weekend will take us one step closer to that goal and that top three place.”</p> \\n  <p>Wales’ Capital Region raced to a stunning 34-5 bonus-point victory over the Scarlets in December and are targeting a memorable double to remain in the play-off hunt.</p> \\n  <p>With the euphoria of a Welsh Grand Slam and so much at stake in the PRO14, a bumper crowd is expected at the Arms Park.</p> \\n  <p>Mulvihill added: “There’s going to be a massive crowd and at the start of the week we only got a few thousand left to sell out Cardiff Arms Park.</p> \\n  <p>“It’s going to be an absolutely cracking game and a great advert for regional rugby.”</p> \\n  <p>Cardiff Blues : G Anscombe; O Lane, R Lee-Lo, W Halaholo, A Summerhill; J Evans, T Williams; R Gill, K Dacey (capt), D Arhip, J Turnbull, R Thornton, J Navidi, O Robinson, N Williams.</p> \\n  <p>Replacements: E Lewis, R Carre, D Lewis, S Davies, S Lewis-Hughes, L Williams, H Millard, M Morgan.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/mulvihill-turns-to-six-nations-stars-for-scarlets-clash/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"acdfb883e67a2516ddc5b47686d82d8e0ba6bac1c98fa4ae5014f32f1307fdd9\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/mulvihill-turns-to-six-nations-stars-for-scarlets-clash/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Mulvihill turns to Six Nations stars for Scarlets clash\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-21T12:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"850f749a-e274-3a81-81a5-871cf6f9acfb\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>James Davies makes his return from injury as the Scarlets resume their hunt for a Guinness PRO14 play-off spot against Cardiff Blues at Cardiff Arms Park on Friday evening (7.35pm).</p> \\n  <p>The Wales international flanker has been sidelined with a foot issue since the defeat to the Blues at Parc y Scarlets at the end of December.</p> \\n  <p>He is named as one of five changes to the Scarlets’ side that claimed a hard-earned 10-6 win against Munster last time out.</p> \\n  <p>Head coach Wayne Pivac includes eight of Wales’ Six Nations-winning squad in his match-day 23.</p> \\n  <p>Leigh Halfpenny, Rhys Patchell, Wyn Jones and Samson Lee are named in the starting XV, with Rob Evans, Gareth Davies, Ken Owens and Steff Evans among the replacements.</p> \\n  <p>Patchell replaces Dan Jones as the only change behind the scrum, while up front, tight-head prop Lee and lock Steve Cummins return. James Davies replaces Dan Davis in the back row, while Marc Jones comes in at hooker for the injured Ryan Elias.</p> \\n  <p>Elias has a shoulder problem and is likely to be sidelined for up to six weeks, as is second row Jake Ball, who has a foot injury.</p> \\n  <p>Successive wins over the Cheetahs and Munster have kept Pivac’s side firmly in the play-off race with only five points separating the Scarlets in fourth from Benetton in second.</p> \\n  <p>Looking forward to Friday’s clash, Pivac said: “It stacks up for a massive derby.</p> \\n  <p>“The team that gets success goes a long way towards getting a place in the play-offs in either conference so there is a lot to play for and interesting with both squads welcoming back players from the Six Nations. It is going to be a tight affair.</p> \\n  <p>“We looked at the last couple of games as ‘must win’ because the position we found ourselves in. We dubbed the Munster as cup final for that group without the internationals and were delighted with the result.</p> \\n  <p>“We are seeing this game as one of two Test matches, Blues and Edinburgh, because all three teams are in the fight for the play-offs.</p> \\n  <p>“They (Blues) are in the same position as us so they will be desperate. They are playing at home, they had success against us last time so they will be reasonably confident.</p> \\n  <p>“It is going to be a big challenge, but we have won our last couple of matches match and if we can get another win it sets us up nicely.”</p> \\n  <p>Scarlets (v Cardiff Blues, Cardiff Arms Park; Friday, 7.35pm)</p> \\n  <p>Leigh Halfpenny; Johnny McNicholl, Kieron Fonotia (capt), Paul Asquith, Ioan Nicholas; Rhys Patchell, Kieran Hardy; Wyn Jones, Marc Jones, Samson Lee, Lewis Rawlins, Steve Cummins, Josh Macleod, James Davies, Uzair Cassiem.</p> \\n  <p>Replacements: Ken Owens, Rob Evans, Werner Kruger, Josh Helps, Will Boyde, Gareth Davies, Dan Jones, Steff Evans.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/james-davies-returns-for-scarlets-arms-park-clash/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"4b6f9b096fb0b2c368bfaa4ae10c6bde2e0b06b07c09f41a324a8f427771e20a\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/james-davies-returns-for-scarlets-arms-park-clash/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"James Davies returns for Scarlets' Arms Park clash\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-21T12:04:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6ab28b3c-3ce6-3d4a-a79b-56a5cdd3d6de\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Leinster Rugby team to take in Edinburgh in the Guinness PRO14 tomorrow evening in BT Murrayfield has been named by Head Coach Leo Cullen (Kick Off: 7.35pm – live on eir Sport).</p> \\n  <p>There is a welcome return to competitive action for a number of players that have been out with injury for the last few months as Leinster look to get back up and running in the Guinness PRO14 after a few weeks off.</p> \\n  <p>Ciarán Frawley comes in at full back for his first start in the number 15 jersey, with Fergus McFadden on the right wing and Barry Daly on the left.</p> \\n  <p>In the centre Joe Tomane makes his first start since injuring his hamstring in November against the Southern Kings. The 17 times capped Australian is joined in the centre by Noel Reid.</p> \\n  <p>Luke McGrath is back from a knee injury to take his place at scrumhalf with Ross Byrne outside him at number ten.</p> \\n  <p>In the pack the front row sees Ed Byrne, Seán Cronin and Michael Bent selected with Josh Murphy and Mick Kearney in the second row.</p> \\n  <p>Captain Rhys Ruddock is joined in the back row by Dan Leavy who has recovered from a calf injury and by Max Deegan to complete the Leinster XV.</p> \\n  <p>On the bench Nick McCarthy is the final player to make a welcome return from injury with the 23 year old selected for the first time since November.</p> \\n  <p><strong>Leinster Rugby (caps in brackets):</strong></p> \\n  <p>15. Ciarán Frawley (10)<br> 14. Fergus McFadden (175)<br> 13. Noel Reid (117)<br> 12. Joe Tomane (9)<br> 11. Barry Daly (33)<br> 10. Ross Byrne (65)<br> 9. Luke McGrath (106)</p> \\n  <p>1. Ed Byrne (38)<br> 2. Seán Cronin (166)<br> 3. Michael Bent (118)<br> 4. Josh Murphy (18)<br> 5. Mick Kearney (48)<br> 6. Rhys Ruddock (156) CAPTAIN<br> 7. Dan Leavy (61)<br> 8. Max Deegan (38)</p> \\n  <p>16. Bryan Byrne (37)<br> 17. Jack McGrath (141)<br> 18. Andrew Porter (48)<br> 19. Jack Dunne (2)<br> 20. Oisín Dowling (2)<br> 21. Nick McCarthy (32)<br> 22. Jimmy O’Brien (5)<br> 23. Conor O’Brien (15)</p> \\n  <p>Referee: Ben Whitehouse (Wales)</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/leinster-rugby-team-to-face-edinburgh-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"108c72731621b9321cf2139626a40bee490b632cd4a1758177af97591b04f9cc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/leinster-rugby-team-to-face-edinburgh-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leinster Rugby team to face Edinburgh Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-21T12:03:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"a769c063-7418-34a5-8c63-1804fb3f98ba\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Connacht have been boosted by the return of Jack Carty, Kieran Marmion and Ultan Dillane for the Guinness PRO14 clash with Benetton at the Sportsground on Friday night (Kick Off 7:35pm). The return of the trio is a welcome boost to Connacht’s match day squad as they face an in-form Benetton side who have already registered ten wins this season and sit in 2nd place in Conference B of the PRO14.</p> \\n  <p>Carty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.</p> \\n  <p>Peter Robb and Tom Farrell start again in the Connacht midfield following the bonus point win over Ospreys in the last round. Meanwhile in the back three, Tiernan O’Halloran is named at full-back with Matt Healy and Darragh Leader on the wings.</p> \\n  <p>Dillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.</p> \\n  <p>In the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.</p> \\n  <p>The back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.</p> \\n  <p>Ahead of the game, Connacht Head Coach Andy Friend says his side are expecting a huge challenge from an in-form Benetton side. “They have been great all year,” said Friend. “I’m not surprised they’re sitting in second spot. They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground. We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”</p> \\n  <p>With four rounds of games left in the PRO14, Friend is satisfied that Connacht’s destiny is in their own hands. “We said at the start of the year we wanted to be there at the business end and we’re there or thereabouts, but we need to keep winning to make sure we control our destiny. If we keep winning we stay in control. If we don’t, then we have to start looking at points and seeing where we can scrounge some. At this stage it’s just about the win”.</p> \\n  <p>#CONvBEN<br> Kick-off 7:35pm:</p> \\n  <p>(15-9) Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, (1-8) Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (Capt).</p> \\n  <p>Replacements (16-23): Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/connacht-boosted-by-return-of-internationals-for-clash-with-benetton-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"6b94737d35583973c82f11121d404fb6c11cd8eb31ada32f1327d3308eb3f1c8\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/connacht-boosted-by-return-of-internationals-for-clash-with-benetton-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Connacht boosted by return of internationals for clash with Benetton Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3400\"}],\"publishDate\":\"2019-03-21T12:02:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ba497102-2ad9-3777-9e08-bcb834e1c668\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Scotland international back-row John Barclay will make his long-awaited Edinburgh debut in tomorrow night’s Guinness PRO14 showdown with reigning champions Leinster at BT Murrayfield (Friday 22 March, kick-off 7.35pm).</p> \\n  <p>The 71-times capped flanker is named in a starting XV that features 10 internationalists – four of whom started in last weekend’s remarkable 38-38 Calcutta Cup draw at Twickenham. Scotland stars Darcy Graham, Hamish Watson, Ben Toolis and WP Nel all return for tomorrow night’s crunch match.</p> \\n  <p>The team selection also sees Scotland centre Matt Scott return to action for the first time in over five months following a head injury sustained against RC Toulon back in October.</p> \\n  <p>Ahead of the fixture, Head Coach Richard Cockerill, said: “We need to be as strong as we can be because we’ve had some poor results where we’ve slipped up where we shouldn’t have.</p> \\n  <p>“That’s put us in a situation where, with four league games to go, we’re probably going to have to win all of them if we want to qualify for the play-offs.</p> \\n  <p>“There’s been a lot of disruption over the last two months because of the Six Nations, but it is now back to the bread and butter of the league and making sure we get it right tomorrow night.”</p> \\n  <p>“It’ll be good to have John [Barclay] back on the field and he can share his experience with the rest of the team.</p> \\n  <p>“He’s a fantastic player and his leadership around the group and his knowledge of the game is very, very good, and that could well be important for us in the run-in.”</p> \\n  <p>A revamped back-three sees Graham return to club action following last weekend’s two-try performance against England in the Guinness Six Nations.</p> \\n  <p>The winger is joined by fullback Dougie Fife and wing Duhan van der Merwe, with both players returning from injuries that kept them out of the defeat to Benetton two weeks ago.</p> \\n  <p>Scott – who makes his seventh start of the season – is partnered by James Johnstone in midfield, with the latter scoring his seventh try of the season against Benetton a fortnight ago.</p> \\n  <p>Experienced scrum-half Henry Pyrgos captains the side, with Jaco van der Walt at stand-off.</p> \\n  <p>Pierre Schoeman is named at loosehead prop and packs down alongside Scotland pairing Ross Ford and Nel, while Toolis is partnered by fellow club centurion Fraser McKenzie in the second-row.</p> \\n  <p>Barclay makes his debut at blindside flanker with Scotland star Watson at openside, while Fijian international No. 8 Viliame Mata returns to the No. 8 jersey.</p> \\n  <p><strong>Edinburgh team to face Leinster at BT Murrayfield in the Guinness PRO14 on Friday 22 March (kick-off 7.35pm) – live on Premier Sports</strong></p> \\n  <p>15. Dougie Fife (122)<br> 14. Darcy Graham (19)<br> 13. James Johnstone (38)<br> 12. Matt Scott (80)<br> 11. Duhan van der Merwe (36)<br> 10. Jaco van der Walt (35)<br> 9. Henry Pyrgos (19) CAPTAIN</p> \\n  <p>1. Pierre Schoeman (18)<br> 2. Ross Ford (194)<br> 3. WP Nel (129)<br> 4. Fraser McKenzie (112)<br> 5. Ben Toolis (105)<br> 6. John Barclay*<br> 7. Hamish Watson (95)<br> 8. Viliame Mata (55)</p> \\n  <p><strong>Replacements:</strong> 16. Cameron Fenton (11); 17. Allan Dell (57); 18. Simon Berghan (62); 19. Callum Hunter-Hill (15); 20. Magnus Bradbury (60); 21. Charlie Shiel (2); 22. Simon Hickey (16); 23. Chris Dean (83)</p> \\n  <p>Unavailable due to injury: Lewis Carmichael; David Cherry; Luke Hamilton; Blair Kinghorn</p> \\n  <p>Edinburgh competitive debut*</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/scotland-star-barclay-to-make-debut-against-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c16ac64c05445fb35360f6f0c3142bc961989dceb5e9e969f0571788bfb99921\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/scotland-star-barclay-to-make-debut-against-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Scotland star Barclay to make debut against Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-21T12:01:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ecd7cfd9-5840-300f-9c82-d6c957410915\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>After two rest weekends observed for the Guinness Six Nations, Benetton Rugby will fly to Ireland for the eighteenth round of Guinness PRO14. The green-and-whites travel to Galway, where they will face Connacht Rugby on Friday evening at 7:35pm (8:35pm Italian time) .</p> \\n  <p>The match will be officiated by Scottish referee Mike Adamson, his assistants Sam Grove-White, Graeme Ormiston and broadcast live on DAZN.</p> \\n  <p>Full back will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.</p> \\n  <p>The half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.</p> \\n  <p>The front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.</p> \\n  <p>Locks will be Irné Herbst and Alessandro Zanni. Finally, the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi completing the XV chosen by Crowley.</p> \\n  <p><strong>Benetton Rugby:</strong></p> \\n  <p>15 Luca Sperandio, 14 Ratuva Tavuyara, 13 Tommaso Benvenuti, 12 Alberto Sgarbi (C), 11 Monty Ioane, 10 Ian McKinley (C), 9 Dewaldt Duvenage, 8 Toa Halafihi, 7 Giovanni Pettinelli, 6 Marco Lazzaroni, 5 Alessandro Zanni, 4 Irné Herbst, 3 Marco Riccioni, 2 Hame Faiva, 1 Nicola Quaglio.</p> \\n  <p><strong>Substitutes:</strong> 16 Tomas Baravalle, 17 Derrick Appiah, 18 Tiziano Pasquali, 19 Marco Barbini, 20 Robert Barbieri, 21 Giorgio Bronzini, 22 Antonio Rizzi, 23 Tommaso Iannone</p> \\n  <p><strong>Head Coach:</strong> Kieran Crowley</p> \\n  <p><strong>Unavailable:</strong> Ignacio Brex, Dean Budd, Marco Fuser, Ornel Gega, Engjel Makelara, Nasi Manu, Federico Zani</p> \\n  <p><strong>Referee:</strong> Mike Adamson (SRU)<br> <strong>Assistants:</strong> Sam Grove-White (SRU), Graeme Ormiston (SRU)<br> <strong>TMO:</strong> Andrew McMenemy (SRU)</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/benetton-rugby-team-to-face-connacht-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"f9a397d9f7d8f861a7d4cfc10980cdb61709931eb60bd223346b093534aa7e6b\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/benetton-rugby-team-to-face-connacht-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton Rugby team to face Connacht Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1850\"}],\"publishDate\":\"2019-03-21T12:00:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e911db70-8f5d-3a63-be99-4dd5079c1bc8\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Ospreys Rugby are delighted to announce that centre, Cory Allen, is the second player to commit to the region is as many days.</p> \\n  <p>Allen, 26-years old, has been in impressive form this season, his second with the Ospreys, scoring five tries in 19 games so far this campaign.</p> \\n  <p>The positive news comes just 24 hours after this season’s top try scorer, Luke Morgan, also confirmed a new deal to stay at the Liberty Stadium next year and beyond.</p> \\n  <p>Speaking about his new deal, Allen admitted he was delighted to be staying at the Ospreys.</p> \\n  <p>“Yes, I am” he said</p> \\n  <p>“It’s been a tough couple of months for a few of the boys but ,from the start of the season, I spoke to Clarkie, I spoke to the coaches, and this is where I want to be. I’m really thrilled now to get it signed and get it all sorted.</p> \\n  <p>“It’s been a big year for me, the most games I’ve played in a season, and that’s allowed me to keep doing the little things right, keep working on my game and keep developing. Jockey (Matt Sherratt) has been really good at helping me keep on top of that.</p> \\n  <p>“There are four big games left for us now, we are still in the hunt, and we want to go out and secure that third spot.”</p> \\n  <p>Like his former Wales Sevens colleague Morgan, the Cardiff born centre has agreed a new two-year deal with his current contract due to expire at the end of the season.</p> \\n  <p>Capped by Wales at U18 and U20 level, the former Cardiff Blues man made a huge impression on the sevens circuit and claimed a HSBC Sevens World Series Fans’ Favourite Try of the Year award for his solo effort in the final of the Hong Kong Sevens against Fiji.</p> \\n  <p>Allen has six full Wales caps, the latest coming on the unbeaten tour of the Pacific Nations two summers ago where he worked closely with Matt Sherratt.</p> \\n  <p>Having linked up with the Ospreys for the first time off the back of that tour, he won the Guinness man of the match award on his debut at the Liberty on the opening day of the 17/18 season, a 22-13 win over Zebre. He has six tries from 28 appearances to date.</p> \\n  <p>Ospreys Head Coach, Allen Clarke, welcomed the news, saying:</p> \\n  <p>“Cory has been one of our most consistent performers this season so this new contract is richly deserved.</p> \\n  <p>“He’s had a good run of form and we’ve seen real growth in him as a person, on and off the field.</p> \\n  <p>“It’s clear that there is more to come from Cory, who we believe has the potential to be a really big player for us in the future so this is fantastic news for Ospreys Rugby.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/allen-is-the-second-to-commit-to-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c279b97a0a2b5e8f7275db55670f3b4c00435700107a427cfea22f9404c486a8\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/allen-is-the-second-to-commit-to-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Allen is the second to commit to Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-21T09:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"3267bce1-9514-3289-b9dc-f82073f48edc\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Willis Halaholo has pledged his future to Cardiff Blues by signing a long-term contract to remain at Cardiff Arms Park.</p> \\n  <p>The exciting centre has become a crowd favourite since arriving in the Welsh capital in 2016, with his electric footwork causing chaos throughout the Guinness PRO14.</p> \\n  <p>He made a try-scoring debut against Benetton Rugby in 2016 and has gone on to make 57 appearances in total, scoring 13 tries in the process.</p> \\n  <p>The former Super Rugby winner qualifies for Wales under residency next season and has reaffirmed his commitment to the Blues with this new deal.</p> \\n  <p>He said: “I’m really happy to sign a new contract at Cardiff Blues. The welcome I have received since I arrived here has been awesome and my family absolutely love it.</p> \\n  <p>“This has definitely become our home and I’m really excited about what the future holds for Cardiff Blues.</p> \\n  <p>“We showed our potential last season by winning the European Challenge Cup and with so many exciting young players we can continue building and improving.</p> \\n  <p>“We have a massive few weeks coming up and it would be an awesome achievement to make the Guinness PRO14 play-offs. That is my sole focus right now but looking further ahead we have a massive amount of potential and I want to be part of that.”</p> \\n  <p>The 28-year-old, who grew up in Auckland and represented Tonga at U20 level, has formed a formidable partnership with former Hurricanes teammate Rey Lee-Lo in Cardiff and compliments a hugely competitive midfield.</p> \\n  <p>Cardiff Blues head coach John Mulvihill was delighted to retain the hot-stepping centre’s services and believes he can get better and better at the Arms Park.</p> \\n  <p>He added: “Willis is such an exciting player, who has shown what he is capable of with big moments in big matches.</p> \\n  <p>“He qualifies for Wales in the autumn and is looking forward to a massive off-season to take himself to the next level and put himself in the frame for selection.</p> \\n  <p>“He has become a really important member of the group and compliments the young players coming through our system and thrives upon that competition.</p> \\n  <p>“Both Willis and his family are very happy and settled in Cardiff and we are delighted that he has decided to remain at the Arms Park.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/halaholo-commits-long-term-future-to-cardiff-blues/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"18c9b3426764add1bf3c71cc9c32245900126401e818d8b7faa4c92d4d1c9fcc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/halaholo-commits-long-term-future-to-cardiff-blues/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Halaholo commits long-term future to Cardiff Blues\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-21T09:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ce111f71-09fb-315f-bc21-2effc1a5db18\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Delirium was the overwhelming reaction from Cardiff Blues fans this week after it was announced that Wales international Josh Adams will be joining the club next season.</p> \\n  <p>The 23-year-old winger scored three tries for Warren Gatland’s side in their Grand Slam campaign as they completed the clean sweep in the 2019 Guinness Six Nations.</p> \\n  <p>He started all five games in the Championship and was a constant menace to opposition defences, resulting in him being nominated for the Guinness Six Nations Player of the Championship.</p> \\n  <p>And he will now return home at the end of this season, moving across the bridge from Worcester Warriors to the BT Sport Cardiff Arms Park outfit to continue his international career.</p> \\n  <p>Under the WRU’s 60-cap rule, Adams – who has 11 caps to his name – needed to be playing in Wales next season to stay on the Test scene.</p> \\n  <p>With that situation now resolved, Blues fans can look forward to seeing the former Scarlets man light up the Guinness PRO14 with his electrifying pace and powerful physique.</p> \\n  <p>He will link up with a backline that could potentially be the best around and ahead of his arrival, we’ve had a look at how John Mulvihill’s vision is shaping up for next season.</p> \\n  <h4>HALF-BACKS</h4> \\n  <p><strong>9. Tomos Williams</strong></p> \\n  <p>Like Adams, Tomos Williams has recently enjoyed his international breakthrough and looks set to be ever-present at scrum-half for both club and country for the considerable future.</p> \\n  <p>While his Guinness Six Nations was hampered by injury, he played a key role in sparking Wales’ stunning comeback from 16-0 behind to beat France in the opening round.</p> \\n  <p>It was his Championship debut for his country in Paris, but he showed his class to score the opening try against Les Bleus after combining with Adams – a partnership that will be reunited at Arms Park.</p> \\n  <p><img class=\\\"alignnone wp-image-68519\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-768x432.jpg 768w\\\" sizes=\\\"(max-width: 650px) 100vw, 650px\\\"></p> \\n  <p><strong>10. Jarrod Evans / Gareth Anscombe </strong></p> \\n  <p>The Blues are blessed with talent at fly-half, with current Welsh No.10 Gareth Anscombe and Jarrod Evans – who has been tipped as a future replacement – both on their books.</p> \\n  <p>Anscombe had his doubters going into the Guinness Six Nations, but he proved them wrong as he delivered a man-of-the-match performance in the crucial victory against Ireland.</p> \\n  <p>He set up the opening try and kicked 20 points to seal the Grand Slam. Meanwhile, at just 22, Evans has already made his international debut and will provide strong competition for Anscombe at Blues.</p> \\n  <h4>CENTRES</h4> \\n  <p><strong>12. Willis Halaholo</strong></p> \\n  <p>An explosive presence in the Cardiff Blues backline, Willis Halaholo has gone from strength to strength since arriving at the club from Super Rugby in October 2016.</p> \\n  <p>The 28-year-old delivered a barnstorming display against Munster at BT Sport Cardiff Arms Park in September – a performance that included two assists and a try of his own against the Irish province.</p> \\n  <p><strong>13. Rey Lee-Lo / Harri Millard</strong></p> \\n  <p>There are options for the Blues at outside centre, with the experience of Samoan Rey Lee-Leo complemented by the youthful energy of Welsh under-20 international Harri Millard.</p> \\n  <p>Millard caught the eye in age-grade rugby and has been picking up plenty of plaudits for his performances at Arms Park thanks to his dynamic displays this season.</p> \\n  <p><img class=\\\"alignnone wp-image-70703\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-768x432.jpg 768w\\\" sizes=\\\"(max-width: 650px) 100vw, 650px\\\"></p> \\n  <h4><span style=\\\"font-size: 16px;\\\">THE BACK THREE</span></h4> \\n  <p><strong>11. Josh Adams / 14. Owen Lane</strong></p> \\n  <p>What more can you say about Adams? Having been released by Scarlets in 2015, he has since rebuilt his career at Worcester Warriors by terrorising teams in the English Premiership.</p> \\n  <p>He has proved prolific for the club, scoring 34 tries in just 59 appearances, and scooped both the Young Player and Player of the Year Awards at Worcester last season.</p> \\n  <p>With the step up to the international stage also proving no obstacle, expect Adams to continue tearing defences apart in the Guinness PRO14 next season alongside rising star Owen Lane.</p> \\n  <p><strong>15. Matthew Morgan</strong></p> \\n  <p>Affectionately known as ‘Nipper’, Matthew Morgan is another Welsh international amongst the Blues backline – having started against Fiji at the 2015 Rugby World Cup.</p> \\n  <p>While his international career has stalled since then, the 26-year-old has grown into the No.15 role at the Blues and has caused Guinness PRO14 sides plenty of problems with his runs from deep.</p> \\n  <p>Hallam Amos is also rumoured to be joining Blues for next season – and should the Dragons star make the move, he could be the final piece of Mulvihill’s backline jigsaw.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/with-josh-adams-on-board-will-cardiff-blues-have-the-best-backline/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2d6d4de1ba2cb13e8273356dc7b1e38aaf008834fdb19dbc524c76473b0eda92\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/with-josh-adams-on-board-will-cardiff-blues-have-the-best-backline/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"With Josh Adams on board, will Cardiff Blues have the best backline?\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T16:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"a0126d1f-3578-30d3-829b-0486186c8979\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>With just four rounds remaining in the Guinness PRO14, the race for a place in the Final Series is heating up, with 11 teams still in contention.</p> \\n  <p>Leinster have already wrapped up top spot in Conference B – but everything else is up in the air.</p> \\n  <p>We will look at each team and what they need to do to make it to the knock-out stages and a possible place at Celtic Park in May.</p> \\n  <p><img class=\\\"alignnone wp-image-70686\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-768x432.jpg 768w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p>To kick things off, we look at the Toyota Cheetahs, currently sixth in Conference A, but still with an outside shout of making the top three.</p> \\n  <p>The South African team, who made the Guinness PRO14 Final Series in their first season in the Championship, currently sit sixth in Conference A, 11 points behind Connacht in third.</p> \\n  <p>That leaves them with a lot of work to do to make it back to the knock-out stages, with arguably only four wins from four giving them any chance.</p> \\n  <p><strong>What does their remaining schedule look like?</strong></p> \\n  <p>In Toyota Cheetahs’ favour is that after this weekend, they play the remainder of their games on home soil.</p> \\n  <p>Before then, they travel to Scotstoun to take on the Glasgow Warriors, a must-win game to have any chance of progression.</p> \\n  <p>The problem for the Cheetahs is that they have won just once outside South Africa this season and that is something they will have to change.</p> \\n  <p>If they can beat the Warriors, they finish the season with home clashes against the Ospreys, Dragons and the Isuzu Southern Kings, so if they are still in contention, there is a path to a strong finish to the campaign.</p> \\n  <p><strong>Toyota Cheetahs run-in:</strong></p> \\n  <p><strong>R18: Glasgow Warriors (A)</strong> Saturday, March 23, 19:45</p> \\n  <p><strong>R19: Ospreys (H)</strong> Saturday, April 6, 16:30</p> \\n  <p><strong>R20: Dragons (H)</strong> Saturday, April 13, 18:35</p> \\n  <p><strong>R21: Isuzu Southern Kings (H)</strong> Saturday, April 27, 16:30</p> \\n  <p><strong>Who are going to be the difference-makers if Toyota Cheetahs can make it back to the Guinness PRO14 Final Series?</strong></p> \\n  <p>The Cheetahs have plenty of explosive weapons, who will have to perform if they are to make it back to the knock-out stages.</p> \\n  <p>Rabz Maxwane is well clear at the top of the try-scorers chart with 13, five more than any other player.</p> \\n  <p><img class=\\\"alignnone wp-image-70687 size-full\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"389\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600.jpg 600w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600-300x195.jpg 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p>Elsewhere, Junior Pokomela has been a standout in the pack while Tian Schoeman offers some stability from fly-half.</p> \\n  <p>They are without Ox Nché, however – the promising prop is suspended until the end of the campaign following his dangerous tackle in the clash with Leinster last time out.</p> \\n  <p><strong>What’s the ‘must-win’ game for the Toyota Cheetahs?</strong></p> \\n  <p>At this stage, every game is a must-win game, and it all starts in Glasgow. If the Cheetahs can get a result at Scotstoun, then they do come back into contention somewhat.</p> \\n  <p>That is especially true when you consider how high-scoring games in South Africa tend to be. With the number of tries scored on the high veldt, there is always the chance of picking up some bonus points, so win in Glasgow and there is a chance.</p> \\n  <p><strong>Can Toyota Cheetahs go all the way if they reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>It will be asking a lot of the Cheetahs to go all the way, particularly with their struggles to get wins in Europe so far this season.</p> \\n  <p>If they can make it to the Guinness PRO14 Final Series, they will have to win three successive games in Europe, an away Quarter-final, Semi-final and then the Final in Glasgow.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/can-the-toyota-cheetahs-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"06ea269792a22cf69395fdf32cad80b1995d90114716b4f1be4c82f623e188fb\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/can-the-toyota-cheetahs-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Can the Toyota Cheetahs reach the Guinness PRO14 Final? Here’s what they need to do\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-20T11:03:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"229b0167-0da3-3e31-8049-0a93895a8cbd\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>After a stellar Guinness Six Nations Grand Slam winning campaign, for which he is up for the player of the tournament, Cardiff Blues announced the&nbsp;signing of Wales wing Josh Adams’ yesterday.</p> \\n  <p>Adams has been a hot name in rugby this season since making his international debut in last year’s Six Nations campaign, with his form for club and country attracting plenty of attention in recent months.</p> \\n  <p>Speculation was rife about which region would bring him to Wales from Worcester, Cardiff Blues were the ones to land this marquee signing.</p> \\n  <h2>Here is how it all unfolded on social media…</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Well we can't let <a href=\\\"https://twitter.com/scarlets_rugby?ref_src=twsrc%5Etfw\\\">@scarlets_rugby</a> have all the fun on the contract front….</p> \\n   <p>✍️</p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1108033106320207872?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">The full story as <a href=\\\"https://twitter.com/JoshAdams951?ref_src=twsrc%5Etfw\\\">@JoshAdams951</a> joins <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> ahead of next season <a href=\\\"https://t.co/NPTszDpdDK\\\">https://t.co/NPTszDpdDK</a> <a href=\\\"https://t.co/JJGFa55xXd\\\">pic.twitter.com/JJGFa55xXd</a></p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1108073620654428166?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <h2>How the media reacted…</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Good day for the Welsh regions (they can happen) with Josh Adams signing for Cardiff Blues and Scarlets re-signing Jonathan Davies, Ken Owens and Rob Evans.</p> \\n   <p>— Ben Coles (@bencoles_) <a href=\\\"https://twitter.com/bencoles_/status/1108073837411864576?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Confirmation of Josh Adams' move to Cardiff Blues. A fantastic signing.</p> \\n   <p>— Ross Harries (@rossharries1) <a href=\\\"https://twitter.com/rossharries1/status/1108079436526686208?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Fantastic day for regional rugby. Jonathan Davies, Ken Owens and Rob Evans signing new deals with <a href=\\\"https://twitter.com/scarlets_rugby?ref_src=twsrc%5Etfw\\\">@scarlets_rugby</a> and <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> signing one of the best wingers in the northern hemisphere.</p> \\n   <p>— Steffan Thomas (@Steffan_Thomas1) <a href=\\\"https://twitter.com/Steffan_Thomas1/status/1108073594247106560?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Great to see Josh Adams returning to Wales by signing for Cardiff Blues. A clear example of the 60-cap rule working and a real boost for regional rugby. <a href=\\\"https://t.co/3I1tncrRhq\\\">https://t.co/3I1tncrRhq</a></p> \\n   <p>— Simon Thomas (@simonrug) <a href=\\\"https://twitter.com/simonrug/status/1108077638063714304?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Josh Adams is a fantastic signing for Cardiff Blues.</p> \\n   <p>That's a proper boost for the regions.</p> \\n   <p>— Paul Williams (@thepaulwilliams) <a href=\\\"https://twitter.com/thepaulwilliams/status/1108109626254520321?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">\\uD83D\\uDCDD&nbsp;Eh… <a href=\\\"https://twitter.com/andymcgeady?ref_src=twsrc%5Etfw\\\">@andymcgeady</a> you may want to update tomorrow's agenda for Episode 1 <a href=\\\"https://t.co/VnpI56bSOJ\\\">https://t.co/VnpI56bSOJ</a></p> \\n   <p>— UnderTheSticks (@UnderTheStix) <a href=\\\"https://twitter.com/UnderTheStix/status/1108097508297924609?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <h2></h2> \\n  <h2>What the fans are saying….</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Josh Adams to the Blues is a cracking signing</p> \\n   <p>— Ruairí (@_Rurz) <a href=\\\"https://twitter.com/_Rurz/status/1108107317046923267?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Brilliant signing for the Cardiff Blues.</p> \\n   <p>Josh Adams joining on a long-term deal.<a href=\\\"https://t.co/UYT7xkTtPC\\\">https://t.co/UYT7xkTtPC</a></p> \\n   <p>— Matthew Southcombe (@MattSouth7) <a href=\\\"https://twitter.com/MattSouth7/status/1108072943316279304?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Actually so buzzing Josh Adams is signing for Blues\\uD83D\\uDD35\\uD83C\\uDFF4\\uDB40\\uDC67\\uDB40\\uDC62\\uDB40\\uDC77\\uDB40\\uDC6C\\uDB40\\uDC73\\uDB40\\uDC7F <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> <a href=\\\"https://twitter.com/JoshAdams951?ref_src=twsrc%5Etfw\\\">@JoshAdams951</a></p> \\n   <p>— rhys \\uD83D\\uDD3B (@RhysTurner1927) <a href=\\\"https://twitter.com/RhysTurner1927/status/1108091410643849217?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/how-social-media-reacted-to-josh-adams-signing-for-cardiff-blues/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"123558929c807ebf04e4c3be9bf6b1294da20b28f018a9f7757f6a678356a09e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/how-social-media-reacted-to-josh-adams-signing-for-cardiff-blues/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"How Social Media Reacted to Josh Adams Signing for Cardiff Blues\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T10:13:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f795a066-f479-3e4c-90b9-82523af47e2d\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Free State Rugby is pleased to announce that utility back William Small-Smith extended his contract with the Toyota Cheetahs for another two years. He has committed to be playing for the Toyota Cheetahs until October 2021.</p> \\n  <p>The talented midfielder has international experience receiving gold medals as part of the Springboks Sevens team and the Junior Springboks. Fast and with a proven ability to finish, Small-Smith’s real strength lies in his on-field organisational and leadership traits. His natural leadership on and off the field allows players around him to blossom and more of the same can be expected of this gifted midfielder.</p> \\n  <p>Small-Smith has made 61 appearances for the Toyota Cheetahs so far (16 Currie Cup, 13 Super Rugby and 32 Guinness PRO14).</p> \\n  <p>Commenting on his contract extension, William Small-Smith said:</p> \\n  <p>“It was actually an easy decision to make. I moved to the Toyota Cheetahs to grow as a person and as a player and to get a lot game time and it was exactly what happened.”</p> \\n  <p>“I’m really excited about the feature of Free State Rugby. I feel that the Toyota Cheetah team is still in early stages of the Guinness PRO 14 championship – it’s only our second season. I believe that we are a team who can really compete to win the competition in the next year or two.”</p> \\n  <p>“We have a new group of players who are starting to become better with each game played.”</p> \\n  <p>“I really believe that we have a bright future – not only with the Currie Cup not overlapping but also with PRO14 where we want to go from strength to strength.”</p> \\n  <p>“It is a privilege for me extend my contract. I just want to keep contributing and keep doing what I can do to make the team better. The goal is to win any team at any time on any day.”</p> \\n  <p>“I’m really excited about the next two years. I really feel fortunate to be able to do what I love. I hope that I can keep on contributing.”</p> \\n  <p>Announcing the contract extension, the Harold Verster, Managing Director of the Free State Cheetahs (Pty) Ltd said: “William is born leader with a natural feel for the game. He has an exceptional personality and a player who will always give everything for the cause he serves. He is 100% a Cheetah and we are delighted to have him for the next two years.</p> \\n  <p>Career Stats:</p> \\n  <p>Provincial career: Debut in 2011 for Blue Bulls u.21 team<br> Currie Cup: 30 Currie Cup games in total, 7 tries and 2 conversions = 39 points (Blue Bulls and Cheetahs). Toyota Free State Cheetahs (2016-2018) – 16 games and 34 points.<br> Super Rugby: Bulls (2014) – 7 games and 5 points. Toyota Cheetahs (2016-2017) -13 games, 5 points<br> Guinness Pro 14: Toyota Cheetahs (2017-2018) -15 games and 26 points,<br> (2018-2019) -17 games and 15 points.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/william-small-smith-signs-two-year-contract-extension-with-toyota-cheetahs/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2e9e556b326e2fe51071a73365ae25df02d73307f41d598a54defa28531fcb87\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/william-small-smith-signs-two-year-contract-extension-with-toyota-cheetahs/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"William Small-Smith signs two year contract extension with Toyota Cheetahs\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-20T09:19:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"904af9bb-1b0f-3d66-942a-7d35d7457d89\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Ospreys Rugby are delighted to announce that Luke Morgan, top try scorer at the region this season, has signed a new two-year contract.</p> \\n  <p>The 26-year old winger, Wales Sevens all time top try – and points – scorer, has agreed to extend his time with the Ospreys until at least 2021 after making a huge impression in his first full season back at the home region he represented as a youngster.</p> \\n  <p>Speaking after committing his future to the Ospreys, Morgan said:</p> \\n  <p>“It’s nice to finally get pen to paper and I’m really excited about the future now, and being here for another two years.</p> \\n  <p>“This is where I want to be and I was keen to get the paper signed. The way the season started my profile shot up rapidly and I know that the pressure is on me to not just hit that level every time but to keep improving and this is the right place for that.”</p> \\n  <p>Hailing from Bridgend, Morgan represented the Ospreys at age-grade level and made one Anglo Welsh Cup appearance for the region as a teenager before embarking on his successful sevens career, scoring 131 tries from 202 matches in the World Sevens Series as well as playing at two Commonwealths Games and last summer’s Rugby World Cup Sevens.</p> \\n  <p>Renowned as one of the world’s leading finishers in the shortened version of the game, he rejoined the Ospreys ahead of the current season. His devastating pace and eye for a gap has seen him run in nine tries from 17 appearances to date.</p> \\n  <p>He scored the only try of the game in the Christmas win over the Scarlets to cement his place as a fan’s favourite at the Liberty Stadium, while his hat-trick against Zebre at the end of November means he is just one of 10 players to score three in a game for the Ospreys, alongside esteemed wingers like Tommy Bowe, Nikki Walker and Shane Williams.</p> \\n  <p>His early season impact was recognised via a first call up into Warren Gatland’s senior squad for the autumn international series, making his debut against Scotland in November.</p> \\n  <p>“This is excellent news for the Ospreys” said head coach, Allen Clarke.</p> \\n  <p>“Luke has transferred well from sevens and his tremendous start was rewarded with his first Welsh cap in fifteens. He’s electric when he gets the ball in his hands, he gets people out of their seats and scores tries. That’s what we all want to see.</p> \\n  <p>“What is really exciting about Luke is there’s more to come from him. He’s got a real appetite to learn the positional expertise required to really kick on from here and become a top level back three player.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/luke-morgan-commits-to-the-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1f24408ac063dc12076ef59480fa932c5ca75a6e1035b4420757f41250d3c978\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/luke-morgan-commits-to-the-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Luke Morgan commits to the Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-20T09:14:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"889d6daf-9278-3954-879a-2683c44217a1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Cardiff Blues are delighted to confirm the signing of Wales’ Six Nations hero Josh Adams.</p> \\n  <p>The 23-year-old starred throughout Wales’ march to Grand Slam glory and bagged three tries in the process including stunning efforts against England and Scotland.</p> \\n  <p>He has subsequently been nominated for player of the tournament and he will return to Wales in the summer to ply his trade at Cardiff Arms Park.</p> \\n  <p>Adams said: “It is great to be returning to Wales and I cannot wait to link up with Cardiff Blues next season.</p> \\n  <p>“I’ve been really impressed with John’s vision for the future and the attacking brand of rugby the Blues play will really suit my game.</p> \\n  <p>“It is a young and exciting squad, with a good blend of experience, which has a bright future and I’m looking forward to contributing towards that.</p> \\n  <p>“I will always be grateful to Worcester Warriors for giving me the opportunity to become a professional player and I have loved my time at Sixways.</p> \\n  <p>“But to play for Wales I need to play in Wales and Cardiff Blues is the best fit for me. I’m really looking forward to the next chapter at Cardiff Arms Park.”</p> \\n  <p>Adams burst onto the scene at Worcester Warriors during the 2016-17 season and has now made 59 appearances and scored a hugely impressive 34 tries.</p> \\n  <p>He was the Aviva Premiership’s joint-top scorer last season with 13 tries and 17 in all competitions and scooped both the Warriors’ Young Player and Player of the Year awards.</p> \\n  <p>The 23-year-old’s performances have been equally impressive in the red of Wales, where he has now made 10 appearances and touched down four times.</p> \\n  <p>Adams is the first signing following the approval of Cardiff Blues’ budget for next season and head coach John Mulvihill believes it is a significant signal of intent.</p> \\n  <p>He added: “It’s an exciting signing for the region and demonstrates our strong rugby ambition going forward.</p> \\n  <p>“Josh is a player we can build success around. He brings genuine hunger to succeed, enormous energy and the skill-set and speed to make a real difference to our group.</p> \\n  <p>“Just from watching the Six Nations, you can see he’s a really busy player, who makes big contributions both in attack and defence, and is a good team man. We’re looking forward to getting him on board for next season.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/cardiff-blues-swoop-for-grand-slam-star-adams/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"9bba0171e8791d3b07534cf331e6f4d7757a3ff8c4909adfa8c849f8eb3e01dc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/cardiff-blues-swoop-for-grand-slam-star-adams/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Cardiff Blues swoop for Grand Slam star Adams\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T09:11:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"fef17b4f-ce4b-3fd2-8cf0-f40d7dca9734\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Scarlets are delighted to announce that three of Wales’ Grand Slam heroes have signed new contracts.</p> \\n  <p>Jonathan Davies, Ken Owens and Rob Evans have agreed new deals to extend their stay with their home region.</p> \\n  <p>The international trio have come through the academy system at the Scarlets and were key members of the side that lifted the Guinness PRO12 trophy in 2017.</p> \\n  <p>Scarlets head coach Wayne Pivac said: “I am delighted that Rob, Ken and Jon have re-signed for the Scarlets.</p> \\n  <p>“They have been a big part of our success in recent years and I know that our incoming coach Brad (Mooar) was very keen to secure their services moving forward.</p> \\n  <p>“It is great news for the Scarlets.”</p> \\n  <p>Davies has played 154 matches for the Scarlets since making his debut in August 2006.</p> \\n  <p>He has gone on to become one of the leading centres in world rugby and was named the British and Irish Lions player of the series in 2017.</p> \\n  <p>“I could not be happier to be staying with the Scarlets,” he said.</p> \\n  <p>“I am excited about the end of the season and having spoken to our new coach Brad, excited about what is to come.</p> \\n  <p>“It is something I want to be part of.</p> \\n  <p>“You want to be playing in the big competitions and competing for trophies and we have been doing that at the Scarlets.</p> \\n  <p>“I am delighted to have signed a new contract.”</p> \\n  <p>Owens was a Lions Test player in 2017 and won his 64th Wales cap against Ireland last weekend.</p> \\n  <p>The talismanic hooker has made 238 appearances for the Scarlets since making his debut against Northampton Saints in 2016.</p> \\n  <p>Owens has captained the Scarlets since 2014.</p> \\n  <p>He said: “I am delighted to have signed an extension to my contract.</p> \\n  <p>“I am looking forward to a big end of season and building on the success we have achieved in recent years.”</p> \\n  <p>Evans is another who has been at the heart of the Scarlets’ success.</p> \\n  <p>The Pembrokshire product has made 118 appearances since making his debut in January 2013 and was named in the Guinness PRO14’s dream team last season.</p> \\n  <p>“I love playing here, you are playing with your mates and there’s a great spirit in the squad,” said Evans.</p> \\n  <p>“I have been proud to be part of the success we have achieved over the last few years.</p> \\n  <p>“I want to keep playing for Wales and there is no other side in Wales I would want to play for.</p> \\n  <p>“This is an exciting time to be involved with the Scarlets. I am looking forward to pulling on a Scarlets jersey again and helping us get into the play-offs for another season.”</p> \\n  <p>Scarlets general manager of rugby Jon Daniels added: “We are delighted to have key players like Jon, Ken and Rob sign new deals.</p> \\n  <p>“All three are from West Wales, are proud of their roots and have played a huge part in our success in recent seasons.</p> \\n  <p>“As Scarlets we are equally proud to see them achieve what they have on the international stage and for all three to sign new contracts is an indication of our ambition over the coming years.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/19/grand-slam-winners-jonathan-davies-rob-evans-and-ken-owens-sign-new-scarlets-deals/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2e928e427d7bf166b02673dc09221abf8aad34210c4798db4c3fe51c68e50623\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/19/grand-slam-winners-jonathan-davies-rob-evans-and-ken-owens-sign-new-scarlets-deals/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Grand Slam winners Jonathan Davies, Rob Evans and Ken Owens sign new Scarlets deals\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-19T17:05:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8f97da44-8a83-3ab0-ae04-f7389eec1cf1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Glasgow Warriors have been boosted by the news that Scotland internationals Alex Allan and D’Arcy Rae have penned new deals, ahead of an important period of the season.</p> \\n  <p>The Warriors face the Cheetahs at Scotstoun on Saturday in the Guinness PRO14 and then travel to play Saracens in the quarter-finals of the Champions Cup seven days later.</p> \\n  <p>Both players, who pack down either side of the front row, have signed two-year contracts to extend their stays at Scotstoun until at least 2021.</p> \\n  <p>Allan has made 88 appearances for the Warriors since joining from Edinburgh ahead of the 2014/15 season.</p> \\n  <p>The 26-year-old loose-head has eight caps for Scotland including two off the bench in this year’s Guinness Six Nations.</p> \\n  <p>He was part of the Harrogate RUFC side which won the Yorkshire Cup as a junior, while attending Sedbergh School in Cumbria and being unbeaten in his final year playing for the 1st XV and being named Rugby World School Team of the Year.</p> \\n  <p>Tight-head, Rae has made 59 appearances for Glasgow Warriors since making his debut against Munster in 2015.</p> \\n  <p>The 24-year-old former Marr College pupil is a product of the Fosroc Scottish Rugby Academy and spent time on loan to PRO14 rivals Benetton at the beginning of his career.</p> \\n  <p>Having been involved in several international squads he won his first Scotland cap against Ireland last month.</p> \\n  <p>Alex Allan said: “Staying at Glasgow was an easy decision for me to make. It’s a great environment and the challenge of testing myself at the highest level in both the PRO14 and the Champions Cup is one I really enjoy.</p> \\n  <p>D’Arcy Rae said: “I’m pleased to be staying at Scotstoun for another two years. I’ve enjoyed how much game time I’ve had this season and getting capped during the Six Nations was a dream come true so I’m looking to kick on and keep improving with every game.”</p> \\n  <p>Glasgow Warriors Head Coach Dave Rennie said: “Alex is a really dynamic prop who is equally as comfortable in the loose as he is at set piece.</p> \\n  <p>“D’Arcy has played some big games for us this season. With Zander (Fagerson) and Siua (Halanukonuka) both injured early in the year he stepped up as our first choice tight-head for a stretch of matches and performed well.</p> \\n  <p>“Both are really good men and well-liked members of our group and it’s great that they’re sticking around to provide real strength in depth to our front row.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/19/prop-pair-put-pen-to-paper/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"40fb47798e3aa29c4e078a2c6fd8402f67ac7e14e93c0ae8cabddfa72438770e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/19/prop-pair-put-pen-to-paper/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Prop pair put pen to paper\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-19T16:14:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"40d8172a-1c0c-3484-89d0-655bbd7ea32a\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Guinness Six Nations Championship is done and dusted for another year and it signed off in typical dramatic style in the final round of fixtures.</p> \\n  <p>Wales were crowned champions with a win over Ireland and the Guinness PRO14’s very own Gareth Anscombe was right in the thick of the action, nailing no less than six penalties to help steer his team to Grand Slam glory.</p> \\n  <p>Meanwhile, England and Scotland produced an all-time classic thanks to an incredible flurry of Edinburgh Rugby try-scorers.</p> \\n  <p>And Italy went down fighting against France, with all of their points on the day coming from Benetton’s Tito Tebaldi and Tommaso Allan’s boot.</p> \\n  <p>Here’s a run-down of all the major Guinness PRO14 talking points:</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">Take a bow <a href=\\\"https://twitter.com/Gareth_Anscombe?ref_src=twsrc%5Etfw\\\">@Gareth_Anscombe</a> . Immensely proud of you and all three <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> boys involved . Immense effort from all 23 <a href=\\\"https://twitter.com/WelshRugbyUnion?ref_src=twsrc%5Etfw\\\">@WelshRugbyUnion</a> \\uD83D\\uDE4C\\uD83C\\uDFFC <a href=\\\"https://t.co/AApbW9V6rE\\\">pic.twitter.com/AApbW9V6rE</a></p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1106959128986046466?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Wales crowned champions</strong></p> \\n  <p>Warren Gatland became the first coach to win three Gland Slams as he guided high Wales to a comprehensive 25-7 win over Ireland in front of a home crowd at the Principality Stadium.</p> \\n  <p>And Wales got off to the prefect start when Scarlets centre Hadleigh Parkes latched onto an Anscombe kick over the top and dotted down the only try of the match.</p> \\n  <p>Parkes then turned defender as he executed a try-saving tackle on Jacob Stockdale before Cardiff Blues’ Anscombe took control of the game slotting six penalties to put Wales in command.</p> \\n  <p>With the clock already in the red, Leinster’s Jordan Larmour saved Ireland from a scoreless defeat as he crossed but it was too little too late.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">The nation is Proud! To the Scarlets pack that has been monumental in shaping the GRAND SLAM win. We are very proud of you boys!<br> Come and watch the boys back in action against Edinburgh at Parc y Scarlets. 06.04.2019 <a href=\\\"https://t.co/xr0BYQPJev\\\">https://t.co/xr0BYQPJev</a> <a href=\\\"https://t.co/3qWlbZ5yVc\\\">pic.twitter.com/3qWlbZ5yVc</a></p> \\n   <p>— Scarlets Rugby (@scarlets_rugby) <a href=\\\"https://twitter.com/scarlets_rugby/status/1106962369945710593?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Records broken at Twickenham</strong></p> \\n  <p>Over at Twickenham, England and Scotland were busy rewriting the record books as the hosts came flying out of the blocks to score the fastest-ever bonus point in the history of the Championship.</p> \\n  <p>But after Eddie Jones’ men had taken a 31-0 lead, Scotland’s Edinburgh contingent began to stir and hit back with a flurry of their own through Stuart McInnaly and a Magnus Bradbury score sandwiched between a Darcy Graham double.</p> \\n  <p>Out of nowhere, Scotland were level again and went on to take the lead when Glasgow Warriors’ Sam Johnson, only for George Ford to score and convert a last-gasp try to level up the scores at 38-38.</p> \\n  <p>The result was the biggest comeback to draw any Test, beating the previous record held by Scotland when they came back from 19 points down to draw 28-28 with Wales in 2001.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">Have you stopped screaming at your TV yet? \\uD83D\\uDE03</p> \\n   <p>A stellar comeback at Twickenham. Congratulations to <a href=\\\"https://twitter.com/McInallyStuart?ref_src=twsrc%5Etfw\\\">@McInallyStuart</a>, <a href=\\\"https://twitter.com/Darcy_Graham?ref_src=twsrc%5Etfw\\\">@Darcy_Graham</a> &amp; <a href=\\\"https://twitter.com/BradburyMagnus?ref_src=twsrc%5Etfw\\\">@BradburyMagnus</a> on your tries in today’s Calcutta Cup defence! RUGBY!!! \\uD83D\\uDC4F <a href=\\\"https://twitter.com/hashtag/AsOne?src=hash&amp;ref_src=twsrc%5Etfw\\\">#AsOne</a> <a href=\\\"https://t.co/hwkHqgER1I\\\">https://t.co/hwkHqgER1I</a></p> \\n   <p>— Edinburgh Rugby (@EdinburghRugby) <a href=\\\"https://twitter.com/EdinburghRugby/status/1106998003901124609?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Misery in Italy </strong></p> \\n  <p>Meanwhile, at the Stadio Olimpico, Italy let the chance to finish this year’s Championship on a high slip through their fingers.</p> \\n  <p>Benetton’s Tito Tebaldi scored Italy’s only try of the match in the second half, adding to his Treviso teammate Tommaso Allan’s three penalties and bringing the Azzurri&nbsp;right back into the game.</p> \\n  <p>But it was another Benetton player that had the golden opportunity to clinch victory as with five minutes remaining on the clock, Marco Zanon leaping for the line, only to have the ball punched out of his grasp by Damian Penaud.</p> \\n  <p>To compound the misery for Italy, Penaud then went up the other end and scored the try that gave France the win to leave Italy without a point on the board across the whole Championship.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/17/guinness-six-nations-review-anscombe-leads-wales-to-title/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"3bbce695cb68b421e1edcfb29692909894f6a44813668dc57eb08a7788be8c0a\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/17/guinness-six-nations-review-anscombe-leads-wales-to-title/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness Six Nations review: Anscombe leads Wales to title\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-17T15:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"2b8bc020-3064-3b49-a326-6d168e1def75\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Leinster Rugby and the IRFU have confirmed a contract extension for Leinster Rugby Head Coach Leo Cullen.</p> \\n  <p>Cullen, who won 221 caps for Leinster and was captain of three Heineken Cup winning squads, was appointed Head Coach at the start of the 2015/16 season and will now lead the province for a further two seasons until the end of the 2020/21 season.</p> \\n  <p>Leinster Rugby CEO Mick Dawson also confirmed that Senior Coach Stuart Lancaster has been retained.</p> \\n  <p>Speaking to leinsterrugby.ie Dawson spoke about Cullen’s time in charge to date and his impact on the club.</p> \\n  <p>“Leo’s skills as a player and as a captain have been well celebrated over the years and rightly so.</p> \\n  <p>“Over the last four seasons he has continued to build on that legacy and has added considerable coaching credentials to his list of achievements. Not only did Leo oversee the great double success of last season, he also oversaw the rebuilding of the playing squad after a number of high profile retirements and the recruitment of the new coaching team.</p> \\n  <p>“We have seen the impact Leo has had on the organisation both on and off the field and we are thrilled to see him commit for a further two seasons with the club.</p> \\n  <p>“That level of continuity is crucial for the model that we have here at the club, a model that Leo not only believes in but is a product of.</p> \\n  <p>“In his four seasons he has capped 43 new players with the majority of them coming from the 12 counties of Leinster.</p> \\n  <p>“This season he has capped eight players from our Academy in the 54 players used across the Guinness PRO14 and the Heineken Champions Cup.</p> \\n  <p>“This is an important announcement for the club and we are delighted to have our business done ahead of a crucial block of games for Leo, his staff and the players.”</p> \\n  <p>Dawson also confirmed that Senior Coach Stuart Lancaster has signed a new contract with the club.</p> \\n  <p>“Everyone can see that we have benefited from Stuart’s vast experience working within the academy system in England plus of course his time with the English national team.</p> \\n  <p>“He has consistently shown his commitment to the Leinster cause and it is a real boost to retain the services of a world class coach.”</p> \\n  <p><strong>Leo Cullen – Head Coach:</strong><br> DOB: 9 January 1978<br> Honours: Leo won 32 Ireland caps and 221 Leinster caps during a stellar career that saw him win titles with both Leinster Rugby and Leicester Tigers.</p> \\n  <p><strong>Stuart Lancaster – Senior Coach:</strong><br> DOB: 9 October 1969<br> Honours: Stuart was England Rugby Head Coach from 2011-2015. Before that he was the RFU’s Elite Rugby Director. He represented Scotland at underage level and was the first player to play over 100 times for Leeds RUFC (later branded Leeds Tykes).</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit <a href=\\\"http://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n  <p>&nbsp;</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/15/leo-cullen-signs-new-contract-at-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b87ff81cd04fd23597965e436a4f8b221ead3e29f6d076389839a2b42a167bc0\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/15/leo-cullen-signs-new-contract-at-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leo Cullen signs new contract at Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-15T10:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"d53d398c-77ce-3b1a-9f59-300695c0301f\",\"language\":\"en\",\"version\":2,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"8901e62a8bd55eacc81acb95cfc25746f3f649e97d602f6f6799de95f338d703\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/75-days-to-go-kick-off-confirmed-for-guinness-pro14-final/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"75 Days To Go: Kick-Off Confirmed for Guinness PRO14 Final\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\"},\"publishDate\":\"2019-03-11T14:58:00.000Z\",\"auth\":{\"loginRequired\":true},\"blocked\":true},{\"id\":\"f3a87f06-3588-3acc-8ecf-f8753c327daa\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Edinburgh have continued to strengthen their squad ahead of next season with re-signing of hooker David Cherry on a one-year deal.</p> \\n  <p>Cherry, 28, has enjoyed a breakout campaign since joining the club from French Fédérale 2 side Stade Niçois in March 2018 – making 16 appearances this season so far – and today extends his stay in the capital by a further year.</p> \\n  <p>On re-signing with his hometown club, Cherry said: “I’m delighted to have re-signed with Edinburgh for another year after such an exciting first season.</p> \\n  <p>“I believe the squad has the ability to achieve great success and I’m looking forward to contributing to that next year.”</p> \\n  <p>Head Coach Richard Cockerill, added: “We’re delighted that Dave has committed to the club for a further season. He’s kicked on really well since joining the club in the summer and continues to develop in his position.</p> \\n  <p>“He provides us with great strength and depth at hooker and will no doubt continue to work hard in training to stake a place in this Edinburgh team.”</p> \\n  <p>After graduating from Edinburgh’s Merchiston Castle School, Cherry played his senior rugby at Currie before making the move to English Championship side London Scottish in 2014.</p> \\n  <p>The hooker soon cemented himself in the Championship outfit’s starting XV, but after three seasons at the Athletic Ground – in which he made 54 appearances, scoring 45 points in the process – Cherry joined Stade Niçois as part of Scottish Rugby’s performance pathway partnership.</p> \\n  <p>After returning to his hometown team in March 2018, former Scotland U20 international Cherry made his Edinburgh debut from the bench against Leinster at the RDS Arena in September of the same year.</p> \\n  <p>Cherry – who has represented Scotland 10 times at U20 level and started all five games at the 2011 Junior World Championship in Italy – quickly established himself as the capital side’s reserve hooker, providing invaluable support from the bench in the early stages of the season.</p> \\n  <p>The hooker was rewarded for his fine domestic form when he was named in Gregor Townsend’s Scotland squad for the 2019 Guinness Six Nations.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/11/hometown-hooker-cherry-re-signs-with-edinburgh-rugby-until-2020/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e6da1dfc129cb3c19ecb58dc0a497d5be35bdb3333c8864d383dc88c23e4ca8e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/hometown-hooker-cherry-re-signs-with-edinburgh-rugby-until-2020/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Hometown hooker Cherry re-signs with Edinburgh Rugby until 2020\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-11T14:12:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e6c35ae3-80ce-3071-bcc2-0139c3d347a3\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Two of the three Guinness Man of the Match award winners from Round Four of the Six Nations were Guinness PRO14 players.</p> \\n  <p>Scarlets’ Hadleigh Parkes left BT Murrayfield bloodied and bruised but not before he had played an integral role in Wales’ 18-11 victory over Scotland to keep his side on course for the Grand Slam.</p> \\n  <p>Parkes was crowned Guinness Man of the Match for his efforts and so too was Leinster’s James Ryan, as he put on a bullocking display in Ireland’s 26-14 victory over France.</p> \\n  <p>Meanwhile Benetton’s Tommaso Allan and Luca Morisi both scored tries as Italy battled in vain against a rampant England side, ultimately losing 57-14 at Twickenham.</p> \\n  <p><img class=\\\"alignnone wp-image-66718\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-300x169.jpg\\\" alt=\\\"Hadleigh Parkes\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-768x432.jpg 768w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-1024x576.jpg 1024w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p><strong>Scarlet fever</strong></p> \\n  <p>Hadleigh Parkes wasn’t the only Scarlets player to step up to the plate for Wales on Saturday either.</p> \\n  <p>Jonathan Davies had a big hand is setting up Josh Adams for Wales’ first try when he played the two-on-one perfectly and put Adams away to give his side the lead</p> \\n  <p>And he was rewarded for his generosity with a try of his own on after Wales went through the phases in the Scottish 22, he eventually received the ball in hand and smashed his way over the line.</p> \\n  <p>Edinburgh’s Darcy Graham did get a try back for Scotland to set up a nervy finish but Cardiff Blues’ Gareth Anscombe’s contribution with the boot made sure that the hosts remained at arm’s length as the clock ticked down.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"cy\\\">A brilliant try from the Scarlet <a href=\\\"https://twitter.com/JonFoxDavies?ref_src=twsrc%5Etfw\\\">@JonFoxDavies</a> \\uD83D\\uDC4F\\uD83C\\uDFFC\\uD83D\\uDC4F\\uD83C\\uDFFC</p> \\n   <p>Cais wych gan Jon Foxy i roi Cymru ar y blaen i mewn i’r ail hanner \\uD83D\\uDC4F\\uD83C\\uDFFC\\uD83D\\uDC4F\\uD83C\\uDFFC <a href=\\\"https://t.co/02Q24HcWE3\\\">https://t.co/02Q24HcWE3</a></p> \\n   <p>— Scarlets Rugby (@scarlets_rugby) <a href=\\\"https://twitter.com/scarlets_rugby/status/1104397992050786304?ref_src=twsrc%5Etfw\\\">March 9, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script><br> <strong>The Best way to sign off</strong></p> \\n  <p>James Ryan’s mammoth performance and monstrous first-half hit on Antoine Dupont will feature in the highlight reel but the game will likely be remembered as Rory Best’s last home Guinness Six Nations appearance.</p> \\n  <p>And Ulster’s Best marked it with a try in the first three minutes of the match, crashing over from a five-metre lineout following some great kicking from Leinster’s Jordan Larmour.</p> \\n  <p>And Larmour’s provincial teammate and Irish talisman Sexton soon arrived at the party shortly afterwards, booting the conversion and then converting his own try on the half-hour mark to put Ireland in command.</p> \\n  <p>And after Leinster’s Jack Conan added a third, Keith Earls raced over the line to score his 30th international try and ensure that Munster had some Guinness PRO14 representation on the scoresheet.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\"><a href=\\\"https://twitter.com/hashtag/MondayMotivation?src=hash&amp;ref_src=twsrc%5Etfw\\\">#MondayMotivation</a> <a href=\\\"https://twitter.com/RoryBest2?ref_src=twsrc%5Etfw\\\">@RoryBest2</a> got Ireland off to a great start against France yesterday \\uD83D\\uDCAA\\uD83D\\uDCAA\\uD83D\\uDCAA <a href=\\\"https://t.co/UhDcschlnF\\\">pic.twitter.com/UhDcschlnF</a></p> \\n   <p>— Ulster Rugby (@UlsterRugby) <a href=\\\"https://twitter.com/UlsterRugby/status/1105064745327947776?ref_src=twsrc%5Etfw\\\">March 11, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script><br> <strong>Benetton brotherhood</strong></p> \\n  <p>Italy fans might find it hard to pick positives out of their defeat at the hands of a well-oiled England side at Twickenham.</p> \\n  <p>But Benetton supporters might have a little more joy as both of the Italy try scorers wear the Treviso badge.</p> \\n  <p>Italy were in touch with Eddie Jones’ men to begin with and Tommaso Allan managed to level the scores up at 7-7 when he slipped through the English defence and held off Ben Youngs to dot down and convert.</p> \\n  <p>England then took control of the game and tries rained down on Italy but there was room for one more Benetton celebration when Luca Morisi went over in the corner for Allan to convert once more.</p> \\n  <p><img class=\\\"alignnone wp-image-69274\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-300x169.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-768x432.jpg 768w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-1024x576.jpg 1024w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/11/guinness-six-nations-review/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1974cfade3c696020d25eaac6291c50d6cb232b7c031c23fed7168a2704fabbf\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/guinness-six-nations-review/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness Six Nations review: The men of the moment\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-11T13:55:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8f192d79-d101-35ed-8102-be8f050913f7\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>As the 2019 Guinness Six Nations crosses the half-way mark, fans can look forward to another round of pulsating action this weekend.</p> \\n  <p>Wales will make the trip to Edinburgh in the early Saturday kick-off as they look to maintain their 100% record with a victory against a struggling Scottish outfit.</p> \\n  <p>Later that day, England take on Italy as they hope to bounce back from a disappointing loss against Wales with a strong performance at Twickenham.</p> \\n  <p>And Sunday’s flagship game sees Ireland take on France as both sides aim to finish the Championship strong.</p> \\n  <p>With a host of PRO14 players suiting up for international action this weekend, here are the main talking points.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Stander and Byrne Return to boost Irish hopes</strong></p> \\n  <p>Munster’s CJ Stander returns to the Ireland team after a facial injury kept him out of the last two Guinness Six Nations fixtures.</p> \\n  <p>The No.8, who started Ireland’s opening day loss to England, has been in and out of the Munster side this season, with his last appearance coming against Connacht Rugby in early January.</p> \\n  <p>But Joe Schmidt clearly has faith in the 28-year-old as Ireland face a must-win game against France on Sunday.</p> \\n  <p>Ireland will once again look to Munster’s Conor Murray, whose two tries and couple of penalties make him the nation’s top scorer this year.</p> \\n  <p>Also making the cut is Leinster fly-half Ross Byrne, who could earn his third cap for Ireland as they look to pick up their third consecutive win.</p> \\n  <p>The 23-year-old has been in good form for his club side, making 16 appearances and crossing the 100 point mark for the season in mid-February.</p> \\n  <p>He scored an excellent try against Toyota Cheetahs last weekend before converting another two to secure a timely win – and he could make his Six Nations bow on Sunday.</p> \\n  <p>Fellow try-scorer Kieran Marmion adds to the Connacht Rugby contingent as he gets back in the squad alongside Ulster’s Rob Herring.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Wales put faith in Ospreys’ Beard</strong></p> \\n  <p>Cory Hill’s untimely injury after an excellent performance in the win against England means Adam Beard will slot into the second row against Scotland on Saturday.</p> \\n  <p>But Warren Gatland will hope the Ospreys star will continue his unbeaten streak in a Welsh shirt – the lock is yet to lose in 11 appearances for his nation.</p> \\n  <p>He joins teammates George North, Justin Tipuric and Alun Wyn Jones – who captains Wales – in the starting XV.</p> \\n  <p>Jake Ball is drafted in to fill Beard’s bench spot as Scarlets continue to represent the lion’s share of the national squad.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Bennetton duo return to XV</strong></p> \\n  <p>Sergio Parisse may be the most notable change to the Italian team to face England, but the Azzurri will also welcome back Round Three absentee Sebastian Negri.</p> \\n  <p>The Bennetton lock missed the defeat to Ireland due to illness but will return to an Italian side looking for their first win of the Championship.</p> \\n  <p>Meanwhile, Luca Bigi will get the nod at hooker as he makes his first start in this year’s Six Nations ahead of Leonardo Ghiraldini.</p> \\n  <p>Teammate Tommaso Allan has been a bright spot in Italy’s sluggish campaign thus far as he has scored 16 points while Edoardo Padovani (Zebre) has crossed three times.</p> \\n  <p>&nbsp;</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/six-nations-round-4-preview-stander-and-byrne-return-for-ireland/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1e01f91a675ee51f9c1cd468da5abcb988d9711b414ea266258ef9ad57577f7b\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/six-nations-round-4-preview-stander-and-byrne-return-for-ireland/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Six Nations Round 4 Preview: Stander and Byrne return for Ireland\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-08T18:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6dbd51bb-8d36-3e88-a702-54dd49b99718\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Scotland international scrum-half Henry Pyrgos has today committed his future to Edinburgh after putting pen-to-paper on a new two-year deal.</p> \\n  <p>Pyrgos, 29, has made 18 appearances so far this season after joining the club from Glasgow Warriors in June 2018, and today extends his stay in the capital until at least 2021.</p> \\n  <p>On re-signing with the club, Pyrgos, said: “I’ve thoroughly enjoyed my first season at Edinburgh and I’m excited to sign for two more years.</p> \\n  <p>“I really believe we have the ability to go and achieve success over the next few seasons. I’m looking forward to working hard to make that happen.”</p> \\n  <p>Head Coach Richard Cockerill, added: “Henry is a level headed, gutsy player whose leadership and playmaking abilities are integral to the way we play.</p> \\n  <p>“He offers a great link between our forward pack and backline, so we’re delighted that he will continue to represent this club for the next two seasons.”</p> \\n  <p>Pyrgos has enjoyed a strong first campaign in the capital since making his debut against Ospreys in the 2018/19 Guinness PRO14 season opener.</p> \\n  <p>A natural leader with excellent playmaking abilities, Pyrgos has skippered the capital side on several occasions in club captain Stuart McInally’s absence.</p> \\n  <p>The scrum-half – who was a Guinness PRO12 (now PRO14) winner in 2012 – scored his first try for the club in the 40-14 Heineken Champions Cup victory over RC Toulon at BT Murrayfield.</p> \\n  <p>A former pupil of Bryanston School in Dorset, Henry is eligible for Scotland through his mum, who was born in Grangemouth, while his grandparents were born in Dundee.</p> \\n  <p>Pyrgos made his international debut against New Zealand in the first match of the 2012 Autumn Tests.</p> \\n  <p>The scrum-half scored his first try for Scotland against South Africa in the same campaign and has since gone on to notch up 29 points in 27 matches played for the national side.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/pyrgos-extends-capital-stay-until-2021/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1a6214aa02d481e20cd0077d5ffec1c9f8591db937795653fdb5e633e044d528\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/pyrgos-extends-capital-stay-until-2021/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Pyrgos extends capital stay until 2021\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-08T11:18:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ab517d7f-02ed-366e-8f02-956c5c6ee97f\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p><strong>Eastern Cape Consortium Acquires Ownership of Isuzu Southern Kings </strong></p> \\n  <p>A consortium of Eastern Cape business people has acquired a controlling interest in the Isuzu Southern Kings rugby franchise, SA Rugby was delighted to confirm on Friday.</p> \\n  <p>SA Rugby sold a 74 percent shareholding in SA Super Rugby (Pty) Ltd, the Isuzu Southern Kings’ holding company, to a company called GRC Ltd. The Eastern Province Rugby Union (EPRU) has acquired the balance of 26 percent of the shares.</p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The deal was recently completed following the conclusion of agreement on the commercial terms. </span><span style=\\\"font-weight: inherit;\\\">SA Rugby had taken control of the Isuzu Southern Kings in November 2015 when the EPRU, to whom the operation of the franchise had been granted, ran into financial trouble.</span><a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux.jpg\\\"><br> <img class=\\\"alignleft size-custom_feed wp-image-70516\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-1024x682.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"682\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-1024x682.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-300x200.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\"></a><em>Consortium head Loyiso Dotwana with SA Rugby CEO, Jurie Roux</em></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">“We are delighted to have concluded the sale,” said <strong>Jurie Roux, SA Rugby CEO</strong>. </span><span style=\\\"font-weight: inherit;\\\">“The GRC are made up of committed local individuals who have the growth of rugby and the success of the Isuzu Southern Kings at heart. They are intimately involved in the commercial activities of the Eastern Cape and understand the potential of the region.</span></p> \\n  <p>“This is a very significant and important development for the Isuzu Southern Kings. We look forward to GRC and the local community giving the Isuzu Southern Kings the ammunition to grow into the rugby force we know they can be.”</p> \\n  <p>The owners of GRC are Eastern Cape businesspeople Loyiso Dotwana, Gary Markson, Rory Stear, Kenny Govender and Vuyo Zitumane.</p> \\n  <p><strong>Mr Dotwana, head of the consortium,</strong> said: “We have followed a rigorous process to take control of the franchise but we have been single minded throughout: that bringing ownership of the Isuzu Southern Kings into local hands will be good for the team and good for the region.</p> \\n  <p>“We are rugby people who understand the Eastern Cape, the passion of the people for rugby and just how much a successful Isuzu Southern Kings team would mean to this region. We are focused and determined to deliver that success.”</p> \\n  <p><strong>Mr Andre Rademan, President of the EPRU</strong>, said that the fact that the EPRU was a shareholder would ensure continuity for rugby in the region. <span style=\\\"font-weight: inherit;\\\">“It is essential that the continuum between school, club, provincial and franchise rugby remains open and this new arrangement assures that,” he said.</span></p> \\n  <p>“It has been a challenging three years for the rugby in the Eastern Cape but the establishment of a new EPRU board and now the local acquisition of the Isuzu Southern Kings franchise means that we can look to the future with real excitement and anticipation.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/new-owners-keen-to-get-southern-kings-on-road-to-success/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b43d219108b609642830458292c336725ea2229ae594ee719cdbcecf9c5461f1\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/new-owners-keen-to-get-southern-kings-on-road-to-success/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"New Owners Keen to get Southern Kings on Road to Success\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"34\"}],\"publishDate\":\"2019-03-08T08:50:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"cbda0a7a-643c-3e2a-a2ab-1cfc4241b4a9\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Each game week Paul Williams ‘Black &amp; White’ column will take a look around the world of the Guinness PRO14. Known for his contributions to Rugby World, his obsession for the game and his notorious tennis elbow, Paul will bring his unique takes on rugby to&nbsp;\\n  <a href=\\\"https://www.pro14rugby.org/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">pro14rugby.org</a>. For more make sure to follow him on Twitter&nbsp;&nbsp;\\n  <a href=\\\"https://twitter.com/thepaulwilliams\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">@thepaulwilliams</a>\\n  <br>\\n  <br>\\n  <hr>\\n  <br>\\n  <br>\\n  <h2><strong>Growing Pains Await as Regional Rugby Aims to Run with the Thoroughbreds&nbsp;</strong></h2>\\n  <br>\\n  <em>Paul Williams is an independent columnist for <a href=\\\"https://www.pro14rugby.org\\\">www.pro14rugby.org</a> and the views expressed in his columns are his (who else would they be?) and not those of PRO14 Rugby. </em>\\n  <br>\\n  <br>The title of this column couldn’t be less apt this week. There is never anything black and white in Welsh rugby. Excluding the relative success of the national team over the past 15 years, club and regional rugby in Wales has been a massive grey mess since the game went professional.\\n  <br>\\n  <br>Every four to five years, some unfortunate individuals must untangle what is tantamount to 150 pairs of headphone cables thrown into a tumble dryer. The professional game in Wales is desperate for a clear road map for everyone to follow and it’s hard to think of any other Tier One nation that’s in the same situation.\\n  <br>\\n  <br>Few, if any, top rugby nations managed the transition to professional rugby with ease, but the truth is, the Welsh rugby landscape couldn’t handle professionalism even before it became professional. In the 80’s and 90’s, it was rugby league that ripped the club game apart.\\n  <br>\\n  <br>The first regional structure in 2003, initially failed with the collapse of the Celtic Warriors and the success of the remaining teams has witnessed many highs and lows.\\n  <br>\\n  <br>The Ospreys had promising spells which included four Championship titles between the Celtic League and the old PRO12. The Scarlets have bagged two titles themselves and created some positivity with their daring style of play but neither team has ever reached a European final. The Cardiff Blues have never really established themselves a consistent contender domestically despite claiming two Challenge Cups over the past decade.\\n  <br>\\n  <br>\\n  <a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07110841/inpho_01469574.jpg\\\"><img class=\\\"alignleft size-custom_feed wp-image-70507\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07110841/inpho_01469574-1024x670.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"670\\\"></a>\\n  <br>\\n  <br>What fans yearn for is teams that can make an impact on the biggest days in the European Cup as well as in the Guinness PRO14, but none of the regions have ever threatened to headline those gala finales on the continental stage.\\n  <br>\\n  <br>So, what do we want rugby in Wales to be? Are we happy being a rugby version of Scandinavian football, where a solid national team is achievable, but the club game fails to truly capture the imagination? Because at the moment, that is where the game in Wales sits. A good national team, but with no hope of ever fielding a squad that can cope with Saracens or Leinster, in the long-term.\\n  <br>\\n  <br>The reality is that Wales can’t afford four fully-funded professional rugby teams. The fact that all four of the teams exist in such a small geographic space makes perfect sense historically, but very little sense commercially. We all know about the history of Swansea, Neath, Llanelli, Newport, Cardiff, Pontypridd and Pontypool etc.\\n  <br>\\n  <br>However, commercially, the geographical spacing of the regions is from an age gone by and pro sport doesn’t care what happened yesterday; it only cares for what happens tomorrow. If something doesn’t change now who knows where we could be in 10 or 20 years time.\\n  <br>\\n  <br>Weirdly, this whole mess isn’t even a result of the actions of those in Wales, it is partly a result of outside forces. The commercial pressures driving up player salaries are exerted by France, England and Japan, and they have already forced the Australian Rugby Union into a restructure to ensure they can retain their best players. The same action must happen in Wales.\\n  <br>\\n  <br>Welsh supporters dream of their sides having the type of funding and player budgets that the top teams in Europe do, but if they want to see that come true, some are going to have to go through a nightmare.\\n  <br>\\n  <br>If you’re an Ospreys fan right now you’ll feel like that’s what’s ahead, make no mistake about it.\\n  <br>\\n  <br>We should always remember that this is all in a sporting context, and that no-one has died, or declared war.\\n  <br>\\n  <br>With the merger off the cards between Ospreys and Scarlets, the aftermath has been heated but with one team fighting for their very future that’s how it can be. But even the idea of merging the two regions from West Wales was tough for many to consider – would anyone ever ask Leinster and Munster or Glasgow Warriors and Edinburgh to join forces?\\n  <br>\\n  <br>It’s been a week that some say could only happen in Wales. One that has already seen the start of the nightmare. It appeared Scarlets and Ospreys were set to merge only for it to be called off at short notice, some sharp words have been said and the Ospreys chairman has resigned. The newly formed Professional Rugby Board, in charge of the whole process to find a new way forward for regional rugby on under the Project Reset banner, has been under fire along with the WRU.\\n  <br>\\n  <br>It has also been claimed by Scarlets that it was the Ospreys themselves who were keen on merging with either the Cardiff Blues, or the Scarlets, and it was not an issue forced by the WRU. This has all been followed by more tough talk from Ospreys’ incoming chairman. How do you digest that? There aren’t enough Rennies in the northern hemisphere to make this easy to swallow.\\n  <br>\\n  <br>The difficulty with situations like this is that everyone retreats to their barracks and grabs a weapon. You’re expected to take sides immediately. You’re either for it, or against. You either hate the Ospreys or despise the Scarlets. You either love the WRU or you want to fire-bomb head office. You’re either getting hate-fueled DMs on Twitter, or you’re sending them. You’re either with us, or against us.\\n  <br>\\n  <br>But it’s far more complicated than that. I was born and bred in Swansea – Gowerton to be precise. I supported Swansea RFC as a boy, then the Ospreys since their inception. I know many of the Ospreys. Some of the early ‘Galacticos’ remain my rugby heroes.\\n  <br>\\n  <br>\\n  <a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07111145/inpho_00430557.jpg\\\"><img class=\\\"alignleft size-custom_feed wp-image-70508\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07111145/inpho_00430557-1024x722.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"722\\\"></a>\\n  <br>\\n  <br>Some went to my school, and my mother even taught a few of them. I am fearful of losing a Welsh region, as we all are. But aren’t you also sick of Welsh regional rugby being the poor kid in class with the holes in his shoes? Aren’t you irritated with a situation where just six injuries to a regional squad means that their squad depth is so shallow that their season is can be severely hampered by November?\\n  <br>\\n  <br>Are you not jealous of other teams across Europe with the spending power to buy current All Blacks and other top as overseas signings, whereas in Wales, some of them are on their third lap around Europe and have more bandaging than Tutankhamun?\\n  <br>\\n  <br>Right now nobody knows how this will end, but regardless of your region, everyone in Wales has a dog in this fight. And I’d rather that hound was still fighting in 20 years, and not just the lapdog of French, English or Japanese rugby.\\n  <br>\\n  <br>Let the restructure begin.\\n  <br>\\n  <br>\\n  <em>Paul Williams is an independent columnist for <a href=\\\"https://www.pro14rugby.org\\\">www.pro14rugby.org</a> and the views expressed in his columns are his (who else would they be?) and not those of PRO14 Rugby.</em>\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/07/paul-williams-black-white-column/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"8218cd98c33438f325fcaf55b0a2b07caf1bf7023d43d01ef3819d5718975acc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/07/paul-williams-black-white-column/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Paul Williams: Black & White Column\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\"},\"publishDate\":\"2019-03-07T11:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9d4e37d0-e1c7-3912-9d30-6c0150b14e16\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Disciplinary Decision – Ox Nche (Eight weeks)</p> \\n  <p>Ox Nche of the Toyota Cheetahs faced a Disciplinary Hearing yesterday via video conference and has been banned for eight weeks.</p> \\n  <p><span style=\\\"font-weight: inherit;\\\">A Disciplinary Committee met in Edinburgh (Scotland) to consider the citing complaint against Nche (No 1) of the Toyota Cheetahs which occurred against Leinster Rugby on Friday, March 1, 2019 in which the Player was shown a yellow card for an incident in the ninth minute involving Leinster No 11 (Fergus McFadden).</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The player was reported by the Citing Commissioner in charge for alleged infringement of </span><strong><span style=\\\"font-weight: inherit;\\\">Law 9.12</span></strong><span style=\\\"font-weight: inherit;\\\"> – A player must not physically abuse anyone and </span><strong><span style=\\\"font-weight: inherit;\\\">Law 9.25 </span></strong><span style=\\\"font-weight: inherit;\\\">– A player must not intentionally charge or obstruct an opponent who has just kicked the ball.</span></p> \\n  <p><em><span style=\\\"font-weight: inherit;\\\">Please note this was originally notified in the press notice as Law 9.13 and Law 9.25.</span></em></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The Disciplinary Committee comprising of </span><span style=\\\"font-weight: inherit;\\\">Sheriff Kathrine Mackie (Chair), Roddy MacLeod and Ian Douglas (All Scotland), concluded that the player had committed an act of foul play involving contact to the head.<br> </span><br> <span style=\\\"font-weight: inherit;\\\">In upholding the Citing Complaint, the Disciplinary Committee deemed that the offence merited a red card under <strong>Law 9.12 </strong>(Striking with the shoulder) and that the contact to the head was intentional with a top-end entry </span><span style=\\\"font-weight: inherit;\\\">point of 10 weeks.<br> </span><br> <span style=\\\"font-weight: inherit;\\\">The Committee took into account the Player’s previously clean disciplinary record and his good conduct and applied 20% mitigation which reduces the ban to eight weeks.</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">To ensure the eight-week ban accounts for meaningful matches played by the Toyota Cheetahs in the Guinness PRO14 and the Currie Cup the player will be free to play from midnight on Sunday, May 19, 2019.</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The Player was reminded of his right to appeal. </span></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/07/disciplinary-decision-ox-nche/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"a2cf1c7c884ba108897561c2638d4d0a23603515d017da3670c4cafc7589c3ce\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/07/disciplinary-decision-ox-nche/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\"},\"contentType\":\"IMAGE\",\"title\":\"Disciplinary Decision - Ox Nche\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-07T08:16:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6cab8546-1687-38d0-b30f-64d6afec33d8\",\"language\":\"en\",\"version\":7,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c5e08e4ab835f15daaffbafefaa0aa55466051358a9955f25e7d12c666c4345d\",\"overwriteEnabled\":false},\"tags\":[\"membership\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/06/guinness-pro14-fantasy-rugby-update-round-17/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14: Fantasy Rugby Update (Round 17)\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-06T13:03:00.000Z\",\"auth\":{\"loginRequired\":true,\"roles\":[]},\"blocked\":true},{\"id\":\"1f932e1a-432b-3151-8f32-6c9f3b09f6c6\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>On his 150th appearance on his second spell for the club, Ruaridh Jackson put in a masterclass that defined his stellar career for the Glasgow Warriors thus far.</p> \\n  <p>The 31-year-old crossed to seal the bonus point for his side on a day which saw the Warriors blitz Zebre 42-10 in Parma.</p> \\n  <p>After Matt Fagerson’s powerful drive put the Scottish team up, captain Chris Fusaro and Stafford McDowall ran in the second and third tries for the visitors.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDD0E <a href=\\\"https://twitter.com/hashtag/GUINNESSPRO14?src=hash&amp;ref_src=twsrc%5Etfw\\\">#GUINNESSPRO14</a> Player Focus \\uD83D\\uDD0E</p> \\n   <p>It was a memorable landmark appearance for <a href=\\\"https://twitter.com/ruaridh_jackson?ref_src=twsrc%5Etfw\\\">@ruaridh_jackson</a> as he helped <a href=\\\"https://twitter.com/GlasgowWarriors?ref_src=twsrc%5Etfw\\\">@GlasgowWarriors</a> to a bonus-point victory in Round 17 \\uD83D\\uDC4F</p> \\n   <p>How much strength in depth do the Conference A leaders have as we reach the business end? \\uD83D\\uDCAA <a href=\\\"https://t.co/2e8c1EhhOe\\\">pic.twitter.com/2e8c1EhhOe</a></p> \\n   <p>— PRO14 RUGBY (@PRO14Official) <a href=\\\"https://twitter.com/PRO14Official/status/1102958707372183552?ref_src=twsrc%5Etfw\\\">March 5, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p>Cue the arrival of veteran Jackson, who’s had Warriors’ fans out of their seats ever since he rejoined the club in 2017.</p> \\n  <p>Adam Hastings’ excellent vision and deft chip bounced fortunately into Jackson’s arms, and his attacking awareness saw him in the right place to finish with aplomb to score his maiden try of the season.</p> \\n  <p>The fan favourite was clearly delighted as he contributed to a mammoth victory which took Glasgow top of Conference A following Munster’s loss at Scarlets.</p> \\n  <p>The second half may have seen Zebre stem the tide of Scottish attacks, but Jackson’s try – Warriors’ fourth of the day and one that ensured the full five points went to the Scots – could prove crucial in the race for first place.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/05/guinness-pro14-round-17-player-focus-ruaridh-jackson/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"14a71628b4a19644241f2b1351757d70ce7ffb98e8a99c1d015d1650f21193c7\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/05/guinness-pro14-round-17-player-focus-ruaridh-jackson/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Round 17 Player Focus - Ruaridh Jackson\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-05T16:08:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"af685d02-da98-35eb-adf3-5bdbab55e788\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p><strong>Nche (Citing Complaint)</strong></p> \\n  <p>A Disciplinary Committee will meet in Edinburgh on Wednesday, March 6, to consider the Citing Complaint made against Ox Nche (No 1) of the Toyota Cheetahs for an incident which occurred against Leinster Rugby on Friday, March 1, 2019.</p> \\n  <p>The complaint refers to an incident involving Leinster Rugby No 11 (Fergus McFadden) in the ninth minute of the Guinness PRO14 Round 17 fixture at the RDS Arena (Dublin) for which he was shown a yellow card by referee Nigel Owens.</p> \\n  <p>The player has been reported by the Citing Commissioner in charge for infringement of <strong>Law 9.13 </strong>– A player must not tackle an opponent early, late or dangerously. Dangerous tackling includes, but is not limited to, tackling or attempting to tackle an opponent above the line of the shoulders even if the tackle starts below the line of the shoulders.</p> \\n  <p>Additionally, the player has also been reported for infringement of <strong>Law 9.25 </strong>– A player must not intentionally charge or obstruct an opponent who has just kicked the ball.</p> \\n  <p>The Player will face a Disciplinary Committee via video conference, the Committee will comprise of Sheriff Kathrine Mackie, Roddy MacLeod and Jennifer Rae (All Scotland).</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/05/disciplinary-update-round-17-nche/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"eb08dd8bce4872fffb41eddd0be380b1a3a106546e5932f0e41354268d621202\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/05/disciplinary-update-round-17-nche/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Disciplinary Update - Round 17: Nche\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-05T11:58:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9b7bbfeb-54c4-34c6-a9d9-a99e0f25a4b3\",\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"f18355e902b83f53b318d987dee0db0e224b35114aa1ac73e23647c77541a156\",\"overwriteEnabled\":true},\"tags\":[\"membership\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-round-17-top-tries-of-the-week/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Round 17: top tries of the week\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-04T18:12:00.000Z\",\"auth\":{\"loginRequired\":true,\"roles\":[]},\"blocked\":true},{\"id\":\"3aea1f9f-90ff-34bf-a3fc-b75360f022d9\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  I Leoni vincono un match difficile, complicato da errori e imprecisioni, ma centrano il nono risultato utile consecutivo e staccano gli scozzesi in classifica. Zebre annientate dai Warriors\\n  <br>\\n  <br>Il Benetton di Kieran Crowely supera l’Edimburgo a Monigo e compie un grande passo verso la storica qualificazione al playoff. A Monigo non è certo la migliore versione della corazzata bianco-verde quella che respinge l’assalto scozzese ma la vittoria, l’ottava nelle ultime nove gare ufficiali, è d’oro e la tenacia che spinge prima Cannone e poi Rizzi a varcare la linea di meta avversaria vale il prezzo del biglietto. I due ventenni sono infatti tra le note più positive del complesso pomeriggio veneto, condito da qualche sbavatura di troppo e da imprecisioni che non si erano manifestate così numerose nell’ultimo mese e mezzo di sfide. La vittoria è però tutto ciò che serve per continuare a sognare e la maturità con la quale gli uomini di Crowely sottraggono nel finale anche il punto di bonus difensivo ai diretti rivali per la fase ad eliminazione diretta, certifica il livello di maturità che questo gruppo è riuscito a raggiungere. Con lo “zero” di Monigo Edimburgo scivola infatti a -8 dai bianco-verdi e questo, con ancora tre partite da giocare, suona quasi come una condanna per la formazione di Cockerill, già capace di qualificarsi per i quarti di Champions Cup.\\n  <br>\\n  <br>Il Benetton si conferma così seconda forza della Conference B, dietro allo schiacciasassi Leinster (sofferto successo con i Cheetahs a Dublino), con un punto di vantaggio sull’Ulster (abile a pescare il bonus nella vittoria a Newport di domenica grazie a Jordi Murphy, Marty Moore, John Cooney e Alan O’Connor) ma ancora a cinque lunghezze dagli Scarlets, quarti e semplicemente encomiabili nel sofferto successo interno per 10 a 6 sul Munster, deciso dalla meta del giovane Nicholas e dal piede di un ritrovato Halfpenny.\\n  <br>\\n  <br>Non riesce invece l’impresa alle Zebre che al Lanfranchi di Parma vengono travolte dalla forza dei Glasgow Warriors. Partita senza storia che va agli archivi già alla mezz’ora di gioco grazie alle mete di Matt Fagerson (doppietta), Chris Fusaro, Stafford McDowall e Ruaridh Jackson. Nel secondo tempo, il nuovo acuto di Fusaro e quello della bandiera di capitan Tommaso Castello fissano il punteggio sul definitivo 42 a 10, condito anche dal rosso inutile a Canna a quindici minuti dall’80esimo. Con il KO della Red Army al Parc y Scarlets, gli scozzesi tornano così in vetta alla Conference A.\\n  <br>\\n  <br>Vittorie fondamentali infine per Connacht e Cardiff Blues: gli irlandesi mesmerizzano gli Ospreys a Galway con un 46 a 5 ispirato dalla vitalità di Kyle Godwin, condannandoli a ferie anticipate, mentre i Blues superano con qualche difficoltà di troppo i Southern Kings all’Arms Park (in meta Owen Lane, Nick Williams, Olly Robinson e Jason Harris).\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/04/benetton-suona-la-nona-sinfonia-edimburgo-va-al-tappeto/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"bd9bc84baa94d1c7cb43e0cc449b11cf4c445fa09934eb5ded5426456a448652\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/benetton-suona-la-nona-sinfonia-edimburgo-va-al-tappeto/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton suona la nona sinfonia, Edimburgo va al tappeto\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"publishDate\":\"2019-03-04T14:17:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"000a2d14-1c15-3238-8bd5-e8fe3ea2c0be\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Round 17 of the Guinness PRO14 is done and dusted and the big news is that we have a new leader at the top of Conference A – Glasgow Warriors.\\n  <br>\\n  <br>Dave Rennie’s men were in excellent form to record a bonus-point win away at Zebre while Scarlets squeezed out Munster in west Wales.\\n  <br>\\n  <br>Elsewhere the Isuzu Southern Kings pushed Cardiff Blues all the way while Benetton Rugby won again – here’s our round-up of all the key action.\\n  <br>\\n  <br>\\n  <strong>Leinster 19-7 Toyota Cheetahs</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Leinster have enough ability to put games like these beyond doubt, but the table toppers lacked any sort of ruthlessness as they allowed their opponents to remain in the game until Rory O’Loughlin crossed in the second half. Had Tian Schoeman converted a penalty at 12-7 the game could have been very different but Leinster were then allowed to tighten their vice-like grip.</li>\\n   <br> \\n   <li>The Toyota Cheetahs have enough speed to trouble any opponent. Rabz Maxwane left three defenders in his wake as he showed his raw pace to cross the line for his side’s solitary try. However, his side were unable to create any sort of opportunity for the speedster again, perhaps understandable given their opposition, but this sort of pace is clearly going to trouble many other teams in the remaining rounds.</li>\\n   <br> \\n   <li>In conditions like those played in on Friday night, kicking is often ineffective. Time and time again, Cheetahs attempted to launch the ball up the field and gain territory but Leinster anticipated this often and were well positioned to receive. Passing went awry from both sides, but the wet conditions meant the likes of Schoeman found it hard with the ball at their feet.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/leinsterrugby/status/1101803207603441669\\n  <br>\\n  <br>\\n  <strong>Cardiff Blues 26-19 Isuzu Southern Kings</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Jordan Harries' try could prove crucial as the Blues aim for a top three finish in Conference A. The winger, who scored twice last week off the bench, notched the fourth try to secure a bonus point for the Blues in their quest to hunt down the leading trio. At present, they’re level with third-placed Connacht – both on 47 points as it gets tight at the top.</li>\\n   <br> \\n   <li>Cardiff Blues may have secured the victory and bonus point, but made hard work of it thanks to an intense defensive effort from the Southern Kings. Several mammoth hits in the first half and great work from the lineouts put the Blues on the back foot for long periods of this game.</li>\\n   <br> \\n   <li>The Kings also secured an important bonus point as they look to climb the Conference B table. While perhaps out of the race for the top three, the Kings are still progressing in their game and showed it with this battling away performance. Dries van Schalkwyk and Michael Willemse both scored excellent tries around half-time, while Masixole Banda’s was the all important third right at the death.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Scarlets 10-6 Munster Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Sitting fifth in Conference B heading into the weekend, it has undoubtedly been an up and down season for Scarlets. But against the in-form Munster, they showed everyone just why they could be contenders for the overall title. This was a performance based on grit, determination and relentless defence as they kept out on top against a physical Munster, a result which lifts them to third. Only the Dragons and Isuzu Southern Kings have conceded more points in the Conference but that trend was bucked spectacularly. The rest of the league will have taken note.</li>\\n   <br> \\n   <li>Munster might be beaten but they will surely not be derailed by this result. The Limerick men have been in superb form – winning nine of their previous ten encounters - but could not break down Scarlets’ rear-guard. Still, they maintained possession well, moved it wide when they could and showed flashes of creativity and promise from the likes of Ronan O’Mahony and replacement fly-half Tyler Bleyendaal. Next up for them is a home game with Zebre Rugby and it would not be a surprise if they put some things right.</li>\\n   <br> \\n   <li>With just one Guinness PRO14 defeat at Parc y Scarlets since 2016, home is clearly where the heart is for Scarlets. And with just one of their last four games on the road, including Judgement Day against Dragons at Principality Stadium, they will fancy their chances of reaching the Guinness PRO14 Finals Series. After a trip to rivals Cardiff Blues, they host Edinburgh Rugby and Zebre Rugby before tackling the Dragons. Momentum could be building at just the right time.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/scarlets_rugby/status/1102125654752051201\\n  <br>\\n  <br>\\n  <strong>Zebre 10-42 Glasgow Warriors</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Dave Rennie will have been delighted with his side’s first half performance in Parma. Carlo Canna’s early penalty&nbsp;excluded, the Warriors were virtually flawless, running in five tries to take a commanding 35-3 lead into half-time and&nbsp;allowing them to control the second 40 to&nbsp;see out the bonus-point win.</li>\\n   <br> \\n   <li>While Zebre were left somewhat shell-shocked by Glasgow’s early blitz, they deserve credit for their response after the break. Many sides would have simply crumbled under&nbsp;the circumstances, but Michael Bradley’s men put in a stoic display that saw them draw the second half 7-7.</li>\\n   <br> \\n   <li>A word for Warriors legend Ruaridh Jackson, who capped a memorable 150th appearance for the side with a gleefully taken try. In his second spell with the club, Jackson latched onto an Adam Hastings kick to score in the first 40 and was only prevented from doubling his tally by superb Zebre defence right at the death. An occasion to treasure for the 31-year-old, no doubt.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Benetton Rugby 18-10 Edinburgh Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>With just four points separating the two sides in Conference B at the start of the day, there was tension in the air in Treviso as Benetton welcomed Edinburgh to Stadio Monigo. Perhaps unsurprisingly, it had an impact on the game as defence reigned supreme in the opening half, with Jaco van der Walt and Ian McKinley trading penalties to leave the sides level at the break before the game really came to life after the restart.</li>\\n   <br> \\n   <li>In what was a topsy-turvy encounter, the momentum swung one way and then the other multiple times, with Edinburgh leading twice thanks to Jaco van der Walt’s first-half penalty and James Johnstone’s second-half try. When van der Walt’s conversion put Edinburgh 10-8 up, Richard Cockerill’s men looked set to claim a vital victory in the Guinness PRO14 Final Series race, but Benetton persevered and managed to extend their unbeaten run to eight games.</li>\\n   <br> \\n   <li>Niccolo Cannone’s try was crucial in giving Benetton the lead for the first time at the start of the second half, but it was Antonio Rizzi’s score with ten minutes to play that proved decisive. The replacement ran on to Monty Ioane’s kick through to dot down under pressure from Edinburgh’s Tom Brown, with a TMO review awarding the try. Rizzi converted and added a further penalty to seal a crucial win for the Italian side.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/BenettonRugby/status/1102125324660285441\\n  <br>\\n  <br>\\n  <strong>Connacht 46-5 Ospreys</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Kyle Godwin's virtuoso performance showed the importance of the kicking game in the Guinness PRO14. A 100 percent record with his feet - including two first half penalties to assert his side's dominance - wasn't mirrored by the Ospreys. Connacht will be hoping that a bruising tackle on Godwin won't keep him out for too long.</li>\\n   <br> \\n   <li>The victory puts some daylight between the two sides as Connacht secured maximum points with a stylish attacking performance. What may prove more important, however, is the mental element of the Irish side's triumph going into the title run-in. With both teams looking to overtake Cardiff and put some pressure on the top two sides, Ospreys' ability to recover from such a devastating loss will be crucial.</li>\\n   <br> \\n   <li>Ospreys showed glimpses of attacking prowess but just couldn’t get over when they got close to the try line. Needless penalties were given away alongside some erroneous passing which allowed Connacht to relieve the pressure the Welsh side placed on them. If they can tighten up in defence, Ospreys have the ability to break out of their funk and recover from a tricky period.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Dragons 15-28 Ulster Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Ulster’s win at Dragons was a Conference B clash that had something for everyone: there was free-flowing rugby, stoic defensive efforts, breath-taking last-gasp tackles and drama at the death. Even the weather served to enrich the contest, beguiling both sides as Storm Freya played havoc with kicks all afternoon.</li>\\n   <br> \\n   <li>Ulster’s two tries in four&nbsp;minutes turned the tide at Rodney Parade. A gritty opening 40 saw them head into the break a man light but with a four-point lead, and the Dragons certainly looked to capitalise at the start of the second half. But the visitors resolved to hold out until they were restored to a full complement and were rewarded when first Marty Moore and then John Cooney crossed to give them an all-important buffer.</li>\\n   <br> \\n   <li>But for their lapse early in the second half, the Dragons gave a good account of themselves throughout, and were unlucky not to claim a losing bonus point for their efforts at the death. Despite finishing their last home game of the season empty-handed, the home fans can come away with their heads held high after an impressive display from which their team&nbsp;deserved to yield more.</li>\\n   <br>\\n  </ul>\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-takeaways-round-17-2/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"377e9b738299600dd5feb9a0e6703b3633d41a10641398a241b2cacd911f6f84\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-takeaways-round-17-2/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Takeaways: Round 17\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"publishDate\":\"2019-03-04T09:00:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8be0cba2-dcd9-3bf6-8fe6-d95479e15086\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Ulster dug deep to withstand a late Dragons charge as they notched up a bonus-point 28-15 win over the Dragons at Rodney Parade.\\r\\n\\r\\nDespite closing out proceedings with 13 men, a pair of quickfire scores early in the second half through Marty Moore and John Cooney gave them the buffer they needed after a tightly-fought first half.\\r\\n\\r\\nDragons looked to make the most of their two-man advantage at the death to seal a losing bonus-point, but were held out by spirited Ulster resolve in a battling manner that had become a hallmark of the visitors' performance.\\r\\n\\r\\nThere was little to split the sides in the opening quarter at a blustery Rodney Parade, the wind playing a factor as Rhodri Williams hoisted a series of deep kicks into Ulster territory as the Dragons were propelled by Storm Freya in the first 40.\\r\\n\\r\\nJosh Lewis split the posts with a penalty to opening the scoring, making the kick look routine in spite of the spiralling breeze, but the visitors were the first to cross the whitewash.\\r\\n\\r\\nRelentless pressure saw Ulster go through countless phases deep into Dragons territory, and despite an impressive defensive rearguard, the dam eventually broke when Jordi Murphy forced his way over.\\r\\n\\r\\nJohn Cooney converted before Dragons missed the opportunity to reduce arrears immediately to one, Lewis blazing his effort wide right.\\r\\n\\r\\nJordan Williams was at the heart of things when he hauled down Robert Baloucoune as the Ulster wing charged to the corner, saving a certain try in spectacular fashion.\\r\\n\\r\\nDarren Cave was sent to the bin for an early tackle on Lewis, but the Dragons weren't able to capitalise before the break.\\r\\n\\r\\nAnd despite being down to 14, it was Ulster who struck first in the second 40, the wind again playing it's part as they found themselves with a threatening line-out on the Dragons 5m line, the driving maul taking them close before Moore finished the job.\\r\\n\\r\\nThey added a third almost immediately when Baloucoune gathered Rhodri Williams' errant kick before Cooney burst through the gap created to dot down.\\r\\n\\r\\nBut the Dragons refused to be cowed and when first Rob Lyttle and then Louis Ludik were shown yellow for deliberate knock-ons the hosts had hope.\\r\\n\\r\\nThey were rewarded a penalty try for the latter's sin-bin, leaving Ulster to try to see out the game in precarious circumstances: with 13 men and an 11-point advantage to their name.\\r\\n\\r\\nAnd they did so with discipline in abundance, protecting the ball as they kept it narrow and edged towards the Dragons line, with Alan O'Connor spotting a gap to crash through and seal the bonus-point.\\r\\n\\r\\nTaine Basham grabbed one back for the Dragons in a score that was just reward for the youngster's standout performance, setting up a late push for a losing bonus-point.\\r\\n\\r\\nBut it wasn't to be, as Ulster stole the ball and heaved into touch to spoil the party.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/ulster-battle-weather-to-beat-dragons-in-wales/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"acd9e02d0899ceb1d2f57ce3374198d4ab490dbcd67caf52817a527b8ed324de\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/ulster-battle-weather-to-beat-dragons-in-wales/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Ulster battle weather to beat Dragons in Wales\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419177\"}],\"publishDate\":\"2019-03-03T16:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9f22a526-6b09-3991-9a64-39f083b6ebce\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Olly Robinson rounded off a slick team move to score the winning try for Cardiff Blues as they battled past a resilient Isuzu Southern Kings side 26-19</span><span style=\\\"font-family: 'Arial',sans-serif;\\\"> in the Guinness PRO14.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Owen Lane crossed early as Blues came flying out of the gates and captain Nick Williams came back from a sin bin to </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">level things<span style=\\\"color: black;\\\"> after the bottom-placed side took the lead just after half time.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Tries from Dries van Schalkwyk, Mike Willemse and Masixole Banda weren’t enough for </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the visitors <span style=\\\"color: black;\\\">despite a robust defensive performance against the high-flying Blues.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But Robinson and Jordan Harries exemplified the Blues’ late efforts to notch the bonus point for </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the Blues that keeps them in contention for a top-three finish in Conference A<span style=\\\"color: black;\\\">.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With two minutes on the clock, Lane skipped past three players and ran in his fourth try of the campaign as he took advantage of a leaky Kings defence.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But the South African team stepped up their efforts and landed some huge hits on the Blues during an intense opening period.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Tertius Kruger did well to prevent a Blues breakaway before </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the hosts<span style=\\\"color: black;\\\"> tried and failed to break through with dozens of drives.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Blues squandered an excellent chance to extend their lead but the pass to Shane Lewis-Hughes in space on the left wing went straight into touch.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">And the away side grew into the game as half-time approached, gaining a series of scrums deep in opposition territory and pinning Cardiff back, but the Blues responded with some dogged defensive play and effective kicking.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kings piled on more pressure and forced Blues captain Nick Williams to the sin bin as the South African side inched closer.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">They eventually got their deserved reward after a series of determined drives allowed van Schalkwyk to cross the line.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kings picked up where they left off after half time, scoring through Willemse via a familiar route.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">A deep lineout and subsequent maul allowed the hooker to cross the line thanks to a powerful team drive.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The stunned Blues flexed their true pedigree minutes later as Williams finished off a multi-phase move to level up the game.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The skipper forced his way over the line after quick feet from his team mates created the space for the No.8 to drive into.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif;\\\">The hosts<span style=\\\"color: black;\\\"> continued to push forward as they surgically exploited their opponent’s weakness for their third try of the game.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">A jinking run from substitute Matthew Morgan teed up Robinson and the flanker crossed to give his side the lead.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With the fourth try </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">and a bonus point now in sight<span style=\\\"color: black;\\\"> despite the wet weather, Jarr</span>o<span style=\\\"color: black;\\\">d Evans flicked the ball out wide to an onrushing Harries, who picked up where he left off against Edinburgh to score the all-important try.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Southern Kings rallied and scored with the last play of the game through Banda to secure a </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">well-deserved <span style=\\\"color: black;\\\">losing bonus point.</span></span></p>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/cardiff-blues-edge-past-resilient-southern-kings/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e20216126ce8929cb8651a9779634c377779968cdf9ac3d054d341291736a585\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/cardiff-blues-edge-past-resilient-southern-kings/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Cardiff Blues edge past resilient Southern Kings\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419176\"}],\"publishDate\":\"2019-03-02T21:39:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6189bafd-b2f8-3251-a5e3-a8052ab89445\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Ioan Nicholas’ first-half try and some resolute defence reignited Scarlets’ Guinness PRO14 campaign as they saw off in-form Munster at Parc y Scarlets.\\r\\n\\r\\nThe wing cruised over inside 11 minutes but Munster dominated both possession and territory from there on - however, they could not unlock Scarlets’ incredible defence.\\r\\n\\r\\nEvery time they went wide, Scarlets had numbers and through the middle they held their own in a result which lifts them up to third in an increasingly tight Conference B.\\r\\n\\r\\nMunster arrived in south Wales boasting a strong record of just one defeat in their last ten Guinness PRO14 games and they made a strong start thanks to Bill Johnston’s penalty following a Scarlets scrum collapse.\\r\\n\\r\\nBut the hosts, who have won four of their last five home games against the men from Limerick, hit back spectacularly.\\r\\n\\r\\nLeigh Halfpenny made a scything break on the counter-attack and produced a superb one-handed offload to Johnny McNicholl, who in-turn set up Nicholas to run for the line.\\r\\n\\r\\nMunster spent much of the rest of the half camped inside Scarlets territory but the hosts’ defence was resolute and frustrated the visitors – with only a second Johnston penalty to show for their efforts.\\r\\n\\r\\nMunster, usually so disciplined, made a few costly errors throughout the contest including a penalty against Jean Kleyn for not rolling away.\\r\\n\\r\\nScarlets booted the ball inside Munster’s 22 for a line-out and set to work, moving to within five metres of the Munster try line.\\r\\n\\r\\nInstead of five points, they had to settle for a penalty and Halfpenny calmly slotted the ball through.\\r\\n\\r\\nBut Munster quickly regained their composure and almost hit back with a try. From a line-out, they got the maul rolling and Kleyn dotted down but they try was eventually ruled for obstruction.\\r\\n\\r\\nHowever, the pressure did not end there and Arno Botha almost buried over from just a metre, but the ball was held up and eventually turned over.\\r\\n\\r\\nMunster emptied the bench and fly-half Tyler Bleyendaal made a positive impact, kicking delightfully to the corner where Ronan O’Mahony was charging for the ball – only for Halfpenny to just get there and smother it down just in time.\\r\\n\\r\\nWith the clock winding down, Munster kept on coming but Scarlets secured one more turnover to confirm the win.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/scarlets-defence-helps-secure-priceless-win/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"935f279908048f95292611f580e822cf7b31fa4973dc636259decc2ec4917313\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/scarlets-defence-helps-secure-priceless-win/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Scarlets defence helps secure priceless win\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419174\"}],\"publishDate\":\"2019-03-02T19:12:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"824e597d-6cfa-3129-91c4-153c175630ce\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"A first-half blitz from Glasgow Warriors saw them hit the top of Conference A as they notched up a 42-10 win over Zebre in Parma.\\r\\n\\r\\nMatt Fagerson ran in a pair of tries, with Ruaridh Jackson getting his name on the score-sheet on his 150th game for the Scottish side.\\r\\n\\r\\nAn encouraging second 40 from the Italians saw Tommaso Castello cross, but they had left themselves too much to do as the Warriors saw out proceedings in relative comfort.\\r\\n\\r\\nCarlo Canna kicked the hosts into an early lead but from the restart it was the Warriors who recovered from Adam Hastings’ kick, eventually setting up Matt Fagerson to score from a powerful drive.\\r\\n\\r\\nAnd just as Zebre looked to build up some momentum with the ball in hand, Warriors skipper Chris Fusaro stole in behind an unmanned ruck to nick the ball and take it 60m uncontested for a try.\\r\\n\\r\\nThey made it three when a confidently won line-out saw Stafford McDowall insouciantly brushing past a couple of tacklers while Zebre anticipated a maul, forging a path to his first score in a Glasgow shirt.\\r\\n\\r\\nJackson sealed the bonus point for the visitors on his landmark appearance for the side, latching onto Adam Hastings’ deft chip through as he juggled a favourable bounce to dot down with glee.\\r\\n\\r\\nFagerson doubled up on the half hour, Oli Kebble hopping but not falling with Zebre defenders wrapped round his legs, staying on his feet just long enough to dish an offload to the 20-year-old who charged through a gap to cross.\\r\\n\\r\\nHalf time came and went, and when Canna was shown yellow at the start of the second 40, the Warriors were once again in the ascendancy, Tim Swinson carrying at the back of a line-out maul to crash over down the left.\\r\\n\\r\\nThe hosts got on the board when captain Castello wriggled past Scott Cummings after Zebre had built up the phases and punched a hole in the Warriors defence, the centre taking advantage to cross.\\r\\n\\r\\nAfter good Zebre pressure, Canna saw red late when he was on the wrong end of a late D'arcy Rae tackle before kicking out in retaliation and the hosts had their wings clipped, but fought to the death nonetheless.\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/warriors-hit-zebre-for-six-as-glasgow-hit-the-front/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b4fe4f7ab80a11cc123c23fbc1809d47e3a3c5cd348886f88cbbc9d788b3e6cd\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/warriors-hit-zebre-for-six-as-glasgow-hit-the-front/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Warriors hit Zebre for six as Glasgow reach the summit\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419175\"}],\"publishDate\":\"2019-03-02T19:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f726f8fd-873e-32b9-ab23-edf6fbc358ad\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <strong>Una meta di Rizzi nel finale regala alla Benetton il sorpasso contro la diretta rivale per i playoff.</strong>\\n  <br>\\n  <br>E’ la sfida più attesa del weekend, quella che assegna una fetta importante di playoff. Parte meglio Edimburgo, che subito attacca e conquista una punizione che Jaco van der Walt non sbaglia. Qualche errore di troppo di Treviso nell’avvio del match e scozzesi che possono mantenere il controllo dell’ovale.\\n  <br>\\n  <br>Lunghissima azione ospite vicino ai 22 di Treviso, ma l’Edimburgo non sfonda, anche se resta in attacco. Ottima la Benetton in difesa e, così, nonostante il dominio in possesso e territorio per gli scozzesi nulla di fatto dopo 10 minuti di gioco.\\n  <br>\\n  <br>Così al 15′ fallo in mischia di Schoeman e Treviso che va in touche sui 5 metri. Palla rubata e nulla di fatto. Troppi palloni persi dai biancoverdi che non mettono punti sul tabellone mentre ci si avvicina alla fine del primo quarto di gioco. Ma è molto falloso Edimburgo, con Clancy che non sempre fischia fallo.\\n  <br>\\n  <br>Ancora una pallone perso per Treviso, che non sta concretizzando la mole di gioco prodotta e continua a inseguire il vantaggio minimo di Edimburgo. Troppa leggerezza di Sperandio palla in mano e gli scozzesi riescono così a riguadagnare metri e portarsi facilmente in attacco.\\n  <br>\\n  <br>Partita che fatica a decollare, le difese che spengono gli attacchi e le due squadre molto tese visto la posta in gioco. Al 29′ bellissima azione di Ioane che guadagna metri sul largo, evita un paio di placcaggi, poi offload e fallo scozzese che riporta Treviso vicino alla linea di meta. Ancora molta confusione in attacco per Treviso, ma ancora fallo di Edimburgo e al 32′ McKinley va sulla piazzola per il 3-3. Subito un ottimo calcio in profondità di Duvenage riporta subito Treviso nella metà campo scozzese.\\n  <br>\\n  <br>Al 35′ meta di Ioane, ma Clancy aveva già fischiato il precedente avanti sul passaggio del numero 9 biancoverde. Sempre ottima in difesa Treviso obbliga al fallo gli ospiti e ultima chance per i padroni di casa, ma c’è il tenuto e si va al riposo in parità.\\n  <br>\\n  <br>\\n  <img class=\\\"alignnone wp-image-70444\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\">\\n  <br>\\n  <br>Cerca di cambiare ritmo la Benetton Treviso a inizio ripresa, si vede finalmente un Ratuva poco servito nei primi 40 minuti e una touche storta di Edimburgo dà un ovale ai padroni di casa in attacco. E al 45′ Niccolò Cannone sfonda, come già con Newport, e va oltre per la prima meta del match e primo vantaggio per i biancoverdi. Reagisce l’Edimburgo che subito si butta in avanti e touche sui 5 metri difensivi per Treviso che deve uscire da una situazione difficile.\\n  <br>\\n  <br>Soffre troppo Sperandio i palloni alti dell’Edimburgo e ospiti che restano nella metà campo biancoverde. E al 54′ James Johnstone manda fuori giri la difesa di Treviso, si infila nelle maglie e va a schiacciare e scozzesi di nuovo avanti a +2. Continua, però, la confusione palla in mano di Treviso, che spreca troppi possessi in questo match.\\n  <br>\\n  <br>Si entra nell’ultimo quarto con Edimburgo ancora avanti e Treviso obbligato a inventarsi qualcosa per raddrizzare un brutto match, dove sta pagando troppo l’emozione della posta in palio. Si riporta avanti la Benetton, ma non riesce a cambiare ritmo nonostante un paio di offload di Barbini e mancano i sostegni al portatore di palla e, così, nulla di fatto.\\n  <br>\\n  <br>Al 69′, però, l’ennesimo fallo degli scozzesi dà un vantaggio a Treviso, calcio di Ioane e si butta sull’ovale Rizzi che schiaccia per il nuovo vantaggio biancoverde. E un tenuto obbligato da Barbini agli avversari ridà palla a Treviso che, così, può entrare negli ultimi 10 minuti tenendo Edimburgo lontano dalla metà campo biancoverde.\\n  <br>\\n  <br>Errori da entrambe le parti, mentre passano i minuti in un match equilibratissimo. Al 78′ fallo della mischia scozzese e Treviso che va in touche nei 22 avversari. Ancora fallo di Edimburgo, questa volta centrale e Rizzi va sulla piazzola per togliere il bonus agli scozzesi e chiudere il match. E lo fa e Treviso va a +8 da Edimburgo.\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/02/treviso-non-perde-piu-e-batte-edimburgo/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"fdce99b2b8d8e10458d57802a63af7c7c4c69cc13a738fb8f66f860d1e7f7daf\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/02/treviso-non-perde-piu-e-batte-edimburgo/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Treviso non perde più e batte Edimburgo\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-02T18:45:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"2f9c4dd8-3873-358d-a55f-3058e20c0c4e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Antonio Rizzi’s second-half try extended Benetton Rugby’s unbeaten run in the Guinness PRO14 to eight games as they overcame Conference B rivals Edinburgh.</strong>\\r\\n\\r\\nThe Italian outfit went into the game in second place, with a four-point advantage over fourth-placed Edinburgh the race for the Guinness PRO14 Final Series.\\r\\n\\r\\nAnd a topsy-turvy encounter in Treviso saw the lead change hands multiple times, with Edinburgh taking the lead twice through a Jaco van der Walt penalty and James Johnstone’s try.\\r\\n\\r\\nBut Benetton are unbeaten in the Guinness PRO14 since November and second-half scores from Niccolo Cannone and Rizzi proved enough to earn them another win.\\r\\n\\r\\nThe significance of the match was clear for all to see in the first half at Stadio Monigo as neither side was able to find the opening try of the game before the interval.\\r\\n\\r\\nEdinburgh were first to get on the scoreboard with an early penalty after three minutes, with van der Walt splitting the uprights from 40m to give the visitors the lead.\\r\\n\\r\\nTheir Italian hosts responded with their first spell of pressure as Ian McKinley orchestrated a backline attack deep in the Edinburgh 22 but Richard Cockerill’s side remained resilient.\\r\\n\\r\\nIn fact, defence continued to rule the roost on both sides before Benetton levelled up the scores on the half hour, McKinley converting the three points in front of the posts.\\r\\n\\r\\n<img class=\\\"alignnone wp-image-70445\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181727/inpho_01506859-1024x638.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"405\\\" />\\r\\n\\r\\nWith the momentum in their favour, Benetton almost took the lead after they appeared to score the first try just before half-time, only to see it chalked off for a forward pass.\\r\\n\\r\\nIt remained all square at the break after a bruising opening 40 minutes in Treviso, but the breakthrough finally came six minutes after the restart.\\r\\n\\r\\nThe hosts hit the front for the first time after second-row Cannone muscled over the whitewash from a few metres out, with McKinley successful adding the extras.\\r\\n\\r\\nBenetton’s lead did not last long, though, as Edinburgh hit back with their opening try of the game on 53 minutes through Johnstone, with van der Walt converting.\\r\\n\\r\\nEdinburgh went through the phases with several pick-and-goes before finding Johnstone, who showed quick footwork and cut through the Benetton defensive line to score.\\r\\n\\r\\nBut just as Edinburgh looked to be stamping their authority on the match, Benetton responded with their second try through replacement Rizzi.\\r\\n\\r\\nThe hosts went through the phases and after an offside gave Benetton a penalty advantage, a grubber from Monty Ioane was pounced upon by Rizzi for the try.\\r\\n\\r\\nRizzi stepped up to convert the score to make it 15-10 with ten minutes remaining, before the fly-half sealed the victory at the death with a penalty after a frantic end to the game.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/benetton-fight-back-to-beat-conference-b-rivals-edinburgh/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"098654a9b275e485a12ef942176c37e68a347c9aef8ca33785c56aac60a7d4ce\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/benetton-fight-back-to-beat-conference-b-rivals-edinburgh/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton fight back to beat rivals Edinburgh\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419173\"}],\"publishDate\":\"2019-03-02T18:20:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6bf8e94b-c8ba-3dd3-a8c9-4771605f510d\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kieran Marmion’s double inspired a huge win as Connacht maintained their formidable home record with a 46-5 victory over Ospreys in a one-sided Guinness PRO14 tie.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Keen to bounce back from a heavy loss to Glasgow last night, Connacht bossed the early exchanges, with Tom Farrell crossing early before two penalties from the excellent Kyle Godwin extended the lead.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Matthew Aubrey hit back against the run of play before Matt Healy, Marmion and a penalty try restored Connacht’s dominance.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Marmion crossed again before Tom McCartney scored in a comfortable second half as the result was all but decided by Connacht’s early blitz.</span></p>\\r\\n\\r\\n<blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\">\\r\\n<p dir=\\\"ltr\\\" lang=\\\"en\\\">Some very satisfied players at the full-time whistle \\uD83D\\uDE03 <a href=\\\"https://twitter.com/hashtag/StrongerInGreen?src=hash&amp;ref_src=twsrc%5Etfw\\\">#StrongerInGreen</a> <a href=\\\"https://t.co/8Aa8Yz5n4K\\\">pic.twitter.com/8Aa8Yz5n4K</a></p>\\r\\n— Connacht Rugby (@connachtrugby) <a href=\\\"https://twitter.com/connachtrugby/status/1101896447778349056?ref_src=twsrc%5Etfw\\\">March 2, 2019</a></blockquote>\\r\\n<script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script>\\r\\n\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Connacht flew out of the gates with a slick move to score their first through Farrell as a series of swift handoffs early on allowed the centre to cross the line in acres of space.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Irish team continued to pile on the pressure early doors as they showed intensity with every drive to pin their opponents in their own 22.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys appeared to have repelled the pressure but gave away a needless penalty which Godwin dispatched with ease.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The fly-half converted again as Connacht looked to be firmly in control, but Ospreys’ Olly Cracknell charged down a drop kick and the ball fell for Aubrey to score out wide against the run of play.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Godwin appeared to continue his blinder of a first half as he latched onto an opposition kick to storm past four defenders and cross the line.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But protests from the Welsh side over an off-the-ball block bore fruit as the try was ruled out and Ospreys’ remained well in it.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Godwin and Farrell set up Healy for Connacht’s second try with two incisive passes and the winger crossed between the posts to tee up an easy conversion for Godwin.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Marmion was then the beneficiary of a powerful team effort as Connacht drove a maul over the line on the half</span><span style=\\\"font-family: 'Arial',sans-serif;\\\">-<span style=\\\"color: black;\\\">hour mark.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys had chances to reduce the deficit before half time but two crucial interceptions saw the ball up the other end of the pitch, where Connacht were awarded a penalty try after a deliberate knock-on from Keelan Giles.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Welsh side’s ill-discipline continued after the break as Jordan Lay received a yellow to give Connacht a two-man advantage.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys rallied well to gain some territory, but Marmion put any notion of a comeback out of sight as he was set up by </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">Jarrad<span style=\\\"color: black;\\\"> Butler to score between the posts.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With the victory secured, Connacht took their foot off the gas as they rung in the changes, but Ospreys failed to convert their increased possession into points.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Instead, McCartney further embellished the score line as he drove over powerfully following a scrum.</span></p>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/godwin-and-marmion-inspire-huge-connacht-victory-over-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"7bf5b3476f1f2a78f63b6603d62a9cbe6c9656256fea795a58754dbb121353c8\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/godwin-and-marmion-inspire-huge-connacht-victory-over-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Godwin and Marmion inspire huge Connacht victory over Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419172\"}],\"publishDate\":\"2019-03-02T18:18:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"04edd6aa-9992-31bc-84e8-15e8a275b0b4\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Tries from Conor O’Brien, Adam Byrne and Rory O’Loughlin proved enough as Leinster Rugby beat Toyota Cheetahs 19-7 to extend their lead at the top of Conference B in Guinness PRO14.</strong>\\r\\n\\r\\nThe Irish province came into this game on the back of four straight Guinness PRO14 wins, while the Cheetahs had lost consecutive fixtures.\\r\\n\\r\\nAnd the home side made it five in a row thanks to tries from O’Brien, Byrne and O’Loughlin, complemented by some robust defensive work in the second half.\\r\\n\\r\\nAn early try from Rabz Maxwane threatened to put pressure on the table toppers, but experience and game management secured the points for Leinster and guarantees them a home semi-final.\\r\\n\\r\\nO'Brien opened the floodgates with a try after just ten minutes when he burst between two Cheetahs players to pierce the back line.\\r\\n\\r\\nBut Cheetahs hit back instantly when they seized on a loose ball to kick high up the field.\\r\\n\\r\\nMaxwane flexed his athletic ability as he left three Leinster players in his wake to latch onto the ball and cross the line.\\r\\n\\r\\nAfter a period of pressure, winger Byrne took advantage of some wonderful passing play from his Leinster side to jink inside his defender and power the ball home.\\r\\n\\r\\nhttps://twitter.com/leinsterrugby/status/1101594322804396032\\r\\n\\r\\nLeinster started the second half on top, with the wingers threatening a fragile Cheetahs defence time after time.\\r\\n\\r\\nBut at the other end, the experienced Leinster defence stopped the visitors from taking advantage of their limited forays into offensive territory.\\r\\n\\r\\nA foul from a scrum deep in the Leinster half gave Tian Schoeman the chance to reduce the deficit, but he scuffed high and wide in the rainy conditions.\\r\\n\\r\\nAs Cheetahs failed to take advantage after building up some rare pressure, it was Leinster who dominated the territory, only to be repelled by a seemingly dogged Cheetahs defence.\\r\\n\\r\\nBut eventually the breakthrough came as O’Loughlin found space down the left before latching onto his own excellent kick to make the score more comfortable for his side.\\r\\n\\r\\nThe final quarter saw ferocious tackles flying in from both sides as the two teams cancelled each other out – both in sloppy attacking play and committed defence.\\r\\n\\r\\nMax Deegan exemplified this as he stole a Cheetahs lineout deep in the Leinster 22 to ward off a sporadic chance for the visitors.\\r\\n\\r\\nLeinster were happy to go through their phases in an attempt to wear their opponents down, while Cheetahs’ kick-dominant strategy was rendered ineffective by the excellent positioning of the Leinster back line.\\r\\n\\r\\nLate pressure threatened to secure a bonus point for the Irish team but they settled with the four to maintain their mammoth lead at the top of the conference.\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/leinster-battle-past-dogged-toyota-cheetahs/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b8e27314ba5ecc1df24b551622237315568b11efeb2a9fa055939e5495c954ce\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/leinster-battle-past-dogged-toyota-cheetahs/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leinster battle past dogged Toyota Cheetahs\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419171\"}],\"publishDate\":\"2019-03-01T21:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"3d2e7520-314a-38ab-ba67-400fbfda72ca\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Cardiff Blues will welcome the Isuzu Southern Kings on Saturday as they look to strengthen their title hopes in the Guinness PRO14.\\r\\n\\r\\nTheir opponents sit joint last in the other conference and will look to end a run of three straight defeats.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nThe Kings have no hope of breaking into Finals Series in Conference B but need just a point to overtake the Dragons ahead of the Welsh side’s clash with Ulster on Sunday.\\r\\n\\r\\nThey have struggled on the defensive end, conceding a mammoth 80 tries and 554 points in just 16 games this campaign.\\r\\n\\r\\nTheir opponents have fared a lot better, winning their last three at home and proving reliable on both ends of the pitch as they sit in third place in Conference A.\\r\\n\\r\\nGoing into the game, however, they lie 14 points behind second-placed Glasgow Warriors and will be looking over their shoulder at Connacht, Ospreys and Toyota Cheetahs.\\r\\n\\r\\n<strong>Team News (Cardiff)</strong>\\r\\n\\r\\nJason Harries will make his first start for the Blues since recovering from a foot injury last week to score two against Edinburgh off the bench.\\r\\n\\r\\nCardiff will also have Tomos Williams available amongst the replacements after he missed out on Wales’ victory over England.\\r\\n\\r\\nThe Blues will make five changes in all, with Harri Millard, Brad Thyer, Aled Summerhill, Macauley Cook and Scott Andrews coming into the starting lineup.\\r\\n\\r\\n<strong>Team News (Kings)</strong>\\r\\n\\r\\nNo.8 Andisa Ntsila will earn his eighth start of the season as Ruaan Lerm fails to recover from a concussion sustained last week.\\r\\n\\r\\nElsewhere, captain JC Astle will return to the starting lineup alongside centre Tertius Kruger.\\r\\n\\r\\n<strong>Talking Points</strong>\\r\\n\\r\\n<strong>Cardiff Blues Head Coach John Mulvihill said</strong>: “It's an important weekend, because now we can get a break on one of the teams (below us).\\r\\n\\r\\n\\\"The last three games the Kings have played, they've been close at half-time. They play well first half, but they tend to lose a bit of shape towards the end.\\r\\n\\r\\n\\\"We need to focus on our start, that's what has been letting us down because we do finish really well.\\\"\\r\\n\\r\\n<strong>Southern Kings Head Coach Deon Davids said</strong>: “We have had a tough two matches so far on the tour, and this week against a Cardiff Blues side that is on the back of a good win over Edinburgh will be an equally tough contest.\\r\\n\\r\\n“We have worked very hard this week to counter whatever they may have up their sleeve this weekend. We are hoping to end this tour on a positive note.”\\r\\n\\r\\n<strong>Key battle - Jason Harries vs Bjorn Basson </strong>\\r\\n\\r\\nThe Blues winger transformed the game last week after coming off the bench to score twice, but in a starting berth he’ll have to do well to outshine South African Bjorn Basson.\\r\\n\\r\\nThe veteran Kings player set the try-scoring record in the Currie Cup a few years ago.\\r\\n\\r\\n<strong>Did you know? </strong>The Isuzu Southern Kings have not won an away game this season.\\r\\n\\r\\n<strong>Cardiff Blues:</strong> Aled Summerhill; Owen Lane, Harri Millard, Willis Halaholo, Jason Harries, Jarrod Evans, Lloyd Williams, Brad Thyer, Liam Belcher, Scott Andrews, George Earle, Macauley Cook, Shane Lewis-Hughes, Olly Robinson, Nick Williams (c).\\r\\n\\r\\n<strong>Replacements:</strong> Ethan Lewis, Corey Domachowski, Keiron Assiratti, Rory Thornton, Seb Davies, Tomos Williams, Garyn Smith, Matthew Morgan.\\r\\n\\r\\n<strong>Southern Kings:</strong> Ulrich Beyers; Yaw Penxe, Meli Rokoua, Tertius Kruger, Bjorn Basson, Bader Pretorius, Sarel Pretorius, Alulotho Tshakweni, Michael Willemse, De-Jay Terblanche, John-Charles Astle (c), Henry Brown, Martinus Burger, Andisa Ntsila.\\r\\n\\r\\n<strong>Replacements:</strong> Alandre van Rooyen, Schalk Ferreira, Lupumlo Mguca, Stephan Greef, Stephan De Wit, Rudi van Rooyen, Nerton Lassen, Masixole Banda.\\r\\n<blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\">\\r\\n<p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDD34 TEAM ANNOUNCEMENT ⚫️</p>\\r\\nThe Isuzu Southern Kings team to face Cardiff Blues: <a href=\\\"https://twitter.com/hashtag/CARvKIN?src=hash&amp;ref_src=twsrc%5Etfw\\\">#CARvKIN</a><a href=\\\"https://twitter.com/hashtag/GuinnessPRO14?src=hash&amp;ref_src=twsrc%5Etfw\\\">#GuinnessPRO14</a><a href=\\\"https://twitter.com/hashtag/KingsCare?src=hash&amp;ref_src=twsrc%5Etfw\\\">#KingsCare</a><a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> <a href=\\\"https://twitter.com/PRO14RUBGY?ref_src=twsrc%5Etfw\\\">@PRO14RUBGY</a> <a href=\\\"https://twitter.com/Springboks?ref_src=twsrc%5Etfw\\\">@Springboks</a> <a href=\\\"https://t.co/fWulMNopz9\\\">pic.twitter.com/fWulMNopz9</a>\\r\\n\\r\\n— Isuzu Southern Kings (@SouthernKingsSA) <a href=\\\"https://twitter.com/SouthernKingsSA/status/1101453878271373312?ref_src=twsrc%5Etfw\\\">March 1, 2019</a></blockquote>\\r\\n<script async=\\\"\\\" src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script>\\r\\n\\r\\n<strong>TV:</strong> At Cardiff Arms Park, at 7.35pm (UK Time). Live on Premier Sports and BBC Alba.\\r\\n\\r\\n<strong>Referee:</strong> Joy Neville (IRFU)\\r\\n\\r\\n<strong>Assistant referees:</strong> Dan Jones (WRU), Mark Patton (IRFU)\\r\\n\\r\\n<strong>TMO:</strong> Brian MacNeice (IRFU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-cardiff-blues-vs-isuzu-southern-kings/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"848eb2f8dda951602e219530fc54b07e6c9f988f8a9b89fbfbd23fb0b2f21d6b\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-cardiff-blues-vs-isuzu-southern-kings/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Cardiff Blues vs Isuzu Southern Kings\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419176\"}],\"publishDate\":\"2019-03-01T19:39:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f9885ccd-af5a-3e98-95dd-c648e1a0ec5e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Questo pomeriggio al Comunale di Monigo i Leoni di Kieran Crowely ospitano Edimburgo in uno scontro diretto che può valere più di mezza qualificazione ai playoff di Guinness PRO14.\\n  <br>\\n  <br>Partita “della vita” quella in programma oggi pomeriggio a Treviso per il Benetton dei sogni (e dei record). Sull’onda dello storico successo per 57 a 7 inflitto ai Dragons lo scorsa settimana (mai nessun club italiano era riuscito a segnare tanto in un incontro di Guinness PRO14) i veneti si presentano infatti al match-point contro Edimburgo nel fortino di Monigo (diretta DAZN, calcio di inizio ore 16.00).\\n  <br>\\n  <br>Imbattuti da otto partite ufficiali e sconfitti una sola volta nelle ultime 11 partite (allo Stoop di Twickenham dagli Harlequins, in Challenge Cup), gli uomini di Kieran Crowely hanno tra le mani le sorti del proprio destino.\\n  <br>\\n  <br>Vincere contro gli scozzesi oggi, in un weekend che vede anche gli Scarlets impegnati in casa contro Munster, regalerebbe infatti a Budd e compagni più di una partita di vantaggio sui diretti inseguitori, a quattro turni dalla fine della regular season.\\n  <br>\\n  <br>Edimburgo non vive certo il momento migliore della stagione ma, dopo aver centrato una clamorosa qualificazione ai quarti di finale di Champions Cup, resta una delle formazioni più pericolose del campionato. Nonostante le due sconfitte subite nelle ultime tre giornate (a casa dei Southern Kings e in casa contro i Cardiff Blues), gli scozzesi hanno infatti vinto comunque otto delle ultime dieci gare ufficiali.\\n  <br>\\n  <br>E’ una storia di battaglie “epiche” quella tra Benetton ed Edimburgo. Dall’ingresso dei Leoni nel professionismo internazionale le due squadre si sono affrontate sempre e solo per questioni “celtiche” e, da quella prima volta nel lontano 5 novembre 2010 (vittoria degli scozzesi a Murrayfield per 21 a 9), i rosso-neri si sono aggiudicati 11 delle 17 sfide totali. Negli ultimi dieci scontri diretti i veneti sono riusciti ad imporsi in sole tre occasioni (due a Edimburgo e una a Treviso) e la formazione di Richard Cockerill si è aggiudicata gli ultimi due match: il tiratissimi 31 a 30 dello scorso 28 settembre e il più netto 24 a 13 inflitto al Benetton a domicilio il 28 ottobre del 2017.\\n  <br>\\n  <br>Perfettamente in parità invece, lo storico dei precedenti a Monigo: negli otto scontri diretti al Comunale infatti, il bilancio è di quattro successi per parte.\\n  <br>\\n  <br>\\n  <strong>BENETTON RUGBY vs EDIMBURGO</strong>\\n  <br>Comunale di Monigo, Treviso\\n  <br>Sabato 2 marzo, ore 16.00\\n  <br>DIRETTA DAZN\\n  <br>\\n  <br>\\n  <strong>I PRECEDENTI</strong>\\n  <br>\\n  <br>\\n  <strong>ULTIMI TRE SCONTRI DIRETTI</strong>\\n  <br>Edimburgo – Benetton Rugby: 31-30 (28 settembre 2018)\\n  <br>Benetton Rugby – Edimburgo: 13-24 (28 ottobre 2017)\\n  <br>Edimburgo – Benetton Rugby: 17-20 (15 settembre 2017)\\n  <br>\\n  <br>\\n  <strong>DA TENERE D’OCCHIO</strong>\\n  <br>\\n  <br>\\n  <strong>Luca Sperandio e Jaco van der Walt </strong>\\n  <br>\\n  <br>Il giovane e versatile utility back Azzurro Luca Sperandio vive un momento di “grazia agonistica” che lo ha portato a marcare per ben tre volte nelle ultime due partite (in questa stagione è a quota sei mete in sei partite giocate). All’andata, lo scorso settembre, la sua tripletta scosse la Scozia, portando il ragazzino di Casale sul Sile all’attenzione degli addetti ai lavori. Cockerill in preparazione al match, lavora molto bene l’isolamento dei singoli e questo potrebbe limitarne l’efficacia personale, creando però spazi interesanti per i compagni.\\n  <br>\\n  <br>L’altro giocatore da monitorare attentamente è l’apertura sudafricana Jaco van der Walt. Il 25enne di Randfontein ex South Africa Schools è l’ennesimo profilo “intercettato” dalla SRU in ottica internazionale e sta maturando la sua esperienza a Edimburgo, ritagliandosi un ruolo di grande visibilità nel XV di Cockerill. Oggi non avrà attorno a se numerosi elementi di spicco della sua linea arretrata (su tutti il connazionale Duhan van der Merwe) ma la sua capacità di controllare il gioco sarà un problema da risolvere per Ian McKinley e per la difesa bianco-verde.\\n  <br>\\n  <br>\\n  <strong>LA SFIDA</strong>\\n  <br>\\n  <br>\\n  <strong>Nicola Quaglio vs WP Nel</strong>\\n  <br>\\n  <br>Nicola Quaglio contro WP Nel: la partita in mischia chiusa la deciderà, quanto meno sulla carta, questo confronto diretto tra due dei piloni più differenti tra loro dell’intero Guinness PRO14. L’esperienza, il mestiere e la tecnica di Nel, 32 anni, uno dei primi sudafricani “scozzesizzati” della più recente strategia internazionale della SRU, contro la gigantesca capacità di adattamento di Nicola Quaglio, 27enne rodigino che ha fatto della “dura” gavetta nel rugby italiano la sua pista di lancio per arrivare all’Azzurro e che ha trovato le “chiavi della sua carriera” alla corte di Pieter De Villiers (altro mostro sudafricano della mischia chiusa).\\n  <br>\\n  <br>Un anno fa dare una vittoria netta allo scozzese sarebbe stato tanto immediato quanto scontato. Oggi il peso specifico di Quaglio sulla prima linea della corazzata di Kieran Crowley è cresciuto enormemente tanto da rendere il confronto diretto un vero e proprio rebus.\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/benetton-chiamato-allallungo-decisivo-per-la-storia/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"056d033539123c889f9a86a2954889bc71873ec94261216ff313eed7674de055\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/benetton-chiamato-allallungo-decisivo-per-la-storia/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton chiamato all’allungo decisivo per la storia\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"publishDate\":\"2019-03-01T17:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"48af7db9-be52-37cb-99ce-8b05659c59e4\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Second plays bottom in Conference A on Saturday when Glasgow Warriors will look to continue their winning run in the Guinness PRO14 with a trip to Italian outfit Zebre.</strong>\\r\\n\\r\\nThe Scottish visitors are on a run of three victories on the bounce and are closing in on a Final Series place, while Zebre are without a win in the Guinness PRO14 since October.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nGlasgow Warriors are looking to keep the pressure up on Munster at the top of the conference, with just one point separating the two sides going into Round 17.\\r\\n\\r\\nDave Rennie’s men have been scoring for fun in recent weeks, putting more than 80 points past their last two opponents combined – totting up a 43-17 win over Connacht and a 38-34 triumph at Cardiff Blues.\\r\\n\\r\\nThe omens are good for the visitors too as Glasgow beat Zebre 36-8 at home in October and have never lost to the Italian side since they joined the Guinness PRO14 in the 2012-13 season.\\r\\n\\r\\nBut Zebre are boosted by the return of a number of their internationals and will be hoping to start picking up some ground on Toyota Cheetahs – 18 points above them in the conference.\\r\\n\\r\\n<strong>Team news (Zebre)</strong>\\r\\n\\r\\nZebre have made six changes to the side that were beaten by Ulster last time out in the Guinness PRO14 after being able to call on a number of their returning Italian internationals.\\r\\n\\r\\nWith the Guinness Six Nations on another break this weekend, Azzurri stars David Sisi, Jimmy Tuivaiti and Tommaso Castello have all been recalled to the starting XV.\\r\\n\\r\\nIn total, there are seven internationals in the matchday 23 with Giulio Bisegni, Carlo Canna and Fabiani also starting, while scrum-half Guglielmo Palazzani is on the bench.\\r\\n\\r\\n<strong>Team news (Glasgow Warriors)</strong>\\r\\n\\r\\nAdam Hastings starts at fly-half for Glasgow Warriors after returning from Scotland duty while Zander Fagerson is also back to start alongside Oli Kebble and George Turner in the front row.\\r\\n\\r\\nRobbie Nairn is rewarded for his two tries against Connacht with a place in the starting XV, where he will join Ruaridh Jackson and Rory Hughes in the back three.\\r\\n\\r\\nIt will be Jackson’s 150th Warriors appearance against Zebre, the 31-year-old becoming the 12th player to reach the milestone, with Kyle Steyn shifting from wing to centre to partner Stafford McDowall.\\r\\n\\r\\nhttps://twitter.com/GlasgowWarriors/status/1101448328670261248\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Glasgow Warriors head coach Dave Rennie said:</strong> “It’s a great occasion for Jacko and his family. His contribution since re-joining can’t be praised enough and he’s a hugely popular member of the group. Hopefully, we can get a result to mark the occasion for him.\\r\\n\\r\\n“We were pleased to get the win against Connacht and did some things really well on the night.\\r\\n\\r\\n“The challenge now is to improve on that and we’re going to need to as trips to Italy are extremely challenging, as we learned in January.”\\r\\n\\r\\n<strong>Key battle – Adam Hastings v Carlo Canna</strong>\\r\\n\\r\\nAdam Hastings has found his game time limited for Scotland during the Guinness Six Nations so far, with the talented young fly-half restricted to a couple of appearances off the bench.\\r\\n\\r\\nSo he will be itching to reaffirm his credentials for the final two rounds of the Championship by continuing his excellent club form in the No.10 shirt for Glasgow Warriors.\\r\\n\\r\\nHis opposite number on Saturday, Carlo Canna, has not fared much better for Italy but his extra experience could prove crucial as he looks to orchestrate the Zebre attack.\\r\\n\\r\\n<strong>Key stat:</strong> Zebre Rugby have lost their last nine Guinness PRO14 encounters since beating Edinburgh in Parma in October.\\r\\n\\r\\n<strong>Did you know?</strong> Glasgow’s only two defeats in the Guinness PRO14 on visits to Italy were both on trips to Treviso – in April 2011 and January 2019.\\r\\n\\r\\n<strong>Zebre:</strong> Francois Brummer, Gabriele Di Giulio, Giulio Bisegni, Tommaso Castello, James Elliott, Carlo Canna, Joshua Renton, Renato Giammarioli, Jimmy Tuivaiti, James Brown, David Sisi, Samuele Ortis, Roberto Tenga, Oliviero Fabiani, Daniele Rimpelli\\r\\n\\r\\n<strong>Replacements:</strong> Massimo Ceciliani, Danilo Fischetti, Matteo Nocera, Apisai Tauyavuca, Iacopo Bianchi, Guglielmo Palazzani, Tommaso Boni, Paula Balekana\\r\\n\\r\\n<strong>Glasgow Warriors:</strong> Ruaridh Jackson, Robbie Nairn, Kyle Steyn, Stafford McDowall, Rory Hughes, Adam Hastings, Nick Frisby, Oli Kebble, George Turner, Zander Fagerson, Tim Swinson, Scott Cummings, Rob Harley, Chris Fusaro, Matt Fagerson\\r\\n\\r\\n<strong>Replacements:</strong> Grant Stewart, Alex Allan, D’Arcy Rae, Bruce Flockhart, Adam Ashe, Niko Matawalu, Brandon Thomson, Paddy Kelly\\r\\n\\r\\n<strong>TV:</strong> At Stadio Sergio Lanfranchi, Parma, at 5.15pm (UK time). Live on DAZN and Premier Sports.\\r\\n\\r\\n<strong>Referee:</strong> Andrew Brace (IRFU)\\r\\n\\r\\n<strong>Assistant referees:</strong> Johnny Erskine (IRFU), Luca Trentin (FIR)\\r\\n\\r\\n<strong>TMO:</strong> Stefano Roscini (FIR)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-zebre-v-glasgow-warriors-5/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"25b8daad3c0eedd9a92ba8145cdd2a8628af5b0cf3e9edb0c8da5f1b5d7800d0\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-zebre-v-glasgow-warriors-5/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Zebre v Glasgow Warriors\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419175\"}],\"publishDate\":\"2019-03-01T17:31:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e752065e-79a5-31f0-ba18-5fe37e296d2e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Jarrod Evans has been rewarded for his fine form with a new long-term contract to remain at Cardiff Blues.</p> \\n  <p>The young fly-half, who made his regional debut in 2015, has established himself as an integral member of the first team squad and has now made 58 appearances for his home region.</p> \\n  <p>Regarded as one of the best attacking fly-halves in the Guinness PRO14, Evans was called up by Wales for the Autumn Tests and made his international debut against Scotland last November.</p> \\n  <p>He remains in Warren Gatland’s Six Nations squad but has been released back to Cardiff Blues for the crucial PRO14 clash with Isuzu Southern Kings on Saturday (7.35pm).</p> \\n  <p>Evans was delighted to pledge his future to the Blues and is excited about the potential at Cardiff Arms Park.</p> \\n  <p>He said: “This is my home region and I’m obviously really happy here, so it was a simple decision to put pen to paper.</p> \\n  <p>“We demonstrated last season, by winning the Challenge Cup, what we are capable of and the potential we have at Cardiff Blues.</p> \\n  <p>“I feel like we are getting better and we have a lot of young players coming through the ranks to complement the more experienced heads.</p> \\n  <p>“It is an exciting place to be and with the style of rugby we try to play, and the environment we have, it is the best place for me to continue my development.</p> \\n  <p>“We have some massive games coming up this season, starting with Saturday against the Kings, and we are determined to secure that top three finish and Heineken Champions Cup rugby.”</p> \\n  <p>Evans, who is one of 25 first team players to have come through the Cardiff Blues academy system, has been in fine form since recovering from the shoulder injury he suffered in December.</p> \\n  <p>He pulls on the number 10 jersey at the Arms Park tomorrow and Cardiff Blues head coach John Mulvihill believes he has a massive future in the game.</p> \\n  <p>Mulvihill added: “Jarrod is one of the best attacking fly-halves in Europe and works really hard, both on and off the pitch, to be the best version of himself.</p> \\n  <p>“He is a really good student of the game and is very diligent and professional in everything he does. He’s instinctively a very strong attacking player but is also able to defend in the front line and his kicking game is continually improving.</p> \\n  <p>“It’s exciting to have him involved in our environment every day and as a young man he will only get better.</p> \\n  <p>“He’s an important member of our squad and it’s great to secure his services on a long-term contract. I’m looking forward to working with Jarrod to help him become a world class 10 in the future.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/jarrod-evans-signs-new-deal-at-cap/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"6358ca76f0412df317c766bf7e743ec3dd9f910e40fba809dc51fa2c1f5972cb\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/jarrod-evans-signs-new-deal-at-cap/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Jarrod Evans signs new deal at CAP\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-01T17:13:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"61ca1984-2d9c-3979-b0da-a354889ff7a1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Connacht and Ospreys go head to head in a Conference A clash with serious Guinness PRO14 Finals Series implications at the Sportsground on Saturday afternoon (2.45pm).\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides are right in the mix for a Finals Series spot with Connacht fourth in Conference A on 42 points and Ospreys only one place and three points behind them.\\r\\n\\r\\nYet they are both struggling in recent weeks, as the Irishmen only have one victory in the last four Guinness PRO14 games and their Welsh visitors are on a five-game losing run in all competitions.\\r\\n\\r\\nConnacht can still boast a formidable home record – having only lost once at the Sportsground, in any competition, since September – but Ospreys have the advantage in the recent head-to-head.\\r\\n\\r\\nThey have won four of the previous five contests between the sides, as well as 22 of the 31 Guinness PRO14 clashes the pair have contested, but defeat on Saturday would put them a long way behind the eight-ball in the race for the postseason.\\r\\n\\r\\n<strong>Team news (Connacht)</strong>\\r\\n\\r\\nConnacht welcome back four men from international duty as Ultane Dillane, Quinn Roux, Tom Farrell and Caolin Blade are all in the matchday squad.\\r\\n\\r\\nDillane and Roux continue the second-row partnership that started for Ireland in the Guinness Six Nations victory over Italy last weekend, forming a front five that also includes Denis Buckley, Finlay Bealham and Shane Delahunt.\\r\\n\\r\\nOffloader extraordinaire Farrell returns in the centres alongside Peter Robb, who earns a first start of the campaign after impressing from the bench last time out, while scrum-half Kieran Marmion’s injury return continues with a second consecutive start.\\r\\n\\r\\nThat means Blade settles for a place on the bench but should offer impact if he enters the fray at the Sportsground.\\r\\n\\r\\n<strong>Team news (Ospreys)</strong>\\r\\n\\r\\nOspreys head coach Allen Clarke has elected to make just once change to the starting XV that went down 19-13 to Munster at the Liberty Stadium a week ago.\\r\\n\\r\\nThat alteration sees Clarke opt for experience as the ageless James Hook – with his 81 international caps – comes into the centres in place of teenager Tiaan Thomas-Wheeler.\\r\\n\\r\\nKeelan Giles continues on the wing in his return from a knee injury that kept him sidelined for a year – looking to build on a performance against Munster in which he beat the ten defenders.\\r\\n\\r\\nOspreys have 15 players unavailable, including seven men still on international duty with Wales.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “We have trained well and prepared well this week. We have seen a really positive response from the players after a disappointing result last weekend in Glasgow.\\r\\n\\r\\n“We will continue to focus on our game and what we can control, as we have done all season. We know every game now is a must win and with a two-week break before our next game we are determined to finish this block on a high.\\r\\n\\r\\n“We are boosted by four of our players coming back from international duty. They bring a huge amount of experience to our matchday squad.”\\r\\n\\r\\n<strong> </strong><strong>Ospreys head coach Allen Clarke said: </strong>“As a group we understand the importance of this last game during the Six Nations block against Connacht, who are also vying for the play-offs.\\r\\n“Considering the off-field uncertainty the boys have been excellent, with a consistent focus on improving individually and collectively.\\r\\n\\r\\n“There's frustration that we've been on the wrong end of scorelines in each of the previous three games but also a realisation that we have the solutions to deliver a more complete performance on Saturday.\\r\\n\\r\\n“Games against Connacht are always testing and exciting, our focus is to be the best version of ourselves.”\\r\\n\\r\\n<strong>Key battle – The second row</strong>\\r\\n\\r\\nBoth teams boast serious star power in their respective second rows, making that battle a particularly fascinating one to watch.\\r\\n\\r\\nFor Connacht, Ultan Dillane and Quinn Roux pack down together – a pair that started for Ireland in their Guinness Six Nations victory over Italy just last weekend, where Roux dotted down the opening try.\\r\\n\\r\\nThey’ll come up against James King and Bradley Davies – who have 75 Wales caps between them – and the duo that can dominate the breakdown and set-piece will give their team a huge advantage.\\r\\n\\r\\nThe battle in the lineout could be particularly fascinating, with no Guinness PRO14 player having stolen more this season than King – who has pinched seven – although with three steals apiece, Roux and Dillane are also capable of disrupting the set-piece in response.\\r\\n\\r\\n<strong>Key fact</strong>\\r\\n\\r\\nConnacht have lost only once at home in any tournament since September – 31-24 to Munster in the Guinness PRO14 in early January.\\r\\n\\r\\n<strong>Did you know?</strong>\\r\\n\\r\\nOspreys have lost their last ten visits to Irish provinces since beating Connacht in Galway in September 2016.\\r\\n\\r\\n<strong>Connacht:</strong> 15. Tiernan O’Halloran, 14. Stephen Fitzgerald, 13. Tom Farrell, 12. Peter Robb, 11. Matt Healy, 10. Kyle Godwin, 9. Kieran Marmion; 1. Denis Buckley, 2. Shane Delahunt, 3. Finlay Bealham, 4. Quinn Roux, 5. Ultan Dillane, 6. Eoin McKeon, 7. Colby Fainga’a, 8. Jarrad Butler (C).\\r\\n\\r\\n<strong>Replacements</strong>: 16. Tom McCartney, 17. Peter McCabe, 18. Conor Carey, 19. James Cannon, 20. Paul Boyle, 21. Caolin Blade, 22. Tom Daly, 23. Cian Kelleher\\r\\n\\r\\n<strong>Ospreys: </strong>15. Dan Evans, 14. Hanno Dirksen, 13. Cory Allen, 12. James Hook, 11. Keelan Giles, 10. Luke Price, 9. Matthew Aubrey; 1. Jordan Lay, 2. Scott Baldwin, 3. Tom Botha, 4. James King, 5. Bradley Davies, 6. Olly Cracknell (C), 7. Sam Cross, 8. Rob McCusker\\r\\n\\r\\n<strong>Replacements: </strong>16. Scott Otten, 17. Rowan Jenkins, 18. Ma'afu Fia, 19. Lloyd Ashley, 20. Will Griffiths, 21. Harri Morgan, 22. Tom Williams, 23. Luke Morgan\\r\\n\\r\\n<strong>TV: </strong>At the Sportsground, Galway, 2.45pm. Live on Premier Sports 1 and TG4\\r\\n\\r\\n<strong>Referee:</strong> Marius Mitrea (FIR)\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sean Gallagher (IRFU), Matteo Liperini (FIR)\\r\\n\\r\\n<strong>TMO:</strong> Olly Hodges (IRFU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-v-ospreys-6/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"271f69335facd0f66de3f593e1e7061f863d3f27846336092c1cc37e1c992f85\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-v-ospreys-6/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht v Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419172\"}],\"publishDate\":\"2019-03-01T16:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"298587fb-09a5-331a-a16d-7f5ee4ff0b92\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Bader Pretorius may only be a 21-year-old with only four Guinness PRO14 matches under his belt, but he has had his share of challenges which have often placed doubt on his future as a professional rugby player.</p> \\n  <p>Just two years ago Pretorius was one of a group of young players whose contracts were culled by the Golden Lions Rugby Union, where he had been plying his trade for the Gauteng side’s junior teams. A further blow was his struggle with injuries, which included two serious ACL (knee) injuries that placed him out of action until he joined the <em>Isuzu Southern Kings</em>.</p> \\n  <p>“There was always a little bit of doubt whether I would play professional rugby again after two ACL injuries, but I always had hope that I would play in one form or another,” the Johannesburg-born Pretorius confessed.</p> \\n  <p>“I never really thought of quitting rugby. It has always been my dream to play at the highest level, and that is still my dream.”</p> \\n  <p>After leaving the Lions, the fly-half spent most of his time working hard at staying in shape at the Stellenbosch Academy of Sport and had a brief stint in Germany where he hoped to revive his career, but was kept on the sideline by the ACL injury.</p> \\n  <p>His hope of playing top-flight rugby was re-ignited when, in January, he received an unexpected message from the <em>Isuzu Southern Kings </em>which would turn his fortunes around and reignite his deep passion for the game of rugby.</p> \\n  <p>“I’m very excited and honoured about this opportunity,” he said.</p> \\n  <p>“I was out injured the past year, and randomly received a text message from Coach Robbi (Kempson) to come for a trial. Training went very well and I got picked for that weekend and it all went well.</p> \\n  <blockquote>\\n   <p>“I always prayed for such an opportunity, and I trained very hard when I was in Stellenbosch.</p>\\n  </blockquote> \\n  <p>“Germany was a very good experience, but I did not get to do much as I had a knee injury.”</p> \\n  <p><iframe src=\\\"https://www.youtube.com/embed/xK_C7kxVh-U\\\" width=\\\"560\\\" height=\\\"315\\\" frameborder=\\\"0\\\" allowfullscreen></iframe></p> \\n  <p>Pretorius made his debut off the bench in his first week of joining the Port Elizabeth-based side when they took on Edinburgh Rugby and won the match 25-21 at NMU Madibaz Stadium on January 26. He went on to score his first Guinness PRO14 try on debut to help the side to victory – a moment he treasures as one of the highlights of his budding career.</p> \\n  <p>“My highlight was definitely my try, on debut, against Edinburgh. It definitely boosted my confidence. But I always try to keep my feet on the ground and take every game as it comes,” said Pretorius.</p> \\n  <p>“PR014 Rugby is a very tough competition, but a highly enjoyable challenge. I still don’t feel that I am 100% sharp, there is room for improvement, but I am sure that the more I play, the better I will get.”</p> \\n  <p>The fly-half has blended in well in the <em>Isuzu Southern Kings </em>team, so much so that he was selected as the solitary pivot for the side’s three-week tour of Ireland and Wales, where he has started all the matches so far in the No10 jersey.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDEA8 PLAYER FEATURE \\uD83D\\uDEA8</p> \\n   <p>“There was always a little bit of doubt whether I would play professional rugby again after two ACL injuries, but I always had hope” – Bader Pretorius</p> \\n   <p>Link: <a href=\\\"https://t.co/ay8aznVSde\\\">https://t.co/ay8aznVSde</a> <a href=\\\"https://t.co/DxUOSr9xZo\\\">pic.twitter.com/DxUOSr9xZo</a></p> \\n   <p>— Isuzu Southern Kings (@SouthernKingsSA) <a href=\\\"https://twitter.com/SouthernKingsSA/status/1101380709665685504?ref_src=twsrc%5Etfw\\\">March 1, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p>Pretorius will be hoping to put in a stellar performance in the <em>Isuzu Southern Kings’ </em>final match of the tour, against Cardiff Blues at Cardiff Arms Park on Saturday night. Kick-off is at 21h35 (SA-time).</p> \\n  <p>It is unsurprising that Pretorius looks up to and hopes to model fellow Michaelhouse pupil, the recently retired Springbok flyhalf Patrick Lambie.</p> \\n  <blockquote>\\n   <p>“My rugby hero is Pat Lambie. Just the calmness he exudes on the field is something to look up to.”</p>\\n  </blockquote> \\n  <p>With the obstacles Pretorius has faced right at the start of his career, many others would have given up the dream of playing professional rugby. However, the former South African Schools “A” player’s passion for the game, coupled with the support from loved ones, continues to keep him going.</p> \\n  <p>“My motivation is the love I have for the game. There is nothing else I want to do, and my family is also a motivation – I want to make them proud.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/passion-for-the-game-keeps-bader-pretorius-motivated/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e0f6298c2fc5a8ae6191ed7d1e7ab745c039ad9ae472b35911e52ca2a38dc1ed\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/passion-for-the-game-keeps-bader-pretorius-motivated/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Passion for the game keeps Bader Pretorius motivated\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"34\"}],\"publishDate\":\"2019-03-01T16:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9e2a022d-a0f0-3d88-9a9c-fe7b1023af5b\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby and Edinburgh Rugby meet in Treviso as two of the heavyweights in Conference B of the Guinness PRO14 are placed on collision course in Round 17.\\r\\n\\r\\nA potential cracker could be in the offing as two talented teams go head-to-head.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nA crucial clash in the battle for Conference B’s Guinness PRO14 Final Series berths is on the cards as in-form Benetton roll out the red carpet for Edinburgh.\\r\\n\\r\\nUnbeaten in eight successive matches in all competitions, Kieran Crowley’s troops begin Round 17 four points ahead of Edinburgh and two in front of Ulster, who are third.\\r\\n\\r\\nRichard Cockerill’s visitors, who were edged out at home by Cardiff Blues last time out, will be looking to reel in their rivals as the regular season winds down towards its conclusion.\\r\\n\\r\\n<strong>Team news (Benetton Rugby)</strong>\\r\\n\\r\\nLuca Sperandio is given the nod at full-back whilst on the wings, Ratuva Tavuyara and Monty Ioane are set to be unleashed.\\r\\n\\r\\nSkipper Alberto Sgarbi is partnered by Marco Zanon in the centres while Ian McKinley starts at fly-half, with Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi named as Crowley’s back-row trio.\\r\\n\\r\\n<strong>Team news (Edinburgh Rugby)</strong>\\r\\n\\r\\nScotland internationals Hamish Watson and WP Nel will be back in the thick of the action as Edinburgh attempt to stop Benetton in their tracks.\\r\\n\\r\\nWatson and Nel return from injury whilst scrum-half Henry Pyrgos and centre Chris Dean are both also included, having sat out their team’s loss to the Blue due to their international commitments – Pyrgos is also named as captain.\\r\\n\\r\\nTom Brown is named at full-back but Edinburgh won’t be able to count on Duhan van der Merwe and Viliame Mata, who are both ruled out.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Edinburgh head coach Richard Cockerill said:</strong> “It’s a huge game for us and it’s a huge game in the context of the conference.\\r\\n\\r\\n“We’ve had a couple of defeats in the last few games and they are four points above us. We need to win.\\r\\n“It will be a very tough match, but the momentum of our season will swing if we can go there and win.\\r\\n\\r\\n“That’s the reality of the game and that’s our objective. We’ve got to be hungry to go there and win.”\\r\\n\\r\\n<strong>Key battle – Monty Ioane v Jack Blain</strong>\\r\\n\\r\\nWith 16 rounds of the 2018-19 Guinness PRO14 done and dusted, only three players have beaten more opposition defenders than Benetton winger Monty Ioane – and one of them won’t be playing this weekend.\\r\\n\\r\\nThe Australian flyer has been a star performer for the men from Treviso so far this term, who has left 39 defenders trailing in his wake so far.\\r\\n\\r\\n<strong>Key fact</strong>\\r\\n\\r\\nBenetton have won their last six home matches in all competitions, with their last loss coming at the hands of Ulster in Round Eight.\\r\\n\\r\\n<strong>Did you know? </strong>\\r\\n\\r\\nEdinburgh have won their last two matches against Benetton whilst their overall records on visits to Stadio Monigo is split evenly – four wins and four losses.\\r\\n\\r\\nLining up in the opposite No.11 shirt will the prodigiously-talented teenager Jack Blain, a member of Scotland’s Under-20 Six Nations squad.\\r\\n\\r\\nCan youngster Blain make his presence felt, particularly in the absence of Van der Merwe, who tops the ‘defenders beaten’ column (61).\\r\\n\\r\\n<strong>Benetton Rugby: </strong>Luca Sperandio, Ratuva Tavuyara, Marco Zanon, Alberto Sgarbi (c), Monty Ioane, Ian McKinley, Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Niccolò Cannone, Irné Herbst, Marco Riccioni, Tomas Baravalle, Nicola Quaglio\\r\\n\\r\\n<strong>Replacements</strong>: Hame Faiva, Derrick Appiah, Tiziano Pasquali, Robert Barbieri, Marco Barbini, Giorgio Bronzini, Antonio Rizzi, Tommaso Benvenuti\\r\\n\\r\\n<strong>Edinburgh Rugby: </strong>Tom Brown, Damien Hoyland, James Johnstone, Chris Dean, Jack Blain, Jaco van der Walt, Henry Pyrgos (c), Pierre Schoeman, David Cherry, WP Nel, Fraser McKenzie, Callum Hunter-Hill, Luke Crosbie, Hamish Watson, Ally Miller\\r\\n\\r\\n<strong>Replacements: </strong>Ross Ford, Rory Sutherland, Pietro Ceccarelli, Ben Toolis, Senitiki Nayalo, Nathan Fowles, Simon Hickey, Mark Bennett\\r\\n\\r\\n<strong>TV: </strong>At Stadio Monigo, Treviso, 3pm. Live on Premier Sports 2 and DAZN\\r\\n\\r\\n<strong>Referee:</strong> George Clancy (IRFU)\\r\\n\\r\\n<strong>Assistant Referees:</strong> Andrea Piardi (FIR), Kieran Barry (IRFU)\\r\\n\\r\\n<strong>TMO:</strong> Alan Falzone (FIR)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-benetton-rugby-v-edinburgh-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"22551f4696667ef24ac6fdad20ae2dc705346fe5b7a88b54a16c771566db67b8\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-benetton-rugby-v-edinburgh-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Benetton Rugby v Edinburgh Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419173\"}],\"publishDate\":\"2019-03-01T16:46:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false}]},\"metadata\":{\"createdAt\":\"2019-03-21T16:32:22.639Z\",\"pageItems\":50,\"totalItems\":1401,\"totalPages\":29,\"pageNumber\":0,\"pageSize\":50,\"sort\":\"publishDate: DESC\"}}"}],"_postman_id":"dff1ba65-b6ab-4949-926c-139916c4e938"},{"name":"Article","id":"613c8f95-1fc7-4851-ac0b-0795baf6304d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"<p>Anonymous/user token [optional]</p>\n","type":"text"}],"url":"{{url}}/v2/articles/{{articleId}}","urlObject":{"path":["v2","articles","{{articleId}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"22f25ba6-1bae-4da2-a5ab-fbbb2114a50f","name":"Article","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{articleCmsURL}}/v2/articles/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:33:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"0","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"fSyRpexBBgLbpYPJz8wIiLVqa_28qKuG8My0lzymtn50Wc1AaspsNQ==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"success\",\"data\":{\"article\":{\"id\":\"7f7f31ce-bbad-361c-9a1a-c9eb5c8e1902\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby’s trip to Connacht presents a meeting of two Guinness PRO14 play-off chasers with the Italians sitting second in Conference B and the Irishmen equal third in Conference A.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides will be keen to maintain their position in their respective Conferences with the chasing packs close behind.\\r\\n\\r\\nUlster are just a point behind Benetton while Scarlets are currently five back meaning that defeat could prove costly for Kieran Crowley’s men.\\r\\n\\r\\nMeanwhile Cardiff Blues are level with Connacht, making a win imperative if they are to ensure that they stay in the hunt for a play-off spot.\\r\\n\\r\\n<strong>Team news (Connacht) </strong>Jack Carty, Kieran Marmion and Ultan Dillane all return from Guinness Six Nations duty to bolster the Connacht ranks.\\r\\n\\r\\nCarty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.\\r\\n\\r\\nDillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.\\r\\n\\r\\nIn the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.\\r\\n\\r\\nThe back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.\\r\\n\\r\\n<strong>Teams news (Benetton) </strong>Full-back for Benetton will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.\\r\\n\\r\\nThe half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.\\r\\n\\r\\nThe front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.\\r\\n\\r\\nLocks will be Irné Herbst and Alessandro Zanni and the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi combine.\\r\\n\\r\\n<strong>Talking points: </strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “Benetton have been great all year. I’m not surprised they’re sitting in second spot.\\r\\n\\r\\n“They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground.\\r\\n\\r\\n“We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”\\r\\n\\r\\n<strong>Key battle – Tom Farrell vs Tommaso Benvenuti</strong>\\r\\n\\r\\nBoth men were picked in the wider Guinness Six Nations this year for their respective countries.\\r\\n\\r\\nBut Benvenuti made just one appearance off the bench for Italy while Farrell missed out altogether for Ireland.\\r\\n\\r\\nSo both will be keen to show their international coaches what they missed out on.\\r\\n\\r\\nThe two centres will be looking to exploit space and carry the fight in midfield as the Guinness PRO14 resumes.\\r\\n\\r\\n<strong>Key fact </strong>Connacht’s last four matches in the Guinness PRO14 have all been won by the home side on the day whilst their only defeat at The Sportsground in any competition since September was 24-31 to Munster in January.\\r\\n\\r\\n<strong>Did you know? </strong>The Italians have won only once against an Irish opponent since April 2016, 17-15 against Leinster at the RDS Arena in round 20 last year.\\r\\n\\r\\n<strong>Connacht:</strong> Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (c).\\r\\n\\r\\n<strong>Replacements:</strong> Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.\\r\\n\\r\\n<strong>Benetton:</strong> Luca Sperandio, Ratuva Tavuyara, Tommaso Benvenuti, Alberto Sgarbi (c), Monty Ioane, Ian McKinley (c), Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Alessandro Zanni, Irné Herbst, Marco Riccioni, Hame Faiva, Nicola Quaglio.\\r\\n\\r\\n<strong>Substitutes:</strong> Tomas Baravalle, Derrick Appiah, Tiziano Pasquali, Marco Barbini, Robert Barbieri, Giorgio Bronzini, Antonio Rizzi, Tommaso Iannone\\r\\n\\r\\n<strong>At:</strong> The Sportsground, Galway, 7.35pm.\\r\\n\\r\\n<strong>Referee:</strong> Mike Adamson\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sam Grove-White, Graeme Ormiston\\r\\n\\r\\n<strong>TMO:</strong> Andrew McMenemy\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"413b63c60ade38680ae1c519b795dc92ce60376e610a8fcf417a851fc16a4ad5\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"publishDate\":\"2019-03-21T15:09:00.000Z\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht Rugby v Benetton\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419182\"}],\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false}},\"metadata\":{\"createdAt\":\"2019-03-21T16:33:30.876Z\"}}"}],"_postman_id":"613c8f95-1fc7-4851-ac0b-0795baf6304d"},{"name":"Article by slug","id":"3335fb19-9abc-4c7d-891a-6f34389952f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"<p>Anonymous/user token\n[optional]</p>\n","type":"text"}],"url":"{{url}}/v2/articles/slug/{{articleSlug}}?clientId={{clientId}}","urlObject":{"path":["v2","articles","slug","{{articleSlug}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID. e.g. INCROWD\n[required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"}],"variable":[]}},"response":[{"id":"ceaf0b16-9383-4aff-b529-709332b1ffa0","name":"Article","originalRequest":{"method":"GET","header":[],"url":"{{articleCmsURL}}/v2/articles/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:33:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"0","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"fSyRpexBBgLbpYPJz8wIiLVqa_28qKuG8My0lzymtn50Wc1AaspsNQ==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"success\",\"data\":{\"article\":{\"id\":\"7f7f31ce-bbad-361c-9a1a-c9eb5c8e1902\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby’s trip to Connacht presents a meeting of two Guinness PRO14 play-off chasers with the Italians sitting second in Conference B and the Irishmen equal third in Conference A.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides will be keen to maintain their position in their respective Conferences with the chasing packs close behind.\\r\\n\\r\\nUlster are just a point behind Benetton while Scarlets are currently five back meaning that defeat could prove costly for Kieran Crowley’s men.\\r\\n\\r\\nMeanwhile Cardiff Blues are level with Connacht, making a win imperative if they are to ensure that they stay in the hunt for a play-off spot.\\r\\n\\r\\n<strong>Team news (Connacht) </strong>Jack Carty, Kieran Marmion and Ultan Dillane all return from Guinness Six Nations duty to bolster the Connacht ranks.\\r\\n\\r\\nCarty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.\\r\\n\\r\\nDillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.\\r\\n\\r\\nIn the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.\\r\\n\\r\\nThe back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.\\r\\n\\r\\n<strong>Teams news (Benetton) </strong>Full-back for Benetton will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.\\r\\n\\r\\nThe half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.\\r\\n\\r\\nThe front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.\\r\\n\\r\\nLocks will be Irné Herbst and Alessandro Zanni and the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi combine.\\r\\n\\r\\n<strong>Talking points: </strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “Benetton have been great all year. I’m not surprised they’re sitting in second spot.\\r\\n\\r\\n“They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground.\\r\\n\\r\\n“We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”\\r\\n\\r\\n<strong>Key battle – Tom Farrell vs Tommaso Benvenuti</strong>\\r\\n\\r\\nBoth men were picked in the wider Guinness Six Nations this year for their respective countries.\\r\\n\\r\\nBut Benvenuti made just one appearance off the bench for Italy while Farrell missed out altogether for Ireland.\\r\\n\\r\\nSo both will be keen to show their international coaches what they missed out on.\\r\\n\\r\\nThe two centres will be looking to exploit space and carry the fight in midfield as the Guinness PRO14 resumes.\\r\\n\\r\\n<strong>Key fact </strong>Connacht’s last four matches in the Guinness PRO14 have all been won by the home side on the day whilst their only defeat at The Sportsground in any competition since September was 24-31 to Munster in January.\\r\\n\\r\\n<strong>Did you know? </strong>The Italians have won only once against an Irish opponent since April 2016, 17-15 against Leinster at the RDS Arena in round 20 last year.\\r\\n\\r\\n<strong>Connacht:</strong> Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (c).\\r\\n\\r\\n<strong>Replacements:</strong> Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.\\r\\n\\r\\n<strong>Benetton:</strong> Luca Sperandio, Ratuva Tavuyara, Tommaso Benvenuti, Alberto Sgarbi (c), Monty Ioane, Ian McKinley (c), Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Alessandro Zanni, Irné Herbst, Marco Riccioni, Hame Faiva, Nicola Quaglio.\\r\\n\\r\\n<strong>Substitutes:</strong> Tomas Baravalle, Derrick Appiah, Tiziano Pasquali, Marco Barbini, Robert Barbieri, Giorgio Bronzini, Antonio Rizzi, Tommaso Iannone\\r\\n\\r\\n<strong>At:</strong> The Sportsground, Galway, 7.35pm.\\r\\n\\r\\n<strong>Referee:</strong> Mike Adamson\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sam Grove-White, Graeme Ormiston\\r\\n\\r\\n<strong>TMO:</strong> Andrew McMenemy\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"413b63c60ade38680ae1c519b795dc92ce60376e610a8fcf417a851fc16a4ad5\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"publishDate\":\"2019-03-21T15:09:00.000Z\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht Rugby v Benetton\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419182\"}],\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false}},\"metadata\":{\"createdAt\":\"2019-03-21T16:33:30.876Z\"}}"}],"_postman_id":"3335fb19-9abc-4c7d-891a-6f34389952f9"},{"name":"Article Preview","id":"c8aa8dac-aa4e-45c8-a46b-469579f642a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"<p>User token\n[required]</p>\n","type":"text"}],"url":"{{url}}/v2/articles/{{articleId}}/preview?clientId={{clientId}}&secret=796bd82f-f47f-4f46-810f-b7d171580d6a","urlObject":{"path":["v2","articles","{{articleId}}","preview"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID, e.g. INCROWD\n[required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"description":{"content":"<p>Article preview secret. Used to validate the request. Will return the article without any restrictions if succesul.\n[required]</p>\n","type":"text/plain"},"key":"secret","value":"796bd82f-f47f-4f46-810f-b7d171580d6a"}],"variable":[]}},"response":[{"id":"5840a5f0-8997-4335-a4c4-a180d4e966ec","name":"Article","originalRequest":{"method":"GET","header":[],"url":"{{articleCmsURL}}/v2/articles/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:33:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"0","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"fSyRpexBBgLbpYPJz8wIiLVqa_28qKuG8My0lzymtn50Wc1AaspsNQ==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"success\",\"data\":{\"article\":{\"id\":\"7f7f31ce-bbad-361c-9a1a-c9eb5c8e1902\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby’s trip to Connacht presents a meeting of two Guinness PRO14 play-off chasers with the Italians sitting second in Conference B and the Irishmen equal third in Conference A.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides will be keen to maintain their position in their respective Conferences with the chasing packs close behind.\\r\\n\\r\\nUlster are just a point behind Benetton while Scarlets are currently five back meaning that defeat could prove costly for Kieran Crowley’s men.\\r\\n\\r\\nMeanwhile Cardiff Blues are level with Connacht, making a win imperative if they are to ensure that they stay in the hunt for a play-off spot.\\r\\n\\r\\n<strong>Team news (Connacht) </strong>Jack Carty, Kieran Marmion and Ultan Dillane all return from Guinness Six Nations duty to bolster the Connacht ranks.\\r\\n\\r\\nCarty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.\\r\\n\\r\\nDillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.\\r\\n\\r\\nIn the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.\\r\\n\\r\\nThe back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.\\r\\n\\r\\n<strong>Teams news (Benetton) </strong>Full-back for Benetton will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.\\r\\n\\r\\nThe half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.\\r\\n\\r\\nThe front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.\\r\\n\\r\\nLocks will be Irné Herbst and Alessandro Zanni and the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi combine.\\r\\n\\r\\n<strong>Talking points: </strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “Benetton have been great all year. I’m not surprised they’re sitting in second spot.\\r\\n\\r\\n“They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground.\\r\\n\\r\\n“We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”\\r\\n\\r\\n<strong>Key battle – Tom Farrell vs Tommaso Benvenuti</strong>\\r\\n\\r\\nBoth men were picked in the wider Guinness Six Nations this year for their respective countries.\\r\\n\\r\\nBut Benvenuti made just one appearance off the bench for Italy while Farrell missed out altogether for Ireland.\\r\\n\\r\\nSo both will be keen to show their international coaches what they missed out on.\\r\\n\\r\\nThe two centres will be looking to exploit space and carry the fight in midfield as the Guinness PRO14 resumes.\\r\\n\\r\\n<strong>Key fact </strong>Connacht’s last four matches in the Guinness PRO14 have all been won by the home side on the day whilst their only defeat at The Sportsground in any competition since September was 24-31 to Munster in January.\\r\\n\\r\\n<strong>Did you know? </strong>The Italians have won only once against an Irish opponent since April 2016, 17-15 against Leinster at the RDS Arena in round 20 last year.\\r\\n\\r\\n<strong>Connacht:</strong> Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (c).\\r\\n\\r\\n<strong>Replacements:</strong> Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.\\r\\n\\r\\n<strong>Benetton:</strong> Luca Sperandio, Ratuva Tavuyara, Tommaso Benvenuti, Alberto Sgarbi (c), Monty Ioane, Ian McKinley (c), Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Alessandro Zanni, Irné Herbst, Marco Riccioni, Hame Faiva, Nicola Quaglio.\\r\\n\\r\\n<strong>Substitutes:</strong> Tomas Baravalle, Derrick Appiah, Tiziano Pasquali, Marco Barbini, Robert Barbieri, Giorgio Bronzini, Antonio Rizzi, Tommaso Iannone\\r\\n\\r\\n<strong>At:</strong> The Sportsground, Galway, 7.35pm.\\r\\n\\r\\n<strong>Referee:</strong> Mike Adamson\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sam Grove-White, Graeme Ormiston\\r\\n\\r\\n<strong>TMO:</strong> Andrew McMenemy\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"413b63c60ade38680ae1c519b795dc92ce60376e610a8fcf417a851fc16a4ad5\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"publishDate\":\"2019-03-21T15:09:00.000Z\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht Rugby v Benetton\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419182\"}],\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false}},\"metadata\":{\"createdAt\":\"2019-03-21T16:33:30.876Z\"}}"}],"_postman_id":"c8aa8dac-aa4e-45c8-a46b-469579f642a9"},{"name":"Articles Query Search","id":"51321672-40b8-4f7f-be5a-920fb50d88d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/v2/articles/search?clientId={{clientId}}&sort=publishDate,DESC","urlObject":{"path":["v2","articles","search"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID, e.g. INCROWD [required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"disabled":true,"description":{"content":"<p>Page number, zero-indexed [optional, default = 0]</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>Page size. It is recommended never to exceed a value greater than 1000 items [optional, default = 50]</p>\n","type":"text/plain"},"key":"size","value":"50"},{"description":{"content":"<p>Sort parameter. Syntax: <code>?sort={field name},{DESC|ASC}</code>. You may specify multiple <code>?sort</code> query parameters to sort by multiple fields, example: <code>?sort=pinned,DESC&amp;sort=publishDate,DESC</code>. The order in which you specify the sort query parameters determines the sequence of tie-breaking criteria for articles with identical values.\n[optional,default = \"?sort=pinned,DESC&amp;sort=publishDate,DESC\"]</p>\n","type":"text/plain"},"key":"sort","value":"publishDate,DESC"},{"disabled":true,"description":{"content":"<p>Query string query syntax - see <a href=\"https://opensearch.org/docs/latest/opensearch/query-dsl/full-text/#query-string\">https://opensearch.org/docs/latest/opensearch/query-dsl/full-text/#query-string</a></p>\n","type":"text/plain"},"key":"query","value":"Match"}],"variable":[]}},"response":[{"id":"e64e7ef8-824c-4cf4-9693-cb3e10d1e272","name":"Articles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{accessToken}}","disabled":false}],"url":{"raw":"{{articleCmsURL}}/v2/articles?clientId={{clientId}}","host":["{{articleCmsURL}}"],"path":["v2","articles"],"query":[{"key":"clientId","value":"{{clientId}}","description":"clientId"},{"key":"page","value":"0","description":"Page number","warning":"","disabled":true},{"key":"size","value":"100","description":"Page size","warning":"","disabled":true},{"key":"sort","value":"-publishDate","description":"Sort parameter","warning":"","disabled":true},{"key":"tags","value":"Match","description":"Contains these tags (Comma separated)","warning":"","disabled":true},{"key":"singlePage","value":"true","description":"Single page articles only (boolean)","warning":"","disabled":true},{"key":"title","value":"Article title","description":"Hero media title","warning":"","disabled":true},{"key":"linkedId.sourceSystem","value":"OPTA_MATCH","description":"Source System Name","warning":"","disabled":true},{"key":"linkedId.sourceSystemId","value":"123456","description":"Source System ID","warning":"","disabled":true},{"key":"language","value":"en","description":"Language code","warning":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:32:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"0","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"JmXL7L_2jaTUJOKEcVWR0Bm_5co3Bw7WFmPsQbDoW70tgHlGHa-bEQ==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"success\",\"data\":{\"articles\":[{\"id\":\"7f7f31ce-bbad-361c-9a1a-c9eb5c8e1902\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby’s trip to Connacht presents a meeting of two Guinness PRO14 play-off chasers with the Italians sitting second in Conference B and the Irishmen equal third in Conference A.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides will be keen to maintain their position in their respective Conferences with the chasing packs close behind.\\r\\n\\r\\nUlster are just a point behind Benetton while Scarlets are currently five back meaning that defeat could prove costly for Kieran Crowley’s men.\\r\\n\\r\\nMeanwhile Cardiff Blues are level with Connacht, making a win imperative if they are to ensure that they stay in the hunt for a play-off spot.\\r\\n\\r\\n<strong>Team news (Connacht) </strong>Jack Carty, Kieran Marmion and Ultan Dillane all return from Guinness Six Nations duty to bolster the Connacht ranks.\\r\\n\\r\\nCarty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.\\r\\n\\r\\nDillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.\\r\\n\\r\\nIn the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.\\r\\n\\r\\nThe back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.\\r\\n\\r\\n<strong>Teams news (Benetton) </strong>Full-back for Benetton will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.\\r\\n\\r\\nThe half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.\\r\\n\\r\\nThe front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.\\r\\n\\r\\nLocks will be Irné Herbst and Alessandro Zanni and the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi combine.\\r\\n\\r\\n<strong>Talking points: </strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “Benetton have been great all year. I’m not surprised they’re sitting in second spot.\\r\\n\\r\\n“They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground.\\r\\n\\r\\n“We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”\\r\\n\\r\\n<strong>Key battle – Tom Farrell vs Tommaso Benvenuti</strong>\\r\\n\\r\\nBoth men were picked in the wider Guinness Six Nations this year for their respective countries.\\r\\n\\r\\nBut Benvenuti made just one appearance off the bench for Italy while Farrell missed out altogether for Ireland.\\r\\n\\r\\nSo both will be keen to show their international coaches what they missed out on.\\r\\n\\r\\nThe two centres will be looking to exploit space and carry the fight in midfield as the Guinness PRO14 resumes.\\r\\n\\r\\n<strong>Key fact </strong>Connacht’s last four matches in the Guinness PRO14 have all been won by the home side on the day whilst their only defeat at The Sportsground in any competition since September was 24-31 to Munster in January.\\r\\n\\r\\n<strong>Did you know? </strong>The Italians have won only once against an Irish opponent since April 2016, 17-15 against Leinster at the RDS Arena in round 20 last year.\\r\\n\\r\\n<strong>Connacht:</strong> Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (c).\\r\\n\\r\\n<strong>Replacements:</strong> Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.\\r\\n\\r\\n<strong>Benetton:</strong> Luca Sperandio, Ratuva Tavuyara, Tommaso Benvenuti, Alberto Sgarbi (c), Monty Ioane, Ian McKinley (c), Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Alessandro Zanni, Irné Herbst, Marco Riccioni, Hame Faiva, Nicola Quaglio.\\r\\n\\r\\n<strong>Substitutes:</strong> Tomas Baravalle, Derrick Appiah, Tiziano Pasquali, Marco Barbini, Robert Barbieri, Giorgio Bronzini, Antonio Rizzi, Tommaso Iannone\\r\\n\\r\\n<strong>At:</strong> The Sportsground, Galway, 7.35pm.\\r\\n\\r\\n<strong>Referee:</strong> Mike Adamson\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sam Grove-White, Graeme Ormiston\\r\\n\\r\\n<strong>TMO:</strong> Andrew McMenemy\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"413b63c60ade38680ae1c519b795dc92ce60376e610a8fcf417a851fc16a4ad5\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-rugby-v-benetton/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht Rugby v Benetton\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21151553/BenettonvConnachtSB192000x1125-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419182\"}],\"publishDate\":\"2019-03-21T15:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e6f59981-265f-30ce-8791-2f2182a3f1c0\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>With just four rounds of the Guinness PRO14 season to go, 11 teams are still fighting to secure seeding and home advantage for the Final Series – including Ospreys.</p> \\n  <p>The Welsh outfit are still in with a shout of making it out of Conference A but will have to be near-perfect if they want to make it through.</p> \\n  <p>But Allen Clarke’s men know what they need to do, and it begins with a win in their Round 18 match at home to Dragons.</p> \\n  <p><img class=\\\"alignnone size-full wp-image-70769\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800.jpg\\\" alt=\\\"\\\" width=\\\"800\\\" height=\\\"450\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800.jpg 800w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141342/Ospreys_Embedded-Website_FighttotheFinal_800-768x432.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\"></p> \\n  <p>Clarke’s side find themselves eight points adrift of Cardiff Blues, despite having one less&nbsp;win, due to the team from the Welsh&nbsp;capital’s ability to pick up those crucial bonus points.</p> \\n  <p>The two sides face off in the final round of action, with the pair and Irish side Connacht likely to be fighting it out for the crucial third qualification spot in their division.</p> \\n  <p><strong>What does their remaining schedule look like?</strong></p> \\n  <p>If Ospreys could choose who to face going into the final four weekends of action, it would not be far off the teams they will face – and they will hope to get 20 points from the 20 available.</p> \\n  <p>Round 18’s fixture against Conference B’s bottom side Scarlets could yield a win before they make a trip to South Africa.</p> \\n  <p>A win over Toyota Cheetahs in Round 19 would go a long way to prevent any chance of them dropping down Conference A, as a win would extend the gap between the two sides.</p> \\n  <p>The final two rounds will be all about grinding out the necessary wins – particularly on the final weekend, with a trip to the Welsh capital against Cardiff Blues on the agenda.</p> \\n  <p><strong>Ospreys run-in:</strong></p> \\n  <p><strong>R18: Dragons (H)</strong> Saturday, March 23, 15:00</p> \\n  <p><strong>R19: Toyota Cheetahs (A)</strong> Saturday, April 6, 16:30</p> \\n  <p><strong>R20: Isuzu Southern Kings (A)</strong> Friday, April 12, 19:35</p> \\n  <p><strong>R21: Cardiff Blues (A)</strong> Saturday, April 27, 17:15</p> \\n  <p><strong>Who are going to be the difference-makers if Ospreys can reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>Justin Tipuric is now in his 10th season with the Ospreys and his influence from the back row could be an integral part of any charge into the knock-out rounds.</p> \\n  <p>He has been in stellar form in his club jersey this term, scoring four tries in nine Guinness PRO14 starts in 2018-19.</p> \\n  <p><img class=\\\"size-full wp-image-70772\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705.jpg\\\" alt=\\\"\\\" width=\\\"800\\\" height=\\\"552\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705.jpg 800w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705-300x207.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142422/inpho_01433705-768x530.jpg 768w\\\" sizes=\\\"(max-width: 800px) 100vw, 800px\\\"></p> \\n  <p>Once he returns from Wales duty, the Ospreys will look to him to be one of the main men as they hunt down as many points as possible.</p> \\n  <p>Owen Watkin could be crucial in the backline as he looks to come back into the Ospreys fold having last featured in the Guinness PRO14 in December.</p> \\n  <p>The inside centre has been dangerous in his appearances for Wales this spring and had impressed for his club prior to the turn of the year, tackling hard and carrying with purpose.</p> \\n  <p>There are a host of experienced internationals the Ospreys can hope to fall back on to carry them to the end of the season – with any of George North, Alun Wyn Jones and Dan Lydiate able to step up to inspire a victory against any opponent.</p> \\n  <p><strong>What’s the ‘must-win’ game for the Ospreys?</strong></p> \\n  <p>The Ospreys’ final-round match-up with Cardiff Blues may be the one to decide which team makes it into the Finals Series.</p> \\n  <p>It could be a straight shoot-out between the two as they both push for a berth in the knock-out rounds.</p> \\n  <p>Ospreys will be hoping they will know what is needed on the final weekend of action thanks to a game in the preceding earlier round.</p> \\n  <p>Their requirements may well be decided in Round 20 when the Blues and fellow Finals Series rivals Connacht do battle at the Sportsground.</p> \\n  <p><strong>Can Ospreys go all the way if they reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>As the second-most successful team in the competition’s history, the Ospreys definitely have the pedigree to make it to the competition’s climax.</p> \\n  <p>Their four wins is only bettered by Leinster, but they last lifted the trophy at the end of the 2011-12 season.</p> \\n  <p>They undoubted have the quality in their squad, with the likes of Lydiate, North and Jones all veterans with international calibre, but their patchy form up until now&nbsp;means they will be underdogs to make it through.</p> \\n  <p>One thing worth remembering is that the Ospreys have never lost a final when they have made it there – with four wins from their four finals appearances.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/can-the-ospreys-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"30815dfebf3d8e1902483be0b0fea91b5f4433b7224d40fb4915823b72ae970e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/can-the-ospreys-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Can the Ospreys reach the Guinness PRO14 Final? Here's what they need to do\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21142334/inpho_01460391.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-21T14:25:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8ed452d3-51e7-3568-a3ab-f5dfc5e4f621\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Defending champions Leinster face a serious test of their Guinness PRO14 credentials when they travel to face Edinburgh at BT Murrayfield on Friday evening.\\r\\n\\r\\nWith all to play for and both sides welcoming back Guinness Six Nations talent, the stage is very much set for a clash to remember in the Scottish capital.\\r\\n\\r\\n<strong>What’s at stake? </strong>\\r\\n\\r\\nFifth in Conference B heading into the Friday night showdown, Edinburgh are aiming to regain momentum ahead of a late charge for the play-offs.\\r\\n\\r\\nHaving tasted victory three times on the trot over the Christmas and New Year period, the Edinburgh have won just one in four since, most recently losing to the ever-improving Benetton.\\r\\n\\r\\nVisitors Leinster, meanwhile, are sitting pretty at the top of the Conference B table, with Leo Cullen’s side a whopping 22 points clear of closest challengers Benetton.\\r\\n\\r\\nWith a play-off berth already secured, they'll be looking to quickly hit their stride after a short break from league action.\\r\\n\\r\\n<strong>Team news (Edinburgh Rugby)</strong>\\r\\n\\r\\nScotland international back-row John Barclay will make his long-awaited Edinburgh debut in Friday's encounter.\\r\\n\\r\\nThe flanker is named in a starting XV that features ten Scottish internationalists – four of whom started in last weekend’s remarkable 38-38 Calcutta Cup draw at Twickenham.\\r\\n\\r\\nDarcy Graham, Hamish Watson, Ben Toolis and WP Nel all start in a strong home lineup.\\r\\n\\r\\n<strong>Team news (Leinster Rugby) </strong>\\r\\n\\r\\nThere is a welcome return to competitive action for a number of players that have been out with injury for the last few months as Leinster look to get back up and running in the Guinness PRO14.\\r\\n\\r\\nLuke McGrath is back from a knee injury to take his place at scrum-half, while Ireland hooker Seán Cronin starts in the pack.\\r\\n\\r\\nCaptain Rhys Ruddock is joined in the back row by Dan Leavy who has recovered from a calf injury ahead of what could be an intriguing battle of the breakdown against the likes of Barclay and Hamish Watson.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Edinburgh Rugby head coach Richard Cockerill said: \\\"</strong>We need to be as strong as we can be because we’ve had some poor results where we’ve slipped up where we shouldn’t have.\\r\\n\\r\\n\\\"That’s put us in a situation where, with four league games to go, we’re probably going to have to win all of them if we want to qualify for the play-offs.\\r\\n\\r\\n\\\"There’s been a lot of disruption over the last two months because of the Six Nations, but it is now back to the bread and butter of the league and making sure we get it right tomorrow night.\\\"\\r\\n\\r\\n<strong>Leinster Rugby senior coach Stuart Lancaster: </strong>“The last two weeks were the calm before the storm. We’ve got a massive game on Friday night against Edinburgh who are fighting hard to get into a playoff spot.\\r\\n\\r\\n\\\"We’ve got the re-integration of the Ireland players coming back in this week alongside running a team to play Edinburgh.\\r\\n\\r\\n\\\"With the combination of 45/50-odd players fit and available for selection, we need to build a team that’s got cohesion and confidence and belief going into the Ulster game.\\\"\\r\\n\\r\\n<strong>Key battle Hamish Watson  v Dan Leavy</strong>\\r\\n\\r\\nTwo international class No.7s are primed to go head-to-head on Friday evening as Hamish Watson does battle with fit-again Irishman Dan Leavy.\\r\\n\\r\\nA standout for Scotland at the end of the Six Nations due to his ball-carrying and dynamism, the return of Watson beefs up an impressive Edinburgh back-row also containing Bill Mata.\\r\\n\\r\\nHis fight for supremacy with star Ireland international Leavy promises to excite and thrill - but it will also go a long way to deciding the outcome of Friday's fixture.\\r\\n\\r\\n<strong>Key fact </strong>\\r\\n\\r\\nEdinburgh Rugby have won just one of their last four Guinness PRO14 fixtures: 34-17 at home to Dragons in Round 15.\\r\\n\\r\\n<strong>Did you know? </strong>\\r\\n\\r\\nLeinster’s only Championship victory in Scotland since May 2015 came on their visit to BT Murrayfield in May 2016.\\r\\n\\r\\n<strong>Edinburgh Rugby</strong>: Dougie Fife, Darcy Graham, James Johnstone, Matt Scott, Duhan van der Merwe, Jaco van der Walt, Henry Pyrgos (c), Pierre Schoeman, Ross Ford, WP Nel, Fraser McKenzie, Ben Toolis, John Barclay, Hamish Watson, Viliame Mata\\r\\n\\r\\n<strong>Replacements: </strong>Cameron Fenton, Allan Dell, Simon Berghan, Callum Hunter-Hill, Magnus Bradbury, Charlie Shiel, Simon Hickey, Chris Dean\\r\\n\\r\\n<strong>Leinster Rugby: </strong>Ciarán Frawley, Fergus McFadden, Noel Reid, Joe Tomane, Barry Daly, Ross Byrne, Luke McGrath, Ed Byrne, Seán Cronin, Michael Bent, Josh Murphy, Mick Kearney, Rhys Ruddock (c), Dan Leavy, Max Deegan\\r\\n\\r\\n<strong>Replacements: </strong>Bryan Byrne, Jack McGrath, Andrew Porter, Jack Dunne, Oisín Dowling, Nick McCarthy, Jimmy O’Brien, Conor O’Brien\\r\\n\\r\\n<strong>TV: </strong>At BT Murrayfield, Edinburgh, 19.35pm. Live on Premier Sports and Eir Sport\\r\\n\\r\\n<strong>Referee:</strong> Ben Whitehouse (WRU)\\r\\n\\r\\n<strong>Assistant Referees: </strong>Wayne Davies, Rhys Jones (both WRU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-edinburgh-rugby-v-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"3afb41fd66a52e44efb72f8ce938f92ffbd69b9b248668f767d235ee6f905c6a\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-edinburgh-rugby-v-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Edinburgh Rugby v Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21141901/Hamish-Watson-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419183\"}],\"publishDate\":\"2019-03-21T14:23:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"5783db17-9b6b-32aa-a5a9-c0d42c1d99ad\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>John Mulvihill has called upon his entire Wales contingent for Friday’s Guinness PRO14 derby between Cardiff Blues and Scarlets (7.35pm).</p> \\n  <p>Following their Grand Slam heroics Josh Navidi and Gareth Anscombe go straight into the starting line-up, with Dillon Lewis named on the bench.</p> \\n  <p>Fellow Six Nations squad members Seb Davies, Josh Turnbull, Tomos Williams and Jarrod Evans are also all included in the match-day 23 for the Cardiff Arms Park encounter.</p> \\n  <p>It is a significant boost to the Blues, who are battling to reach the PRO14 play-offs and qualification for the Heineken Champions Cup.</p> \\n  <p>Mulvihill said: “It’s great to be able to include all of our Wales internationals following a hugely successful Six Nations.</p> \\n  <p>“They will have no problem getting themselves up for a Welsh derby and we are all hugely motivated for this crucial fixture.</p> \\n  <p>“The Scarlets traditionally, are a team who really like to move the ball and will test us across the park so we will have to be at our defensive best to negate their attacking threats.</p> \\n  <p>“They have proven in the past they are a champion team and they have their own top three aspirations so we know they will be desperate to win this contest.</p> \\n  <p>“But we set ourselves the target of being the number one team in Wales at the start of the season and a victory this weekend will take us one step closer to that goal and that top three place.”</p> \\n  <p>Wales’ Capital Region raced to a stunning 34-5 bonus-point victory over the Scarlets in December and are targeting a memorable double to remain in the play-off hunt.</p> \\n  <p>With the euphoria of a Welsh Grand Slam and so much at stake in the PRO14, a bumper crowd is expected at the Arms Park.</p> \\n  <p>Mulvihill added: “There’s going to be a massive crowd and at the start of the week we only got a few thousand left to sell out Cardiff Arms Park.</p> \\n  <p>“It’s going to be an absolutely cracking game and a great advert for regional rugby.”</p> \\n  <p>Cardiff Blues : G Anscombe; O Lane, R Lee-Lo, W Halaholo, A Summerhill; J Evans, T Williams; R Gill, K Dacey (capt), D Arhip, J Turnbull, R Thornton, J Navidi, O Robinson, N Williams.</p> \\n  <p>Replacements: E Lewis, R Carre, D Lewis, S Davies, S Lewis-Hughes, L Williams, H Millard, M Morgan.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/mulvihill-turns-to-six-nations-stars-for-scarlets-clash/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"acdfb883e67a2516ddc5b47686d82d8e0ba6bac1c98fa4ae5014f32f1307fdd9\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/mulvihill-turns-to-six-nations-stars-for-scarlets-clash/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Mulvihill turns to Six Nations stars for Scarlets clash\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21120830/AnscombeBlues19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-21T12:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"850f749a-e274-3a81-81a5-871cf6f9acfb\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>James Davies makes his return from injury as the Scarlets resume their hunt for a Guinness PRO14 play-off spot against Cardiff Blues at Cardiff Arms Park on Friday evening (7.35pm).</p> \\n  <p>The Wales international flanker has been sidelined with a foot issue since the defeat to the Blues at Parc y Scarlets at the end of December.</p> \\n  <p>He is named as one of five changes to the Scarlets’ side that claimed a hard-earned 10-6 win against Munster last time out.</p> \\n  <p>Head coach Wayne Pivac includes eight of Wales’ Six Nations-winning squad in his match-day 23.</p> \\n  <p>Leigh Halfpenny, Rhys Patchell, Wyn Jones and Samson Lee are named in the starting XV, with Rob Evans, Gareth Davies, Ken Owens and Steff Evans among the replacements.</p> \\n  <p>Patchell replaces Dan Jones as the only change behind the scrum, while up front, tight-head prop Lee and lock Steve Cummins return. James Davies replaces Dan Davis in the back row, while Marc Jones comes in at hooker for the injured Ryan Elias.</p> \\n  <p>Elias has a shoulder problem and is likely to be sidelined for up to six weeks, as is second row Jake Ball, who has a foot injury.</p> \\n  <p>Successive wins over the Cheetahs and Munster have kept Pivac’s side firmly in the play-off race with only five points separating the Scarlets in fourth from Benetton in second.</p> \\n  <p>Looking forward to Friday’s clash, Pivac said: “It stacks up for a massive derby.</p> \\n  <p>“The team that gets success goes a long way towards getting a place in the play-offs in either conference so there is a lot to play for and interesting with both squads welcoming back players from the Six Nations. It is going to be a tight affair.</p> \\n  <p>“We looked at the last couple of games as ‘must win’ because the position we found ourselves in. We dubbed the Munster as cup final for that group without the internationals and were delighted with the result.</p> \\n  <p>“We are seeing this game as one of two Test matches, Blues and Edinburgh, because all three teams are in the fight for the play-offs.</p> \\n  <p>“They (Blues) are in the same position as us so they will be desperate. They are playing at home, they had success against us last time so they will be reasonably confident.</p> \\n  <p>“It is going to be a big challenge, but we have won our last couple of matches match and if we can get another win it sets us up nicely.”</p> \\n  <p>Scarlets (v Cardiff Blues, Cardiff Arms Park; Friday, 7.35pm)</p> \\n  <p>Leigh Halfpenny; Johnny McNicholl, Kieron Fonotia (capt), Paul Asquith, Ioan Nicholas; Rhys Patchell, Kieran Hardy; Wyn Jones, Marc Jones, Samson Lee, Lewis Rawlins, Steve Cummins, Josh Macleod, James Davies, Uzair Cassiem.</p> \\n  <p>Replacements: Ken Owens, Rob Evans, Werner Kruger, Josh Helps, Will Boyde, Gareth Davies, Dan Jones, Steff Evans.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/james-davies-returns-for-scarlets-arms-park-clash/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"4b6f9b096fb0b2c368bfaa4ae10c6bde2e0b06b07c09f41a324a8f427771e20a\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/james-davies-returns-for-scarlets-arms-park-clash/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"James Davies returns for Scarlets' Arms Park clash\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/25134530/JamesDaviesScavBen18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-21T12:04:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6ab28b3c-3ce6-3d4a-a79b-56a5cdd3d6de\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Leinster Rugby team to take in Edinburgh in the Guinness PRO14 tomorrow evening in BT Murrayfield has been named by Head Coach Leo Cullen (Kick Off: 7.35pm – live on eir Sport).</p> \\n  <p>There is a welcome return to competitive action for a number of players that have been out with injury for the last few months as Leinster look to get back up and running in the Guinness PRO14 after a few weeks off.</p> \\n  <p>Ciarán Frawley comes in at full back for his first start in the number 15 jersey, with Fergus McFadden on the right wing and Barry Daly on the left.</p> \\n  <p>In the centre Joe Tomane makes his first start since injuring his hamstring in November against the Southern Kings. The 17 times capped Australian is joined in the centre by Noel Reid.</p> \\n  <p>Luke McGrath is back from a knee injury to take his place at scrumhalf with Ross Byrne outside him at number ten.</p> \\n  <p>In the pack the front row sees Ed Byrne, Seán Cronin and Michael Bent selected with Josh Murphy and Mick Kearney in the second row.</p> \\n  <p>Captain Rhys Ruddock is joined in the back row by Dan Leavy who has recovered from a calf injury and by Max Deegan to complete the Leinster XV.</p> \\n  <p>On the bench Nick McCarthy is the final player to make a welcome return from injury with the 23 year old selected for the first time since November.</p> \\n  <p><strong>Leinster Rugby (caps in brackets):</strong></p> \\n  <p>15. Ciarán Frawley (10)<br> 14. Fergus McFadden (175)<br> 13. Noel Reid (117)<br> 12. Joe Tomane (9)<br> 11. Barry Daly (33)<br> 10. Ross Byrne (65)<br> 9. Luke McGrath (106)</p> \\n  <p>1. Ed Byrne (38)<br> 2. Seán Cronin (166)<br> 3. Michael Bent (118)<br> 4. Josh Murphy (18)<br> 5. Mick Kearney (48)<br> 6. Rhys Ruddock (156) CAPTAIN<br> 7. Dan Leavy (61)<br> 8. Max Deegan (38)</p> \\n  <p>16. Bryan Byrne (37)<br> 17. Jack McGrath (141)<br> 18. Andrew Porter (48)<br> 19. Jack Dunne (2)<br> 20. Oisín Dowling (2)<br> 21. Nick McCarthy (32)<br> 22. Jimmy O’Brien (5)<br> 23. Conor O’Brien (15)</p> \\n  <p>Referee: Ben Whitehouse (Wales)</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/leinster-rugby-team-to-face-edinburgh-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"108c72731621b9321cf2139626a40bee490b632cd4a1758177af97591b04f9cc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/leinster-rugby-team-to-face-edinburgh-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leinster Rugby team to face Edinburgh Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21115421/JoeTomane18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-21T12:03:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"a769c063-7418-34a5-8c63-1804fb3f98ba\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Connacht have been boosted by the return of Jack Carty, Kieran Marmion and Ultan Dillane for the Guinness PRO14 clash with Benetton at the Sportsground on Friday night (Kick Off 7:35pm). The return of the trio is a welcome boost to Connacht’s match day squad as they face an in-form Benetton side who have already registered ten wins this season and sit in 2nd place in Conference B of the PRO14.</p> \\n  <p>Carty and Marmion will start on the bench, as Caolin Blade and Kyle Godwin are named as the starting half-back partnership.</p> \\n  <p>Peter Robb and Tom Farrell start again in the Connacht midfield following the bonus point win over Ospreys in the last round. Meanwhile in the back three, Tiernan O’Halloran is named at full-back with Matt Healy and Darragh Leader on the wings.</p> \\n  <p>Dillane’s inclusion sees him named in a second row alongside James Cannon, with Gavin Thornbury returning from injury to take his place on the bench.</p> \\n  <p>In the front row, props Denis Buckley and Finlay Bealham are selected with Shane Delahunt at hooker.</p> \\n  <p>The back row has a familiar look to it with captain Jarrad Butler at number 8 and Eoin McKeon and Colby Fainga’a at blindside and openside respectively.</p> \\n  <p>Ahead of the game, Connacht Head Coach Andy Friend says his side are expecting a huge challenge from an in-form Benetton side. “They have been great all year,” said Friend. “I’m not surprised they’re sitting in second spot. They’re playing a physical yet attractive brand of rugby. They’ve got a lot of quality players, so we are preparing for a top side coming to the Sportsground. We are in a similar situation, they are sitting second in their conference and we are third in ours so both teams will be looking for a win.”</p> \\n  <p>With four rounds of games left in the PRO14, Friend is satisfied that Connacht’s destiny is in their own hands. “We said at the start of the year we wanted to be there at the business end and we’re there or thereabouts, but we need to keep winning to make sure we control our destiny. If we keep winning we stay in control. If we don’t, then we have to start looking at points and seeing where we can scrounge some. At this stage it’s just about the win”.</p> \\n  <p>#CONvBEN<br> Kick-off 7:35pm:</p> \\n  <p>(15-9) Tiernan O’Halloran, Darragh Leader, Tom Farrell, Peter Robb, Matt Healy, Kyle Godwin, Caolin Blade, (1-8) Denis Buckley, Shane Delahunt, Finlay Bealham, Ultan Dillane, James Cannon, Eoin McKeon, Colby Fainga’a, Jarrad Butler (Capt).</p> \\n  <p>Replacements (16-23): Tom McCartney, Peter McCabe, Conor Carey, Gavin Thornbury, Eoghan Masterson, Kieran Marmion, Jack Carty, Stephen Fitzgerald.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/connacht-boosted-by-return-of-internationals-for-clash-with-benetton-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"6b94737d35583973c82f11121d404fb6c11cd8eb31ada32f1327d3308eb3f1c8\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/connacht-boosted-by-return-of-internationals-for-clash-with-benetton-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Connacht boosted by return of internationals for clash with Benetton Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21111923/UltanDillaneConnachtvMunster18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3400\"}],\"publishDate\":\"2019-03-21T12:02:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ba497102-2ad9-3777-9e08-bcb834e1c668\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Scotland international back-row John Barclay will make his long-awaited Edinburgh debut in tomorrow night’s Guinness PRO14 showdown with reigning champions Leinster at BT Murrayfield (Friday 22 March, kick-off 7.35pm).</p> \\n  <p>The 71-times capped flanker is named in a starting XV that features 10 internationalists – four of whom started in last weekend’s remarkable 38-38 Calcutta Cup draw at Twickenham. Scotland stars Darcy Graham, Hamish Watson, Ben Toolis and WP Nel all return for tomorrow night’s crunch match.</p> \\n  <p>The team selection also sees Scotland centre Matt Scott return to action for the first time in over five months following a head injury sustained against RC Toulon back in October.</p> \\n  <p>Ahead of the fixture, Head Coach Richard Cockerill, said: “We need to be as strong as we can be because we’ve had some poor results where we’ve slipped up where we shouldn’t have.</p> \\n  <p>“That’s put us in a situation where, with four league games to go, we’re probably going to have to win all of them if we want to qualify for the play-offs.</p> \\n  <p>“There’s been a lot of disruption over the last two months because of the Six Nations, but it is now back to the bread and butter of the league and making sure we get it right tomorrow night.”</p> \\n  <p>“It’ll be good to have John [Barclay] back on the field and he can share his experience with the rest of the team.</p> \\n  <p>“He’s a fantastic player and his leadership around the group and his knowledge of the game is very, very good, and that could well be important for us in the run-in.”</p> \\n  <p>A revamped back-three sees Graham return to club action following last weekend’s two-try performance against England in the Guinness Six Nations.</p> \\n  <p>The winger is joined by fullback Dougie Fife and wing Duhan van der Merwe, with both players returning from injuries that kept them out of the defeat to Benetton two weeks ago.</p> \\n  <p>Scott – who makes his seventh start of the season – is partnered by James Johnstone in midfield, with the latter scoring his seventh try of the season against Benetton a fortnight ago.</p> \\n  <p>Experienced scrum-half Henry Pyrgos captains the side, with Jaco van der Walt at stand-off.</p> \\n  <p>Pierre Schoeman is named at loosehead prop and packs down alongside Scotland pairing Ross Ford and Nel, while Toolis is partnered by fellow club centurion Fraser McKenzie in the second-row.</p> \\n  <p>Barclay makes his debut at blindside flanker with Scotland star Watson at openside, while Fijian international No. 8 Viliame Mata returns to the No. 8 jersey.</p> \\n  <p><strong>Edinburgh team to face Leinster at BT Murrayfield in the Guinness PRO14 on Friday 22 March (kick-off 7.35pm) – live on Premier Sports</strong></p> \\n  <p>15. Dougie Fife (122)<br> 14. Darcy Graham (19)<br> 13. James Johnstone (38)<br> 12. Matt Scott (80)<br> 11. Duhan van der Merwe (36)<br> 10. Jaco van der Walt (35)<br> 9. Henry Pyrgos (19) CAPTAIN</p> \\n  <p>1. Pierre Schoeman (18)<br> 2. Ross Ford (194)<br> 3. WP Nel (129)<br> 4. Fraser McKenzie (112)<br> 5. Ben Toolis (105)<br> 6. John Barclay*<br> 7. Hamish Watson (95)<br> 8. Viliame Mata (55)</p> \\n  <p><strong>Replacements:</strong> 16. Cameron Fenton (11); 17. Allan Dell (57); 18. Simon Berghan (62); 19. Callum Hunter-Hill (15); 20. Magnus Bradbury (60); 21. Charlie Shiel (2); 22. Simon Hickey (16); 23. Chris Dean (83)</p> \\n  <p>Unavailable due to injury: Lewis Carmichael; David Cherry; Luke Hamilton; Blair Kinghorn</p> \\n  <p>Edinburgh competitive debut*</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/scotland-star-barclay-to-make-debut-against-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c16ac64c05445fb35360f6f0c3142bc961989dceb5e9e969f0571788bfb99921\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/scotland-star-barclay-to-make-debut-against-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Scotland star Barclay to make debut against Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21104632/JohnBarclayScotland18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-21T12:01:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ecd7cfd9-5840-300f-9c82-d6c957410915\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>After two rest weekends observed for the Guinness Six Nations, Benetton Rugby will fly to Ireland for the eighteenth round of Guinness PRO14. The green-and-whites travel to Galway, where they will face Connacht Rugby on Friday evening at 7:35pm (8:35pm Italian time) .</p> \\n  <p>The match will be officiated by Scottish referee Mike Adamson, his assistants Sam Grove-White, Graeme Ormiston and broadcast live on DAZN.</p> \\n  <p>Full back will be Luca Sperandio, on the wings Ratuva Tavuyara and Monty Ioane. Tommaso Benvenuti and captain Alberto Sgarbi will be the centres.</p> \\n  <p>The half backs are Dewaldt Duvenage at scrum half and captain Ian McKinley at fly-half.</p> \\n  <p>The front row will consist of Nicola Quaglio, Hame Faiva and Marco Riccioni.</p> \\n  <p>Locks will be Irné Herbst and Alessandro Zanni. Finally, the back row sees Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi completing the XV chosen by Crowley.</p> \\n  <p><strong>Benetton Rugby:</strong></p> \\n  <p>15 Luca Sperandio, 14 Ratuva Tavuyara, 13 Tommaso Benvenuti, 12 Alberto Sgarbi (C), 11 Monty Ioane, 10 Ian McKinley (C), 9 Dewaldt Duvenage, 8 Toa Halafihi, 7 Giovanni Pettinelli, 6 Marco Lazzaroni, 5 Alessandro Zanni, 4 Irné Herbst, 3 Marco Riccioni, 2 Hame Faiva, 1 Nicola Quaglio.</p> \\n  <p><strong>Substitutes:</strong> 16 Tomas Baravalle, 17 Derrick Appiah, 18 Tiziano Pasquali, 19 Marco Barbini, 20 Robert Barbieri, 21 Giorgio Bronzini, 22 Antonio Rizzi, 23 Tommaso Iannone</p> \\n  <p><strong>Head Coach:</strong> Kieran Crowley</p> \\n  <p><strong>Unavailable:</strong> Ignacio Brex, Dean Budd, Marco Fuser, Ornel Gega, Engjel Makelara, Nasi Manu, Federico Zani</p> \\n  <p><strong>Referee:</strong> Mike Adamson (SRU)<br> <strong>Assistants:</strong> Sam Grove-White (SRU), Graeme Ormiston (SRU)<br> <strong>TMO:</strong> Andrew McMenemy (SRU)</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/benetton-rugby-team-to-face-connacht-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"f9a397d9f7d8f861a7d4cfc10980cdb61709931eb60bd223346b093534aa7e6b\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/benetton-rugby-team-to-face-connacht-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton Rugby team to face Connacht Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21092943/MckinleyBenetton19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1850\"}],\"publishDate\":\"2019-03-21T12:00:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e911db70-8f5d-3a63-be99-4dd5079c1bc8\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Ospreys Rugby are delighted to announce that centre, Cory Allen, is the second player to commit to the region is as many days.</p> \\n  <p>Allen, 26-years old, has been in impressive form this season, his second with the Ospreys, scoring five tries in 19 games so far this campaign.</p> \\n  <p>The positive news comes just 24 hours after this season’s top try scorer, Luke Morgan, also confirmed a new deal to stay at the Liberty Stadium next year and beyond.</p> \\n  <p>Speaking about his new deal, Allen admitted he was delighted to be staying at the Ospreys.</p> \\n  <p>“Yes, I am” he said</p> \\n  <p>“It’s been a tough couple of months for a few of the boys but ,from the start of the season, I spoke to Clarkie, I spoke to the coaches, and this is where I want to be. I’m really thrilled now to get it signed and get it all sorted.</p> \\n  <p>“It’s been a big year for me, the most games I’ve played in a season, and that’s allowed me to keep doing the little things right, keep working on my game and keep developing. Jockey (Matt Sherratt) has been really good at helping me keep on top of that.</p> \\n  <p>“There are four big games left for us now, we are still in the hunt, and we want to go out and secure that third spot.”</p> \\n  <p>Like his former Wales Sevens colleague Morgan, the Cardiff born centre has agreed a new two-year deal with his current contract due to expire at the end of the season.</p> \\n  <p>Capped by Wales at U18 and U20 level, the former Cardiff Blues man made a huge impression on the sevens circuit and claimed a HSBC Sevens World Series Fans’ Favourite Try of the Year award for his solo effort in the final of the Hong Kong Sevens against Fiji.</p> \\n  <p>Allen has six full Wales caps, the latest coming on the unbeaten tour of the Pacific Nations two summers ago where he worked closely with Matt Sherratt.</p> \\n  <p>Having linked up with the Ospreys for the first time off the back of that tour, he won the Guinness man of the match award on his debut at the Liberty on the opening day of the 17/18 season, a 22-13 win over Zebre. He has six tries from 28 appearances to date.</p> \\n  <p>Ospreys Head Coach, Allen Clarke, welcomed the news, saying:</p> \\n  <p>“Cory has been one of our most consistent performers this season so this new contract is richly deserved.</p> \\n  <p>“He’s had a good run of form and we’ve seen real growth in him as a person, on and off the field.</p> \\n  <p>“It’s clear that there is more to come from Cory, who we believe has the potential to be a really big player for us in the future so this is fantastic news for Ospreys Rugby.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/allen-is-the-second-to-commit-to-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c279b97a0a2b5e8f7275db55670f3b4c00435700107a427cfea22f9404c486a8\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/allen-is-the-second-to-commit-to-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Allen is the second to commit to Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21091301/CoryAllen19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-21T09:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"3267bce1-9514-3289-b9dc-f82073f48edc\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Willis Halaholo has pledged his future to Cardiff Blues by signing a long-term contract to remain at Cardiff Arms Park.</p> \\n  <p>The exciting centre has become a crowd favourite since arriving in the Welsh capital in 2016, with his electric footwork causing chaos throughout the Guinness PRO14.</p> \\n  <p>He made a try-scoring debut against Benetton Rugby in 2016 and has gone on to make 57 appearances in total, scoring 13 tries in the process.</p> \\n  <p>The former Super Rugby winner qualifies for Wales under residency next season and has reaffirmed his commitment to the Blues with this new deal.</p> \\n  <p>He said: “I’m really happy to sign a new contract at Cardiff Blues. The welcome I have received since I arrived here has been awesome and my family absolutely love it.</p> \\n  <p>“This has definitely become our home and I’m really excited about what the future holds for Cardiff Blues.</p> \\n  <p>“We showed our potential last season by winning the European Challenge Cup and with so many exciting young players we can continue building and improving.</p> \\n  <p>“We have a massive few weeks coming up and it would be an awesome achievement to make the Guinness PRO14 play-offs. That is my sole focus right now but looking further ahead we have a massive amount of potential and I want to be part of that.”</p> \\n  <p>The 28-year-old, who grew up in Auckland and represented Tonga at U20 level, has formed a formidable partnership with former Hurricanes teammate Rey Lee-Lo in Cardiff and compliments a hugely competitive midfield.</p> \\n  <p>Cardiff Blues head coach John Mulvihill was delighted to retain the hot-stepping centre’s services and believes he can get better and better at the Arms Park.</p> \\n  <p>He added: “Willis is such an exciting player, who has shown what he is capable of with big moments in big matches.</p> \\n  <p>“He qualifies for Wales in the autumn and is looking forward to a massive off-season to take himself to the next level and put himself in the frame for selection.</p> \\n  <p>“He has become a really important member of the group and compliments the young players coming through our system and thrives upon that competition.</p> \\n  <p>“Both Willis and his family are very happy and settled in Cardiff and we are delighted that he has decided to remain at the Arms Park.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/21/halaholo-commits-long-term-future-to-cardiff-blues/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"18c9b3426764add1bf3c71cc9c32245900126401e818d8b7faa4c92d4d1c9fcc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/21/halaholo-commits-long-term-future-to-cardiff-blues/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Halaholo commits long-term future to Cardiff Blues\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/21090914/WillisHalaholo19.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-21T09:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ce111f71-09fb-315f-bc21-2effc1a5db18\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Delirium was the overwhelming reaction from Cardiff Blues fans this week after it was announced that Wales international Josh Adams will be joining the club next season.</p> \\n  <p>The 23-year-old winger scored three tries for Warren Gatland’s side in their Grand Slam campaign as they completed the clean sweep in the 2019 Guinness Six Nations.</p> \\n  <p>He started all five games in the Championship and was a constant menace to opposition defences, resulting in him being nominated for the Guinness Six Nations Player of the Championship.</p> \\n  <p>And he will now return home at the end of this season, moving across the bridge from Worcester Warriors to the BT Sport Cardiff Arms Park outfit to continue his international career.</p> \\n  <p>Under the WRU’s 60-cap rule, Adams – who has 11 caps to his name – needed to be playing in Wales next season to stay on the Test scene.</p> \\n  <p>With that situation now resolved, Blues fans can look forward to seeing the former Scarlets man light up the Guinness PRO14 with his electrifying pace and powerful physique.</p> \\n  <p>He will link up with a backline that could potentially be the best around and ahead of his arrival, we’ve had a look at how John Mulvihill’s vision is shaping up for next season.</p> \\n  <h4>HALF-BACKS</h4> \\n  <p><strong>9. Tomos Williams</strong></p> \\n  <p>Like Adams, Tomos Williams has recently enjoyed his international breakthrough and looks set to be ever-present at scrum-half for both club and country for the considerable future.</p> \\n  <p>While his Guinness Six Nations was hampered by injury, he played a key role in sparking Wales’ stunning comeback from 16-0 behind to beat France in the opening round.</p> \\n  <p>It was his Championship debut for his country in Paris, but he showed his class to score the opening try against Les Bleus after combining with Adams – a partnership that will be reunited at Arms Park.</p> \\n  <p><img class=\\\"alignnone wp-image-68519\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/30121633/TomosWilliams-768x432.jpg 768w\\\" sizes=\\\"(max-width: 650px) 100vw, 650px\\\"></p> \\n  <p><strong>10. Jarrod Evans / Gareth Anscombe </strong></p> \\n  <p>The Blues are blessed with talent at fly-half, with current Welsh No.10 Gareth Anscombe and Jarrod Evans – who has been tipped as a future replacement – both on their books.</p> \\n  <p>Anscombe had his doubters going into the Guinness Six Nations, but he proved them wrong as he delivered a man-of-the-match performance in the crucial victory against Ireland.</p> \\n  <p>He set up the opening try and kicked 20 points to seal the Grand Slam. Meanwhile, at just 22, Evans has already made his international debut and will provide strong competition for Anscombe at Blues.</p> \\n  <h4>CENTRES</h4> \\n  <p><strong>12. Willis Halaholo</strong></p> \\n  <p>An explosive presence in the Cardiff Blues backline, Willis Halaholo has gone from strength to strength since arriving at the club from Super Rugby in October 2016.</p> \\n  <p>The 28-year-old delivered a barnstorming display against Munster at BT Sport Cardiff Arms Park in September – a performance that included two assists and a try of his own against the Irish province.</p> \\n  <p><strong>13. Rey Lee-Lo / Harri Millard</strong></p> \\n  <p>There are options for the Blues at outside centre, with the experience of Samoan Rey Lee-Leo complemented by the youthful energy of Welsh under-20 international Harri Millard.</p> \\n  <p>Millard caught the eye in age-grade rugby and has been picking up plenty of plaudits for his performances at Arms Park thanks to his dynamic displays this season.</p> \\n  <p><img class=\\\"alignnone wp-image-70703\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20165239/ReyLeLoBlues19SB2000-768x432.jpg 768w\\\" sizes=\\\"(max-width: 650px) 100vw, 650px\\\"></p> \\n  <h4><span style=\\\"font-size: 16px;\\\">THE BACK THREE</span></h4> \\n  <p><strong>11. Josh Adams / 14. Owen Lane</strong></p> \\n  <p>What more can you say about Adams? Having been released by Scarlets in 2015, he has since rebuilt his career at Worcester Warriors by terrorising teams in the English Premiership.</p> \\n  <p>He has proved prolific for the club, scoring 34 tries in just 59 appearances, and scooped both the Young Player and Player of the Year Awards at Worcester last season.</p> \\n  <p>With the step up to the international stage also proving no obstacle, expect Adams to continue tearing defences apart in the Guinness PRO14 next season alongside rising star Owen Lane.</p> \\n  <p><strong>15. Matthew Morgan</strong></p> \\n  <p>Affectionately known as ‘Nipper’, Matthew Morgan is another Welsh international amongst the Blues backline – having started against Fiji at the 2015 Rugby World Cup.</p> \\n  <p>While his international career has stalled since then, the 26-year-old has grown into the No.15 role at the Blues and has caused Guinness PRO14 sides plenty of problems with his runs from deep.</p> \\n  <p>Hallam Amos is also rumoured to be joining Blues for next season – and should the Dragons star make the move, he could be the final piece of Mulvihill’s backline jigsaw.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/with-josh-adams-on-board-will-cardiff-blues-have-the-best-backline/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2d6d4de1ba2cb13e8273356dc7b1e38aaf008834fdb19dbc524c76473b0eda92\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/with-josh-adams-on-board-will-cardiff-blues-have-the-best-backline/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"With Josh Adams on board, will Cardiff Blues have the best backline?\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20164546/JoshAdamsAnscombe19SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T16:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"a0126d1f-3578-30d3-829b-0486186c8979\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>With just four rounds remaining in the Guinness PRO14, the race for a place in the Final Series is heating up, with 11 teams still in contention.</p> \\n  <p>Leinster have already wrapped up top spot in Conference B – but everything else is up in the air.</p> \\n  <p>We will look at each team and what they need to do to make it to the knock-out stages and a possible place at Celtic Park in May.</p> \\n  <p><img class=\\\"alignnone wp-image-70686\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-1024x576.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20105731/Cheetahs_Website_FighttotheFinal-1-768x432.jpg 768w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p>To kick things off, we look at the Toyota Cheetahs, currently sixth in Conference A, but still with an outside shout of making the top three.</p> \\n  <p>The South African team, who made the Guinness PRO14 Final Series in their first season in the Championship, currently sit sixth in Conference A, 11 points behind Connacht in third.</p> \\n  <p>That leaves them with a lot of work to do to make it back to the knock-out stages, with arguably only four wins from four giving them any chance.</p> \\n  <p><strong>What does their remaining schedule look like?</strong></p> \\n  <p>In Toyota Cheetahs’ favour is that after this weekend, they play the remainder of their games on home soil.</p> \\n  <p>Before then, they travel to Scotstoun to take on the Glasgow Warriors, a must-win game to have any chance of progression.</p> \\n  <p>The problem for the Cheetahs is that they have won just once outside South Africa this season and that is something they will have to change.</p> \\n  <p>If they can beat the Warriors, they finish the season with home clashes against the Ospreys, Dragons and the Isuzu Southern Kings, so if they are still in contention, there is a path to a strong finish to the campaign.</p> \\n  <p><strong>Toyota Cheetahs run-in:</strong></p> \\n  <p><strong>R18: Glasgow Warriors (A)</strong> Saturday, March 23, 19:45</p> \\n  <p><strong>R19: Ospreys (H)</strong> Saturday, April 6, 16:30</p> \\n  <p><strong>R20: Dragons (H)</strong> Saturday, April 13, 18:35</p> \\n  <p><strong>R21: Isuzu Southern Kings (H)</strong> Saturday, April 27, 16:30</p> \\n  <p><strong>Who are going to be the difference-makers if Toyota Cheetahs can make it back to the Guinness PRO14 Final Series?</strong></p> \\n  <p>The Cheetahs have plenty of explosive weapons, who will have to perform if they are to make it back to the knock-out stages.</p> \\n  <p>Rabz Maxwane is well clear at the top of the try-scorers chart with 13, five more than any other player.</p> \\n  <p><img class=\\\"alignnone wp-image-70687 size-full\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"389\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600.jpg 600w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20110058/RabzMaxwaneSB600-300x195.jpg 300w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p>Elsewhere, Junior Pokomela has been a standout in the pack while Tian Schoeman offers some stability from fly-half.</p> \\n  <p>They are without Ox Nché, however – the promising prop is suspended until the end of the campaign following his dangerous tackle in the clash with Leinster last time out.</p> \\n  <p><strong>What’s the ‘must-win’ game for the Toyota Cheetahs?</strong></p> \\n  <p>At this stage, every game is a must-win game, and it all starts in Glasgow. If the Cheetahs can get a result at Scotstoun, then they do come back into contention somewhat.</p> \\n  <p>That is especially true when you consider how high-scoring games in South Africa tend to be. With the number of tries scored on the high veldt, there is always the chance of picking up some bonus points, so win in Glasgow and there is a chance.</p> \\n  <p><strong>Can Toyota Cheetahs go all the way if they reach the Guinness PRO14 Final Series?</strong></p> \\n  <p>It will be asking a lot of the Cheetahs to go all the way, particularly with their struggles to get wins in Europe so far this season.</p> \\n  <p>If they can make it to the Guinness PRO14 Final Series, they will have to win three successive games in Europe, an away Quarter-final, Semi-final and then the Final in Glasgow.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/can-the-toyota-cheetahs-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"06ea269792a22cf69395fdf32cad80b1995d90114716b4f1be4c82f623e188fb\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/can-the-toyota-cheetahs-reach-the-guinness-pro14-final-heres-what-they-need-to-do/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Can the Toyota Cheetahs reach the Guinness PRO14 Final? Here’s what they need to do\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20104917/ToyotaCheetahsSB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-20T11:03:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"229b0167-0da3-3e31-8049-0a93895a8cbd\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>After a stellar Guinness Six Nations Grand Slam winning campaign, for which he is up for the player of the tournament, Cardiff Blues announced the&nbsp;signing of Wales wing Josh Adams’ yesterday.</p> \\n  <p>Adams has been a hot name in rugby this season since making his international debut in last year’s Six Nations campaign, with his form for club and country attracting plenty of attention in recent months.</p> \\n  <p>Speculation was rife about which region would bring him to Wales from Worcester, Cardiff Blues were the ones to land this marquee signing.</p> \\n  <h2>Here is how it all unfolded on social media…</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Well we can't let <a href=\\\"https://twitter.com/scarlets_rugby?ref_src=twsrc%5Etfw\\\">@scarlets_rugby</a> have all the fun on the contract front….</p> \\n   <p>✍️</p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1108033106320207872?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">The full story as <a href=\\\"https://twitter.com/JoshAdams951?ref_src=twsrc%5Etfw\\\">@JoshAdams951</a> joins <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> ahead of next season <a href=\\\"https://t.co/NPTszDpdDK\\\">https://t.co/NPTszDpdDK</a> <a href=\\\"https://t.co/JJGFa55xXd\\\">pic.twitter.com/JJGFa55xXd</a></p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1108073620654428166?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <h2>How the media reacted…</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Good day for the Welsh regions (they can happen) with Josh Adams signing for Cardiff Blues and Scarlets re-signing Jonathan Davies, Ken Owens and Rob Evans.</p> \\n   <p>— Ben Coles (@bencoles_) <a href=\\\"https://twitter.com/bencoles_/status/1108073837411864576?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Confirmation of Josh Adams' move to Cardiff Blues. A fantastic signing.</p> \\n   <p>— Ross Harries (@rossharries1) <a href=\\\"https://twitter.com/rossharries1/status/1108079436526686208?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Fantastic day for regional rugby. Jonathan Davies, Ken Owens and Rob Evans signing new deals with <a href=\\\"https://twitter.com/scarlets_rugby?ref_src=twsrc%5Etfw\\\">@scarlets_rugby</a> and <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> signing one of the best wingers in the northern hemisphere.</p> \\n   <p>— Steffan Thomas (@Steffan_Thomas1) <a href=\\\"https://twitter.com/Steffan_Thomas1/status/1108073594247106560?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Great to see Josh Adams returning to Wales by signing for Cardiff Blues. A clear example of the 60-cap rule working and a real boost for regional rugby. <a href=\\\"https://t.co/3I1tncrRhq\\\">https://t.co/3I1tncrRhq</a></p> \\n   <p>— Simon Thomas (@simonrug) <a href=\\\"https://twitter.com/simonrug/status/1108077638063714304?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Josh Adams is a fantastic signing for Cardiff Blues.</p> \\n   <p>That's a proper boost for the regions.</p> \\n   <p>— Paul Williams (@thepaulwilliams) <a href=\\\"https://twitter.com/thepaulwilliams/status/1108109626254520321?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">\\uD83D\\uDCDD&nbsp;Eh… <a href=\\\"https://twitter.com/andymcgeady?ref_src=twsrc%5Etfw\\\">@andymcgeady</a> you may want to update tomorrow's agenda for Episode 1 <a href=\\\"https://t.co/VnpI56bSOJ\\\">https://t.co/VnpI56bSOJ</a></p> \\n   <p>— UnderTheSticks (@UnderTheStix) <a href=\\\"https://twitter.com/UnderTheStix/status/1108097508297924609?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <h2></h2> \\n  <h2>What the fans are saying….</h2> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Josh Adams to the Blues is a cracking signing</p> \\n   <p>— Ruairí (@_Rurz) <a href=\\\"https://twitter.com/_Rurz/status/1108107317046923267?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Brilliant signing for the Cardiff Blues.</p> \\n   <p>Josh Adams joining on a long-term deal.<a href=\\\"https://t.co/UYT7xkTtPC\\\">https://t.co/UYT7xkTtPC</a></p> \\n   <p>— Matthew Southcombe (@MattSouth7) <a href=\\\"https://twitter.com/MattSouth7/status/1108072943316279304?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-width=\\\"500\\\" data-dnt=\\\"true\\\"> \\n   <p lang=\\\"en\\\" dir=\\\"ltr\\\">Actually so buzzing Josh Adams is signing for Blues\\uD83D\\uDD35\\uD83C\\uDFF4\\uDB40\\uDC67\\uDB40\\uDC62\\uDB40\\uDC77\\uDB40\\uDC6C\\uDB40\\uDC73\\uDB40\\uDC7F <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> <a href=\\\"https://twitter.com/JoshAdams951?ref_src=twsrc%5Etfw\\\">@JoshAdams951</a></p> \\n   <p>— rhys \\uD83D\\uDD3B (@RhysTurner1927) <a href=\\\"https://twitter.com/RhysTurner1927/status/1108091410643849217?ref_src=twsrc%5Etfw\\\">March 19, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/how-social-media-reacted-to-josh-adams-signing-for-cardiff-blues/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"123558929c807ebf04e4c3be9bf6b1294da20b28f018a9f7757f6a678356a09e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/how-social-media-reacted-to-josh-adams-signing-for-cardiff-blues/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"How Social Media Reacted to Josh Adams Signing for Cardiff Blues\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101234/inpho_01518311.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T10:13:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f795a066-f479-3e4c-90b9-82523af47e2d\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Free State Rugby is pleased to announce that utility back William Small-Smith extended his contract with the Toyota Cheetahs for another two years. He has committed to be playing for the Toyota Cheetahs until October 2021.</p> \\n  <p>The talented midfielder has international experience receiving gold medals as part of the Springboks Sevens team and the Junior Springboks. Fast and with a proven ability to finish, Small-Smith’s real strength lies in his on-field organisational and leadership traits. His natural leadership on and off the field allows players around him to blossom and more of the same can be expected of this gifted midfielder.</p> \\n  <p>Small-Smith has made 61 appearances for the Toyota Cheetahs so far (16 Currie Cup, 13 Super Rugby and 32 Guinness PRO14).</p> \\n  <p>Commenting on his contract extension, William Small-Smith said:</p> \\n  <p>“It was actually an easy decision to make. I moved to the Toyota Cheetahs to grow as a person and as a player and to get a lot game time and it was exactly what happened.”</p> \\n  <p>“I’m really excited about the feature of Free State Rugby. I feel that the Toyota Cheetah team is still in early stages of the Guinness PRO 14 championship – it’s only our second season. I believe that we are a team who can really compete to win the competition in the next year or two.”</p> \\n  <p>“We have a new group of players who are starting to become better with each game played.”</p> \\n  <p>“I really believe that we have a bright future – not only with the Currie Cup not overlapping but also with PRO14 where we want to go from strength to strength.”</p> \\n  <p>“It is a privilege for me extend my contract. I just want to keep contributing and keep doing what I can do to make the team better. The goal is to win any team at any time on any day.”</p> \\n  <p>“I’m really excited about the next two years. I really feel fortunate to be able to do what I love. I hope that I can keep on contributing.”</p> \\n  <p>Announcing the contract extension, the Harold Verster, Managing Director of the Free State Cheetahs (Pty) Ltd said: “William is born leader with a natural feel for the game. He has an exceptional personality and a player who will always give everything for the cause he serves. He is 100% a Cheetah and we are delighted to have him for the next two years.</p> \\n  <p>Career Stats:</p> \\n  <p>Provincial career: Debut in 2011 for Blue Bulls u.21 team<br> Currie Cup: 30 Currie Cup games in total, 7 tries and 2 conversions = 39 points (Blue Bulls and Cheetahs). Toyota Free State Cheetahs (2016-2018) – 16 games and 34 points.<br> Super Rugby: Bulls (2014) – 7 games and 5 points. Toyota Cheetahs (2016-2017) -13 games, 5 points<br> Guinness Pro 14: Toyota Cheetahs (2017-2018) -15 games and 26 points,<br> (2018-2019) -17 games and 15 points.</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/william-small-smith-signs-two-year-contract-extension-with-toyota-cheetahs/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2e9e556b326e2fe51071a73365ae25df02d73307f41d598a54defa28531fcb87\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/william-small-smith-signs-two-year-contract-extension-with-toyota-cheetahs/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"William Small-Smith signs two year contract extension with Toyota Cheetahs\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091840/WilliamSmallSmithCheetahs.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-20T09:19:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"904af9bb-1b0f-3d66-942a-7d35d7457d89\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Ospreys Rugby are delighted to announce that Luke Morgan, top try scorer at the region this season, has signed a new two-year contract.</p> \\n  <p>The 26-year old winger, Wales Sevens all time top try – and points – scorer, has agreed to extend his time with the Ospreys until at least 2021 after making a huge impression in his first full season back at the home region he represented as a youngster.</p> \\n  <p>Speaking after committing his future to the Ospreys, Morgan said:</p> \\n  <p>“It’s nice to finally get pen to paper and I’m really excited about the future now, and being here for another two years.</p> \\n  <p>“This is where I want to be and I was keen to get the paper signed. The way the season started my profile shot up rapidly and I know that the pressure is on me to not just hit that level every time but to keep improving and this is the right place for that.”</p> \\n  <p>Hailing from Bridgend, Morgan represented the Ospreys at age-grade level and made one Anglo Welsh Cup appearance for the region as a teenager before embarking on his successful sevens career, scoring 131 tries from 202 matches in the World Sevens Series as well as playing at two Commonwealths Games and last summer’s Rugby World Cup Sevens.</p> \\n  <p>Renowned as one of the world’s leading finishers in the shortened version of the game, he rejoined the Ospreys ahead of the current season. His devastating pace and eye for a gap has seen him run in nine tries from 17 appearances to date.</p> \\n  <p>He scored the only try of the game in the Christmas win over the Scarlets to cement his place as a fan’s favourite at the Liberty Stadium, while his hat-trick against Zebre at the end of November means he is just one of 10 players to score three in a game for the Ospreys, alongside esteemed wingers like Tommy Bowe, Nikki Walker and Shane Williams.</p> \\n  <p>His early season impact was recognised via a first call up into Warren Gatland’s senior squad for the autumn international series, making his debut against Scotland in November.</p> \\n  <p>“This is excellent news for the Ospreys” said head coach, Allen Clarke.</p> \\n  <p>“Luke has transferred well from sevens and his tremendous start was rewarded with his first Welsh cap in fifteens. He’s electric when he gets the ball in his hands, he gets people out of their seats and scores tries. That’s what we all want to see.</p> \\n  <p>“What is really exciting about Luke is there’s more to come from him. He’s got a real appetite to learn the positional expertise required to really kick on from here and become a top level back three player.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/luke-morgan-commits-to-the-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1f24408ac063dc12076ef59480fa932c5ca75a6e1035b4420757f41250d3c978\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/luke-morgan-commits-to-the-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Luke Morgan commits to the Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20091414/LukeMorganOspreys18.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"3250\"}],\"publishDate\":\"2019-03-20T09:14:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"889d6daf-9278-3954-879a-2683c44217a1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Cardiff Blues are delighted to confirm the signing of Wales’ Six Nations hero Josh Adams.</p> \\n  <p>The 23-year-old starred throughout Wales’ march to Grand Slam glory and bagged three tries in the process including stunning efforts against England and Scotland.</p> \\n  <p>He has subsequently been nominated for player of the tournament and he will return to Wales in the summer to ply his trade at Cardiff Arms Park.</p> \\n  <p>Adams said: “It is great to be returning to Wales and I cannot wait to link up with Cardiff Blues next season.</p> \\n  <p>“I’ve been really impressed with John’s vision for the future and the attacking brand of rugby the Blues play will really suit my game.</p> \\n  <p>“It is a young and exciting squad, with a good blend of experience, which has a bright future and I’m looking forward to contributing towards that.</p> \\n  <p>“I will always be grateful to Worcester Warriors for giving me the opportunity to become a professional player and I have loved my time at Sixways.</p> \\n  <p>“But to play for Wales I need to play in Wales and Cardiff Blues is the best fit for me. I’m really looking forward to the next chapter at Cardiff Arms Park.”</p> \\n  <p>Adams burst onto the scene at Worcester Warriors during the 2016-17 season and has now made 59 appearances and scored a hugely impressive 34 tries.</p> \\n  <p>He was the Aviva Premiership’s joint-top scorer last season with 13 tries and 17 in all competitions and scooped both the Warriors’ Young Player and Player of the Year awards.</p> \\n  <p>The 23-year-old’s performances have been equally impressive in the red of Wales, where he has now made 10 appearances and touched down four times.</p> \\n  <p>Adams is the first signing following the approval of Cardiff Blues’ budget for next season and head coach John Mulvihill believes it is a significant signal of intent.</p> \\n  <p>He added: “It’s an exciting signing for the region and demonstrates our strong rugby ambition going forward.</p> \\n  <p>“Josh is a player we can build success around. He brings genuine hunger to succeed, enormous energy and the skill-set and speed to make a real difference to our group.</p> \\n  <p>“Just from watching the Six Nations, you can see he’s a really busy player, who makes big contributions both in attack and defence, and is a good team man. We’re looking forward to getting him on board for next season.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/20/cardiff-blues-swoop-for-grand-slam-star-adams/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"9bba0171e8791d3b07534cf331e6f4d7757a3ff8c4909adfa8c849f8eb3e01dc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/20/cardiff-blues-swoop-for-grand-slam-star-adams/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Cardiff Blues swoop for Grand Slam star Adams\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/20101600/inpho_01518564.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-20T09:11:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"fef17b4f-ce4b-3fd2-8cf0-f40d7dca9734\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Scarlets are delighted to announce that three of Wales’ Grand Slam heroes have signed new contracts.</p> \\n  <p>Jonathan Davies, Ken Owens and Rob Evans have agreed new deals to extend their stay with their home region.</p> \\n  <p>The international trio have come through the academy system at the Scarlets and were key members of the side that lifted the Guinness PRO12 trophy in 2017.</p> \\n  <p>Scarlets head coach Wayne Pivac said: “I am delighted that Rob, Ken and Jon have re-signed for the Scarlets.</p> \\n  <p>“They have been a big part of our success in recent years and I know that our incoming coach Brad (Mooar) was very keen to secure their services moving forward.</p> \\n  <p>“It is great news for the Scarlets.”</p> \\n  <p>Davies has played 154 matches for the Scarlets since making his debut in August 2006.</p> \\n  <p>He has gone on to become one of the leading centres in world rugby and was named the British and Irish Lions player of the series in 2017.</p> \\n  <p>“I could not be happier to be staying with the Scarlets,” he said.</p> \\n  <p>“I am excited about the end of the season and having spoken to our new coach Brad, excited about what is to come.</p> \\n  <p>“It is something I want to be part of.</p> \\n  <p>“You want to be playing in the big competitions and competing for trophies and we have been doing that at the Scarlets.</p> \\n  <p>“I am delighted to have signed a new contract.”</p> \\n  <p>Owens was a Lions Test player in 2017 and won his 64th Wales cap against Ireland last weekend.</p> \\n  <p>The talismanic hooker has made 238 appearances for the Scarlets since making his debut against Northampton Saints in 2016.</p> \\n  <p>Owens has captained the Scarlets since 2014.</p> \\n  <p>He said: “I am delighted to have signed an extension to my contract.</p> \\n  <p>“I am looking forward to a big end of season and building on the success we have achieved in recent years.”</p> \\n  <p>Evans is another who has been at the heart of the Scarlets’ success.</p> \\n  <p>The Pembrokshire product has made 118 appearances since making his debut in January 2013 and was named in the Guinness PRO14’s dream team last season.</p> \\n  <p>“I love playing here, you are playing with your mates and there’s a great spirit in the squad,” said Evans.</p> \\n  <p>“I have been proud to be part of the success we have achieved over the last few years.</p> \\n  <p>“I want to keep playing for Wales and there is no other side in Wales I would want to play for.</p> \\n  <p>“This is an exciting time to be involved with the Scarlets. I am looking forward to pulling on a Scarlets jersey again and helping us get into the play-offs for another season.”</p> \\n  <p>Scarlets general manager of rugby Jon Daniels added: “We are delighted to have key players like Jon, Ken and Rob sign new deals.</p> \\n  <p>“All three are from West Wales, are proud of their roots and have played a huge part in our success in recent seasons.</p> \\n  <p>“As Scarlets we are equally proud to see them achieve what they have on the international stage and for all three to sign new contracts is an indication of our ambition over the coming years.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/19/grand-slam-winners-jonathan-davies-rob-evans-and-ken-owens-sign-new-scarlets-deals/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"2e928e427d7bf166b02673dc09221abf8aad34210c4798db4c3fe51c68e50623\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/19/grand-slam-winners-jonathan-davies-rob-evans-and-ken-owens-sign-new-scarlets-deals/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Grand Slam winners Jonathan Davies, Rob Evans and Ken Owens sign new Scarlets deals\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/04155840/KenOwensOspSca1819SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-19T17:05:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8f97da44-8a83-3ab0-ae04-f7389eec1cf1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Glasgow Warriors have been boosted by the news that Scotland internationals Alex Allan and D’Arcy Rae have penned new deals, ahead of an important period of the season.</p> \\n  <p>The Warriors face the Cheetahs at Scotstoun on Saturday in the Guinness PRO14 and then travel to play Saracens in the quarter-finals of the Champions Cup seven days later.</p> \\n  <p>Both players, who pack down either side of the front row, have signed two-year contracts to extend their stays at Scotstoun until at least 2021.</p> \\n  <p>Allan has made 88 appearances for the Warriors since joining from Edinburgh ahead of the 2014/15 season.</p> \\n  <p>The 26-year-old loose-head has eight caps for Scotland including two off the bench in this year’s Guinness Six Nations.</p> \\n  <p>He was part of the Harrogate RUFC side which won the Yorkshire Cup as a junior, while attending Sedbergh School in Cumbria and being unbeaten in his final year playing for the 1st XV and being named Rugby World School Team of the Year.</p> \\n  <p>Tight-head, Rae has made 59 appearances for Glasgow Warriors since making his debut against Munster in 2015.</p> \\n  <p>The 24-year-old former Marr College pupil is a product of the Fosroc Scottish Rugby Academy and spent time on loan to PRO14 rivals Benetton at the beginning of his career.</p> \\n  <p>Having been involved in several international squads he won his first Scotland cap against Ireland last month.</p> \\n  <p>Alex Allan said: “Staying at Glasgow was an easy decision for me to make. It’s a great environment and the challenge of testing myself at the highest level in both the PRO14 and the Champions Cup is one I really enjoy.</p> \\n  <p>D’Arcy Rae said: “I’m pleased to be staying at Scotstoun for another two years. I’ve enjoyed how much game time I’ve had this season and getting capped during the Six Nations was a dream come true so I’m looking to kick on and keep improving with every game.”</p> \\n  <p>Glasgow Warriors Head Coach Dave Rennie said: “Alex is a really dynamic prop who is equally as comfortable in the loose as he is at set piece.</p> \\n  <p>“D’Arcy has played some big games for us this season. With Zander (Fagerson) and Siua (Halanukonuka) both injured early in the year he stepped up as our first choice tight-head for a stretch of matches and performed well.</p> \\n  <p>“Both are really good men and well-liked members of our group and it’s great that they’re sticking around to provide real strength in depth to our front row.”</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit&nbsp;<a href=\\\"https://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/19/prop-pair-put-pen-to-paper/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"40fb47798e3aa29c4e078a2c6fd8402f67ac7e14e93c0ae8cabddfa72438770e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/19/prop-pair-put-pen-to-paper/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Prop pair put pen to paper\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/19161347/DArcyRae.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-19T16:14:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"40d8172a-1c0c-3484-89d0-655bbd7ea32a\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>The Guinness Six Nations Championship is done and dusted for another year and it signed off in typical dramatic style in the final round of fixtures.</p> \\n  <p>Wales were crowned champions with a win over Ireland and the Guinness PRO14’s very own Gareth Anscombe was right in the thick of the action, nailing no less than six penalties to help steer his team to Grand Slam glory.</p> \\n  <p>Meanwhile, England and Scotland produced an all-time classic thanks to an incredible flurry of Edinburgh Rugby try-scorers.</p> \\n  <p>And Italy went down fighting against France, with all of their points on the day coming from Benetton’s Tito Tebaldi and Tommaso Allan’s boot.</p> \\n  <p>Here’s a run-down of all the major Guinness PRO14 talking points:</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">Take a bow <a href=\\\"https://twitter.com/Gareth_Anscombe?ref_src=twsrc%5Etfw\\\">@Gareth_Anscombe</a> . Immensely proud of you and all three <a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> boys involved . Immense effort from all 23 <a href=\\\"https://twitter.com/WelshRugbyUnion?ref_src=twsrc%5Etfw\\\">@WelshRugbyUnion</a> \\uD83D\\uDE4C\\uD83C\\uDFFC <a href=\\\"https://t.co/AApbW9V6rE\\\">pic.twitter.com/AApbW9V6rE</a></p> \\n   <p>— Cardiff Blues (@cardiff_blues) <a href=\\\"https://twitter.com/cardiff_blues/status/1106959128986046466?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Wales crowned champions</strong></p> \\n  <p>Warren Gatland became the first coach to win three Gland Slams as he guided high Wales to a comprehensive 25-7 win over Ireland in front of a home crowd at the Principality Stadium.</p> \\n  <p>And Wales got off to the prefect start when Scarlets centre Hadleigh Parkes latched onto an Anscombe kick over the top and dotted down the only try of the match.</p> \\n  <p>Parkes then turned defender as he executed a try-saving tackle on Jacob Stockdale before Cardiff Blues’ Anscombe took control of the game slotting six penalties to put Wales in command.</p> \\n  <p>With the clock already in the red, Leinster’s Jordan Larmour saved Ireland from a scoreless defeat as he crossed but it was too little too late.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">The nation is Proud! To the Scarlets pack that has been monumental in shaping the GRAND SLAM win. We are very proud of you boys!<br> Come and watch the boys back in action against Edinburgh at Parc y Scarlets. 06.04.2019 <a href=\\\"https://t.co/xr0BYQPJev\\\">https://t.co/xr0BYQPJev</a> <a href=\\\"https://t.co/3qWlbZ5yVc\\\">pic.twitter.com/3qWlbZ5yVc</a></p> \\n   <p>— Scarlets Rugby (@scarlets_rugby) <a href=\\\"https://twitter.com/scarlets_rugby/status/1106962369945710593?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Records broken at Twickenham</strong></p> \\n  <p>Over at Twickenham, England and Scotland were busy rewriting the record books as the hosts came flying out of the blocks to score the fastest-ever bonus point in the history of the Championship.</p> \\n  <p>But after Eddie Jones’ men had taken a 31-0 lead, Scotland’s Edinburgh contingent began to stir and hit back with a flurry of their own through Stuart McInnaly and a Magnus Bradbury score sandwiched between a Darcy Graham double.</p> \\n  <p>Out of nowhere, Scotland were level again and went on to take the lead when Glasgow Warriors’ Sam Johnson, only for George Ford to score and convert a last-gasp try to level up the scores at 38-38.</p> \\n  <p>The result was the biggest comeback to draw any Test, beating the previous record held by Scotland when they came back from 19 points down to draw 28-28 with Wales in 2001.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en-gb\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">Have you stopped screaming at your TV yet? \\uD83D\\uDE03</p> \\n   <p>A stellar comeback at Twickenham. Congratulations to <a href=\\\"https://twitter.com/McInallyStuart?ref_src=twsrc%5Etfw\\\">@McInallyStuart</a>, <a href=\\\"https://twitter.com/Darcy_Graham?ref_src=twsrc%5Etfw\\\">@Darcy_Graham</a> &amp; <a href=\\\"https://twitter.com/BradburyMagnus?ref_src=twsrc%5Etfw\\\">@BradburyMagnus</a> on your tries in today’s Calcutta Cup defence! RUGBY!!! \\uD83D\\uDC4F <a href=\\\"https://twitter.com/hashtag/AsOne?src=hash&amp;ref_src=twsrc%5Etfw\\\">#AsOne</a> <a href=\\\"https://t.co/hwkHqgER1I\\\">https://t.co/hwkHqgER1I</a></p> \\n   <p>— Edinburgh Rugby (@EdinburghRugby) <a href=\\\"https://twitter.com/EdinburghRugby/status/1106998003901124609?ref_src=twsrc%5Etfw\\\">16 March 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p><strong>Misery in Italy </strong></p> \\n  <p>Meanwhile, at the Stadio Olimpico, Italy let the chance to finish this year’s Championship on a high slip through their fingers.</p> \\n  <p>Benetton’s Tito Tebaldi scored Italy’s only try of the match in the second half, adding to his Treviso teammate Tommaso Allan’s three penalties and bringing the Azzurri&nbsp;right back into the game.</p> \\n  <p>But it was another Benetton player that had the golden opportunity to clinch victory as with five minutes remaining on the clock, Marco Zanon leaping for the line, only to have the ball punched out of his grasp by Damian Penaud.</p> \\n  <p>To compound the misery for Italy, Penaud then went up the other end and scored the try that gave France the win to leave Italy without a point on the board across the whole Championship.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/17/guinness-six-nations-review-anscombe-leads-wales-to-title/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"3bbce695cb68b421e1edcfb29692909894f6a44813668dc57eb08a7788be8c0a\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/17/guinness-six-nations-review-anscombe-leads-wales-to-title/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness Six Nations review: Anscombe leads Wales to title\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/10/14193049/GarethAinscombeSB182000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-17T15:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"2b8bc020-3064-3b49-a326-6d168e1def75\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Leinster Rugby and the IRFU have confirmed a contract extension for Leinster Rugby Head Coach Leo Cullen.</p> \\n  <p>Cullen, who won 221 caps for Leinster and was captain of three Heineken Cup winning squads, was appointed Head Coach at the start of the 2015/16 season and will now lead the province for a further two seasons until the end of the 2020/21 season.</p> \\n  <p>Leinster Rugby CEO Mick Dawson also confirmed that Senior Coach Stuart Lancaster has been retained.</p> \\n  <p>Speaking to leinsterrugby.ie Dawson spoke about Cullen’s time in charge to date and his impact on the club.</p> \\n  <p>“Leo’s skills as a player and as a captain have been well celebrated over the years and rightly so.</p> \\n  <p>“Over the last four seasons he has continued to build on that legacy and has added considerable coaching credentials to his list of achievements. Not only did Leo oversee the great double success of last season, he also oversaw the rebuilding of the playing squad after a number of high profile retirements and the recruitment of the new coaching team.</p> \\n  <p>“We have seen the impact Leo has had on the organisation both on and off the field and we are thrilled to see him commit for a further two seasons with the club.</p> \\n  <p>“That level of continuity is crucial for the model that we have here at the club, a model that Leo not only believes in but is a product of.</p> \\n  <p>“In his four seasons he has capped 43 new players with the majority of them coming from the 12 counties of Leinster.</p> \\n  <p>“This season he has capped eight players from our Academy in the 54 players used across the Guinness PRO14 and the Heineken Champions Cup.</p> \\n  <p>“This is an important announcement for the club and we are delighted to have our business done ahead of a crucial block of games for Leo, his staff and the players.”</p> \\n  <p>Dawson also confirmed that Senior Coach Stuart Lancaster has signed a new contract with the club.</p> \\n  <p>“Everyone can see that we have benefited from Stuart’s vast experience working within the academy system in England plus of course his time with the English national team.</p> \\n  <p>“He has consistently shown his commitment to the Leinster cause and it is a real boost to retain the services of a world class coach.”</p> \\n  <p><strong>Leo Cullen – Head Coach:</strong><br> DOB: 9 January 1978<br> Honours: Leo won 32 Ireland caps and 221 Leinster caps during a stellar career that saw him win titles with both Leinster Rugby and Leicester Tigers.</p> \\n  <p><strong>Stuart Lancaster – Senior Coach:</strong><br> DOB: 9 October 1969<br> Honours: Stuart was England Rugby Head Coach from 2011-2015. Before that he was the RFU’s Elite Rugby Director. He represented Scotland at underage level and was the first player to play over 100 times for Leeds RUFC (later branded Leeds Tykes).</p> \\n  <p><strong><em>The Guinness PRO14 Final is one of the most entertaining games in the rugby calendar and takes place in Glasgow’s Celtic Park on May 25. Tickets start at just £25 for adults, £1 for kids. Visit <a href=\\\"http://www.pro14rugby.org/finaltickets\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.pro14rugby.org/finaltickets</a></em></strong></p> \\n  <p>&nbsp;</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/15/leo-cullen-signs-new-contract-at-leinster-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b87ff81cd04fd23597965e436a4f8b221ead3e29f6d076389839a2b42a167bc0\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/15/leo-cullen-signs-new-contract-at-leinster-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leo Cullen signs new contract at Leinster Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/15101456/LCullen-Leinster-1503.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-15T10:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"d53d398c-77ce-3b1a-9f59-300695c0301f\",\"language\":\"en\",\"version\":2,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"8901e62a8bd55eacc81acb95cfc25746f3f649e97d602f6f6799de95f338d703\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/75-days-to-go-kick-off-confirmed-for-guinness-pro14-final/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"75 Days To Go: Kick-Off Confirmed for Guinness PRO14 Final\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141430/GUINNESS_PRO14_Internal_1200x6282-1024x536.jpg\"},\"publishDate\":\"2019-03-11T14:58:00.000Z\",\"auth\":{\"loginRequired\":true},\"blocked\":true},{\"id\":\"f3a87f06-3588-3acc-8ecf-f8753c327daa\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Edinburgh have continued to strengthen their squad ahead of next season with re-signing of hooker David Cherry on a one-year deal.</p> \\n  <p>Cherry, 28, has enjoyed a breakout campaign since joining the club from French Fédérale 2 side Stade Niçois in March 2018 – making 16 appearances this season so far – and today extends his stay in the capital by a further year.</p> \\n  <p>On re-signing with his hometown club, Cherry said: “I’m delighted to have re-signed with Edinburgh for another year after such an exciting first season.</p> \\n  <p>“I believe the squad has the ability to achieve great success and I’m looking forward to contributing to that next year.”</p> \\n  <p>Head Coach Richard Cockerill, added: “We’re delighted that Dave has committed to the club for a further season. He’s kicked on really well since joining the club in the summer and continues to develop in his position.</p> \\n  <p>“He provides us with great strength and depth at hooker and will no doubt continue to work hard in training to stake a place in this Edinburgh team.”</p> \\n  <p>After graduating from Edinburgh’s Merchiston Castle School, Cherry played his senior rugby at Currie before making the move to English Championship side London Scottish in 2014.</p> \\n  <p>The hooker soon cemented himself in the Championship outfit’s starting XV, but after three seasons at the Athletic Ground – in which he made 54 appearances, scoring 45 points in the process – Cherry joined Stade Niçois as part of Scottish Rugby’s performance pathway partnership.</p> \\n  <p>After returning to his hometown team in March 2018, former Scotland U20 international Cherry made his Edinburgh debut from the bench against Leinster at the RDS Arena in September of the same year.</p> \\n  <p>Cherry – who has represented Scotland 10 times at U20 level and started all five games at the 2011 Junior World Championship in Italy – quickly established himself as the capital side’s reserve hooker, providing invaluable support from the bench in the early stages of the season.</p> \\n  <p>The hooker was rewarded for his fine domestic form when he was named in Gregor Townsend’s Scotland squad for the 2019 Guinness Six Nations.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/11/hometown-hooker-cherry-re-signs-with-edinburgh-rugby-until-2020/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e6da1dfc129cb3c19ecb58dc0a497d5be35bdb3333c8864d383dc88c23e4ca8e\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/hometown-hooker-cherry-re-signs-with-edinburgh-rugby-until-2020/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Hometown hooker Cherry re-signs with Edinburgh Rugby until 2020\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11141215/DCherry-Edin-1103.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-11T14:12:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e6c35ae3-80ce-3071-bcc2-0139c3d347a3\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Two of the three Guinness Man of the Match award winners from Round Four of the Six Nations were Guinness PRO14 players.</p> \\n  <p>Scarlets’ Hadleigh Parkes left BT Murrayfield bloodied and bruised but not before he had played an integral role in Wales’ 18-11 victory over Scotland to keep his side on course for the Grand Slam.</p> \\n  <p>Parkes was crowned Guinness Man of the Match for his efforts and so too was Leinster’s James Ryan, as he put on a bullocking display in Ireland’s 26-14 victory over France.</p> \\n  <p>Meanwhile Benetton’s Tommaso Allan and Luca Morisi both scored tries as Italy battled in vain against a rampant England side, ultimately losing 57-14 at Twickenham.</p> \\n  <p><img class=\\\"alignnone wp-image-66718\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-300x169.jpg\\\" alt=\\\"Hadleigh Parkes\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-768x432.jpg 768w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/07122031/HadleighParkesScarletsFinal18-1024x576.jpg 1024w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n  <p><strong>Scarlet fever</strong></p> \\n  <p>Hadleigh Parkes wasn’t the only Scarlets player to step up to the plate for Wales on Saturday either.</p> \\n  <p>Jonathan Davies had a big hand is setting up Josh Adams for Wales’ first try when he played the two-on-one perfectly and put Adams away to give his side the lead</p> \\n  <p>And he was rewarded for his generosity with a try of his own on after Wales went through the phases in the Scottish 22, he eventually received the ball in hand and smashed his way over the line.</p> \\n  <p>Edinburgh’s Darcy Graham did get a try back for Scotland to set up a nervy finish but Cardiff Blues’ Gareth Anscombe’s contribution with the boot made sure that the hosts remained at arm’s length as the clock ticked down.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"cy\\\">A brilliant try from the Scarlet <a href=\\\"https://twitter.com/JonFoxDavies?ref_src=twsrc%5Etfw\\\">@JonFoxDavies</a> \\uD83D\\uDC4F\\uD83C\\uDFFC\\uD83D\\uDC4F\\uD83C\\uDFFC</p> \\n   <p>Cais wych gan Jon Foxy i roi Cymru ar y blaen i mewn i’r ail hanner \\uD83D\\uDC4F\\uD83C\\uDFFC\\uD83D\\uDC4F\\uD83C\\uDFFC <a href=\\\"https://t.co/02Q24HcWE3\\\">https://t.co/02Q24HcWE3</a></p> \\n   <p>— Scarlets Rugby (@scarlets_rugby) <a href=\\\"https://twitter.com/scarlets_rugby/status/1104397992050786304?ref_src=twsrc%5Etfw\\\">March 9, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script><br> <strong>The Best way to sign off</strong></p> \\n  <p>James Ryan’s mammoth performance and monstrous first-half hit on Antoine Dupont will feature in the highlight reel but the game will likely be remembered as Rory Best’s last home Guinness Six Nations appearance.</p> \\n  <p>And Ulster’s Best marked it with a try in the first three minutes of the match, crashing over from a five-metre lineout following some great kicking from Leinster’s Jordan Larmour.</p> \\n  <p>And Larmour’s provincial teammate and Irish talisman Sexton soon arrived at the party shortly afterwards, booting the conversion and then converting his own try on the half-hour mark to put Ireland in command.</p> \\n  <p>And after Leinster’s Jack Conan added a third, Keith Earls raced over the line to score his 30th international try and ensure that Munster had some Guinness PRO14 representation on the scoresheet.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\"><a href=\\\"https://twitter.com/hashtag/MondayMotivation?src=hash&amp;ref_src=twsrc%5Etfw\\\">#MondayMotivation</a> <a href=\\\"https://twitter.com/RoryBest2?ref_src=twsrc%5Etfw\\\">@RoryBest2</a> got Ireland off to a great start against France yesterday \\uD83D\\uDCAA\\uD83D\\uDCAA\\uD83D\\uDCAA <a href=\\\"https://t.co/UhDcschlnF\\\">pic.twitter.com/UhDcschlnF</a></p> \\n   <p>— Ulster Rugby (@UlsterRugby) <a href=\\\"https://twitter.com/UlsterRugby/status/1105064745327947776?ref_src=twsrc%5Etfw\\\">March 11, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script><br> <strong>Benetton brotherhood</strong></p> \\n  <p>Italy fans might find it hard to pick positives out of their defeat at the hands of a well-oiled England side at Twickenham.</p> \\n  <p>But Benetton supporters might have a little more joy as both of the Italy try scorers wear the Treviso badge.</p> \\n  <p>Italy were in touch with Eddie Jones’ men to begin with and Tommaso Allan managed to level the scores up at 7-7 when he slipped through the English defence and held off Ben Youngs to dot down and convert.</p> \\n  <p>England then took control of the game and tries rained down on Italy but there was room for one more Benetton celebration when Luca Morisi went over in the corner for Allan to convert once more.</p> \\n  <p><img class=\\\"alignnone wp-image-69274\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-300x169.jpg\\\" alt=\\\"\\\" width=\\\"600\\\" height=\\\"338\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-300x169.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-768x432.jpg 768w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/01/09123106/TomassoAllenBenGla201819SB2000-1024x576.jpg 1024w\\\" sizes=\\\"(max-width: 600px) 100vw, 600px\\\"></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/11/guinness-six-nations-review/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1974cfade3c696020d25eaac6291c50d6cb232b7c031c23fed7168a2704fabbf\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/11/guinness-six-nations-review/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness Six Nations review: The men of the moment\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/11134555/JamesRyanSb192000x1125-2.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-11T13:55:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8f192d79-d101-35ed-8102-be8f050913f7\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>As the 2019 Guinness Six Nations crosses the half-way mark, fans can look forward to another round of pulsating action this weekend.</p> \\n  <p>Wales will make the trip to Edinburgh in the early Saturday kick-off as they look to maintain their 100% record with a victory against a struggling Scottish outfit.</p> \\n  <p>Later that day, England take on Italy as they hope to bounce back from a disappointing loss against Wales with a strong performance at Twickenham.</p> \\n  <p>And Sunday’s flagship game sees Ireland take on France as both sides aim to finish the Championship strong.</p> \\n  <p>With a host of PRO14 players suiting up for international action this weekend, here are the main talking points.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Stander and Byrne Return to boost Irish hopes</strong></p> \\n  <p>Munster’s CJ Stander returns to the Ireland team after a facial injury kept him out of the last two Guinness Six Nations fixtures.</p> \\n  <p>The No.8, who started Ireland’s opening day loss to England, has been in and out of the Munster side this season, with his last appearance coming against Connacht Rugby in early January.</p> \\n  <p>But Joe Schmidt clearly has faith in the 28-year-old as Ireland face a must-win game against France on Sunday.</p> \\n  <p>Ireland will once again look to Munster’s Conor Murray, whose two tries and couple of penalties make him the nation’s top scorer this year.</p> \\n  <p>Also making the cut is Leinster fly-half Ross Byrne, who could earn his third cap for Ireland as they look to pick up their third consecutive win.</p> \\n  <p>The 23-year-old has been in good form for his club side, making 16 appearances and crossing the 100 point mark for the season in mid-February.</p> \\n  <p>He scored an excellent try against Toyota Cheetahs last weekend before converting another two to secure a timely win – and he could make his Six Nations bow on Sunday.</p> \\n  <p>Fellow try-scorer Kieran Marmion adds to the Connacht Rugby contingent as he gets back in the squad alongside Ulster’s Rob Herring.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Wales put faith in Ospreys’ Beard</strong></p> \\n  <p>Cory Hill’s untimely injury after an excellent performance in the win against England means Adam Beard will slot into the second row against Scotland on Saturday.</p> \\n  <p>But Warren Gatland will hope the Ospreys star will continue his unbeaten streak in a Welsh shirt – the lock is yet to lose in 11 appearances for his nation.</p> \\n  <p>He joins teammates George North, Justin Tipuric and Alun Wyn Jones – who captains Wales – in the starting XV.</p> \\n  <p>Jake Ball is drafted in to fill Beard’s bench spot as Scarlets continue to represent the lion’s share of the national squad.</p> \\n  <p>&nbsp;</p> \\n  <p><strong>Bennetton duo return to XV</strong></p> \\n  <p>Sergio Parisse may be the most notable change to the Italian team to face England, but the Azzurri will also welcome back Round Three absentee Sebastian Negri.</p> \\n  <p>The Bennetton lock missed the defeat to Ireland due to illness but will return to an Italian side looking for their first win of the Championship.</p> \\n  <p>Meanwhile, Luca Bigi will get the nod at hooker as he makes his first start in this year’s Six Nations ahead of Leonardo Ghiraldini.</p> \\n  <p>Teammate Tommaso Allan has been a bright spot in Italy’s sluggish campaign thus far as he has scored 16 points while Edoardo Padovani (Zebre) has crossed three times.</p> \\n  <p>&nbsp;</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/six-nations-round-4-preview-stander-and-byrne-return-for-ireland/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1e01f91a675ee51f9c1cd468da5abcb988d9711b414ea266258ef9ad57577f7b\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/six-nations-round-4-preview-stander-and-byrne-return-for-ireland/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Six Nations Round 4 Preview: Stander and Byrne return for Ireland\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08180842/CJOPEN.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1700\"}],\"publishDate\":\"2019-03-08T18:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6dbd51bb-8d36-3e88-a702-54dd49b99718\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Scotland international scrum-half Henry Pyrgos has today committed his future to Edinburgh after putting pen-to-paper on a new two-year deal.</p> \\n  <p>Pyrgos, 29, has made 18 appearances so far this season after joining the club from Glasgow Warriors in June 2018, and today extends his stay in the capital until at least 2021.</p> \\n  <p>On re-signing with the club, Pyrgos, said: “I’ve thoroughly enjoyed my first season at Edinburgh and I’m excited to sign for two more years.</p> \\n  <p>“I really believe we have the ability to go and achieve success over the next few seasons. I’m looking forward to working hard to make that happen.”</p> \\n  <p>Head Coach Richard Cockerill, added: “Henry is a level headed, gutsy player whose leadership and playmaking abilities are integral to the way we play.</p> \\n  <p>“He offers a great link between our forward pack and backline, so we’re delighted that he will continue to represent this club for the next two seasons.”</p> \\n  <p>Pyrgos has enjoyed a strong first campaign in the capital since making his debut against Ospreys in the 2018/19 Guinness PRO14 season opener.</p> \\n  <p>A natural leader with excellent playmaking abilities, Pyrgos has skippered the capital side on several occasions in club captain Stuart McInally’s absence.</p> \\n  <p>The scrum-half – who was a Guinness PRO12 (now PRO14) winner in 2012 – scored his first try for the club in the 40-14 Heineken Champions Cup victory over RC Toulon at BT Murrayfield.</p> \\n  <p>A former pupil of Bryanston School in Dorset, Henry is eligible for Scotland through his mum, who was born in Grangemouth, while his grandparents were born in Dundee.</p> \\n  <p>Pyrgos made his international debut against New Zealand in the first match of the 2012 Autumn Tests.</p> \\n  <p>The scrum-half scored his first try for Scotland against South Africa in the same campaign and has since gone on to notch up 29 points in 27 matches played for the national side.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/pyrgos-extends-capital-stay-until-2021/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"1a6214aa02d481e20cd0077d5ffec1c9f8591db937795653fdb5e633e044d528\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/pyrgos-extends-capital-stay-until-2021/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Pyrgos extends capital stay until 2021\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08111717/HPyrgos-Edin-0803.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-08T11:18:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"ab517d7f-02ed-366e-8f02-956c5c6ee97f\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p><strong>Eastern Cape Consortium Acquires Ownership of Isuzu Southern Kings </strong></p> \\n  <p>A consortium of Eastern Cape business people has acquired a controlling interest in the Isuzu Southern Kings rugby franchise, SA Rugby was delighted to confirm on Friday.</p> \\n  <p>SA Rugby sold a 74 percent shareholding in SA Super Rugby (Pty) Ltd, the Isuzu Southern Kings’ holding company, to a company called GRC Ltd. The Eastern Province Rugby Union (EPRU) has acquired the balance of 26 percent of the shares.</p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The deal was recently completed following the conclusion of agreement on the commercial terms. </span><span style=\\\"font-weight: inherit;\\\">SA Rugby had taken control of the Isuzu Southern Kings in November 2015 when the EPRU, to whom the operation of the franchise had been granted, ran into financial trouble.</span><a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux.jpg\\\"><br> <img class=\\\"alignleft size-custom_feed wp-image-70516\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-1024x682.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"682\\\" srcset=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-1024x682.jpg 1024w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-300x200.jpg 300w, https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083014/190308-Loyiso-Dotwana-and-Jurie-Roux-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1024px) 100vw, 1024px\\\"></a><em>Consortium head Loyiso Dotwana with SA Rugby CEO, Jurie Roux</em></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">“We are delighted to have concluded the sale,” said <strong>Jurie Roux, SA Rugby CEO</strong>. </span><span style=\\\"font-weight: inherit;\\\">“The GRC are made up of committed local individuals who have the growth of rugby and the success of the Isuzu Southern Kings at heart. They are intimately involved in the commercial activities of the Eastern Cape and understand the potential of the region.</span></p> \\n  <p>“This is a very significant and important development for the Isuzu Southern Kings. We look forward to GRC and the local community giving the Isuzu Southern Kings the ammunition to grow into the rugby force we know they can be.”</p> \\n  <p>The owners of GRC are Eastern Cape businesspeople Loyiso Dotwana, Gary Markson, Rory Stear, Kenny Govender and Vuyo Zitumane.</p> \\n  <p><strong>Mr Dotwana, head of the consortium,</strong> said: “We have followed a rigorous process to take control of the franchise but we have been single minded throughout: that bringing ownership of the Isuzu Southern Kings into local hands will be good for the team and good for the region.</p> \\n  <p>“We are rugby people who understand the Eastern Cape, the passion of the people for rugby and just how much a successful Isuzu Southern Kings team would mean to this region. We are focused and determined to deliver that success.”</p> \\n  <p><strong>Mr Andre Rademan, President of the EPRU</strong>, said that the fact that the EPRU was a shareholder would ensure continuity for rugby in the region. <span style=\\\"font-weight: inherit;\\\">“It is essential that the continuum between school, club, provincial and franchise rugby remains open and this new arrangement assures that,” he said.</span></p> \\n  <p>“It has been a challenging three years for the rugby in the Eastern Cape but the establishment of a new EPRU board and now the local acquisition of the Isuzu Southern Kings franchise means that we can look to the future with real excitement and anticipation.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/08/new-owners-keen-to-get-southern-kings-on-road-to-success/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b43d219108b609642830458292c336725ea2229ae594ee719cdbcecf9c5461f1\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/08/new-owners-keen-to-get-southern-kings-on-road-to-success/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"New Owners Keen to get Southern Kings on Road to Success\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/08083028/inpho_01483920.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"34\"}],\"publishDate\":\"2019-03-08T08:50:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"cbda0a7a-643c-3e2a-a2ab-1cfc4241b4a9\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Each game week Paul Williams ‘Black &amp; White’ column will take a look around the world of the Guinness PRO14. Known for his contributions to Rugby World, his obsession for the game and his notorious tennis elbow, Paul will bring his unique takes on rugby to&nbsp;\\n  <a href=\\\"https://www.pro14rugby.org/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">pro14rugby.org</a>. For more make sure to follow him on Twitter&nbsp;&nbsp;\\n  <a href=\\\"https://twitter.com/thepaulwilliams\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">@thepaulwilliams</a>\\n  <br>\\n  <br>\\n  <hr>\\n  <br>\\n  <br>\\n  <h2><strong>Growing Pains Await as Regional Rugby Aims to Run with the Thoroughbreds&nbsp;</strong></h2>\\n  <br>\\n  <em>Paul Williams is an independent columnist for <a href=\\\"https://www.pro14rugby.org\\\">www.pro14rugby.org</a> and the views expressed in his columns are his (who else would they be?) and not those of PRO14 Rugby. </em>\\n  <br>\\n  <br>The title of this column couldn’t be less apt this week. There is never anything black and white in Welsh rugby. Excluding the relative success of the national team over the past 15 years, club and regional rugby in Wales has been a massive grey mess since the game went professional.\\n  <br>\\n  <br>Every four to five years, some unfortunate individuals must untangle what is tantamount to 150 pairs of headphone cables thrown into a tumble dryer. The professional game in Wales is desperate for a clear road map for everyone to follow and it’s hard to think of any other Tier One nation that’s in the same situation.\\n  <br>\\n  <br>Few, if any, top rugby nations managed the transition to professional rugby with ease, but the truth is, the Welsh rugby landscape couldn’t handle professionalism even before it became professional. In the 80’s and 90’s, it was rugby league that ripped the club game apart.\\n  <br>\\n  <br>The first regional structure in 2003, initially failed with the collapse of the Celtic Warriors and the success of the remaining teams has witnessed many highs and lows.\\n  <br>\\n  <br>The Ospreys had promising spells which included four Championship titles between the Celtic League and the old PRO12. The Scarlets have bagged two titles themselves and created some positivity with their daring style of play but neither team has ever reached a European final. The Cardiff Blues have never really established themselves a consistent contender domestically despite claiming two Challenge Cups over the past decade.\\n  <br>\\n  <br>\\n  <a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07110841/inpho_01469574.jpg\\\"><img class=\\\"alignleft size-custom_feed wp-image-70507\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07110841/inpho_01469574-1024x670.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"670\\\"></a>\\n  <br>\\n  <br>What fans yearn for is teams that can make an impact on the biggest days in the European Cup as well as in the Guinness PRO14, but none of the regions have ever threatened to headline those gala finales on the continental stage.\\n  <br>\\n  <br>So, what do we want rugby in Wales to be? Are we happy being a rugby version of Scandinavian football, where a solid national team is achievable, but the club game fails to truly capture the imagination? Because at the moment, that is where the game in Wales sits. A good national team, but with no hope of ever fielding a squad that can cope with Saracens or Leinster, in the long-term.\\n  <br>\\n  <br>The reality is that Wales can’t afford four fully-funded professional rugby teams. The fact that all four of the teams exist in such a small geographic space makes perfect sense historically, but very little sense commercially. We all know about the history of Swansea, Neath, Llanelli, Newport, Cardiff, Pontypridd and Pontypool etc.\\n  <br>\\n  <br>However, commercially, the geographical spacing of the regions is from an age gone by and pro sport doesn’t care what happened yesterday; it only cares for what happens tomorrow. If something doesn’t change now who knows where we could be in 10 or 20 years time.\\n  <br>\\n  <br>Weirdly, this whole mess isn’t even a result of the actions of those in Wales, it is partly a result of outside forces. The commercial pressures driving up player salaries are exerted by France, England and Japan, and they have already forced the Australian Rugby Union into a restructure to ensure they can retain their best players. The same action must happen in Wales.\\n  <br>\\n  <br>Welsh supporters dream of their sides having the type of funding and player budgets that the top teams in Europe do, but if they want to see that come true, some are going to have to go through a nightmare.\\n  <br>\\n  <br>If you’re an Ospreys fan right now you’ll feel like that’s what’s ahead, make no mistake about it.\\n  <br>\\n  <br>We should always remember that this is all in a sporting context, and that no-one has died, or declared war.\\n  <br>\\n  <br>With the merger off the cards between Ospreys and Scarlets, the aftermath has been heated but with one team fighting for their very future that’s how it can be. But even the idea of merging the two regions from West Wales was tough for many to consider – would anyone ever ask Leinster and Munster or Glasgow Warriors and Edinburgh to join forces?\\n  <br>\\n  <br>It’s been a week that some say could only happen in Wales. One that has already seen the start of the nightmare. It appeared Scarlets and Ospreys were set to merge only for it to be called off at short notice, some sharp words have been said and the Ospreys chairman has resigned. The newly formed Professional Rugby Board, in charge of the whole process to find a new way forward for regional rugby on under the Project Reset banner, has been under fire along with the WRU.\\n  <br>\\n  <br>It has also been claimed by Scarlets that it was the Ospreys themselves who were keen on merging with either the Cardiff Blues, or the Scarlets, and it was not an issue forced by the WRU. This has all been followed by more tough talk from Ospreys’ incoming chairman. How do you digest that? There aren’t enough Rennies in the northern hemisphere to make this easy to swallow.\\n  <br>\\n  <br>The difficulty with situations like this is that everyone retreats to their barracks and grabs a weapon. You’re expected to take sides immediately. You’re either for it, or against. You either hate the Ospreys or despise the Scarlets. You either love the WRU or you want to fire-bomb head office. You’re either getting hate-fueled DMs on Twitter, or you’re sending them. You’re either with us, or against us.\\n  <br>\\n  <br>But it’s far more complicated than that. I was born and bred in Swansea – Gowerton to be precise. I supported Swansea RFC as a boy, then the Ospreys since their inception. I know many of the Ospreys. Some of the early ‘Galacticos’ remain my rugby heroes.\\n  <br>\\n  <br>\\n  <a href=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07111145/inpho_00430557.jpg\\\"><img class=\\\"alignleft size-custom_feed wp-image-70508\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07111145/inpho_00430557-1024x722.jpg\\\" alt=\\\"\\\" width=\\\"1024\\\" height=\\\"722\\\"></a>\\n  <br>\\n  <br>Some went to my school, and my mother even taught a few of them. I am fearful of losing a Welsh region, as we all are. But aren’t you also sick of Welsh regional rugby being the poor kid in class with the holes in his shoes? Aren’t you irritated with a situation where just six injuries to a regional squad means that their squad depth is so shallow that their season is can be severely hampered by November?\\n  <br>\\n  <br>Are you not jealous of other teams across Europe with the spending power to buy current All Blacks and other top as overseas signings, whereas in Wales, some of them are on their third lap around Europe and have more bandaging than Tutankhamun?\\n  <br>\\n  <br>Right now nobody knows how this will end, but regardless of your region, everyone in Wales has a dog in this fight. And I’d rather that hound was still fighting in 20 years, and not just the lapdog of French, English or Japanese rugby.\\n  <br>\\n  <br>Let the restructure begin.\\n  <br>\\n  <br>\\n  <em>Paul Williams is an independent columnist for <a href=\\\"https://www.pro14rugby.org\\\">www.pro14rugby.org</a> and the views expressed in his columns are his (who else would they be?) and not those of PRO14 Rugby.</em>\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/07/paul-williams-black-white-column/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"8218cd98c33438f325fcaf55b0a2b07caf1bf7023d43d01ef3819d5718975acc\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/07/paul-williams-black-white-column/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Paul Williams: Black & White Column\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/07084404/PW_Wales-1024x614.jpg\"},\"publishDate\":\"2019-03-07T11:15:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9d4e37d0-e1c7-3912-9d30-6c0150b14e16\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Disciplinary Decision – Ox Nche (Eight weeks)</p> \\n  <p>Ox Nche of the Toyota Cheetahs faced a Disciplinary Hearing yesterday via video conference and has been banned for eight weeks.</p> \\n  <p><span style=\\\"font-weight: inherit;\\\">A Disciplinary Committee met in Edinburgh (Scotland) to consider the citing complaint against Nche (No 1) of the Toyota Cheetahs which occurred against Leinster Rugby on Friday, March 1, 2019 in which the Player was shown a yellow card for an incident in the ninth minute involving Leinster No 11 (Fergus McFadden).</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The player was reported by the Citing Commissioner in charge for alleged infringement of </span><strong><span style=\\\"font-weight: inherit;\\\">Law 9.12</span></strong><span style=\\\"font-weight: inherit;\\\"> – A player must not physically abuse anyone and </span><strong><span style=\\\"font-weight: inherit;\\\">Law 9.25 </span></strong><span style=\\\"font-weight: inherit;\\\">– A player must not intentionally charge or obstruct an opponent who has just kicked the ball.</span></p> \\n  <p><em><span style=\\\"font-weight: inherit;\\\">Please note this was originally notified in the press notice as Law 9.13 and Law 9.25.</span></em></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The Disciplinary Committee comprising of </span><span style=\\\"font-weight: inherit;\\\">Sheriff Kathrine Mackie (Chair), Roddy MacLeod and Ian Douglas (All Scotland), concluded that the player had committed an act of foul play involving contact to the head.<br> </span><br> <span style=\\\"font-weight: inherit;\\\">In upholding the Citing Complaint, the Disciplinary Committee deemed that the offence merited a red card under <strong>Law 9.12 </strong>(Striking with the shoulder) and that the contact to the head was intentional with a top-end entry </span><span style=\\\"font-weight: inherit;\\\">point of 10 weeks.<br> </span><br> <span style=\\\"font-weight: inherit;\\\">The Committee took into account the Player’s previously clean disciplinary record and his good conduct and applied 20% mitigation which reduces the ban to eight weeks.</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">To ensure the eight-week ban accounts for meaningful matches played by the Toyota Cheetahs in the Guinness PRO14 and the Currie Cup the player will be free to play from midnight on Sunday, May 19, 2019.</span></p> \\n  <p><span style=\\\"font-weight: inherit;\\\">The Player was reminded of his right to appeal. </span></p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/07/disciplinary-decision-ox-nche/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"a2cf1c7c884ba108897561c2638d4d0a23603515d017da3670c4cafc7589c3ce\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/07/disciplinary-decision-ox-nche/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\"},\"contentType\":\"IMAGE\",\"title\":\"Disciplinary Decision - Ox Nche\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/09/19170734/Disciplinary_Stock_v2.png\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"74\"}],\"publishDate\":\"2019-03-07T08:16:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6cab8546-1687-38d0-b30f-64d6afec33d8\",\"language\":\"en\",\"version\":7,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"c5e08e4ab835f15daaffbafefaa0aa55466051358a9955f25e7d12c666c4345d\",\"overwriteEnabled\":false},\"tags\":[\"membership\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/06/guinness-pro14-fantasy-rugby-update-round-17/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14: Fantasy Rugby Update (Round 17)\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/06125848/PRO14-Fantasy-Update.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-06T13:03:00.000Z\",\"auth\":{\"loginRequired\":true,\"roles\":[]},\"blocked\":true},{\"id\":\"1f932e1a-432b-3151-8f32-6c9f3b09f6c6\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>On his 150th appearance on his second spell for the club, Ruaridh Jackson put in a masterclass that defined his stellar career for the Glasgow Warriors thus far.</p> \\n  <p>The 31-year-old crossed to seal the bonus point for his side on a day which saw the Warriors blitz Zebre 42-10 in Parma.</p> \\n  <p>After Matt Fagerson’s powerful drive put the Scottish team up, captain Chris Fusaro and Stafford McDowall ran in the second and third tries for the visitors.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDD0E <a href=\\\"https://twitter.com/hashtag/GUINNESSPRO14?src=hash&amp;ref_src=twsrc%5Etfw\\\">#GUINNESSPRO14</a> Player Focus \\uD83D\\uDD0E</p> \\n   <p>It was a memorable landmark appearance for <a href=\\\"https://twitter.com/ruaridh_jackson?ref_src=twsrc%5Etfw\\\">@ruaridh_jackson</a> as he helped <a href=\\\"https://twitter.com/GlasgowWarriors?ref_src=twsrc%5Etfw\\\">@GlasgowWarriors</a> to a bonus-point victory in Round 17 \\uD83D\\uDC4F</p> \\n   <p>How much strength in depth do the Conference A leaders have as we reach the business end? \\uD83D\\uDCAA <a href=\\\"https://t.co/2e8c1EhhOe\\\">pic.twitter.com/2e8c1EhhOe</a></p> \\n   <p>— PRO14 RUGBY (@PRO14Official) <a href=\\\"https://twitter.com/PRO14Official/status/1102958707372183552?ref_src=twsrc%5Etfw\\\">March 5, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p>Cue the arrival of veteran Jackson, who’s had Warriors’ fans out of their seats ever since he rejoined the club in 2017.</p> \\n  <p>Adam Hastings’ excellent vision and deft chip bounced fortunately into Jackson’s arms, and his attacking awareness saw him in the right place to finish with aplomb to score his maiden try of the season.</p> \\n  <p>The fan favourite was clearly delighted as he contributed to a mammoth victory which took Glasgow top of Conference A following Munster’s loss at Scarlets.</p> \\n  <p>The second half may have seen Zebre stem the tide of Scottish attacks, but Jackson’s try – Warriors’ fourth of the day and one that ensured the full five points went to the Scots – could prove crucial in the race for first place.</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/05/guinness-pro14-round-17-player-focus-ruaridh-jackson/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"14a71628b4a19644241f2b1351757d70ce7ffb98e8a99c1d015d1650f21193c7\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/05/guinness-pro14-round-17-player-focus-ruaridh-jackson/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Round 17 Player Focus - Ruaridh Jackson\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05104049/Jackson.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1750\"}],\"publishDate\":\"2019-03-05T16:08:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"af685d02-da98-35eb-adf3-5bdbab55e788\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p><strong>Nche (Citing Complaint)</strong></p> \\n  <p>A Disciplinary Committee will meet in Edinburgh on Wednesday, March 6, to consider the Citing Complaint made against Ox Nche (No 1) of the Toyota Cheetahs for an incident which occurred against Leinster Rugby on Friday, March 1, 2019.</p> \\n  <p>The complaint refers to an incident involving Leinster Rugby No 11 (Fergus McFadden) in the ninth minute of the Guinness PRO14 Round 17 fixture at the RDS Arena (Dublin) for which he was shown a yellow card by referee Nigel Owens.</p> \\n  <p>The player has been reported by the Citing Commissioner in charge for infringement of <strong>Law 9.13 </strong>– A player must not tackle an opponent early, late or dangerously. Dangerous tackling includes, but is not limited to, tackling or attempting to tackle an opponent above the line of the shoulders even if the tackle starts below the line of the shoulders.</p> \\n  <p>Additionally, the player has also been reported for infringement of <strong>Law 9.25 </strong>– A player must not intentionally charge or obstruct an opponent who has just kicked the ball.</p> \\n  <p>The Player will face a Disciplinary Committee via video conference, the Committee will comprise of Sheriff Kathrine Mackie, Roddy MacLeod and Jennifer Rae (All Scotland).</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/05/disciplinary-update-round-17-nche/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"eb08dd8bce4872fffb41eddd0be380b1a3a106546e5932f0e41354268d621202\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/05/disciplinary-update-round-17-nche/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Disciplinary Update - Round 17: Nche\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/05115332/Disciplinary_R17.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-05T11:58:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9b7bbfeb-54c4-34c6-a9d9-a99e0f25a4b3\",\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"f18355e902b83f53b318d987dee0db0e224b35114aa1ac73e23647c77541a156\",\"overwriteEnabled\":true},\"tags\":[\"membership\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-round-17-top-tries-of-the-week/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Round 17: top tries of the week\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/04181240/CONOSP.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2300\"}],\"publishDate\":\"2019-03-04T18:12:00.000Z\",\"auth\":{\"loginRequired\":true,\"roles\":[]},\"blocked\":true},{\"id\":\"3aea1f9f-90ff-34bf-a3fc-b75360f022d9\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  I Leoni vincono un match difficile, complicato da errori e imprecisioni, ma centrano il nono risultato utile consecutivo e staccano gli scozzesi in classifica. Zebre annientate dai Warriors\\n  <br>\\n  <br>Il Benetton di Kieran Crowely supera l’Edimburgo a Monigo e compie un grande passo verso la storica qualificazione al playoff. A Monigo non è certo la migliore versione della corazzata bianco-verde quella che respinge l’assalto scozzese ma la vittoria, l’ottava nelle ultime nove gare ufficiali, è d’oro e la tenacia che spinge prima Cannone e poi Rizzi a varcare la linea di meta avversaria vale il prezzo del biglietto. I due ventenni sono infatti tra le note più positive del complesso pomeriggio veneto, condito da qualche sbavatura di troppo e da imprecisioni che non si erano manifestate così numerose nell’ultimo mese e mezzo di sfide. La vittoria è però tutto ciò che serve per continuare a sognare e la maturità con la quale gli uomini di Crowely sottraggono nel finale anche il punto di bonus difensivo ai diretti rivali per la fase ad eliminazione diretta, certifica il livello di maturità che questo gruppo è riuscito a raggiungere. Con lo “zero” di Monigo Edimburgo scivola infatti a -8 dai bianco-verdi e questo, con ancora tre partite da giocare, suona quasi come una condanna per la formazione di Cockerill, già capace di qualificarsi per i quarti di Champions Cup.\\n  <br>\\n  <br>Il Benetton si conferma così seconda forza della Conference B, dietro allo schiacciasassi Leinster (sofferto successo con i Cheetahs a Dublino), con un punto di vantaggio sull’Ulster (abile a pescare il bonus nella vittoria a Newport di domenica grazie a Jordi Murphy, Marty Moore, John Cooney e Alan O’Connor) ma ancora a cinque lunghezze dagli Scarlets, quarti e semplicemente encomiabili nel sofferto successo interno per 10 a 6 sul Munster, deciso dalla meta del giovane Nicholas e dal piede di un ritrovato Halfpenny.\\n  <br>\\n  <br>Non riesce invece l’impresa alle Zebre che al Lanfranchi di Parma vengono travolte dalla forza dei Glasgow Warriors. Partita senza storia che va agli archivi già alla mezz’ora di gioco grazie alle mete di Matt Fagerson (doppietta), Chris Fusaro, Stafford McDowall e Ruaridh Jackson. Nel secondo tempo, il nuovo acuto di Fusaro e quello della bandiera di capitan Tommaso Castello fissano il punteggio sul definitivo 42 a 10, condito anche dal rosso inutile a Canna a quindici minuti dall’80esimo. Con il KO della Red Army al Parc y Scarlets, gli scozzesi tornano così in vetta alla Conference A.\\n  <br>\\n  <br>Vittorie fondamentali infine per Connacht e Cardiff Blues: gli irlandesi mesmerizzano gli Ospreys a Galway con un 46 a 5 ispirato dalla vitalità di Kyle Godwin, condannandoli a ferie anticipate, mentre i Blues superano con qualche difficoltà di troppo i Southern Kings all’Arms Park (in meta Owen Lane, Nick Williams, Olly Robinson e Jason Harris).\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/04/benetton-suona-la-nona-sinfonia-edimburgo-va-al-tappeto/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"bd9bc84baa94d1c7cb43e0cc449b11cf4c445fa09934eb5ded5426456a448652\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/benetton-suona-la-nona-sinfonia-edimburgo-va-al-tappeto/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton suona la nona sinfonia, Edimburgo va al tappeto\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"publishDate\":\"2019-03-04T14:17:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"000a2d14-1c15-3238-8bd5-e8fe3ea2c0be\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Round 17 of the Guinness PRO14 is done and dusted and the big news is that we have a new leader at the top of Conference A – Glasgow Warriors.\\n  <br>\\n  <br>Dave Rennie’s men were in excellent form to record a bonus-point win away at Zebre while Scarlets squeezed out Munster in west Wales.\\n  <br>\\n  <br>Elsewhere the Isuzu Southern Kings pushed Cardiff Blues all the way while Benetton Rugby won again – here’s our round-up of all the key action.\\n  <br>\\n  <br>\\n  <strong>Leinster 19-7 Toyota Cheetahs</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Leinster have enough ability to put games like these beyond doubt, but the table toppers lacked any sort of ruthlessness as they allowed their opponents to remain in the game until Rory O’Loughlin crossed in the second half. Had Tian Schoeman converted a penalty at 12-7 the game could have been very different but Leinster were then allowed to tighten their vice-like grip.</li>\\n   <br> \\n   <li>The Toyota Cheetahs have enough speed to trouble any opponent. Rabz Maxwane left three defenders in his wake as he showed his raw pace to cross the line for his side’s solitary try. However, his side were unable to create any sort of opportunity for the speedster again, perhaps understandable given their opposition, but this sort of pace is clearly going to trouble many other teams in the remaining rounds.</li>\\n   <br> \\n   <li>In conditions like those played in on Friday night, kicking is often ineffective. Time and time again, Cheetahs attempted to launch the ball up the field and gain territory but Leinster anticipated this often and were well positioned to receive. Passing went awry from both sides, but the wet conditions meant the likes of Schoeman found it hard with the ball at their feet.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/leinsterrugby/status/1101803207603441669\\n  <br>\\n  <br>\\n  <strong>Cardiff Blues 26-19 Isuzu Southern Kings</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Jordan Harries' try could prove crucial as the Blues aim for a top three finish in Conference A. The winger, who scored twice last week off the bench, notched the fourth try to secure a bonus point for the Blues in their quest to hunt down the leading trio. At present, they’re level with third-placed Connacht – both on 47 points as it gets tight at the top.</li>\\n   <br> \\n   <li>Cardiff Blues may have secured the victory and bonus point, but made hard work of it thanks to an intense defensive effort from the Southern Kings. Several mammoth hits in the first half and great work from the lineouts put the Blues on the back foot for long periods of this game.</li>\\n   <br> \\n   <li>The Kings also secured an important bonus point as they look to climb the Conference B table. While perhaps out of the race for the top three, the Kings are still progressing in their game and showed it with this battling away performance. Dries van Schalkwyk and Michael Willemse both scored excellent tries around half-time, while Masixole Banda’s was the all important third right at the death.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Scarlets 10-6 Munster Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Sitting fifth in Conference B heading into the weekend, it has undoubtedly been an up and down season for Scarlets. But against the in-form Munster, they showed everyone just why they could be contenders for the overall title. This was a performance based on grit, determination and relentless defence as they kept out on top against a physical Munster, a result which lifts them to third. Only the Dragons and Isuzu Southern Kings have conceded more points in the Conference but that trend was bucked spectacularly. The rest of the league will have taken note.</li>\\n   <br> \\n   <li>Munster might be beaten but they will surely not be derailed by this result. The Limerick men have been in superb form – winning nine of their previous ten encounters - but could not break down Scarlets’ rear-guard. Still, they maintained possession well, moved it wide when they could and showed flashes of creativity and promise from the likes of Ronan O’Mahony and replacement fly-half Tyler Bleyendaal. Next up for them is a home game with Zebre Rugby and it would not be a surprise if they put some things right.</li>\\n   <br> \\n   <li>With just one Guinness PRO14 defeat at Parc y Scarlets since 2016, home is clearly where the heart is for Scarlets. And with just one of their last four games on the road, including Judgement Day against Dragons at Principality Stadium, they will fancy their chances of reaching the Guinness PRO14 Finals Series. After a trip to rivals Cardiff Blues, they host Edinburgh Rugby and Zebre Rugby before tackling the Dragons. Momentum could be building at just the right time.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/scarlets_rugby/status/1102125654752051201\\n  <br>\\n  <br>\\n  <strong>Zebre 10-42 Glasgow Warriors</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Dave Rennie will have been delighted with his side’s first half performance in Parma. Carlo Canna’s early penalty&nbsp;excluded, the Warriors were virtually flawless, running in five tries to take a commanding 35-3 lead into half-time and&nbsp;allowing them to control the second 40 to&nbsp;see out the bonus-point win.</li>\\n   <br> \\n   <li>While Zebre were left somewhat shell-shocked by Glasgow’s early blitz, they deserve credit for their response after the break. Many sides would have simply crumbled under&nbsp;the circumstances, but Michael Bradley’s men put in a stoic display that saw them draw the second half 7-7.</li>\\n   <br> \\n   <li>A word for Warriors legend Ruaridh Jackson, who capped a memorable 150th appearance for the side with a gleefully taken try. In his second spell with the club, Jackson latched onto an Adam Hastings kick to score in the first 40 and was only prevented from doubling his tally by superb Zebre defence right at the death. An occasion to treasure for the 31-year-old, no doubt.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Benetton Rugby 18-10 Edinburgh Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>With just four points separating the two sides in Conference B at the start of the day, there was tension in the air in Treviso as Benetton welcomed Edinburgh to Stadio Monigo. Perhaps unsurprisingly, it had an impact on the game as defence reigned supreme in the opening half, with Jaco van der Walt and Ian McKinley trading penalties to leave the sides level at the break before the game really came to life after the restart.</li>\\n   <br> \\n   <li>In what was a topsy-turvy encounter, the momentum swung one way and then the other multiple times, with Edinburgh leading twice thanks to Jaco van der Walt’s first-half penalty and James Johnstone’s second-half try. When van der Walt’s conversion put Edinburgh 10-8 up, Richard Cockerill’s men looked set to claim a vital victory in the Guinness PRO14 Final Series race, but Benetton persevered and managed to extend their unbeaten run to eight games.</li>\\n   <br> \\n   <li>Niccolo Cannone’s try was crucial in giving Benetton the lead for the first time at the start of the second half, but it was Antonio Rizzi’s score with ten minutes to play that proved decisive. The replacement ran on to Monty Ioane’s kick through to dot down under pressure from Edinburgh’s Tom Brown, with a TMO review awarding the try. Rizzi converted and added a further penalty to seal a crucial win for the Italian side.</li>\\n   <br>\\n  </ul>\\n  <br>https://twitter.com/BenettonRugby/status/1102125324660285441\\n  <br>\\n  <br>\\n  <strong>Connacht 46-5 Ospreys</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Kyle Godwin's virtuoso performance showed the importance of the kicking game in the Guinness PRO14. A 100 percent record with his feet - including two first half penalties to assert his side's dominance - wasn't mirrored by the Ospreys. Connacht will be hoping that a bruising tackle on Godwin won't keep him out for too long.</li>\\n   <br> \\n   <li>The victory puts some daylight between the two sides as Connacht secured maximum points with a stylish attacking performance. What may prove more important, however, is the mental element of the Irish side's triumph going into the title run-in. With both teams looking to overtake Cardiff and put some pressure on the top two sides, Ospreys' ability to recover from such a devastating loss will be crucial.</li>\\n   <br> \\n   <li>Ospreys showed glimpses of attacking prowess but just couldn’t get over when they got close to the try line. Needless penalties were given away alongside some erroneous passing which allowed Connacht to relieve the pressure the Welsh side placed on them. If they can tighten up in defence, Ospreys have the ability to break out of their funk and recover from a tricky period.</li>\\n   <br>\\n  </ul>\\n  <br>\\n  <strong>Dragons 15-28 Ulster Rugby</strong>\\n  <br>\\n  <ul>\\n   <br> \\n   <li>Ulster’s win at Dragons was a Conference B clash that had something for everyone: there was free-flowing rugby, stoic defensive efforts, breath-taking last-gasp tackles and drama at the death. Even the weather served to enrich the contest, beguiling both sides as Storm Freya played havoc with kicks all afternoon.</li>\\n   <br> \\n   <li>Ulster’s two tries in four&nbsp;minutes turned the tide at Rodney Parade. A gritty opening 40 saw them head into the break a man light but with a four-point lead, and the Dragons certainly looked to capitalise at the start of the second half. But the visitors resolved to hold out until they were restored to a full complement and were rewarded when first Marty Moore and then John Cooney crossed to give them an all-important buffer.</li>\\n   <br> \\n   <li>But for their lapse early in the second half, the Dragons gave a good account of themselves throughout, and were unlucky not to claim a losing bonus point for their efforts at the death. Despite finishing their last home game of the season empty-handed, the home fans can come away with their heads held high after an impressive display from which their team&nbsp;deserved to yield more.</li>\\n   <br>\\n  </ul>\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-takeaways-round-17-2/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"377e9b738299600dd5feb9a0e6703b3633d41a10641398a241b2cacd911f6f84\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/04/guinness-pro14-takeaways-round-17-2/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Guinness PRO14 Takeaways: Round 17\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"publishDate\":\"2019-03-04T09:00:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"8be0cba2-dcd9-3bf6-8fe6-d95479e15086\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Ulster dug deep to withstand a late Dragons charge as they notched up a bonus-point 28-15 win over the Dragons at Rodney Parade.\\r\\n\\r\\nDespite closing out proceedings with 13 men, a pair of quickfire scores early in the second half through Marty Moore and John Cooney gave them the buffer they needed after a tightly-fought first half.\\r\\n\\r\\nDragons looked to make the most of their two-man advantage at the death to seal a losing bonus-point, but were held out by spirited Ulster resolve in a battling manner that had become a hallmark of the visitors' performance.\\r\\n\\r\\nThere was little to split the sides in the opening quarter at a blustery Rodney Parade, the wind playing a factor as Rhodri Williams hoisted a series of deep kicks into Ulster territory as the Dragons were propelled by Storm Freya in the first 40.\\r\\n\\r\\nJosh Lewis split the posts with a penalty to opening the scoring, making the kick look routine in spite of the spiralling breeze, but the visitors were the first to cross the whitewash.\\r\\n\\r\\nRelentless pressure saw Ulster go through countless phases deep into Dragons territory, and despite an impressive defensive rearguard, the dam eventually broke when Jordi Murphy forced his way over.\\r\\n\\r\\nJohn Cooney converted before Dragons missed the opportunity to reduce arrears immediately to one, Lewis blazing his effort wide right.\\r\\n\\r\\nJordan Williams was at the heart of things when he hauled down Robert Baloucoune as the Ulster wing charged to the corner, saving a certain try in spectacular fashion.\\r\\n\\r\\nDarren Cave was sent to the bin for an early tackle on Lewis, but the Dragons weren't able to capitalise before the break.\\r\\n\\r\\nAnd despite being down to 14, it was Ulster who struck first in the second 40, the wind again playing it's part as they found themselves with a threatening line-out on the Dragons 5m line, the driving maul taking them close before Moore finished the job.\\r\\n\\r\\nThey added a third almost immediately when Baloucoune gathered Rhodri Williams' errant kick before Cooney burst through the gap created to dot down.\\r\\n\\r\\nBut the Dragons refused to be cowed and when first Rob Lyttle and then Louis Ludik were shown yellow for deliberate knock-ons the hosts had hope.\\r\\n\\r\\nThey were rewarded a penalty try for the latter's sin-bin, leaving Ulster to try to see out the game in precarious circumstances: with 13 men and an 11-point advantage to their name.\\r\\n\\r\\nAnd they did so with discipline in abundance, protecting the ball as they kept it narrow and edged towards the Dragons line, with Alan O'Connor spotting a gap to crash through and seal the bonus-point.\\r\\n\\r\\nTaine Basham grabbed one back for the Dragons in a score that was just reward for the youngster's standout performance, setting up a late push for a losing bonus-point.\\r\\n\\r\\nBut it wasn't to be, as Ulster stole the ball and heaved into touch to spoil the party.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/ulster-battle-weather-to-beat-dragons-in-wales/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"acd9e02d0899ceb1d2f57ce3374198d4ab490dbcd67caf52817a527b8ed324de\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/ulster-battle-weather-to-beat-dragons-in-wales/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Ulster battle weather to beat Dragons in Wales\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/03165105/DragonsUlsterSB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419177\"}],\"publishDate\":\"2019-03-03T16:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9f22a526-6b09-3991-9a64-39f083b6ebce\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Olly Robinson rounded off a slick team move to score the winning try for Cardiff Blues as they battled past a resilient Isuzu Southern Kings side 26-19</span><span style=\\\"font-family: 'Arial',sans-serif;\\\"> in the Guinness PRO14.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Owen Lane crossed early as Blues came flying out of the gates and captain Nick Williams came back from a sin bin to </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">level things<span style=\\\"color: black;\\\"> after the bottom-placed side took the lead just after half time.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Tries from Dries van Schalkwyk, Mike Willemse and Masixole Banda weren’t enough for </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the visitors <span style=\\\"color: black;\\\">despite a robust defensive performance against the high-flying Blues.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But Robinson and Jordan Harries exemplified the Blues’ late efforts to notch the bonus point for </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the Blues that keeps them in contention for a top-three finish in Conference A<span style=\\\"color: black;\\\">.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With two minutes on the clock, Lane skipped past three players and ran in his fourth try of the campaign as he took advantage of a leaky Kings defence.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But the South African team stepped up their efforts and landed some huge hits on the Blues during an intense opening period.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Tertius Kruger did well to prevent a Blues breakaway before </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">the hosts<span style=\\\"color: black;\\\"> tried and failed to break through with dozens of drives.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Blues squandered an excellent chance to extend their lead but the pass to Shane Lewis-Hughes in space on the left wing went straight into touch.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">And the away side grew into the game as half-time approached, gaining a series of scrums deep in opposition territory and pinning Cardiff back, but the Blues responded with some dogged defensive play and effective kicking.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kings piled on more pressure and forced Blues captain Nick Williams to the sin bin as the South African side inched closer.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">They eventually got their deserved reward after a series of determined drives allowed van Schalkwyk to cross the line.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kings picked up where they left off after half time, scoring through Willemse via a familiar route.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">A deep lineout and subsequent maul allowed the hooker to cross the line thanks to a powerful team drive.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The stunned Blues flexed their true pedigree minutes later as Williams finished off a multi-phase move to level up the game.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The skipper forced his way over the line after quick feet from his team mates created the space for the No.8 to drive into.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif;\\\">The hosts<span style=\\\"color: black;\\\"> continued to push forward as they surgically exploited their opponent’s weakness for their third try of the game.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">A jinking run from substitute Matthew Morgan teed up Robinson and the flanker crossed to give his side the lead.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With the fourth try </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">and a bonus point now in sight<span style=\\\"color: black;\\\"> despite the wet weather, Jarr</span>o<span style=\\\"color: black;\\\">d Evans flicked the ball out wide to an onrushing Harries, who picked up where he left off against Edinburgh to score the all-important try.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Southern Kings rallied and scored with the last play of the game through Banda to secure a </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">well-deserved <span style=\\\"color: black;\\\">losing bonus point.</span></span></p>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/cardiff-blues-edge-past-resilient-southern-kings/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e20216126ce8929cb8651a9779634c377779968cdf9ac3d054d341291736a585\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/cardiff-blues-edge-past-resilient-southern-kings/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Cardiff Blues edge past resilient Southern Kings\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02213809/CARSOU2019-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419176\"}],\"publishDate\":\"2019-03-02T21:39:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6189bafd-b2f8-3251-a5e3-a8052ab89445\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Ioan Nicholas’ first-half try and some resolute defence reignited Scarlets’ Guinness PRO14 campaign as they saw off in-form Munster at Parc y Scarlets.\\r\\n\\r\\nThe wing cruised over inside 11 minutes but Munster dominated both possession and territory from there on - however, they could not unlock Scarlets’ incredible defence.\\r\\n\\r\\nEvery time they went wide, Scarlets had numbers and through the middle they held their own in a result which lifts them up to third in an increasingly tight Conference B.\\r\\n\\r\\nMunster arrived in south Wales boasting a strong record of just one defeat in their last ten Guinness PRO14 games and they made a strong start thanks to Bill Johnston’s penalty following a Scarlets scrum collapse.\\r\\n\\r\\nBut the hosts, who have won four of their last five home games against the men from Limerick, hit back spectacularly.\\r\\n\\r\\nLeigh Halfpenny made a scything break on the counter-attack and produced a superb one-handed offload to Johnny McNicholl, who in-turn set up Nicholas to run for the line.\\r\\n\\r\\nMunster spent much of the rest of the half camped inside Scarlets territory but the hosts’ defence was resolute and frustrated the visitors – with only a second Johnston penalty to show for their efforts.\\r\\n\\r\\nMunster, usually so disciplined, made a few costly errors throughout the contest including a penalty against Jean Kleyn for not rolling away.\\r\\n\\r\\nScarlets booted the ball inside Munster’s 22 for a line-out and set to work, moving to within five metres of the Munster try line.\\r\\n\\r\\nInstead of five points, they had to settle for a penalty and Halfpenny calmly slotted the ball through.\\r\\n\\r\\nBut Munster quickly regained their composure and almost hit back with a try. From a line-out, they got the maul rolling and Kleyn dotted down but they try was eventually ruled for obstruction.\\r\\n\\r\\nHowever, the pressure did not end there and Arno Botha almost buried over from just a metre, but the ball was held up and eventually turned over.\\r\\n\\r\\nMunster emptied the bench and fly-half Tyler Bleyendaal made a positive impact, kicking delightfully to the corner where Ronan O’Mahony was charging for the ball – only for Halfpenny to just get there and smother it down just in time.\\r\\n\\r\\nWith the clock winding down, Munster kept on coming but Scarlets secured one more turnover to confirm the win.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/scarlets-defence-helps-secure-priceless-win/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"935f279908048f95292611f580e822cf7b31fa4973dc636259decc2ec4917313\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/scarlets-defence-helps-secure-priceless-win/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Scarlets defence helps secure priceless win\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02190808/ScarletsMunsterSb20000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419174\"}],\"publishDate\":\"2019-03-02T19:12:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"824e597d-6cfa-3129-91c4-153c175630ce\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"A first-half blitz from Glasgow Warriors saw them hit the top of Conference A as they notched up a 42-10 win over Zebre in Parma.\\r\\n\\r\\nMatt Fagerson ran in a pair of tries, with Ruaridh Jackson getting his name on the score-sheet on his 150th game for the Scottish side.\\r\\n\\r\\nAn encouraging second 40 from the Italians saw Tommaso Castello cross, but they had left themselves too much to do as the Warriors saw out proceedings in relative comfort.\\r\\n\\r\\nCarlo Canna kicked the hosts into an early lead but from the restart it was the Warriors who recovered from Adam Hastings’ kick, eventually setting up Matt Fagerson to score from a powerful drive.\\r\\n\\r\\nAnd just as Zebre looked to build up some momentum with the ball in hand, Warriors skipper Chris Fusaro stole in behind an unmanned ruck to nick the ball and take it 60m uncontested for a try.\\r\\n\\r\\nThey made it three when a confidently won line-out saw Stafford McDowall insouciantly brushing past a couple of tacklers while Zebre anticipated a maul, forging a path to his first score in a Glasgow shirt.\\r\\n\\r\\nJackson sealed the bonus point for the visitors on his landmark appearance for the side, latching onto Adam Hastings’ deft chip through as he juggled a favourable bounce to dot down with glee.\\r\\n\\r\\nFagerson doubled up on the half hour, Oli Kebble hopping but not falling with Zebre defenders wrapped round his legs, staying on his feet just long enough to dish an offload to the 20-year-old who charged through a gap to cross.\\r\\n\\r\\nHalf time came and went, and when Canna was shown yellow at the start of the second 40, the Warriors were once again in the ascendancy, Tim Swinson carrying at the back of a line-out maul to crash over down the left.\\r\\n\\r\\nThe hosts got on the board when captain Castello wriggled past Scott Cummings after Zebre had built up the phases and punched a hole in the Warriors defence, the centre taking advantage to cross.\\r\\n\\r\\nAfter good Zebre pressure, Canna saw red late when he was on the wrong end of a late D'arcy Rae tackle before kicking out in retaliation and the hosts had their wings clipped, but fought to the death nonetheless.\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/warriors-hit-zebre-for-six-as-glasgow-hit-the-front/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b4fe4f7ab80a11cc123c23fbc1809d47e3a3c5cd348886f88cbbc9d788b3e6cd\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/warriors-hit-zebre-for-six-as-glasgow-hit-the-front/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Warriors hit Zebre for six as Glasgow reach the summit\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02185400/ZebrevWarriorsSB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419175\"}],\"publishDate\":\"2019-03-02T19:09:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f726f8fd-873e-32b9-ab23-edf6fbc358ad\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <strong>Una meta di Rizzi nel finale regala alla Benetton il sorpasso contro la diretta rivale per i playoff.</strong>\\n  <br>\\n  <br>E’ la sfida più attesa del weekend, quella che assegna una fetta importante di playoff. Parte meglio Edimburgo, che subito attacca e conquista una punizione che Jaco van der Walt non sbaglia. Qualche errore di troppo di Treviso nell’avvio del match e scozzesi che possono mantenere il controllo dell’ovale.\\n  <br>\\n  <br>Lunghissima azione ospite vicino ai 22 di Treviso, ma l’Edimburgo non sfonda, anche se resta in attacco. Ottima la Benetton in difesa e, così, nonostante il dominio in possesso e territorio per gli scozzesi nulla di fatto dopo 10 minuti di gioco.\\n  <br>\\n  <br>Così al 15′ fallo in mischia di Schoeman e Treviso che va in touche sui 5 metri. Palla rubata e nulla di fatto. Troppi palloni persi dai biancoverdi che non mettono punti sul tabellone mentre ci si avvicina alla fine del primo quarto di gioco. Ma è molto falloso Edimburgo, con Clancy che non sempre fischia fallo.\\n  <br>\\n  <br>Ancora una pallone perso per Treviso, che non sta concretizzando la mole di gioco prodotta e continua a inseguire il vantaggio minimo di Edimburgo. Troppa leggerezza di Sperandio palla in mano e gli scozzesi riescono così a riguadagnare metri e portarsi facilmente in attacco.\\n  <br>\\n  <br>Partita che fatica a decollare, le difese che spengono gli attacchi e le due squadre molto tese visto la posta in gioco. Al 29′ bellissima azione di Ioane che guadagna metri sul largo, evita un paio di placcaggi, poi offload e fallo scozzese che riporta Treviso vicino alla linea di meta. Ancora molta confusione in attacco per Treviso, ma ancora fallo di Edimburgo e al 32′ McKinley va sulla piazzola per il 3-3. Subito un ottimo calcio in profondità di Duvenage riporta subito Treviso nella metà campo scozzese.\\n  <br>\\n  <br>Al 35′ meta di Ioane, ma Clancy aveva già fischiato il precedente avanti sul passaggio del numero 9 biancoverde. Sempre ottima in difesa Treviso obbliga al fallo gli ospiti e ultima chance per i padroni di casa, ma c’è il tenuto e si va al riposo in parità.\\n  <br>\\n  <br>\\n  <img class=\\\"alignnone wp-image-70444\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"366\\\">\\n  <br>\\n  <br>Cerca di cambiare ritmo la Benetton Treviso a inizio ripresa, si vede finalmente un Ratuva poco servito nei primi 40 minuti e una touche storta di Edimburgo dà un ovale ai padroni di casa in attacco. E al 45′ Niccolò Cannone sfonda, come già con Newport, e va oltre per la prima meta del match e primo vantaggio per i biancoverdi. Reagisce l’Edimburgo che subito si butta in avanti e touche sui 5 metri difensivi per Treviso che deve uscire da una situazione difficile.\\n  <br>\\n  <br>Soffre troppo Sperandio i palloni alti dell’Edimburgo e ospiti che restano nella metà campo biancoverde. E al 54′ James Johnstone manda fuori giri la difesa di Treviso, si infila nelle maglie e va a schiacciare e scozzesi di nuovo avanti a +2. Continua, però, la confusione palla in mano di Treviso, che spreca troppi possessi in questo match.\\n  <br>\\n  <br>Si entra nell’ultimo quarto con Edimburgo ancora avanti e Treviso obbligato a inventarsi qualcosa per raddrizzare un brutto match, dove sta pagando troppo l’emozione della posta in palio. Si riporta avanti la Benetton, ma non riesce a cambiare ritmo nonostante un paio di offload di Barbini e mancano i sostegni al portatore di palla e, così, nulla di fatto.\\n  <br>\\n  <br>Al 69′, però, l’ennesimo fallo degli scozzesi dà un vantaggio a Treviso, calcio di Ioane e si butta sull’ovale Rizzi che schiaccia per il nuovo vantaggio biancoverde. E un tenuto obbligato da Barbini agli avversari ridà palla a Treviso che, così, può entrare negli ultimi 10 minuti tenendo Edimburgo lontano dalla metà campo biancoverde.\\n  <br>\\n  <br>Errori da entrambe le parti, mentre passano i minuti in un match equilibratissimo. Al 78′ fallo della mischia scozzese e Treviso che va in touche nei 22 avversari. Ancora fallo di Edimburgo, questa volta centrale e Rizzi va sulla piazzola per togliere il bonus agli scozzesi e chiudere il match. E lo fa e Treviso va a +8 da Edimburgo.\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/02/treviso-non-perde-piu-e-batte-edimburgo/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"fdce99b2b8d8e10458d57802a63af7c7c4c69cc13a738fb8f66f860d1e7f7daf\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/02/treviso-non-perde-piu-e-batte-edimburgo/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Treviso non perde più e batte Edimburgo\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02204344/BenettonEdinburgh19SB2000.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"1950\"}],\"publishDate\":\"2019-03-02T18:45:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"2f9c4dd8-3873-358d-a55f-3058e20c0c4e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Antonio Rizzi’s second-half try extended Benetton Rugby’s unbeaten run in the Guinness PRO14 to eight games as they overcame Conference B rivals Edinburgh.</strong>\\r\\n\\r\\nThe Italian outfit went into the game in second place, with a four-point advantage over fourth-placed Edinburgh the race for the Guinness PRO14 Final Series.\\r\\n\\r\\nAnd a topsy-turvy encounter in Treviso saw the lead change hands multiple times, with Edinburgh taking the lead twice through a Jaco van der Walt penalty and James Johnstone’s try.\\r\\n\\r\\nBut Benetton are unbeaten in the Guinness PRO14 since November and second-half scores from Niccolo Cannone and Rizzi proved enough to earn them another win.\\r\\n\\r\\nThe significance of the match was clear for all to see in the first half at Stadio Monigo as neither side was able to find the opening try of the game before the interval.\\r\\n\\r\\nEdinburgh were first to get on the scoreboard with an early penalty after three minutes, with van der Walt splitting the uprights from 40m to give the visitors the lead.\\r\\n\\r\\nTheir Italian hosts responded with their first spell of pressure as Ian McKinley orchestrated a backline attack deep in the Edinburgh 22 but Richard Cockerill’s side remained resilient.\\r\\n\\r\\nIn fact, defence continued to rule the roost on both sides before Benetton levelled up the scores on the half hour, McKinley converting the three points in front of the posts.\\r\\n\\r\\n<img class=\\\"alignnone wp-image-70445\\\" src=\\\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181727/inpho_01506859-1024x638.jpg\\\" alt=\\\"\\\" width=\\\"650\\\" height=\\\"405\\\" />\\r\\n\\r\\nWith the momentum in their favour, Benetton almost took the lead after they appeared to score the first try just before half-time, only to see it chalked off for a forward pass.\\r\\n\\r\\nIt remained all square at the break after a bruising opening 40 minutes in Treviso, but the breakthrough finally came six minutes after the restart.\\r\\n\\r\\nThe hosts hit the front for the first time after second-row Cannone muscled over the whitewash from a few metres out, with McKinley successful adding the extras.\\r\\n\\r\\nBenetton’s lead did not last long, though, as Edinburgh hit back with their opening try of the game on 53 minutes through Johnstone, with van der Walt converting.\\r\\n\\r\\nEdinburgh went through the phases with several pick-and-goes before finding Johnstone, who showed quick footwork and cut through the Benetton defensive line to score.\\r\\n\\r\\nBut just as Edinburgh looked to be stamping their authority on the match, Benetton responded with their second try through replacement Rizzi.\\r\\n\\r\\nThe hosts went through the phases and after an offside gave Benetton a penalty advantage, a grubber from Monty Ioane was pounced upon by Rizzi for the try.\\r\\n\\r\\nRizzi stepped up to convert the score to make it 15-10 with ten minutes remaining, before the fly-half sealed the victory at the death with a penalty after a frantic end to the game.\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/benetton-fight-back-to-beat-conference-b-rivals-edinburgh/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"098654a9b275e485a12ef942176c37e68a347c9aef8ca33785c56aac60a7d4ce\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/benetton-fight-back-to-beat-conference-b-rivals-edinburgh/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton fight back to beat rivals Edinburgh\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/AntonioRizziCelebrates19SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419173\"}],\"publishDate\":\"2019-03-02T18:20:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"6bf8e94b-c8ba-3dd3-a8c9-4771605f510d\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Kieran Marmion’s double inspired a huge win as Connacht maintained their formidable home record with a 46-5 victory over Ospreys in a one-sided Guinness PRO14 tie.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Keen to bounce back from a heavy loss to Glasgow last night, Connacht bossed the early exchanges, with Tom Farrell crossing early before two penalties from the excellent Kyle Godwin extended the lead.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Matthew Aubrey hit back against the run of play before Matt Healy, Marmion and a penalty try restored Connacht’s dominance.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Marmion crossed again before Tom McCartney scored in a comfortable second half as the result was all but decided by Connacht’s early blitz.</span></p>\\r\\n\\r\\n<blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\">\\r\\n<p dir=\\\"ltr\\\" lang=\\\"en\\\">Some very satisfied players at the full-time whistle \\uD83D\\uDE03 <a href=\\\"https://twitter.com/hashtag/StrongerInGreen?src=hash&amp;ref_src=twsrc%5Etfw\\\">#StrongerInGreen</a> <a href=\\\"https://t.co/8Aa8Yz5n4K\\\">pic.twitter.com/8Aa8Yz5n4K</a></p>\\r\\n— Connacht Rugby (@connachtrugby) <a href=\\\"https://twitter.com/connachtrugby/status/1101896447778349056?ref_src=twsrc%5Etfw\\\">March 2, 2019</a></blockquote>\\r\\n<script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script>\\r\\n\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Connacht flew out of the gates with a slick move to score their first through Farrell as a series of swift handoffs early on allowed the centre to cross the line in acres of space.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Irish team continued to pile on the pressure early doors as they showed intensity with every drive to pin their opponents in their own 22.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys appeared to have repelled the pressure but gave away a needless penalty which Godwin dispatched with ease.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The fly-half converted again as Connacht looked to be firmly in control, but Ospreys’ Olly Cracknell charged down a drop kick and the ball fell for Aubrey to score out wide against the run of play.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Godwin appeared to continue his blinder of a first half as he latched onto an opposition kick to storm past four defenders and cross the line.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">But protests from the Welsh side over an off-the-ball block bore fruit as the try was ruled out and Ospreys’ remained well in it.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Godwin and Farrell set up Healy for Connacht’s second try with two incisive passes and the winger crossed between the posts to tee up an easy conversion for Godwin.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Marmion was then the beneficiary of a powerful team effort as Connacht drove a maul over the line on the half</span><span style=\\\"font-family: 'Arial',sans-serif;\\\">-<span style=\\\"color: black;\\\">hour mark.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys had chances to reduce the deficit before half time but two crucial interceptions saw the ball up the other end of the pitch, where Connacht were awarded a penalty try after a deliberate knock-on from Keelan Giles.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">The Welsh side’s ill-discipline continued after the break as Jordan Lay received a yellow to give Connacht a two-man advantage.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Ospreys rallied well to gain some territory, but Marmion put any notion of a comeback out of sight as he was set up by </span><span style=\\\"font-family: 'Arial',sans-serif;\\\">Jarrad<span style=\\\"color: black;\\\"> Butler to score between the posts.</span></span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">With the victory secured, Connacht took their foot off the gas as they rung in the changes, but Ospreys failed to convert their increased possession into points.</span></p>\\r\\n&nbsp;\\r\\n<p style=\\\"margin: 0cm; margin-bottom: .0001pt;\\\"><span style=\\\"font-family: 'Arial',sans-serif; color: black;\\\">Instead, McCartney further embellished the score line as he drove over powerfully following a scrum.</span></p>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/godwin-and-marmion-inspire-huge-connacht-victory-over-ospreys/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"7bf5b3476f1f2a78f63b6603d62a9cbe6c9656256fea795a58754dbb121353c8\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/godwin-and-marmion-inspire-huge-connacht-victory-over-ospreys/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Godwin and Marmion inspire huge Connacht victory over Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/02181549/CONOSP201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419172\"}],\"publishDate\":\"2019-03-02T18:18:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"04edd6aa-9992-31bc-84e8-15e8a275b0b4\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Tries from Conor O’Brien, Adam Byrne and Rory O’Loughlin proved enough as Leinster Rugby beat Toyota Cheetahs 19-7 to extend their lead at the top of Conference B in Guinness PRO14.</strong>\\r\\n\\r\\nThe Irish province came into this game on the back of four straight Guinness PRO14 wins, while the Cheetahs had lost consecutive fixtures.\\r\\n\\r\\nAnd the home side made it five in a row thanks to tries from O’Brien, Byrne and O’Loughlin, complemented by some robust defensive work in the second half.\\r\\n\\r\\nAn early try from Rabz Maxwane threatened to put pressure on the table toppers, but experience and game management secured the points for Leinster and guarantees them a home semi-final.\\r\\n\\r\\nO'Brien opened the floodgates with a try after just ten minutes when he burst between two Cheetahs players to pierce the back line.\\r\\n\\r\\nBut Cheetahs hit back instantly when they seized on a loose ball to kick high up the field.\\r\\n\\r\\nMaxwane flexed his athletic ability as he left three Leinster players in his wake to latch onto the ball and cross the line.\\r\\n\\r\\nAfter a period of pressure, winger Byrne took advantage of some wonderful passing play from his Leinster side to jink inside his defender and power the ball home.\\r\\n\\r\\nhttps://twitter.com/leinsterrugby/status/1101594322804396032\\r\\n\\r\\nLeinster started the second half on top, with the wingers threatening a fragile Cheetahs defence time after time.\\r\\n\\r\\nBut at the other end, the experienced Leinster defence stopped the visitors from taking advantage of their limited forays into offensive territory.\\r\\n\\r\\nA foul from a scrum deep in the Leinster half gave Tian Schoeman the chance to reduce the deficit, but he scuffed high and wide in the rainy conditions.\\r\\n\\r\\nAs Cheetahs failed to take advantage after building up some rare pressure, it was Leinster who dominated the territory, only to be repelled by a seemingly dogged Cheetahs defence.\\r\\n\\r\\nBut eventually the breakthrough came as O’Loughlin found space down the left before latching onto his own excellent kick to make the score more comfortable for his side.\\r\\n\\r\\nThe final quarter saw ferocious tackles flying in from both sides as the two teams cancelled each other out – both in sloppy attacking play and committed defence.\\r\\n\\r\\nMax Deegan exemplified this as he stole a Cheetahs lineout deep in the Leinster 22 to ward off a sporadic chance for the visitors.\\r\\n\\r\\nLeinster were happy to go through their phases in an attempt to wear their opponents down, while Cheetahs’ kick-dominant strategy was rendered ineffective by the excellent positioning of the Leinster back line.\\r\\n\\r\\nLate pressure threatened to secure a bonus point for the Irish team but they settled with the four to maintain their mammoth lead at the top of the conference.\\r\\n\\r\\n&nbsp;\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/report/leinster-battle-past-dogged-toyota-cheetahs/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"b8e27314ba5ecc1df24b551622237315568b11efeb2a9fa055939e5495c954ce\",\"overwriteEnabled\":true},\"tags\":[\"report\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/report/leinster-battle-past-dogged-toyota-cheetahs/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Leinster battle past dogged Toyota Cheetahs\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01215032/LEICHE201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419171\"}],\"publishDate\":\"2019-03-01T21:53:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"3d2e7520-314a-38ab-ba67-400fbfda72ca\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Cardiff Blues will welcome the Isuzu Southern Kings on Saturday as they look to strengthen their title hopes in the Guinness PRO14.\\r\\n\\r\\nTheir opponents sit joint last in the other conference and will look to end a run of three straight defeats.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nThe Kings have no hope of breaking into Finals Series in Conference B but need just a point to overtake the Dragons ahead of the Welsh side’s clash with Ulster on Sunday.\\r\\n\\r\\nThey have struggled on the defensive end, conceding a mammoth 80 tries and 554 points in just 16 games this campaign.\\r\\n\\r\\nTheir opponents have fared a lot better, winning their last three at home and proving reliable on both ends of the pitch as they sit in third place in Conference A.\\r\\n\\r\\nGoing into the game, however, they lie 14 points behind second-placed Glasgow Warriors and will be looking over their shoulder at Connacht, Ospreys and Toyota Cheetahs.\\r\\n\\r\\n<strong>Team News (Cardiff)</strong>\\r\\n\\r\\nJason Harries will make his first start for the Blues since recovering from a foot injury last week to score two against Edinburgh off the bench.\\r\\n\\r\\nCardiff will also have Tomos Williams available amongst the replacements after he missed out on Wales’ victory over England.\\r\\n\\r\\nThe Blues will make five changes in all, with Harri Millard, Brad Thyer, Aled Summerhill, Macauley Cook and Scott Andrews coming into the starting lineup.\\r\\n\\r\\n<strong>Team News (Kings)</strong>\\r\\n\\r\\nNo.8 Andisa Ntsila will earn his eighth start of the season as Ruaan Lerm fails to recover from a concussion sustained last week.\\r\\n\\r\\nElsewhere, captain JC Astle will return to the starting lineup alongside centre Tertius Kruger.\\r\\n\\r\\n<strong>Talking Points</strong>\\r\\n\\r\\n<strong>Cardiff Blues Head Coach John Mulvihill said</strong>: “It's an important weekend, because now we can get a break on one of the teams (below us).\\r\\n\\r\\n\\\"The last three games the Kings have played, they've been close at half-time. They play well first half, but they tend to lose a bit of shape towards the end.\\r\\n\\r\\n\\\"We need to focus on our start, that's what has been letting us down because we do finish really well.\\\"\\r\\n\\r\\n<strong>Southern Kings Head Coach Deon Davids said</strong>: “We have had a tough two matches so far on the tour, and this week against a Cardiff Blues side that is on the back of a good win over Edinburgh will be an equally tough contest.\\r\\n\\r\\n“We have worked very hard this week to counter whatever they may have up their sleeve this weekend. We are hoping to end this tour on a positive note.”\\r\\n\\r\\n<strong>Key battle - Jason Harries vs Bjorn Basson </strong>\\r\\n\\r\\nThe Blues winger transformed the game last week after coming off the bench to score twice, but in a starting berth he’ll have to do well to outshine South African Bjorn Basson.\\r\\n\\r\\nThe veteran Kings player set the try-scoring record in the Currie Cup a few years ago.\\r\\n\\r\\n<strong>Did you know? </strong>The Isuzu Southern Kings have not won an away game this season.\\r\\n\\r\\n<strong>Cardiff Blues:</strong> Aled Summerhill; Owen Lane, Harri Millard, Willis Halaholo, Jason Harries, Jarrod Evans, Lloyd Williams, Brad Thyer, Liam Belcher, Scott Andrews, George Earle, Macauley Cook, Shane Lewis-Hughes, Olly Robinson, Nick Williams (c).\\r\\n\\r\\n<strong>Replacements:</strong> Ethan Lewis, Corey Domachowski, Keiron Assiratti, Rory Thornton, Seb Davies, Tomos Williams, Garyn Smith, Matthew Morgan.\\r\\n\\r\\n<strong>Southern Kings:</strong> Ulrich Beyers; Yaw Penxe, Meli Rokoua, Tertius Kruger, Bjorn Basson, Bader Pretorius, Sarel Pretorius, Alulotho Tshakweni, Michael Willemse, De-Jay Terblanche, John-Charles Astle (c), Henry Brown, Martinus Burger, Andisa Ntsila.\\r\\n\\r\\n<strong>Replacements:</strong> Alandre van Rooyen, Schalk Ferreira, Lupumlo Mguca, Stephan Greef, Stephan De Wit, Rudi van Rooyen, Nerton Lassen, Masixole Banda.\\r\\n<blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\">\\r\\n<p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDD34 TEAM ANNOUNCEMENT ⚫️</p>\\r\\nThe Isuzu Southern Kings team to face Cardiff Blues: <a href=\\\"https://twitter.com/hashtag/CARvKIN?src=hash&amp;ref_src=twsrc%5Etfw\\\">#CARvKIN</a><a href=\\\"https://twitter.com/hashtag/GuinnessPRO14?src=hash&amp;ref_src=twsrc%5Etfw\\\">#GuinnessPRO14</a><a href=\\\"https://twitter.com/hashtag/KingsCare?src=hash&amp;ref_src=twsrc%5Etfw\\\">#KingsCare</a><a href=\\\"https://twitter.com/cardiff_blues?ref_src=twsrc%5Etfw\\\">@cardiff_blues</a> <a href=\\\"https://twitter.com/PRO14RUBGY?ref_src=twsrc%5Etfw\\\">@PRO14RUBGY</a> <a href=\\\"https://twitter.com/Springboks?ref_src=twsrc%5Etfw\\\">@Springboks</a> <a href=\\\"https://t.co/fWulMNopz9\\\">pic.twitter.com/fWulMNopz9</a>\\r\\n\\r\\n— Isuzu Southern Kings (@SouthernKingsSA) <a href=\\\"https://twitter.com/SouthernKingsSA/status/1101453878271373312?ref_src=twsrc%5Etfw\\\">March 1, 2019</a></blockquote>\\r\\n<script async=\\\"\\\" src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script>\\r\\n\\r\\n<strong>TV:</strong> At Cardiff Arms Park, at 7.35pm (UK Time). Live on Premier Sports and BBC Alba.\\r\\n\\r\\n<strong>Referee:</strong> Joy Neville (IRFU)\\r\\n\\r\\n<strong>Assistant referees:</strong> Dan Jones (WRU), Mark Patton (IRFU)\\r\\n\\r\\n<strong>TMO:</strong> Brian MacNeice (IRFU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-cardiff-blues-vs-isuzu-southern-kings/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"848eb2f8dda951602e219530fc54b07e6c9f988f8a9b89fbfbd23fb0b2f21d6b\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-cardiff-blues-vs-isuzu-southern-kings/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Cardiff Blues vs Isuzu Southern Kings\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01190148/CARKIN201819SB-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419176\"}],\"publishDate\":\"2019-03-01T19:39:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"f9885ccd-af5a-3e98-95dd-c648e1a0ec5e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  Questo pomeriggio al Comunale di Monigo i Leoni di Kieran Crowely ospitano Edimburgo in uno scontro diretto che può valere più di mezza qualificazione ai playoff di Guinness PRO14.\\n  <br>\\n  <br>Partita “della vita” quella in programma oggi pomeriggio a Treviso per il Benetton dei sogni (e dei record). Sull’onda dello storico successo per 57 a 7 inflitto ai Dragons lo scorsa settimana (mai nessun club italiano era riuscito a segnare tanto in un incontro di Guinness PRO14) i veneti si presentano infatti al match-point contro Edimburgo nel fortino di Monigo (diretta DAZN, calcio di inizio ore 16.00).\\n  <br>\\n  <br>Imbattuti da otto partite ufficiali e sconfitti una sola volta nelle ultime 11 partite (allo Stoop di Twickenham dagli Harlequins, in Challenge Cup), gli uomini di Kieran Crowely hanno tra le mani le sorti del proprio destino.\\n  <br>\\n  <br>Vincere contro gli scozzesi oggi, in un weekend che vede anche gli Scarlets impegnati in casa contro Munster, regalerebbe infatti a Budd e compagni più di una partita di vantaggio sui diretti inseguitori, a quattro turni dalla fine della regular season.\\n  <br>\\n  <br>Edimburgo non vive certo il momento migliore della stagione ma, dopo aver centrato una clamorosa qualificazione ai quarti di finale di Champions Cup, resta una delle formazioni più pericolose del campionato. Nonostante le due sconfitte subite nelle ultime tre giornate (a casa dei Southern Kings e in casa contro i Cardiff Blues), gli scozzesi hanno infatti vinto comunque otto delle ultime dieci gare ufficiali.\\n  <br>\\n  <br>E’ una storia di battaglie “epiche” quella tra Benetton ed Edimburgo. Dall’ingresso dei Leoni nel professionismo internazionale le due squadre si sono affrontate sempre e solo per questioni “celtiche” e, da quella prima volta nel lontano 5 novembre 2010 (vittoria degli scozzesi a Murrayfield per 21 a 9), i rosso-neri si sono aggiudicati 11 delle 17 sfide totali. Negli ultimi dieci scontri diretti i veneti sono riusciti ad imporsi in sole tre occasioni (due a Edimburgo e una a Treviso) e la formazione di Richard Cockerill si è aggiudicata gli ultimi due match: il tiratissimi 31 a 30 dello scorso 28 settembre e il più netto 24 a 13 inflitto al Benetton a domicilio il 28 ottobre del 2017.\\n  <br>\\n  <br>Perfettamente in parità invece, lo storico dei precedenti a Monigo: negli otto scontri diretti al Comunale infatti, il bilancio è di quattro successi per parte.\\n  <br>\\n  <br>\\n  <strong>BENETTON RUGBY vs EDIMBURGO</strong>\\n  <br>Comunale di Monigo, Treviso\\n  <br>Sabato 2 marzo, ore 16.00\\n  <br>DIRETTA DAZN\\n  <br>\\n  <br>\\n  <strong>I PRECEDENTI</strong>\\n  <br>\\n  <br>\\n  <strong>ULTIMI TRE SCONTRI DIRETTI</strong>\\n  <br>Edimburgo – Benetton Rugby: 31-30 (28 settembre 2018)\\n  <br>Benetton Rugby – Edimburgo: 13-24 (28 ottobre 2017)\\n  <br>Edimburgo – Benetton Rugby: 17-20 (15 settembre 2017)\\n  <br>\\n  <br>\\n  <strong>DA TENERE D’OCCHIO</strong>\\n  <br>\\n  <br>\\n  <strong>Luca Sperandio e Jaco van der Walt </strong>\\n  <br>\\n  <br>Il giovane e versatile utility back Azzurro Luca Sperandio vive un momento di “grazia agonistica” che lo ha portato a marcare per ben tre volte nelle ultime due partite (in questa stagione è a quota sei mete in sei partite giocate). All’andata, lo scorso settembre, la sua tripletta scosse la Scozia, portando il ragazzino di Casale sul Sile all’attenzione degli addetti ai lavori. Cockerill in preparazione al match, lavora molto bene l’isolamento dei singoli e questo potrebbe limitarne l’efficacia personale, creando però spazi interesanti per i compagni.\\n  <br>\\n  <br>L’altro giocatore da monitorare attentamente è l’apertura sudafricana Jaco van der Walt. Il 25enne di Randfontein ex South Africa Schools è l’ennesimo profilo “intercettato” dalla SRU in ottica internazionale e sta maturando la sua esperienza a Edimburgo, ritagliandosi un ruolo di grande visibilità nel XV di Cockerill. Oggi non avrà attorno a se numerosi elementi di spicco della sua linea arretrata (su tutti il connazionale Duhan van der Merwe) ma la sua capacità di controllare il gioco sarà un problema da risolvere per Ian McKinley e per la difesa bianco-verde.\\n  <br>\\n  <br>\\n  <strong>LA SFIDA</strong>\\n  <br>\\n  <br>\\n  <strong>Nicola Quaglio vs WP Nel</strong>\\n  <br>\\n  <br>Nicola Quaglio contro WP Nel: la partita in mischia chiusa la deciderà, quanto meno sulla carta, questo confronto diretto tra due dei piloni più differenti tra loro dell’intero Guinness PRO14. L’esperienza, il mestiere e la tecnica di Nel, 32 anni, uno dei primi sudafricani “scozzesizzati” della più recente strategia internazionale della SRU, contro la gigantesca capacità di adattamento di Nicola Quaglio, 27enne rodigino che ha fatto della “dura” gavetta nel rugby italiano la sua pista di lancio per arrivare all’Azzurro e che ha trovato le “chiavi della sua carriera” alla corte di Pieter De Villiers (altro mostro sudafricano della mischia chiusa).\\n  <br>\\n  <br>Un anno fa dare una vittoria netta allo scozzese sarebbe stato tanto immediato quanto scontato. Oggi il peso specifico di Quaglio sulla prima linea della corazzata di Kieran Crowley è cresciuto enormemente tanto da rendere il confronto diretto un vero e proprio rebus.\\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/benetton-chiamato-allallungo-decisivo-per-la-storia/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"056d033539123c889f9a86a2954889bc71873ec94261216ff313eed7674de055\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/benetton-chiamato-allallungo-decisivo-per-la-storia/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Benetton chiamato all’allungo decisivo per la storia\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"publishDate\":\"2019-03-01T17:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"48af7db9-be52-37cb-99ce-8b05659c59e4\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<strong>Second plays bottom in Conference A on Saturday when Glasgow Warriors will look to continue their winning run in the Guinness PRO14 with a trip to Italian outfit Zebre.</strong>\\r\\n\\r\\nThe Scottish visitors are on a run of three victories on the bounce and are closing in on a Final Series place, while Zebre are without a win in the Guinness PRO14 since October.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nGlasgow Warriors are looking to keep the pressure up on Munster at the top of the conference, with just one point separating the two sides going into Round 17.\\r\\n\\r\\nDave Rennie’s men have been scoring for fun in recent weeks, putting more than 80 points past their last two opponents combined – totting up a 43-17 win over Connacht and a 38-34 triumph at Cardiff Blues.\\r\\n\\r\\nThe omens are good for the visitors too as Glasgow beat Zebre 36-8 at home in October and have never lost to the Italian side since they joined the Guinness PRO14 in the 2012-13 season.\\r\\n\\r\\nBut Zebre are boosted by the return of a number of their internationals and will be hoping to start picking up some ground on Toyota Cheetahs – 18 points above them in the conference.\\r\\n\\r\\n<strong>Team news (Zebre)</strong>\\r\\n\\r\\nZebre have made six changes to the side that were beaten by Ulster last time out in the Guinness PRO14 after being able to call on a number of their returning Italian internationals.\\r\\n\\r\\nWith the Guinness Six Nations on another break this weekend, Azzurri stars David Sisi, Jimmy Tuivaiti and Tommaso Castello have all been recalled to the starting XV.\\r\\n\\r\\nIn total, there are seven internationals in the matchday 23 with Giulio Bisegni, Carlo Canna and Fabiani also starting, while scrum-half Guglielmo Palazzani is on the bench.\\r\\n\\r\\n<strong>Team news (Glasgow Warriors)</strong>\\r\\n\\r\\nAdam Hastings starts at fly-half for Glasgow Warriors after returning from Scotland duty while Zander Fagerson is also back to start alongside Oli Kebble and George Turner in the front row.\\r\\n\\r\\nRobbie Nairn is rewarded for his two tries against Connacht with a place in the starting XV, where he will join Ruaridh Jackson and Rory Hughes in the back three.\\r\\n\\r\\nIt will be Jackson’s 150th Warriors appearance against Zebre, the 31-year-old becoming the 12th player to reach the milestone, with Kyle Steyn shifting from wing to centre to partner Stafford McDowall.\\r\\n\\r\\nhttps://twitter.com/GlasgowWarriors/status/1101448328670261248\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Glasgow Warriors head coach Dave Rennie said:</strong> “It’s a great occasion for Jacko and his family. His contribution since re-joining can’t be praised enough and he’s a hugely popular member of the group. Hopefully, we can get a result to mark the occasion for him.\\r\\n\\r\\n“We were pleased to get the win against Connacht and did some things really well on the night.\\r\\n\\r\\n“The challenge now is to improve on that and we’re going to need to as trips to Italy are extremely challenging, as we learned in January.”\\r\\n\\r\\n<strong>Key battle – Adam Hastings v Carlo Canna</strong>\\r\\n\\r\\nAdam Hastings has found his game time limited for Scotland during the Guinness Six Nations so far, with the talented young fly-half restricted to a couple of appearances off the bench.\\r\\n\\r\\nSo he will be itching to reaffirm his credentials for the final two rounds of the Championship by continuing his excellent club form in the No.10 shirt for Glasgow Warriors.\\r\\n\\r\\nHis opposite number on Saturday, Carlo Canna, has not fared much better for Italy but his extra experience could prove crucial as he looks to orchestrate the Zebre attack.\\r\\n\\r\\n<strong>Key stat:</strong> Zebre Rugby have lost their last nine Guinness PRO14 encounters since beating Edinburgh in Parma in October.\\r\\n\\r\\n<strong>Did you know?</strong> Glasgow’s only two defeats in the Guinness PRO14 on visits to Italy were both on trips to Treviso – in April 2011 and January 2019.\\r\\n\\r\\n<strong>Zebre:</strong> Francois Brummer, Gabriele Di Giulio, Giulio Bisegni, Tommaso Castello, James Elliott, Carlo Canna, Joshua Renton, Renato Giammarioli, Jimmy Tuivaiti, James Brown, David Sisi, Samuele Ortis, Roberto Tenga, Oliviero Fabiani, Daniele Rimpelli\\r\\n\\r\\n<strong>Replacements:</strong> Massimo Ceciliani, Danilo Fischetti, Matteo Nocera, Apisai Tauyavuca, Iacopo Bianchi, Guglielmo Palazzani, Tommaso Boni, Paula Balekana\\r\\n\\r\\n<strong>Glasgow Warriors:</strong> Ruaridh Jackson, Robbie Nairn, Kyle Steyn, Stafford McDowall, Rory Hughes, Adam Hastings, Nick Frisby, Oli Kebble, George Turner, Zander Fagerson, Tim Swinson, Scott Cummings, Rob Harley, Chris Fusaro, Matt Fagerson\\r\\n\\r\\n<strong>Replacements:</strong> Grant Stewart, Alex Allan, D’Arcy Rae, Bruce Flockhart, Adam Ashe, Niko Matawalu, Brandon Thomson, Paddy Kelly\\r\\n\\r\\n<strong>TV:</strong> At Stadio Sergio Lanfranchi, Parma, at 5.15pm (UK time). Live on DAZN and Premier Sports.\\r\\n\\r\\n<strong>Referee:</strong> Andrew Brace (IRFU)\\r\\n\\r\\n<strong>Assistant referees:</strong> Johnny Erskine (IRFU), Luca Trentin (FIR)\\r\\n\\r\\n<strong>TMO:</strong> Stefano Roscini (FIR)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-zebre-v-glasgow-warriors-5/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"25b8daad3c0eedd9a92ba8145cdd2a8628af5b0cf3e9edb0c8da5f1b5d7800d0\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-zebre-v-glasgow-warriors-5/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Zebre v Glasgow Warriors\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01172641/AdamHastingsZebre19SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419175\"}],\"publishDate\":\"2019-03-01T17:31:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"e752065e-79a5-31f0-ba18-5fe37e296d2e\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Jarrod Evans has been rewarded for his fine form with a new long-term contract to remain at Cardiff Blues.</p> \\n  <p>The young fly-half, who made his regional debut in 2015, has established himself as an integral member of the first team squad and has now made 58 appearances for his home region.</p> \\n  <p>Regarded as one of the best attacking fly-halves in the Guinness PRO14, Evans was called up by Wales for the Autumn Tests and made his international debut against Scotland last November.</p> \\n  <p>He remains in Warren Gatland’s Six Nations squad but has been released back to Cardiff Blues for the crucial PRO14 clash with Isuzu Southern Kings on Saturday (7.35pm).</p> \\n  <p>Evans was delighted to pledge his future to the Blues and is excited about the potential at Cardiff Arms Park.</p> \\n  <p>He said: “This is my home region and I’m obviously really happy here, so it was a simple decision to put pen to paper.</p> \\n  <p>“We demonstrated last season, by winning the Challenge Cup, what we are capable of and the potential we have at Cardiff Blues.</p> \\n  <p>“I feel like we are getting better and we have a lot of young players coming through the ranks to complement the more experienced heads.</p> \\n  <p>“It is an exciting place to be and with the style of rugby we try to play, and the environment we have, it is the best place for me to continue my development.</p> \\n  <p>“We have some massive games coming up this season, starting with Saturday against the Kings, and we are determined to secure that top three finish and Heineken Champions Cup rugby.”</p> \\n  <p>Evans, who is one of 25 first team players to have come through the Cardiff Blues academy system, has been in fine form since recovering from the shoulder injury he suffered in December.</p> \\n  <p>He pulls on the number 10 jersey at the Arms Park tomorrow and Cardiff Blues head coach John Mulvihill believes he has a massive future in the game.</p> \\n  <p>Mulvihill added: “Jarrod is one of the best attacking fly-halves in Europe and works really hard, both on and off the pitch, to be the best version of himself.</p> \\n  <p>“He is a really good student of the game and is very diligent and professional in everything he does. He’s instinctively a very strong attacking player but is also able to defend in the front line and his kicking game is continually improving.</p> \\n  <p>“It’s exciting to have him involved in our environment every day and as a young man he will only get better.</p> \\n  <p>“He’s an important member of our squad and it’s great to secure his services on a long-term contract. I’m looking forward to working with Jarrod to help him become a world class 10 in the future.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/jarrod-evans-signs-new-deal-at-cap/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"6358ca76f0412df317c766bf7e743ec3dd9f910e40fba809dc51fa2c1f5972cb\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/jarrod-evans-signs-new-deal-at-cap/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Jarrod Evans signs new deal at CAP\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2018/11/27163846/inpho_01435506.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"2200\"}],\"publishDate\":\"2019-03-01T17:13:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"61ca1984-2d9c-3979-b0da-a354889ff7a1\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Connacht and Ospreys go head to head in a Conference A clash with serious Guinness PRO14 Finals Series implications at the Sportsground on Saturday afternoon (2.45pm).\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nBoth sides are right in the mix for a Finals Series spot with Connacht fourth in Conference A on 42 points and Ospreys only one place and three points behind them.\\r\\n\\r\\nYet they are both struggling in recent weeks, as the Irishmen only have one victory in the last four Guinness PRO14 games and their Welsh visitors are on a five-game losing run in all competitions.\\r\\n\\r\\nConnacht can still boast a formidable home record – having only lost once at the Sportsground, in any competition, since September – but Ospreys have the advantage in the recent head-to-head.\\r\\n\\r\\nThey have won four of the previous five contests between the sides, as well as 22 of the 31 Guinness PRO14 clashes the pair have contested, but defeat on Saturday would put them a long way behind the eight-ball in the race for the postseason.\\r\\n\\r\\n<strong>Team news (Connacht)</strong>\\r\\n\\r\\nConnacht welcome back four men from international duty as Ultane Dillane, Quinn Roux, Tom Farrell and Caolin Blade are all in the matchday squad.\\r\\n\\r\\nDillane and Roux continue the second-row partnership that started for Ireland in the Guinness Six Nations victory over Italy last weekend, forming a front five that also includes Denis Buckley, Finlay Bealham and Shane Delahunt.\\r\\n\\r\\nOffloader extraordinaire Farrell returns in the centres alongside Peter Robb, who earns a first start of the campaign after impressing from the bench last time out, while scrum-half Kieran Marmion’s injury return continues with a second consecutive start.\\r\\n\\r\\nThat means Blade settles for a place on the bench but should offer impact if he enters the fray at the Sportsground.\\r\\n\\r\\n<strong>Team news (Ospreys)</strong>\\r\\n\\r\\nOspreys head coach Allen Clarke has elected to make just once change to the starting XV that went down 19-13 to Munster at the Liberty Stadium a week ago.\\r\\n\\r\\nThat alteration sees Clarke opt for experience as the ageless James Hook – with his 81 international caps – comes into the centres in place of teenager Tiaan Thomas-Wheeler.\\r\\n\\r\\nKeelan Giles continues on the wing in his return from a knee injury that kept him sidelined for a year – looking to build on a performance against Munster in which he beat the ten defenders.\\r\\n\\r\\nOspreys have 15 players unavailable, including seven men still on international duty with Wales.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Connacht head coach Andy Friend said:</strong> “We have trained well and prepared well this week. We have seen a really positive response from the players after a disappointing result last weekend in Glasgow.\\r\\n\\r\\n“We will continue to focus on our game and what we can control, as we have done all season. We know every game now is a must win and with a two-week break before our next game we are determined to finish this block on a high.\\r\\n\\r\\n“We are boosted by four of our players coming back from international duty. They bring a huge amount of experience to our matchday squad.”\\r\\n\\r\\n<strong> </strong><strong>Ospreys head coach Allen Clarke said: </strong>“As a group we understand the importance of this last game during the Six Nations block against Connacht, who are also vying for the play-offs.\\r\\n“Considering the off-field uncertainty the boys have been excellent, with a consistent focus on improving individually and collectively.\\r\\n\\r\\n“There's frustration that we've been on the wrong end of scorelines in each of the previous three games but also a realisation that we have the solutions to deliver a more complete performance on Saturday.\\r\\n\\r\\n“Games against Connacht are always testing and exciting, our focus is to be the best version of ourselves.”\\r\\n\\r\\n<strong>Key battle – The second row</strong>\\r\\n\\r\\nBoth teams boast serious star power in their respective second rows, making that battle a particularly fascinating one to watch.\\r\\n\\r\\nFor Connacht, Ultan Dillane and Quinn Roux pack down together – a pair that started for Ireland in their Guinness Six Nations victory over Italy just last weekend, where Roux dotted down the opening try.\\r\\n\\r\\nThey’ll come up against James King and Bradley Davies – who have 75 Wales caps between them – and the duo that can dominate the breakdown and set-piece will give their team a huge advantage.\\r\\n\\r\\nThe battle in the lineout could be particularly fascinating, with no Guinness PRO14 player having stolen more this season than King – who has pinched seven – although with three steals apiece, Roux and Dillane are also capable of disrupting the set-piece in response.\\r\\n\\r\\n<strong>Key fact</strong>\\r\\n\\r\\nConnacht have lost only once at home in any tournament since September – 31-24 to Munster in the Guinness PRO14 in early January.\\r\\n\\r\\n<strong>Did you know?</strong>\\r\\n\\r\\nOspreys have lost their last ten visits to Irish provinces since beating Connacht in Galway in September 2016.\\r\\n\\r\\n<strong>Connacht:</strong> 15. Tiernan O’Halloran, 14. Stephen Fitzgerald, 13. Tom Farrell, 12. Peter Robb, 11. Matt Healy, 10. Kyle Godwin, 9. Kieran Marmion; 1. Denis Buckley, 2. Shane Delahunt, 3. Finlay Bealham, 4. Quinn Roux, 5. Ultan Dillane, 6. Eoin McKeon, 7. Colby Fainga’a, 8. Jarrad Butler (C).\\r\\n\\r\\n<strong>Replacements</strong>: 16. Tom McCartney, 17. Peter McCabe, 18. Conor Carey, 19. James Cannon, 20. Paul Boyle, 21. Caolin Blade, 22. Tom Daly, 23. Cian Kelleher\\r\\n\\r\\n<strong>Ospreys: </strong>15. Dan Evans, 14. Hanno Dirksen, 13. Cory Allen, 12. James Hook, 11. Keelan Giles, 10. Luke Price, 9. Matthew Aubrey; 1. Jordan Lay, 2. Scott Baldwin, 3. Tom Botha, 4. James King, 5. Bradley Davies, 6. Olly Cracknell (C), 7. Sam Cross, 8. Rob McCusker\\r\\n\\r\\n<strong>Replacements: </strong>16. Scott Otten, 17. Rowan Jenkins, 18. Ma'afu Fia, 19. Lloyd Ashley, 20. Will Griffiths, 21. Harri Morgan, 22. Tom Williams, 23. Luke Morgan\\r\\n\\r\\n<strong>TV: </strong>At the Sportsground, Galway, 2.45pm. Live on Premier Sports 1 and TG4\\r\\n\\r\\n<strong>Referee:</strong> Marius Mitrea (FIR)\\r\\n\\r\\n<strong>Assistant Referees:</strong> Sean Gallagher (IRFU), Matteo Liperini (FIR)\\r\\n\\r\\n<strong>TMO:</strong> Olly Hodges (IRFU)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-connacht-v-ospreys-6/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"271f69335facd0f66de3f593e1e7061f863d3f27846336092c1cc37e1c992f85\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-connacht-v-ospreys-6/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Connacht v Ospreys\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164530/QuinnRouxOspCon1819SB2000-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419172\"}],\"publishDate\":\"2019-03-01T16:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"298587fb-09a5-331a-a16d-7f5ee4ff0b92\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"<html>\\n <head></head>\\n <body>\\n  <p>Bader Pretorius may only be a 21-year-old with only four Guinness PRO14 matches under his belt, but he has had his share of challenges which have often placed doubt on his future as a professional rugby player.</p> \\n  <p>Just two years ago Pretorius was one of a group of young players whose contracts were culled by the Golden Lions Rugby Union, where he had been plying his trade for the Gauteng side’s junior teams. A further blow was his struggle with injuries, which included two serious ACL (knee) injuries that placed him out of action until he joined the <em>Isuzu Southern Kings</em>.</p> \\n  <p>“There was always a little bit of doubt whether I would play professional rugby again after two ACL injuries, but I always had hope that I would play in one form or another,” the Johannesburg-born Pretorius confessed.</p> \\n  <p>“I never really thought of quitting rugby. It has always been my dream to play at the highest level, and that is still my dream.”</p> \\n  <p>After leaving the Lions, the fly-half spent most of his time working hard at staying in shape at the Stellenbosch Academy of Sport and had a brief stint in Germany where he hoped to revive his career, but was kept on the sideline by the ACL injury.</p> \\n  <p>His hope of playing top-flight rugby was re-ignited when, in January, he received an unexpected message from the <em>Isuzu Southern Kings </em>which would turn his fortunes around and reignite his deep passion for the game of rugby.</p> \\n  <p>“I’m very excited and honoured about this opportunity,” he said.</p> \\n  <p>“I was out injured the past year, and randomly received a text message from Coach Robbi (Kempson) to come for a trial. Training went very well and I got picked for that weekend and it all went well.</p> \\n  <blockquote>\\n   <p>“I always prayed for such an opportunity, and I trained very hard when I was in Stellenbosch.</p>\\n  </blockquote> \\n  <p>“Germany was a very good experience, but I did not get to do much as I had a knee injury.”</p> \\n  <p><iframe src=\\\"https://www.youtube.com/embed/xK_C7kxVh-U\\\" width=\\\"560\\\" height=\\\"315\\\" frameborder=\\\"0\\\" allowfullscreen></iframe></p> \\n  <p>Pretorius made his debut off the bench in his first week of joining the Port Elizabeth-based side when they took on Edinburgh Rugby and won the match 25-21 at NMU Madibaz Stadium on January 26. He went on to score his first Guinness PRO14 try on debut to help the side to victory – a moment he treasures as one of the highlights of his budding career.</p> \\n  <p>“My highlight was definitely my try, on debut, against Edinburgh. It definitely boosted my confidence. But I always try to keep my feet on the ground and take every game as it comes,” said Pretorius.</p> \\n  <p>“PR014 Rugby is a very tough competition, but a highly enjoyable challenge. I still don’t feel that I am 100% sharp, there is room for improvement, but I am sure that the more I play, the better I will get.”</p> \\n  <p>The fly-half has blended in well in the <em>Isuzu Southern Kings </em>team, so much so that he was selected as the solitary pivot for the side’s three-week tour of Ireland and Wales, where he has started all the matches so far in the No10 jersey.</p> \\n  <blockquote class=\\\"twitter-tweet\\\" data-lang=\\\"en\\\"> \\n   <p dir=\\\"ltr\\\" lang=\\\"en\\\">\\uD83D\\uDEA8 PLAYER FEATURE \\uD83D\\uDEA8</p> \\n   <p>“There was always a little bit of doubt whether I would play professional rugby again after two ACL injuries, but I always had hope” – Bader Pretorius</p> \\n   <p>Link: <a href=\\\"https://t.co/ay8aznVSde\\\">https://t.co/ay8aznVSde</a> <a href=\\\"https://t.co/DxUOSr9xZo\\\">pic.twitter.com/DxUOSr9xZo</a></p> \\n   <p>— Isuzu Southern Kings (@SouthernKingsSA) <a href=\\\"https://twitter.com/SouthernKingsSA/status/1101380709665685504?ref_src=twsrc%5Etfw\\\">March 1, 2019</a></p>\\n  </blockquote> \\n  <p><script async src=\\\"https://platform.twitter.com/widgets.js\\\" charset=\\\"utf-8\\\"></script></p> \\n  <p>Pretorius will be hoping to put in a stellar performance in the <em>Isuzu Southern Kings’ </em>final match of the tour, against Cardiff Blues at Cardiff Arms Park on Saturday night. Kick-off is at 21h35 (SA-time).</p> \\n  <p>It is unsurprising that Pretorius looks up to and hopes to model fellow Michaelhouse pupil, the recently retired Springbok flyhalf Patrick Lambie.</p> \\n  <blockquote>\\n   <p>“My rugby hero is Pat Lambie. Just the calmness he exudes on the field is something to look up to.”</p>\\n  </blockquote> \\n  <p>With the obstacles Pretorius has faced right at the start of his career, many others would have given up the dream of playing professional rugby. However, the former South African Schools “A” player’s passion for the game, coupled with the support from loved ones, continues to keep him going.</p> \\n  <p>“My motivation is the love I have for the game. There is nothing else I want to do, and my family is also a motivation – I want to make them proud.”</p> \\n </body>\\n</html>\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/2019/03/01/passion-for-the-game-keeps-bader-pretorius-motivated/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"e0f6298c2fc5a8ae6191ed7d1e7ab745c039ad9ae472b35911e52ca2a38dc1ed\",\"overwriteEnabled\":true},\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/2019/03/01/passion-for-the-game-keeps-bader-pretorius-motivated/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Passion for the game keeps Bader Pretorius motivated\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01162426/BaderPretoriusSouthMuns2000SB1819.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_TEAM\",\"sourceSystemId\":\"34\"}],\"publishDate\":\"2019-03-01T16:48:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false},{\"id\":\"9e2a022d-a0f0-3d88-9a9c-fe7b1023af5b\",\"content\":[{\"contentType\":\"TEXT\",\"content\":\"Benetton Rugby and Edinburgh Rugby meet in Treviso as two of the heavyweights in Conference B of the Guinness PRO14 are placed on collision course in Round 17.\\r\\n\\r\\nA potential cracker could be in the offing as two talented teams go head-to-head.\\r\\n\\r\\n<strong>What’s at stake?</strong>\\r\\n\\r\\nA crucial clash in the battle for Conference B’s Guinness PRO14 Final Series berths is on the cards as in-form Benetton roll out the red carpet for Edinburgh.\\r\\n\\r\\nUnbeaten in eight successive matches in all competitions, Kieran Crowley’s troops begin Round 17 four points ahead of Edinburgh and two in front of Ulster, who are third.\\r\\n\\r\\nRichard Cockerill’s visitors, who were edged out at home by Cardiff Blues last time out, will be looking to reel in their rivals as the regular season winds down towards its conclusion.\\r\\n\\r\\n<strong>Team news (Benetton Rugby)</strong>\\r\\n\\r\\nLuca Sperandio is given the nod at full-back whilst on the wings, Ratuva Tavuyara and Monty Ioane are set to be unleashed.\\r\\n\\r\\nSkipper Alberto Sgarbi is partnered by Marco Zanon in the centres while Ian McKinley starts at fly-half, with Marco Lazzaroni, Giovanni Pettinelli and Toa Halafihi named as Crowley’s back-row trio.\\r\\n\\r\\n<strong>Team news (Edinburgh Rugby)</strong>\\r\\n\\r\\nScotland internationals Hamish Watson and WP Nel will be back in the thick of the action as Edinburgh attempt to stop Benetton in their tracks.\\r\\n\\r\\nWatson and Nel return from injury whilst scrum-half Henry Pyrgos and centre Chris Dean are both also included, having sat out their team’s loss to the Blue due to their international commitments – Pyrgos is also named as captain.\\r\\n\\r\\nTom Brown is named at full-back but Edinburgh won’t be able to count on Duhan van der Merwe and Viliame Mata, who are both ruled out.\\r\\n\\r\\n<strong>Talking points</strong>\\r\\n\\r\\n<strong>Edinburgh head coach Richard Cockerill said:</strong> “It’s a huge game for us and it’s a huge game in the context of the conference.\\r\\n\\r\\n“We’ve had a couple of defeats in the last few games and they are four points above us. We need to win.\\r\\n“It will be a very tough match, but the momentum of our season will swing if we can go there and win.\\r\\n\\r\\n“That’s the reality of the game and that’s our objective. We’ve got to be hungry to go there and win.”\\r\\n\\r\\n<strong>Key battle – Monty Ioane v Jack Blain</strong>\\r\\n\\r\\nWith 16 rounds of the 2018-19 Guinness PRO14 done and dusted, only three players have beaten more opposition defenders than Benetton winger Monty Ioane – and one of them won’t be playing this weekend.\\r\\n\\r\\nThe Australian flyer has been a star performer for the men from Treviso so far this term, who has left 39 defenders trailing in his wake so far.\\r\\n\\r\\n<strong>Key fact</strong>\\r\\n\\r\\nBenetton have won their last six home matches in all competitions, with their last loss coming at the hands of Ulster in Round Eight.\\r\\n\\r\\n<strong>Did you know? </strong>\\r\\n\\r\\nEdinburgh have won their last two matches against Benetton whilst their overall records on visits to Stadio Monigo is split evenly – four wins and four losses.\\r\\n\\r\\nLining up in the opposite No.11 shirt will the prodigiously-talented teenager Jack Blain, a member of Scotland’s Under-20 Six Nations squad.\\r\\n\\r\\nCan youngster Blain make his presence felt, particularly in the absence of Van der Merwe, who tops the ‘defenders beaten’ column (61).\\r\\n\\r\\n<strong>Benetton Rugby: </strong>Luca Sperandio, Ratuva Tavuyara, Marco Zanon, Alberto Sgarbi (c), Monty Ioane, Ian McKinley, Dewaldt Duvenage, Toa Halafihi, Giovanni Pettinelli, Marco Lazzaroni, Niccolò Cannone, Irné Herbst, Marco Riccioni, Tomas Baravalle, Nicola Quaglio\\r\\n\\r\\n<strong>Replacements</strong>: Hame Faiva, Derrick Appiah, Tiziano Pasquali, Robert Barbieri, Marco Barbini, Giorgio Bronzini, Antonio Rizzi, Tommaso Benvenuti\\r\\n\\r\\n<strong>Edinburgh Rugby: </strong>Tom Brown, Damien Hoyland, James Johnstone, Chris Dean, Jack Blain, Jaco van der Walt, Henry Pyrgos (c), Pierre Schoeman, David Cherry, WP Nel, Fraser McKenzie, Callum Hunter-Hill, Luke Crosbie, Hamish Watson, Ally Miller\\r\\n\\r\\n<strong>Replacements: </strong>Ross Ford, Rory Sutherland, Pietro Ceccarelli, Ben Toolis, Senitiki Nayalo, Nathan Fowles, Simon Hickey, Mark Bennett\\r\\n\\r\\n<strong>TV: </strong>At Stadio Monigo, Treviso, 3pm. Live on Premier Sports 2 and DAZN\\r\\n\\r\\n<strong>Referee:</strong> George Clancy (IRFU)\\r\\n\\r\\n<strong>Assistant Referees:</strong> Andrea Piardi (FIR), Kieran Barry (IRFU)\\r\\n\\r\\n<strong>TMO:</strong> Alan Falzone (FIR)\"},{\"contentType\":\"ARTICLE_LINK\",\"content\":\"https://www.pro14rugby.org/preview/preview-benetton-rugby-v-edinburgh-rugby/\"}],\"language\":\"en\",\"version\":1,\"source\":{\"sourceSystem\":\"SOTIC\",\"sourceSystemId\":\"22551f4696667ef24ac6fdad20ae2dc705346fe5b7a88b54a16c771566db67b8\",\"overwriteEnabled\":true},\"tags\":[\"preview\"],\"clientId\":\"PRO14\",\"previewUrl\":\"https://www.pro14rugby.org/preview/preview-benetton-rugby-v-edinburgh-rugby/\",\"heroMedia\":{\"content\":{\"contentType\":\"IMAGE\",\"image\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"contentType\":\"IMAGE\",\"title\":\"Preview: Benetton Rugby v Edinburgh Rugby\",\"link\":\"https://d2cx26qpfwuhvu.cloudfront.net/pro12/wp-content/uploads/2019/03/01164459/inpho_01460929-1024x576.jpg\"},\"linkedIds\":[{\"sourceSystem\":\"OPTA_MATCH\",\"sourceSystemId\":\"419173\"}],\"publishDate\":\"2019-03-01T16:46:00.000Z\",\"auth\":{\"loginRequired\":false,\"roles\":[]},\"blocked\":false}]},\"metadata\":{\"createdAt\":\"2019-03-21T16:32:22.639Z\",\"pageItems\":50,\"totalItems\":1401,\"totalPages\":29,\"pageNumber\":0,\"pageSize\":50,\"sort\":\"publishDate: DESC\"}}"}],"_postman_id":"51321672-40b8-4f7f-be5a-920fb50d88d1"},{"name":"Article Localizations","id":"47598ba6-2730-417d-aa95-aec6d4283c6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/v2/articles/{{articleId}}/localizations?clientId={{clientId}}","description":"<p>Returns all localizations of the article. That is all the articles that are related to the article.</p>\n<p>Each article is completely independently managed, but can be linked to another article via Bridge, which creates a relationship between the articles, hence localization and not translation.</p>\n","urlObject":{"path":["v2","articles","{{articleId}}","localizations"],"host":["{{url}}"],"query":[{"key":"clientId","value":"{{clientId}}"},{"disabled":true,"key":"language","value":"en"}],"variable":[]}},"response":[{"id":"c8a7f438-284e-480d-a390-3f49f26d2946","name":"Article Localizations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v2/articles/{{articleId}}/localizations?clientId={{clientId}}","host":["{{url}}"],"path":["v2","articles","{{articleId}}","localizations"],"query":[{"key":"clientId","value":"{{clientId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 25 Jan 2023 14:51:45 GMT"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding,Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2965ddce35e344439e974765012649ae.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-P2"},{"key":"X-Amz-Cf-Id","value":"YRaYCfsxEr7NDt1vqzwaI71bxo7yFSriO5qKao0gR4a_V80U3PFPKQ=="},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"self"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"8ebcd2ae-39d9-4a3e-a0ca-139064b48a55\",\n            \"clientId\": \"INCROWD\",\n            \"version\": 5,\n            \"slug\": \"en-translation-of-spanish-article\",\n            \"publishDate\": \"2023-01-11T15:36:00.000Z\",\n            \"pinned\": true,\n            \"singlePage\": false,\n            \"heroMedia\": {\n                \"title\": \"en translation of Spanish article\",\n                \"content\": {\n                    \"id\": \"31827922-16fc-4fd3-a061-e5528f2a11c7\",\n                    \"contentType\": \"IMAGE\",\n                    \"image\": \"https://media-cdn.incrowdsports.com/ec33db39-4fde-4b0c-a6c1-2f403d3cf44b.png\"\n                }\n            },\n            \"readTimeMinutes\": 3,\n            \"language\": \"en\",\n            \"linkedIds\": [\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                }\n            ],\n            \"source\": {\n                \"sourceSystem\": \"BRIDGE\"\n            },\n            \"articleMetadata\": {},\n            \"content\": [\n                {\n                    \"id\": \"ce83b3f0-be1b-4acf-acbd-2b638fb30436\",\n                    \"contentType\": \"TEXT\",\n                    \"content\": \"<h6>I was standing behind the goal the other day watching David Raya take part in a series of strenuous warm-up exercises with goalkeeping coach Manu Sotelo. </h6><h6>Nothing too strange about that except that much of the session was conducted in Spanish. </h6><p>That made me think about just how much influence Spanish footballers have had on our Club in recent years given the performances of Raya, Sergi Canós and of course, the immortal José Ignacio Peleteiro Ramallo – better known to his adoring fans as Jota.</p><p>Jota arrived at newly promoted Brentford in August 2014 as a complete unknown and we all shrugged our shoulders before some rapid Wikipedia research highlighted his previous pedigree; his 11 goals had just inspired the previously unfancied Eibar to promotion to LaLiga for the first time in their history.</p><p>Brentford swooped for his signature and for a bargain €1.5m fee obtained a mesmerisingly talented inverted right winger and match winner who with the ball seemingly tied to his left foot led defenders a merry dance. They might have known that Jota would invariably cut inside them but knowing something and being able to do something about it are two entirely different things.</p><p>After an understandably slow start as he accustomed himself to the pace and intensity of the Championship and the agricultural attention of defenders unable to stop him by any fair means, Jota burst into life in November, scoring four times, including the glorious 91st-minute winner against rivals Fulham, cutting in from the right wing before picking his spot from the edge of the area that won him the title “Jota in the last minute” and the adoration of every Brentford fan. </p><iframe style=\\\"border: none\\\" width=\\\"100%\\\" height=\\\"600px\\\" data-tweet-url=\\\"<https://twitter.com/BrentfordFC/status/1580150468449374208>\\\" src=\\\"data:text/html;charset=utf-8,%3Cblockquote+class%3D%22twitter-tweet%22%3E%3Cp+lang%3D%22en%22+dir%3D%22ltr%22%3E+%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3C%2Fp%3E%26mdash%3B%3Ca+href%3D%22https%253A%252F%252Ftwitter.com%252FBrentfordFC%252Fstatus%252F1580150468449374208%3Fref_src%3Dtwsrc%255Etfw%22%3E%3C%2Fa%3E%3C%2Fblockquote%3E%3Cscript+async+src%3D%22https%3A%2F%2Fplatform.twitter.com%2Fwidgets.js%22+charset%3D%22utf-8%22%3E%3C%2Fscript%3E\\\"></iframe><p>If that was not enough, his incredible rasping long-range curling shot into the roof of the Cardiff City net earned the grudging applause of even the vociferous home supporters.</p><p>He spearheaded Brentford’s run to the Play-Offs and his 11 goals and twinkling feet earned him a place in <em>FourFourTwo</em> magazine’s top 40 EFL Players of the Season.</p><p>As good as the 2014/15 season was for Jota, the following season was a total flop as he damaged ankle ligaments on the opening day against Ipswich and after surgery missed four months of action before a surprise loan move back to Eibar given some personal issues.</p><p>Jota was like a blazing meteor. We thought we had seen the last of him but we never gave up hope and finally he returned to his spiritual home in January 2017 and received an uproarious and emotional welcome when coming on as a substitute in an FA Cup match against Eastleigh.</p><img width=\\\"100%\\\" alt=\\\"Jota Brentford v Fulham Celebration \\\" src=\\\"<http://res.cloudinary.com/brentford-fc/image/upload/v1665577688/Production/78D4644C-ECD0-471A-9C54-81152825F5E2_nvgk6t.jpg\\\"></img><p>It> was as if he had never been gone as he returned seemingly even better than ever and finished off the season as Brentford’s third leading scorer. Nobody who witnessed it will ever forget his match-winning two-goal performance against Queens Park Rangers when he left ex-Bee Jake Bidwell on his backside with his sorcery and trickery.</p><p>It came as a surprise when Jota left Griffin Park for Birmingham City for a reputed club-record fee in excess of £6m, but the old magic had gone. Perhaps he fed off the crowd as we fed off him - he was a genius who put a smile on the face of every Brentford supporter.</p>\",\n                    \"isHtml\": false\n                }\n            ],\n            \"auth\": {\n                \"loginRequired\": false,\n                \"roles\": [],\n                \"entitlements\": [],\n                \"restrictionType\": \"\"\n            },\n            \"blocked\": false\n        },\n        {\n            \"id\": \"81c7722e-f0fa-44f3-920d-930eff2a00dc\",\n            \"clientId\": \"INCROWD\",\n            \"version\": 3,\n            \"slug\": \"spanish-article\",\n            \"publishDate\": \"2023-01-04T15:35:53.235Z\",\n            \"pinned\": true,\n            \"singlePage\": false,\n            \"heroMedia\": {\n                \"title\": \"Spanish article\",\n                \"content\": {\n                    \"id\": \"31827922-16fc-4fd3-a061-e5528f2a11c7\",\n                    \"contentType\": \"IMAGE\",\n                    \"image\": \"https://media-cdn.incrowdsports.com/ec33db39-4fde-4b0c-a6c1-2f403d3cf44b.png\"\n                }\n            },\n            \"readTimeMinutes\": 0,\n            \"language\": \"es\",\n            \"linkedIds\": [\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                }\n            ],\n            \"source\": {\n                \"sourceSystem\": \"BRIDGE\"\n            },\n            \"articleMetadata\": {},\n            \"auth\": {\n                \"loginRequired\": false,\n                \"roles\": [],\n                \"entitlements\": [],\n                \"restrictionType\": \"\"\n            },\n            \"blocked\": false\n        }\n    ],\n    \"metadata\": {\n        \"createdAt\": \"2023-01-25T14:51:45Z\"\n    }\n}"},{"id":"7db368c8-b42e-4372-96cd-0d021b72f4db","name":"Filter by language","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v2/articles/{{articleId}}/localizations?clientId={{clientId}}&language=en","host":["{{url}}"],"path":["v2","articles","{{articleId}}","localizations"],"query":[{"key":"clientId","value":"{{clientId}}"},{"key":"language","value":"en"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 25 Jan 2023 14:53:07 GMT"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding,Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2965ddce35e344439e974765012649ae.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-P2"},{"key":"X-Amz-Cf-Id","value":"d9l0D-GqXA44d4NYdhpRwgDchbMt3617lXbBbjrNTJWKxVsYLAykXg=="},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"self"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"8ebcd2ae-39d9-4a3e-a0ca-139064b48a55\",\n            \"clientId\": \"INCROWD\",\n            \"version\": 5,\n            \"slug\": \"en-translation-of-spanish-article\",\n            \"publishDate\": \"2023-01-11T15:36:00.000Z\",\n            \"pinned\": true,\n            \"singlePage\": false,\n            \"heroMedia\": {\n                \"title\": \"en translation of Spanish article\",\n                \"content\": {\n                    \"id\": \"31827922-16fc-4fd3-a061-e5528f2a11c7\",\n                    \"contentType\": \"IMAGE\",\n                    \"image\": \"https://media-cdn.incrowdsports.com/ec33db39-4fde-4b0c-a6c1-2f403d3cf44b.png\"\n                }\n            },\n            \"readTimeMinutes\": 3,\n            \"language\": \"en\",\n            \"linkedIds\": [\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                },\n                {\n                    \"sourceSystem\": \"MEDIA\",\n                    \"sourceSystemId\": \"ec33db39-4fde-4b0c-a6c1-2f403d3cf44b\"\n                }\n            ],\n            \"source\": {\n                \"sourceSystem\": \"BRIDGE\"\n            },\n            \"articleMetadata\": {},\n            \"content\": [\n                {\n                    \"id\": \"ce83b3f0-be1b-4acf-acbd-2b638fb30436\",\n                    \"contentType\": \"TEXT\",\n                    \"content\": \"<h6>I was standing behind the goal the other day watching David Raya take part in a series of strenuous warm-up exercises with goalkeeping coach Manu Sotelo. </h6><h6>Nothing too strange about that except that much of the session was conducted in Spanish. </h6><p>That made me think about just how much influence Spanish footballers have had on our Club in recent years given the performances of Raya, Sergi Canós and of course, the immortal José Ignacio Peleteiro Ramallo – better known to his adoring fans as Jota.</p><p>Jota arrived at newly promoted Brentford in August 2014 as a complete unknown and we all shrugged our shoulders before some rapid Wikipedia research highlighted his previous pedigree; his 11 goals had just inspired the previously unfancied Eibar to promotion to LaLiga for the first time in their history.</p><p>Brentford swooped for his signature and for a bargain €1.5m fee obtained a mesmerisingly talented inverted right winger and match winner who with the ball seemingly tied to his left foot led defenders a merry dance. They might have known that Jota would invariably cut inside them but knowing something and being able to do something about it are two entirely different things.</p><p>After an understandably slow start as he accustomed himself to the pace and intensity of the Championship and the agricultural attention of defenders unable to stop him by any fair means, Jota burst into life in November, scoring four times, including the glorious 91st-minute winner against rivals Fulham, cutting in from the right wing before picking his spot from the edge of the area that won him the title “Jota in the last minute” and the adoration of every Brentford fan. </p><iframe style=\\\"border: none\\\" width=\\\"100%\\\" height=\\\"600px\\\" data-tweet-url=\\\"<https://twitter.com/BrentfordFC/status/1580150468449374208>\\\" src=\\\"data:text/html;charset=utf-8,%3Cblockquote+class%3D%22twitter-tweet%22%3E%3Cp+lang%3D%22en%22+dir%3D%22ltr%22%3E+%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3Ca+href%3D%22%22%3E%3C%2Fa%3E%3C%2Fp%3E%26mdash%3B%3Ca+href%3D%22https%253A%252F%252Ftwitter.com%252FBrentfordFC%252Fstatus%252F1580150468449374208%3Fref_src%3Dtwsrc%255Etfw%22%3E%3C%2Fa%3E%3C%2Fblockquote%3E%3Cscript+async+src%3D%22https%3A%2F%2Fplatform.twitter.com%2Fwidgets.js%22+charset%3D%22utf-8%22%3E%3C%2Fscript%3E\\\"></iframe><p>If that was not enough, his incredible rasping long-range curling shot into the roof of the Cardiff City net earned the grudging applause of even the vociferous home supporters.</p><p>He spearheaded Brentford’s run to the Play-Offs and his 11 goals and twinkling feet earned him a place in <em>FourFourTwo</em> magazine’s top 40 EFL Players of the Season.</p><p>As good as the 2014/15 season was for Jota, the following season was a total flop as he damaged ankle ligaments on the opening day against Ipswich and after surgery missed four months of action before a surprise loan move back to Eibar given some personal issues.</p><p>Jota was like a blazing meteor. We thought we had seen the last of him but we never gave up hope and finally he returned to his spiritual home in January 2017 and received an uproarious and emotional welcome when coming on as a substitute in an FA Cup match against Eastleigh.</p><img width=\\\"100%\\\" alt=\\\"Jota Brentford v Fulham Celebration \\\" src=\\\"<http://res.cloudinary.com/brentford-fc/image/upload/v1665577688/Production/78D4644C-ECD0-471A-9C54-81152825F5E2_nvgk6t.jpg\\\"></img><p>It> was as if he had never been gone as he returned seemingly even better than ever and finished off the season as Brentford’s third leading scorer. Nobody who witnessed it will ever forget his match-winning two-goal performance against Queens Park Rangers when he left ex-Bee Jake Bidwell on his backside with his sorcery and trickery.</p><p>It came as a surprise when Jota left Griffin Park for Birmingham City for a reputed club-record fee in excess of £6m, but the old magic had gone. Perhaps he fed off the crowd as we fed off him - he was a genius who put a smile on the face of every Brentford supporter.</p>\",\n                    \"isHtml\": false\n                }\n            ],\n            \"auth\": {\n                \"loginRequired\": false,\n                \"roles\": [],\n                \"entitlements\": [],\n                \"restrictionType\": \"\"\n            },\n            \"blocked\": false\n        }\n    ],\n    \"metadata\": {\n        \"createdAt\": \"2023-01-25T14:53:07Z\"\n    }\n}"}],"_postman_id":"47598ba6-2730-417d-aa95-aec6d4283c6e"}],"id":"d91cc614-3020-4f9e-99e6-c32980a18617","_postman_id":"d91cc614-3020-4f9e-99e6-c32980a18617","description":""},{"name":"Categories","item":[{"name":"Categories","id":"9dbdad2e-66ce-4c44-a65f-1d586cde7205","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/v2/categories?clientId={{clientId}}&tree=false","urlObject":{"path":["v2","categories"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID, e.g. INCROWD [required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"description":{"content":"<p>Boolean, true to return cateogry tree. Defaults to false if omitted\n[optional, default = false]</p>\n","type":"text/plain"},"key":"tree","value":"false"}],"variable":[]}},"response":[{"id":"ba779af9-43c2-4c55-a1dc-16bd60294560","name":"Categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{articleCmsURL}}/v1/categories?clientId={{clientId}}","host":["{{articleCmsURL}}"],"path":["v1","categories"],"query":[{"key":"clientId","value":"{{clientId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"public, max-age=30","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:34:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 21 Mar 2019 16:34:32 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"ypXol6URX_4el3LrczeOdBaPyY-dXQ8QAt6qtQ034QNc23U7ghT3-Q==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"id\": \"989457a4-2797-445f-b657-d78b8b6fb756\",\n      \"clientId\": \"HULL\",\n      \"text\": \"Match Report\",\n      \"i18n\": [\n        {\n          \"lang\": \"fr\",\n          \"text\": \"Rapport de Match\"\n        },\n        {\n          \"lang\": \"en\",\n          \"text\": \"Match Report\"\n        }\n      ],\n      \"lastModified\": {\n        \"date\": \"2019-01-18T15:13:43.569Z\"\n      }\n    }\n  ],\n  \"metadata\": {\n    \"createdAt\": \"2019-03-21T16:34:02.667Z\"\n  }\n}"}],"_postman_id":"9dbdad2e-66ce-4c44-a65f-1d586cde7205"},{"name":"Category","id":"5a5c13e4-fb86-4894-baa8-676f4621e7b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/v2/categories/{{categoryId}}?tree=false","urlObject":{"path":["v2","categories","{{categoryId}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Boolean, true to return cateogry tree. Defaults to false if omitted\n[optional, default = false]</p>\n","type":"text/plain"},"key":"tree","value":"false"}],"variable":[]}},"response":[{"id":"df8889d0-b892-4422-9695-badf4b49f430","name":"Category","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{articleCmsURL}}/v1/categories/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"public, max-age=30","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:35:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 21 Mar 2019 16:36:03 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"j1w_PoPrlnglsw1WVzzhy57kmiHo8hWIVtB72wwsZY0AQhe-w1UVrw==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": {\n    \"id\": \"989457a4-2797-445f-b657-d78b8b6fb756\",\n    \"clientId\": \"HULL\",\n    \"text\": \"Match Report\",\n    \"i18n\": [\n      {\n        \"lang\": \"fr\",\n        \"text\": \"Rapport de Match\"\n      },\n      {\n        \"lang\": \"en\",\n        \"text\": \"Match Report\"\n      }\n    ],\n    \"lastModified\": {\n      \"date\": \"2019-01-18T15:13:43.569Z\"\n    }\n  },\n  \"metadata\": {\n    \"createdAt\": \"2019-03-21T16:34:02.667Z\"\n  }\n}"}],"_postman_id":"5a5c13e4-fb86-4894-baa8-676f4621e7b5"},{"name":"Category by slug","id":"8535a8d0-5c36-4c03-96be-f8a84a134775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{url}}/v2/categories/slug/{{categorySlug}}?clientId={{clientId}}","urlObject":{"path":["v2","categories","slug","{{categorySlug}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>The client ID, e.g. INCROWD\n[required]</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"}],"variable":[]}},"response":[{"id":"32ed2baa-e431-4100-935a-30ab2d1e179a","name":"Category","originalRequest":{"method":"GET","header":[],"url":"{{articleCmsURL}}/v1/categories/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"content-type, authorization","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Max-Age","value":"3600","name":"Access-Control-Max-Age","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"key":"Cache-Control","value":"public, max-age=30","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=UTF-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 21 Mar 2019 16:35:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 21 Mar 2019 16:36:03 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Pragma","value":"","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Via","value":"1.1 d75d399a905c3cf58d63f6f850e709ca.cloudfront.net (CloudFront)","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Amz-Cf-Id","value":"j1w_PoPrlnglsw1WVzzhy57kmiHo8hWIVtB72wwsZY0AQhe-w1UVrw==","name":"X-Amz-Cf-Id","description":"Custom header"},{"key":"X-Cache","value":"Miss from cloudfront","name":"X-Cache","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"success\",\n  \"data\": {\n    \"id\": \"989457a4-2797-445f-b657-d78b8b6fb756\",\n    \"clientId\": \"HULL\",\n    \"text\": \"Match Report\",\n    \"i18n\": [\n      {\n        \"lang\": \"fr\",\n        \"text\": \"Rapport de Match\"\n      },\n      {\n        \"lang\": \"en\",\n        \"text\": \"Match Report\"\n      }\n    ],\n    \"lastModified\": {\n      \"date\": \"2019-01-18T15:13:43.569Z\"\n    }\n  },\n  \"metadata\": {\n    \"createdAt\": \"2019-03-21T16:34:02.667Z\"\n  }\n}"}],"_postman_id":"8535a8d0-5c36-4c03-96be-f8a84a134775"}],"id":"e876b715-07e0-4046-adbe-f9115f92ef89","_postman_id":"e876b715-07e0-4046-adbe-f9115f92ef89","description":""},{"name":"Locales","item":[{"name":"Locales","id":"2e1570b0-0310-4fb1-83be-1425df4f6e73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/v2/locales?clientId={{clientId}}&page=0&size=10&sort=-name","description":"<p>Returns locales supported by the client ID</p>\n","urlObject":{"path":["v2","locales"],"host":["{{url}}"],"query":[{"key":"clientId","value":"{{clientId}}"},{"key":"page","value":"0"},{"key":"size","value":"10"},{"key":"sort","value":"-name"}],"variable":[]}},"response":[{"id":"823c9f37-49a5-44c5-83cd-73d06a4ef2b3","name":"Locales","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v2/locales?clientId={{clientId}}","host":["{{url}}"],"path":["v2","locales"],"query":[{"key":"clientId","value":"{{clientId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 25 Jan 2023 14:47:28 GMT"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding,Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2965ddce35e344439e974765012649ae.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-P2"},{"key":"X-Amz-Cf-Id","value":"Ikm7ZYqv5s52dzcm45NyeUO-6AF9dMD1bmJKUEHX2JVcPl-ys60Csg=="},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"self"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"3d8301f1-a7df-4790-950f-a9f2f3b23265\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Afrikaans (South Africa) : af-ZA\",\n            \"languageTag\": \"af-ZA\",\n            \"default\": false\n        },\n        {\n            \"id\": \"b434ce8e-bad0-4a7a-94dc-176607dc5ff9\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Afrikaans : af\",\n            \"languageTag\": \"af\",\n            \"default\": false\n        },\n        {\n            \"id\": \"dde1f6e4-aea5-4633-ae17-386b8cc259f6\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Aghem (Cameroon) : agq-CM\",\n            \"languageTag\": \"agq-CM\",\n            \"default\": false\n        },\n        {\n            \"id\": \"e86a58a9-df26-4d2d-8210-59236739076b\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Amharic : am\",\n            \"languageTag\": \"am\",\n            \"default\": false\n        },\n        {\n            \"id\": \"6a1dbd5c-ff08-48b1-985e-64ceb7327151\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Arabic : ar\",\n            \"languageTag\": \"ar\",\n            \"default\": false\n        },\n        {\n            \"id\": \"f5557e44-3796-456c-b29f-c294f85b8f48\",\n            \"clientId\": \"F1PLAY\",\n            \"name\": \"Chinese : zh\",\n            \"languageTag\": \"zh\",\n            \"default\": false\n        },\n        {\n            \"id\": \"992e3836-28ab-4759-ac7b-a39455a017d6\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Chinese : zh\",\n            \"languageTag\": \"zh\",\n            \"default\": false\n        },\n        {\n            \"id\": \"d198665e-4bca-4b74-bc40-bd78775669b9\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"English (United States)\",\n            \"languageTag\": \"en-US\",\n            \"default\": false\n        },\n        {\n            \"id\": \"b4682fc4-a288-4be9-ba91-cb403cc98225\",\n            \"clientId\": \"HUDDERSFIELD\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"073c5338-5bf1-4e4b-a0e5-c27e2d01400c\",\n            \"clientId\": \"ULSTER\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"ef9bf2f7-b71b-4650-8c67-66f03f124db2\",\n            \"clientId\": \"GYMNSW\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"cef6227e-e39a-46c2-85f2-33d55d547ac5\",\n            \"clientId\": \"INVIQADEMO\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"f272a095-8ac4-4dc9-afa6-1753f41db34f\",\n            \"clientId\": \"NORWICHFC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"3c8cbd47-e16a-4bf6-8127-f54e73f2e556\",\n            \"clientId\": \"FANSCORE\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"d7a2837c-8a8b-494c-95c1-c3ff75109b4c\",\n            \"clientId\": \"PRL\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"cc8f72ea-1254-4a67-900f-666de92475a3\",\n            \"clientId\": \"EUROLEAGUE\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"b352e0f7-9e3b-486b-80e1-aa5f12e2a6dd\",\n            \"clientId\": \"F1PLAY\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"7418faa6-9345-4533-bcc4-0f88a0a4fc7a\",\n            \"clientId\": \"QPR\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"2d3b48b7-abaa-415d-8611-daba4391f6df\",\n            \"clientId\": \"LONDONIRISHRFC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"da351fa6-38f3-459a-be6e-bd7b8c68960d\",\n            \"clientId\": \"BRENTFORD\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"bbeb4655-e22b-45d4-874a-ca43bb718a6d\",\n            \"clientId\": \"MLS\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"33631557-ea26-4a8a-a695-a8515abe7480\",\n            \"clientId\": \"DELETEWEB\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"cb8dd304-afd2-462c-a831-2fc8f5dbb81a\",\n            \"clientId\": \"CAST\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"bcb6f164-20c5-4f5d-8ea9-3a3e73b7e282\",\n            \"clientId\": \"BCFC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"f5b52e1c-d5df-4bb9-92dc-87bd40843ac0\",\n            \"clientId\": \"GYMNASTICSAUS\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"721b8e1d-02b7-4f54-adfe-070fc6a33ad1\",\n            \"clientId\": \"FIJIANDRUA\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"35f8cf27-082f-49c7-ad51-d86b4f8729fe\",\n            \"clientId\": \"SA20\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"bff8354b-38a0-4c80-a2db-8a8cf121c375\",\n            \"clientId\": \"13STRIDES\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"6a37eac9-b6d7-497c-b5e2-d31944e531ad\",\n            \"clientId\": \"ACADEMY\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"35b6b605-9fdd-4abe-a3d9-2ae9deac3b2e\",\n            \"clientId\": \"RFL\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"323808f6-7c7b-4654-80f3-8f2013761693\",\n            \"clientId\": \"SOTICPRL\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"d8c5d00e-41ff-4b8b-8812-6f184efcd516\",\n            \"clientId\": \"PALACE\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"684b1282-a689-4050-a8c5-85e6b7eb2d22\",\n            \"clientId\": \"GYMNT\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"e5db1169-9a47-4112-bfee-aabf9f56b073\",\n            \"clientId\": \"GYMTAS\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"67095c32-1ea6-4898-a15b-c9d865dd9608\",\n            \"clientId\": \"GYMQLD\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"cb84a731-ab72-4f27-9e7f-b577429262a9\",\n            \"clientId\": \"LEEDS\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"a7ab46e0-5b2e-4d44-8117-8b9a96b7beb5\",\n            \"clientId\": \"GYMWA\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"b58e51d8-35e1-4e10-9bfe-b248df8539b9\",\n            \"clientId\": \"MAVIS\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"3213dd9f-7126-4e55-ace3-c4132606b6a1\",\n            \"clientId\": \"ICPRODUCT\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"fe6db66f-f6a6-463e-b034-9fc6d4a9832b\",\n            \"clientId\": \"GYMACT\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"52d8fc3f-1452-4218-bbe8-94a74961fda6\",\n            \"clientId\": \"GYMSA\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"559c363b-2d01-4877-98c1-3ac98d0013e0\",\n            \"clientId\": \"BIRMINGHAMFC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"8cb4a870-094f-45f8-821f-03652d22687c\",\n            \"clientId\": \"LEINSTER\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"4be092f7-4b5d-40f2-b3b4-e8cf740bd6fa\",\n            \"clientId\": \"GYMVIC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"57a08a86-406e-420e-af70-97b02d85fc2d\",\n            \"clientId\": \"AFL\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"e9647b1b-ec83-4c7a-a416-e34f65e7d19b\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"7fc38045-7122-4715-941c-e9ca7b8486c9\",\n            \"clientId\": \"SPORTFIVE\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"95f205bf-5890-403c-b670-346b27214c84\",\n            \"clientId\": \"DERBY\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"1ae82c64-918f-4619-aad9-7ea46d18d2c8\",\n            \"clientId\": \"BORO\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"e69a613f-9da3-4c1c-89e8-2829800fd863\",\n            \"clientId\": \"DEVCLIENT\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        }\n    ],\n    \"metadata\": {\n        \"createdAt\": \"2023-01-25T14:47:28Z\",\n        \"pageItems\": 50,\n        \"totalItems\": 73,\n        \"totalPages\": 2,\n        \"pageNumber\": 0,\n        \"pageSize\": 50,\n        \"sort\": \"name\"\n    }\n}"},{"id":"49c6ec51-a12b-4ba0-9f70-85645faa8f96","name":"Pagination","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/v2/locales?clientId={{clientId}}&page=0&size=10&sort=-name","host":["{{url}}"],"path":["v2","locales"],"query":[{"key":"clientId","value":"{{clientId}}"},{"key":"page","value":"0"},{"key":"size","value":"10"},{"key":"sort","value":"-name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 25 Jan 2023 14:54:17 GMT"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding,Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2965ddce35e344439e974765012649ae.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-P2"},{"key":"X-Amz-Cf-Id","value":"5_mx4BPlZTfqOyIURbvckDhFACvrJjT6pqo67D0C-LMuNHdOHHWmdw=="},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"self"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"15bd9fb3-df64-494b-996f-9be0c4ce0fdf\",\n            \"clientId\": \"BMC\",\n            \"name\": \"Welsh : cy\",\n            \"languageTag\": \"cy\",\n            \"default\": false\n        },\n        {\n            \"id\": \"8324e2ce-4c96-42a1-8330-66989217fd7c\",\n            \"clientId\": \"F1PLAY\",\n            \"name\": \"Vietnamese : vi\",\n            \"languageTag\": \"vi\",\n            \"default\": false\n        },\n        {\n            \"id\": \"ddd7bc40-2c87-4a6a-8bee-10d783ed3598\",\n            \"clientId\": \"ICPRODUCT\",\n            \"name\": \"Spanish : es\",\n            \"languageTag\": \"es\",\n            \"default\": false\n        },\n        {\n            \"id\": \"ecfad85f-488a-4346-aeb2-383ad654cf1e\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Spanish : es\",\n            \"languageTag\": \"es\",\n            \"default\": false\n        },\n        {\n            \"id\": \"dd7c9ae1-f483-4f56-8ed0-9d37b08f274b\",\n            \"clientId\": \"INCROWD\",\n            \"name\": \"Spanish (Argentina) : es-AR\",\n            \"languageTag\": \"es-AR\",\n            \"default\": false\n        },\n        {\n            \"id\": \"b4682fc4-a288-4be9-ba91-cb403cc98225\",\n            \"clientId\": \"HUDDERSFIELD\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"073c5338-5bf1-4e4b-a0e5-c27e2d01400c\",\n            \"clientId\": \"ULSTER\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"ef9bf2f7-b71b-4650-8c67-66f03f124db2\",\n            \"clientId\": \"GYMNSW\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"cef6227e-e39a-46c2-85f2-33d55d547ac5\",\n            \"clientId\": \"INVIQADEMO\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        },\n        {\n            \"id\": \"f272a095-8ac4-4dc9-afa6-1753f41db34f\",\n            \"clientId\": \"NORWICHFC\",\n            \"name\": \"English : en\",\n            \"languageTag\": \"en\",\n            \"default\": true\n        }\n    ],\n    \"metadata\": {\n        \"createdAt\": \"2023-01-25T14:54:17Z\",\n        \"pageItems\": 10,\n        \"totalItems\": 73,\n        \"totalPages\": 8,\n        \"pageNumber\": 0,\n        \"pageSize\": 10,\n        \"sort\": \"-name\"\n    }\n}"}],"_postman_id":"2e1570b0-0310-4fb1-83be-1425df4f6e73"},{"name":"Locale","id":"8b620961-4646-4da0-b7bb-557f3b5ae975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/v2/locales/{{localeId}}","urlObject":{"path":["v2","locales","{{localeId}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cbc7a05b-8c8a-4789-94ef-78cd2e9d0e19","name":"Locale","originalRequest":{"method":"GET","header":[],"url":"{{url}}/v2/locales/{{localeId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"223"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 25 Jan 2023 14:48:43 GMT"},{"key":"Vary","value":"Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2965ddce35e344439e974765012649ae.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-P2"},{"key":"X-Amz-Cf-Id","value":"WX4JcKF9cALM2cCTHpw41eLTHh30wNzebw_TXfhzhwvsYlBtMYeKRQ=="},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Security-Policy","value":"self"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store, max-age=0"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": \"3d8301f1-a7df-4790-950f-a9f2f3b23265\",\n        \"clientId\": \"INCROWD\",\n        \"name\": \"Afrikaans (South Africa) : af-ZA\",\n        \"languageTag\": \"af-ZA\",\n        \"default\": false\n    },\n    \"metadata\": {\n        \"createdAt\": \"2023-01-25T14:48:43Z\"\n    }\n}"}],"_postman_id":"8b620961-4646-4da0-b7bb-557f3b5ae975"}],"id":"42f891c4-4447-4a2c-aa36-5630c2e8c732","_postman_id":"42f891c4-4447-4a2c-aa36-5630c2e8c732","description":""}],"event":[{"listen":"prerequest","script":{"id":"25b59aa3-dc95-4827-8ef7-1ace5e273169","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fbb46847-556a-45ef-8fd8-c6bce063e7b6","type":"text/javascript","exec":[""]}}]}