CINXE.COM
Primary Homework Help | Online Games For Kids - BBC Bitesize
<!DOCTYPE html><html lang="en-GB" class="b-header--white--black b-footer--transparent--dark-grey b-reith-sans-font"><head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.co.uk/bitesize/primary","20200820050938","https://web.archive.org/","web","/_static/", "1597900178"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <script> window.orb_fig_blocking = false window.bbcredirection = { geo: false, device: false }; </script> <!-- Environment: live --> <!-- Orbit: 3.0.0-1080.3a4ef6f9 --> <!-- istats Web Module: 0.0.2-477.3a39ca0 --> <!-- navid Web Module: 0.2.0-21.719d1f6 --> <!-- User Activity Helper Web Module: 1.0.0-86.88e40f8 --> <!-- cookiebanner Web Module: 0.0.2-477.3a39ca0 --> <!-- searchbox Web Module: 3.0.0-164.bee1eea --> <!-- navpromo Web Module: 3.0.0-153.7cba724 --> <meta name="viewport" content="width=device-width, initial-scale=1.0"><meta property="fb:admins" content="100004154058350"><link rel="stylesheet" href="https://web.archive.org/web/20200820050938cs_/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/css/orb-ltr.min.css"><!--[if (lt IE 9) & (!IEMobile)]> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/css/orb-ie-ltr.min.css"> <![endif]--><script type="text/javascript">/*<![CDATA[*/ window.orb = { lang: 'en', bbcBaseUrl: 'https://web.archive.org/web/20200820050938/https://www.bbc.co.uk', bbcUrlPrefix: 'https://web.archive.org/web/20200820050938/https://www.', staticHost: 'https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f', figUrl: 'https://web.archive.org/web/20200820050938/https://fig.bbc.co.uk/frameworks/fig/2/fig.js', partialCookieOvenUrl: 'https://web.archive.org/web/20200820050938/https://cookie-oven.api.bbc' }; document.documentElement.className += (document.documentElement.className? ' ' : '') + 'orb-js'; window.orb.worldwideNavlinks = ''; /*]]>*/</script><script>// Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: https://jira.dev.bbc.co.uk/browse/ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } (function() { var language = 'en'; language = 'en'; var modal = false; var istatsLabels = {name: 'kl.education.primaryindex.page' || undefined}; istatsLabels['app_name'] = 'education'; istatsLabels['app_type'] = 'responsive'; istatsLabels['bbc_site'] = 'bitesize'; istatsLabels['bitesize_cloud'] = 'true'; istatsLabels['page_language'] = 'en-GB'; istatsLabels['page_type'] = 'primary-index'; function getMetaValue(propertyName) { var metaTag = document.querySelector( "meta[property='" + propertyName + "'], " + "meta[name='" + propertyName + "']"); if (metaTag) { return metaTag.getAttribute("content"); } else { throw new Error('No meta tag called: ' + propertyName) } } function generateCountername() { if (window.location.protocol === 'file:') { return 'local.file'; } var pathName = window.location.pathname .replace(/\/$/, "") .replace(/^\//, "") .replace(/\//g, '.'); return pathName + '.page'; } var additionalPageProperties = {}; additionalPageProperties['custom_var_3'] = 'primary'; var page = { name: 'bitesize.primary.levels.zvbc87h.page' || istatsLabels.name || generateCountername(), destination: 'BITESIZE' || null, producer: 'BITESIZE' || null, section: 'learn::primary' || null, site: '' || istatsLabels.bbc_site || istatsLabels.app_name || istatsLabels.prod_name || null, contentId: 'urn:bbc:ldp:zvbc87h' || null, contentType: 'index-section' || null, edition: 'domestic' || null, additionalProperties: additionalPageProperties }; function updatePageData(newData) { page = Object.assign(page, newData); } document.addEventListener('bbc-page-reset', function(event) { if (event.detail && event.detail.page) { updatePageData(event.detail.page); } document.dispatchEvent(new Event('bbc-page-updated')); }); window.bbcpage = { loadModule: function(deps) { return new Promise(function (resolve, reject) { window.require(deps, function () { resolve.apply(this, arguments); }, function (error) { reject(error); }); }) }, loadCSS: function (url, timeout) { return window.bbcpage.loadModule(['orb/lib/_$']) .then(function($) { return new Promise(function(resolve, reject) { var stylesheet = loadCSS(url); $.onloadCSS(stylesheet, function() { resolve(); }); if (timeout) { setTimeout(function () { reject(); }, timeout); } }); }); }, isModal: function () { return Promise.resolve(modal); }, getLanguage: function () { return new Promise(function(resolve, reject) { resolve(language); }); }, trackRegion: function (region, labels) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { var trackLabels = { region: region }; for (var label in labels) { trackLabels[label] = labels[label]; } var linkType = labels.linkType || 'internal'; istats.track(linkType, trackLabels); }); }, getName: function() { return Promise.resolve(page.name); }, getDestination: function() { return Promise.resolve(page.destination); }, getProducer: function() { return Promise.resolve(page.producer); }, getSite: function() { return Promise.resolve(page.site); }, getSection: function() { return Promise.resolve(page.section); }, getContentType: function() { return Promise.resolve(page.contentType); }, getContentId: function() { return Promise.resolve(page.contentId); }, getEdition: function() { return new Promise(function (resolve, reject) { if (page.edition) { resolve(page.edition); return; } try { resolve(getMetaValue('x-audience').toLowerCase()); } catch (err){ // This property is related to Chartbeat; see http://support.chartbeat.com/docs/ if (window._sf_async_config) { resolve(window._sf_async_config.region || null); } } resolve(null); }); }, getReferrer: function() { return Promise.resolve(window.orb && window.orb.referrer !== null && window.orb.referrer !== undefined ? window.orb.referrer : document.referrer); }, getAdditionalProperties: function() { return Promise.resolve(page.additionalProperties); } }; var USERINFO_PREFIX = "www." || "www."; function initUserCache(orbitUser) { var availableAttr = [ 'X-Country', 'X-Ip_is_advertise_combined', 'X-Ip_is_uk_combined' ]; var userCache = availableAttr.reduce(function(user, curr, i) { if (!orbitUser[curr]) { return user; } var res = Object.assign({}, user); res[curr] = orbitUser[curr]; return res; }, {}); if (Object.keys(userCache).length !== availableAttr.length) { userCache._partial = true; } return userCache; } var user = initUserCache({ }); function checkStatus(response) { if (response.status >= 200 && response.status < 300) { return response; } else { var error = new Error(response.statusText); error.response = response; throw error; } } function parseJSON(response) { return response.json(); } var supportsCors = function() { return typeof XMLHttpRequest !== 'undefined' && 'withCredentials' in new XMLHttpRequest(); }; var getUserInfoFallback = function() { return window.bbcpage.loadModule(['orb/fig']) .then(function(orbFig) { return new Promise(function(resolve, reject) { orbFig.load(function(fig) { var getCountryFallback = function() { if (fig.geo.isUK()) { return 'GB'; } else if (fig.geo.isEU()) { return 'EU'; } }; resolve({ 'X-Country': user.country || getCountryFallback(), 'X-Ip_is_uk_combined': fig().uk ? 'yes' : 'no', 'X-Ip_is_advertise_combined': fig().ad ? 'yes' : 'no' }); }, function () { reject('Error determining country. Timeout?'); }); }); }); }; var _userInfoRequest; var getUserInfo = function() { var host = window.location.host.toString().match(/bbc\.com$/) ? 'bbc.com' : 'bbc.co.uk'; var userInfoUrl = "https://" + USERINFO_PREFIX + host + '/userinfo'; if (!user._partial) { return Promise.resolve(user); } if (!_userInfoRequest) { if (typeof window.fetch === 'undefined' || !supportsCors()) { _userInfoRequest = getUserInfoFallback(); } else { _userInfoRequest = window.fetch(userInfoUrl, { credentials: 'same-origin' }) .then(checkStatus) .then(parseJSON) .then(function(userInfo) { user = userInfo; return user; }); } } return _userInfoRequest; }; var USER_PROFILE_URL = "https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/userprofile";; var _helloRequest; var getSegmentations = function() { if (user.ageBand) { return Promise.resolve(user); } if (!_helloRequest) { if (typeof window.fetch === 'undefined' || !supportsCors()) { return Promise.resolve(user); } else { _helloRequest = window.bbcpage.loadModule(['idcta-v2/idcta-1']).then(function(idcta) { return idcta.initiateTokenRefresh().then(function() { return window.fetch(USER_PROFILE_URL, { credentials: 'include' }) .then(checkStatus) .then(parseJSON) .then(function(profileInfo) { Object.assign(user, profileInfo); return user; }); }); }); } } return _helloRequest; }; window.bbcuser = { getHashedId: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return idcta.getCookieInstance().getHidFromCookie(); }); }, getAgeBand: function() { if (user['X-Age-Band']) { return Promise.resolve(user['X-Age-Band']); } return bbcuser.isSignedIn().then(function(isSignedIn) { if (isSignedIn) { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { user['X-Age-Band'] = idcta.getUserDetailsFromCookie().ab; if (user['X-Age-Band'] === 'u13') { user['X-Age-Band'] = '0-12'; return user['X-Age-Band']; } else if (user['X-Age-Band'] === 'u16') { user['X-Age-Band'] = '13-15'; return user['X-Age-Band']; } else if (user['X-Age-Band'] === 'u18') { user['X-Age-Band'] = '16-17'; return user['X-Age-Band']; } else { user['X-Age-Band'] = undefined; return getSegmentations().then(function(userInfo) { user['X-Age-Band'] = userInfo['X-Age-Band']; return user['X-Age-Band'] || undefined; }).catch(function(error) { return user['X-Age-Band'] || undefined; }); } }); } else { return undefined; } }); }, getCountry: function() { if (user['X-Country']) { return Promise.resolve(user['X-Country']); } return getUserInfo().then(function(userInfo) { return userInfo['X-Country'] || 'GB'; }); }, isUKCombined: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_uk_combined']) { throw new Error('missing isUKCombined from userinfo response'); } return userInfo['X-Ip_is_uk_combined'].toLowerCase() === 'yes'; }) }, canSeeAdverts: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_advertise_combined']) { throw new Error('missing canSeeAdverts from userinfo response'); } return userInfo['X-Ip_is_advertise_combined'].toLowerCase() === "yes"; }); }, isSignedIn: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return (idcta && idcta.getCookieInstance().hasCookie()); }); }, allowsPerformanceCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('performance'); }); }, allowsFunctionalCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('personalisation'); }); }, getCookieValue: function(cookieName) { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return bbccookies.get(cookieName); }); }, resetCookiesPreferences: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { bbccookies.setDefaultCookiesSingleDomain(); }); }, hasCookiesEnabled: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled(); }); }, hasSeenCookieBanner: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function (bbccookies) { return !!bbccookies.isCookiePolicySet(); }); }, logEvent: function (verb, noun, extraLabels) { return window.bbcuser.hasCookiesEnabled() .then(function(allowsCookies) { if (allowsCookies) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { istats.log(verb, noun, extraLabels); }); } else { throw new Error('User cannot be tracked due to cookies preferences.'); } }); }, }; }());</script><script src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/js/require.min.js"></script> <script src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-477.3a39ca0/cookie-banner/cookie-library.min.js"></script><script type="text/javascript">if (window.define !== undefined) { define('orb/cookies', function() { return window.bbccookies; }); }</script> <script src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/js/api.min.js"></script> <script type="text/javascript">window.bbcFlagpoles_istats="ON",require.config({paths:{"istats-1":"https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-477.3a39ca0/istats/istats-1"}}),require(["istats-1","orb/cookies"],function(a,t){if(t.isAllowed("s1")){var e=(o=document.location.href.match(/^(?:https|http):\/\/\w*\.(?:(int|test|stage|live|)\.)?bbc\.(?:co\.uk|com)/))?void 0===o[1]||""===o[1]||"live"===o[1]?"//web.archive.org/web/20200820050938/https://sa.bbc.co.uk/bbc/bbc/s":"//web.archive.org/web/20200820050938/https://sa.bbc.co.uk/bbc/"+o[1]+"/s":"//web.archive.org/web/20200820050938/https://sa.bbc.co.uk/bbc/test/s";a.addCollector({name:"default",url:e,separator:"&"});var s="kl.education.primaryindex.page";a.setCountername(s),window.istats_countername&&a.setCountername(window.istats_countername),a.addLabels("ml_name=webmodule&ml_version=0.0.2-477.3a39ca0&blq_e=orbit&blq_r=orbit&blq_s=orbit&blq_v=cbbc&language=en&app_name=education&app_type=responsive&bbc_site=bitesize&bitesize_cloud=true&page_language=en-GB&page_type=primary-index")}var o});</script><link rel="stylesheet" href="https://web.archive.org/web/20200820050938cs_/https://static.files.bbci.co.uk/account/id-cta/1.48.0/style/id-cta.css"><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.48.0/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function() {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof(map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20200820050938/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&context=cbbc&ptrt=' + encodeURIComponent((ptrt ? ptrt[1] : document.location.href))).replace(/\&/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch(e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function() {return window.Promise;});define('idcta-v2/es6-promise', function() {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20200820050938/https://static.files.bbci.co.uk/account/id-cta/1.48.0/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20200820050938/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20200820050938/https://static.files.bbci.co.uk/account/id-cta/1.48.0/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20200820050938/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function(data) {return data;});define('idcta/translations', ['idcta-v2/translations'], function(data) {return data;});})();</script> <!-- BBCDOTCOM head --><script type="text/javascript">/*<![CDATA[*/ var _sf_startpt = (new Date()).getTime(); /*]]>*/</script><style type="text/css">.bbccom_display_none{display:none;}</style><script type="text/javascript">/*<![CDATA[*/ var bbcdotcomConfig, googletag = googletag || {}; googletag.cmd = googletag.cmd || [], bbcdotcomScripts = [], tp = window.tp || []; var bbcdotcom = false; (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"https://web.archive.org/web/20200820050938/https://static.bbc.co.uk/bbcdotcom/4.5.1093/script" } }); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ var bbcdotcom = { adverts: { keyValues: { set: function() {} } }, advert: { write: function () {}, show: function () {}, isActive: function () { return false; }, layout: function() { return { reset: function() {} } } }, config: { init: function() {}, isActive: function() {}, setSections: function() {}, isAdsEnabled: function() {}, setAdsEnabled: function() {}, isAnalyticsEnabled: function() {}, setAnalyticsEnabled: function() {}, setAssetPrefix: function() {}, setFlagpoles: function() {}, setVersion: function () {}, setJsPrefix: function() {}, setSwfPrefix: function() {}, setCssPrefix: function() {}, setConfig: function() {}, getAssetPrefix: function() {}, getJsPrefix: function () {}, getSwfPrefix: function () {}, getCssPrefix: function () {}, isOptimizelyEnabled: function() {}, isThirdPartyDisabled: function() {}, isThirdPartyDisabledEU: function() {}, setEU: function() {} }, survey: { init: function(){ return false; } }, data: {}, init: function() {}, objects: function(str) { return false; }, locale: { set: function() {}, get: function() {} }, setAdKeyValue: function() {}, utils: { addEvent: function() {}, addHtmlTagClass: function() {}, log: function () {} }, addLoadEvent: function() {} }; /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb !== 'undefined' && typeof orb.fig === 'function') { if (orb.fig('ad') && orb.fig('uk') == 0) { bbcdotcom.data = { ads: (orb.fig('ad') ? 1 : 0), stats: (orb.fig('uk') == 0 ? 1 : 0), statsProvider: orb.fig('ap') }; } } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200820050938/https://www.bbc.com/wwscripts/data">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb === 'undefined' || typeof orb.fig !== 'function') { bbcdotcom.data = { ads: bbcdotcom.data.a, stats: bbcdotcom.data.b, statsProvider: bbcdotcom.data.c }; } if (bbcdotcom.data.ads == 1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200820050938/https://www.bbc.com/wwscripts/flag">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (window.bbcdotcom && (typeof bbcdotcom.flag == 'undefined' || (typeof bbcdotcom.data.ads !== 'undefined' && bbcdotcom.flag.a != 1))) { bbcdotcom.data.ads = 0; } if (/[?|&]ads/.test(window.location.href) || /(^|; )ads=on; /.test(document.cookie) || /; ads=on(; |$)/.test(document.cookie)) { bbcdotcom.data.ads = 1; bbcdotcom.data.stats = 1; } if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcom.assetPrefix = "https://web.archive.org/web/20200820050938/https://static.bbc.co.uk/bbcdotcom/4.5.1093/"; if (/(sandbox|int)(.dev)*.bbc.co*/.test(window.location.href) || /[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200820050938/https://static.bbc.co.uk/bbcdotcom/4.5.1093/script/dist/bbcdotcom.dev.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200820050938/https://static.bbc.co.uk/bbcdotcom/4.5.1093/script/dist/bbcdotcom.js">\x3C/script>'); } } })(); /*]]>*/</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.stats == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://secure-us.imrworldwide.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://me-cdn.effectivemeasure.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://ssc.api.bbc.com/">'); } if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://www.googletagservices.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://bbc.gscontxt.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://tags.crwdcntrl.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200820050938/https://ad.crwdcntrl.net/">'); }</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<meta name="google-site-verification" content="auTeTTwSt_KBY_4iDoR00Lwb7-qzx1IgzJy6ztaWgEI" />'); }</script><script type="text/javascript">/*<![CDATA[*/ (function(){ var GDPR_COUNTRIES = ['AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'IS', 'LI', 'NO', 'CH']; if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcomConfig = {"adFormat":"standard","adKeyword":"","adMode":"smart","adsEnabled":true,"appAnalyticsSections":"","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/www.bbc.com\/privacy\/cookies\/international\/","advertisementText":"Advertisement","analyticsEnabled":true,"thirdPartyDisabled":false,"sherlockEnabled":false,"permutiveEnabled":false,"appName":"","assetPrefix":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.5.1093\/","customAdParams":[],"customStatsParams":[],"headline":"","id":"","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"optimizelyEnabled":true,"palEnv":"live","productName":"","sections":[],"comScoreEnabled":true,"comscoreSite":"bbc","comscoreID":"19293874","comscorePageName":"","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"","type":"","features":{"testfeature":{"name":"testfeature","envs":["sandbox","int","test"],"on":true,"options":{},"override":null},"lxadverts":{"name":"lxadverts","envs":[],"on":true,"options":{},"override":null}},"staticBase":"\/bbcdotcom","staticHost":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/static.bbc.co.uk","staticVersion":"4.5.1093","staticPrefix":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.5.1093","dataHttp":"tps.bbc.com","dataHttps":"www.bbc.com","flagHttp":"www.bbc.co.uk","flagHttps":"www.bbc.co.uk","analyticsHttp":"sa.bbc.com","analyticsHttps":"ssa.bbc.com"}; bbcdotcom.config.init(bbcdotcomConfig, bbcdotcom.data, window.location, window.document); bbcdotcom.config.setFlagpoles(bbcdotcom.flag || {}); bbcdotcom.config.setAssetPrefix("https://web.archive.org/web/20200820050938/https://static.bbc.co.uk/bbcdotcom/4.5.1093/"); bbcdotcom.config.setVersion("4.5.1093"); if (window.bbcuser && window.bbcuser.getCountry && typeof(window.bbcuser.getCountry) === 'function') { window.bbcuser.getCountry().then(function(countryCode) { var isEU = countryCode ? GDPR_COUNTRIES.indexOf(countryCode.toUpperCase()) !== -1 : false; bbcdotcom.config.setEU(isEU); }); } else if (window.orb && window.orb.fig && typeof(window.orb.fig) === 'function') { bbcdotcom.config.setEU(window.orb.fig('eu')); } document.write('<!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 9]><script type="text/javascript">bbcdotcom.config.setIE9(true);\x3C/script><![endif]-->'); if (/[?|&]ex-dp/.test(window.location.href) || document.cookie.indexOf('ex-dp=') !== -1) { bbcdotcom.utils.addHtmlTagClass('bbcdotcom-ex-dp'); } } })(); /*]]>*/</script><script type="text/javascript">var initOptimizely = (function(isEnabled){ if(!isEnabled) return; var logger = window.bbcdotcom.Logger('bbcdotcom:head:optimizely'); /* Allow Optimizely in these paths */ var allowPaths = ['/', '/wwhp']; /* Only run on optimizely on homepage */ if (bbcdotcom.utils && allowPaths.indexOf(window.location.pathname) !== -1){ /* set correct OptimizelyURL for prod or sandbox */ var optimizelyURL = "https://web.archive.org/web/20200820050938/https://cdn.optimizely.com/public/4621041136/s/bbccom_sandbox.js"; if(window.location.hostname === 'www.bbc.com') { optimizelyURL = "https://web.archive.org/web/20200820050938/https://cdn.optimizely.com/public/4621041136/s/bbccom_prod.js"; } /* Set cookie to 1 year */ window['optimizely'] = window['optimizely'] || []; window['optimizely'].push({ "type": "cookieExpiration", "cookieExpirationDays": 365 }); document.write('<script type="text/javascript" src="'+optimizelyURL+'">\x3C/script>'); } })( bbcdotcom.config.isOptimizelyEnabled() );</script><script type="text/javascript">/*<![CDATA[*/ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isGrapeshotEnabled && bbcdotcom.config.isGrapeshotEnabled() && bbcdotcom.config.isWorldService && !bbcdotcom.config.isWorldService() ) { var gs_channels="DEFAULT"; (function () { var gsurl = window.location.href.split("?")[0]; bbcdotcomScripts.push({src:'https://web.archive.org/web/20200820050938/https://bbc.gscontxt.net/?url='+encodeURIComponent(gsurl)}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.config && bbcdotcom.config.isLotameActive && bbcdotcom.config.isLotameActive()&& bbcdotcom.config.isLotameEnabled && bbcdotcom.config.isLotameEnabled()){ (function () { var clientId, lotameUrl, lotameAudienceUrl; clientId = (bbcdotcom.config.isWorldService && bbcdotcom.config.isWorldService()) ? '10826' : '10816'; lotameUrl = 'https://web.archive.org/web/20200820050938/https://tags.crwdcntrl.net/c/'+clientId+'/cc.js?ns='+clientId; lotameAudienceUrl = 'https://web.archive.org/web/20200820050938/https://ad.crwdcntrl.net/5/c=10815/pe=y/var=ccauds'; bbcdotcomScripts.push({src:lotameUrl,id:"LOTCC"+clientId}); bbcdotcomScripts.push({src:lotameAudienceUrl}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.config && bbcdotcom.config.isPermutiveEnabled && bbcdotcom.config.isPermutiveEnabled() && bbcdotcom.config.isWorldService && !bbcdotcom.config.isWorldService()){ (function () { !function(n,e,o,r,i){if(!e){e=e||{},window.permutive=e,e.q=[],e.config=i||{},e.config.projectId=o,e.config.apiKey=r,e.config.environment=e.config.environment||"production";for(var t=["addon","identify","track","trigger","query","segment","segments","ready","on","once","user","consent"],c=0;c<t.length;c++){var f=t[c];e[f]=function(n){return function(){var o=Array.prototype.slice.call(arguments,0);e.q.push({functionName:n,arguments:o})}}(f)}}}(document,window.permutive,"e488cdb0-e7cb-4d91-9648-60d437d8e491","1bb84885-9325-4fef-adda-a208032b2715",{"consentRequired":true}); bbcdotcomScripts.push({src:'https://web.archive.org/web/20200820050938/https://cdn.permutive.com/e488cdb0-e7cb-4d91-9648-60d437d8e491-web.js'}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /** * ASYNC waits to make any gpt requests until the bottom of the page */ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isAsync && bbcdotcom.config.isAsync() && bbcdotcom.config.isAdsEnabled && bbcdotcom.config.isAdsEnabled() ) { (function () { bbcdotcomScripts.push({src:'https://web.archive.org/web/20200820050938/https://securepubads.g.doubleclick.net/tag/js/gpt.js'}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /* Load Lotame, Grapeshot and GPT without blocking rendering but executing in order */ if ( window.bbcdotcom && bbcdotcom.config && bbcdotcomScripts.length > 0 ) { (function () { bbcdotcom.checkThirdPartyFirst(function(){ if (!bbcdotcom.config.isThirdPartyDisabledEU()){ bbcdotcomScripts.forEach(function(item) { var script = document.createElement('script'); script.async = false; if(item.id) script.id = item.id; script.src = item.src; document.head.appendChild(script); }); } }); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.head = true; }()); /*]]>*/</script> <script type="text/javascript">// Globally available search context window.SEARCHBOX={"variant":"cbbc","locale":"en","feature":"akamai-idcta","navSearchboxStaticPrefix":"https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/searchbox/f1713838fc62b38a521a235b3d19f819/","searchboxAppStaticPrefix":"https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/searchbox/f1713838fc62b38a521a235b3d19f819/drawer","searchFormHtml":"<div tabindex=\"-1\"><div><section class=\"se-searchbox-panel\"><div class=\"se-g-wrap\"><div class=\"se-g-layout\"><div class=\"se-g-layout__item se-searchbox-title\" aria-hidden=\"true\">search</div><div class=\"se-g-layout__item se-searchbox\"><form accept-charset=\"utf-8\" id=\"searchboxDrawerForm\" method=\"get\" action=\"https://search.bbc.co.uk/search\"><label class=\"se-searchbox__input\" for=\"se-searchbox-input-field\"><span class=\"se-sr-only\">Search Term</span><input type=\"text\" name=\"q\" value=\"\" id=\"se-searchbox-input-field\" class=\"se-searchbox__input__field\" maxLength=\"100\" autoComplete=\"off\" autoCorrect=\"off\" autoCapitalize=\"off\" spellcheck=\"false\" tabindex=\"0\"/></label><input type=\"hidden\" name=\"scope\" value=\"\"/><button type=\"submit\" class=\"se-searchbox__submit\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"search-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::1"}\" data-bbc-personalisation=\"{"QRY":""}\">Search</button><button type=\"button\" class=\"se-searchbox__clear se-searchbox__clear--visible\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"clear-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::2"}\" data-bbc-personalisation=\"{"QRY":""}\">Close</button></form></div></div></div></section><div aria-live=\"polite\" aria-atomic=\"true\" class=\"se-suggestions-container\"><section class=\"se-g-wrap\"></section></div></div></div>","searchScopePlaceholder":"<input type=\"hidden\" name=\"scope\" id=\"orb-search-scope\" value=\"cbbc\">","searchScopeParam":"?scope=cbbc","searchScopeTemplate":"cbbc","searchPlaceholderWrapperStart":"","searchPlaceholderWrapperEnd":""}; window.SEARCHBOX.suppress = false; window.SEARCHBOX.searchScope = SEARCHBOX.searchScopeTemplate.split('-')[0];</script><link rel="stylesheet" href="https://web.archive.org/web/20200820050938cs_/https://nav.files.bbci.co.uk/searchbox/f1713838fc62b38a521a235b3d19f819/css/main.css"><!--[if IE 8]> <script type="text/javascript" src="https://nav.files.bbci.co.uk/searchbox/f1713838fc62b38a521a235b3d19f819/script/html5shiv.min.js"></script> <script type="text/javascript">window['searchboxIEVersion'] = 8;</script> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/searchbox/f1713838fc62b38a521a235b3d19f819/css/ie8.css"> <![endif]--><!--[if IE 9]> <script type="text/javascript">window['searchboxIEVersion'] = 9;</script> <![endif]--> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20200820050938/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.20.0",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,n){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=n}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var n=function(r,d){window.__reverb.__reverbLoadedPromise.then(function(e){if(r&&r.detail){var n=r.detail.label,t=r.detail.type,i=r.detail.elem,o=r.detail.originalEvent;r.detail.isClick&&(d=r.detail.isClick),e.userActionEvent(t,n,r.detail,i,o,d)}},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){n(e,!1)}),document.addEventListener("bbc-user-click",function(e){n(e,!0)}),document.addEventListener("bbc-page-updated",function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})})}();</script><script type="text/javascript" src="https://web.archive.org/web/20200820050938js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-1.5.0.js" async=""></script><script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script> <script> if (!("ontouchstart" in document.documentElement)) { document.documentElement.classList.add("n-no-touchevents"); } </script> <style> body { border: 0; margin: 0; padding: 0; } </style><title>Primary Homework Help | Online Games For Kids - BBC Bitesize</title><meta name="description" content="Learn with Bitesize's Primary School homework help. Sign in to save your favourite topics and games"><link rel="canonical" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/primary"><meta property="og:title" content="Primary Homework Help | Online Games For Kids - BBC Bitesize"><meta property="og:description" content="Learn with Bitesize's Primary School homework help. Sign in to save your favourite topics and games"><meta property="og:site_name" content="BBC Bitesize"><meta property="og:locale" content="en-GB"><meta property="og:url" content="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/primary"><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:"ss01"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.background--primary--angled,.background--primary--left-to-right,.background--secondary--angled,.background--secondary--left-to-right{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.background--primary--left-to-right{background-image:linear-gradient(90deg,#e45153,#e45153 40%,#eac522)}.background--primary--angled{background-image:linear-gradient(#e45153,#eac522)}@media (min-width:37.5em){.background--primary--angled{background-image:linear-gradient(135deg,#e45153,#e45153 20%,#eac522)}}.background--secondary--left-to-right{background-image:linear-gradient(90deg,#553287,#553287 40%,#804d9f)}.background--secondary--angled{background-image:linear-gradient(#553287,#804d9f)}@media (min-width:37.5em){.background--secondary--angled{background-image:linear-gradient(135deg,#553287,#553287 20%,#804d9f)}}#orb-modules{position:relative}.global-navigation__header__logo__link.global-navigation__header__logo__link{background-color:transparent;box-shadow:none}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-background-view/1.1.0"]=true; Morph.styleSrc.push("<style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:\"ss01\"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.background--primary--angled,.background--primary--left-to-right,.background--secondary--angled,.background--secondary--left-to-right{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.background--primary--left-to-right{background-image:linear-gradient(90deg,#e45153,#e45153 40%,#eac522)}.background--primary--angled{background-image:linear-gradient(#e45153,#eac522)}@media (min-width:37.5em){.background--primary--angled{background-image:linear-gradient(135deg,#e45153,#e45153 20%,#eac522)}}.background--secondary--left-to-right{background-image:linear-gradient(90deg,#553287,#553287 40%,#804d9f)}.background--secondary--angled{background-image:linear-gradient(#553287,#804d9f)}@media (min-width:37.5em){.background--secondary--angled{background-image:linear-gradient(135deg,#553287,#553287 20%,#804d9f)}}#orb-modules{position:relative}.global-navigation__header__logo__link.global-navigation__header__logo__link{background-color:transparent;box-shadow:none}</style>"); }</script><script type="text/javascript">Morph.initStyles(); /* u8298738821837631 */</script><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200820050938cs_/https://m.files.bbci.co.uk/modules/bbc-morph-bitesize-header-view/8.73.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-header-view/8.73.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-bitesize-header-view/8.73.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200820050938cs_/https://m.files.bbci.co.uk/modules/bbc-morph-bitesize-global-navigation-view/1.46.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-global-navigation-view/1.46.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-bitesize-global-navigation-view/1.46.0/enhanced.css\"/>"); }</script><script type="text/javascript">Morph.initStyles(); /* u2949953754942365 */</script><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:"ss01"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.ec-link-button__container .ec-link-button__activity-confirm{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#05bc44;border:0;border-bottom:4px solid #048a32;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__activity-confirm{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__activity-confirm{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__activity-confirm:active{border-bottom:0;border-top:2px solid #048a32}.ec-link-button__container .ec-link-button__activity-confirm:hover{background:#06d54d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__activity-confirm[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}.ec-link-button__container .ec-link-button__activity-cancel{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e15255;border:0;border-bottom:4px solid #d9272a;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__activity-cancel{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__activity-cancel{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__activity-cancel:active{border-bottom:0;border-top:2px solid #d9272a}.ec-link-button__container .ec-link-button__activity-cancel:hover{background:#e5686a;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__activity-cancel[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}.ec-link-button__container{text-align:center}.ec-link-button__container .ec-link-button__bitesize-banner{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e5640f;border:0;border-bottom:4px solid #b54f0c;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__bitesize-banner{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__bitesize-banner{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__bitesize-banner:active{border-bottom:0;border-top:2px solid #b54f0c}.ec-link-button__container .ec-link-button__bitesize-banner:hover{background:#f0711d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__bitesize-banner[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}body{font-family:Helvetica,Arial,freesans,sans-serif}.ec-button__container .ec-button__activity-confirm{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#05bc44;border:0;border-bottom:4px solid #048a32;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__activity-confirm{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__activity-confirm{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__activity-confirm:enabled:active{border-bottom:0;border-top:2px solid #048a32}.ec-button__container .ec-button__activity-confirm:enabled:hover{background:#06d54d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__activity-confirm:disabled{cursor:default;opacity:.6}.ec-button__container .ec-button__activity-cancel{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e15255;border:0;border-bottom:4px solid #d9272a;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__activity-cancel{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__activity-cancel{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__activity-cancel:enabled:active{border-bottom:0;border-top:2px solid #d9272a}.ec-button__container .ec-button__activity-cancel:enabled:hover{background:#e5686a;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__activity-cancel:disabled{cursor:default;opacity:.6}.ec-button__container{text-align:center}.ec-button__container .ec-button__bitesize-banner{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e5640f;border:0;border-bottom:4px solid #b54f0c;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__bitesize-banner{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__bitesize-banner{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__bitesize-banner:enabled:active{border-bottom:0;border-top:2px solid #b54f0c}.ec-button__container .ec-button__bitesize-banner:enabled:hover{background:#f0711d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__bitesize-banner:disabled{cursor:default;opacity:.6}.button-banner-example-wrapper{display:flex}.button-banner-example-icon{align-self:center;height:15px;width:15px;margin-left:5px;fill:#fff}.messaging-banner__container{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff;margin-top:8px}@media (min-width:25em){.messaging-banner__container{padding-left:16px;padding-right:16px}}@media (min-width:15em){.messaging-banner__container{padding:8px 0}}@media (min-width:37.5em){.messaging-banner__container{padding:8px}}@media (min-width:63em){.messaging-banner__container{padding:16px}}.messaging-banner{list-style:none;direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0;margin-left:0!important;padding:8px;position:relative}@media (min-width:37.5em){.messaging-banner{margin-left:-16px}}.messaging-banner-close{position:absolute;right:12px;top:12px}.messaging-banner-close .ec-button__bitesize-banner,.messaging-banner-close__button{margin-bottom:0;padding:8px}.messaging-banner-close .ec-button__bitesize-banner:before,.messaging-banner-close__button:before{content:"";height:44px;position:absolute;width:44px}.messaging-banner-close__button-icon{display:flex;fill:#fff}.messaging-banner-content{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding:8px;text-align:center}@media (min-width:37.5em){.messaging-banner-content{padding-left:16px;width:66.66667%;padding:0 48px 8px 24px;text-align:left}}@media (min-width:56.25em){.messaging-banner-content{padding:0 48px 8px 32px}}.messaging-banner-content__title-text{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;margin:8px 0}@media (min-width:20em){.messaging-banner-content__title-text{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.messaging-banner-content__title-text{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.n-no-touchevents .messaging-banner-content__title-text{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.messaging-banner-content__subtitle-text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;margin:8px 0}@media (min-width:20em){.messaging-banner-content__subtitle-text{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.messaging-banner-content__subtitle-text{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .messaging-banner-content__subtitle-text{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.messaging-banner-content__link-container{display:inline-block;margin-top:16px}.messaging-banner-content__link{background-color:#e5640f;color:#fff;display:inline-block;font-weight:700;padding:16px;text-align:center;text-decoration:none}.messaging-banner-content__link:focus,.messaging-banner-content__link:hover{background-color:#231f20;text-decoration:underline;text-decoration-color:#fff}.messaging-banner-content__link-text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700}@media (min-width:20em){.messaging-banner-content__link-text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.messaging-banner-content__link-text{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.n-no-touchevents .messaging-banner-content__link-text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.messaging-banner__container-primary{background-color:transparent}.messaging-banner-primary{background-color:#fff}@media (max-width:37.49em){.messaging-banner-primary{padding:8px 0}}.messaging-banner-image-primary{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_mobile_desktop.svg");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-primary{padding-left:16px;width:33.33333%;margin:-8px}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-primary{background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_tablet.svg")}}.messaging-banner__container-primaryIndex{background-color:transparent}.messaging-banner-primaryIndex{background-color:#fff}@media (max-width:37.49em){.messaging-banner-primaryIndex{padding:8px 0}}.messaging-banner-image-primaryIndex{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_index.svg");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-primaryIndex{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner__container-secondaryIndex{background-color:transparent}.messaging-banner-secondaryIndex{background-color:#fff}@media (max-width:37.49em){.messaging-banner-secondaryIndex{padding:8px 0}}.messaging-banner-image-secondaryIndex{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_mobile_desktop.svg");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-secondaryIndex{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner-secondary{background-color:#f1f1f1;color:#231f20;padding:0}.messaging-banner-image-secondary{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/secondary/secondary_mobile_desktop.svg"),linear-gradient(102deg,#553287 50%,#804d9f)}@media (min-width:37.5em){.messaging-banner-image-secondary{padding-left:16px;width:33.33333%}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-secondary{background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/secondary/secondary_tablet.svg"),linear-gradient(102deg,#553287 50%,#804d9f)}}.messaging-banner__container-secondary .messaging-banner-image-secondary{padding:0}@media (min-width:37.5em){.messaging-banner-container-secondary .messaging-banner-content{padding:8px 52px 8px 16px}}@media (min-width:56.25em){.messaging-banner-container-secondary .messaging-banner-content{padding:8px 52px 8px 24px}}.messaging-banner__container-post16{padding:0}.messaging-banner-image-post16{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/post16/post16_mobile_desktop.svg")}@media (min-width:37.5em){.messaging-banner-image-post16{padding-left:16px;width:33.33333%}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-post16{background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/post16/post16_tablet.svg")}}.messaging-banner__container-ks1level{background-color:transparent}.messaging-banner-ks1level{background-color:#fff}@media (max-width:37.49em){.messaging-banner-ks1level{padding:8px 0}}.messaging-banner-image-ks1level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks1level/primary_level.svg");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-ks1level{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner__container-ks2level{background-color:transparent}.messaging-banner-ks2level{background-color:#fff}@media (max-width:37.49em){.messaging-banner-ks2level{padding:8px 0}}.messaging-banner-image-ks2level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks2level/starting_secondary_school.svg");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-ks2level{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner-ks3level{background-color:#f1f1f1;color:#231f20;padding:0}.messaging-banner-image-ks3level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks2level/starting_secondary_school.svg"),linear-gradient(102deg,#553287 50%,#804d9f)}@media (min-width:37.5em){.messaging-banner-image-ks3level{padding-left:16px;width:33.33333%}}.messaging-banner__container-ks3level .messaging-banner-image-ks3level{padding:0}@media (min-width:37.5em){.messaging-banner-container-ks3level .messaging-banner-content{padding:8px 52px 8px 16px}}@media (min-width:56.25em){.messaging-banner-container-ks3level .messaging-banner-content{padding:8px 52px 8px 24px}}.messaging-banner__container-planning{background-color:#f1f1f1;border-bottom:1px solid #231f20;padding:8px 8px 16px}.messaging-banner__container-planning .messaging-banner-content{width:auto;text-align:left;padding:0 40px 0 8px}.messaging-banner__container-planning .messaging-banner-content__link-container{display:inline;background-color:transparent}.messaging-banner__container-planning .messaging-banner-content__link{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;-webkit-text-decoration-color:#e5640f;border-bottom:0;color:#231f20;text-decoration:underline;text-decoration-color:#e5640f;background-color:transparent;display:inline;font-weight:700;margin:0;padding:0}@media (min-width:20em){.messaging-banner__container-planning .messaging-banner-content__link{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.messaging-banner__container-planning .messaging-banner-content__link{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .messaging-banner__container-planning .messaging-banner-content__link{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.messaging-banner__container-planning .messaging-banner-content__link:visited{color:#706d66}.messaging-banner__container-planning .messaging-banner-content__link:focus{color:#231f20}.messaging-banner__container-planning .messaging-banner-content__link:hover{color:#e5640f;text-decoration:none}.messaging-banner__container-planning .messaging-banner-content__subtitle,.messaging-banner__container-planning .messaging-banner-content__subtitle-text{display:inline;font-weight:700}.messaging-banner__container-planning .messaging-banner-close{bottom:-2px}.messaging-banner-image-planning{display:none}.messaging-banner__container-default{background-color:#fff}@media (min-width:37.5em){.messaging-banner__container-default{padding:16px}}@media (max-width:37.49em){.messaging-banner-default{padding:8px 0}}.messaging-banner-image-default{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_mobile_desktop.svg");margin-top:-8px;padding:16px}@media (min-width:37.5em){.messaging-banner-image-default{padding-left:16px;width:33.33333%;margin:-8px}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-default{background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_tablet.svg")}}.messaging-banner-container{margin:16px 8px;position:relative}@media (min-width:56.25em){.messaging-banner-container{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0!important}}@media (min-width:56.25em) and (min-width:25em){.messaging-banner-container{padding-left:16px;padding-right:16px}}@media (min-width:56.25em) and (max-width:62.99em){.messaging-banner-container{margin:8px}}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-messaging-view/1.42.0"]=true; Morph.styleSrc.push("<style>.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:\"ss01\"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.ec-link-button__container .ec-link-button__activity-confirm{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#05bc44;border:0;border-bottom:4px solid #048a32;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__activity-confirm{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__activity-confirm{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__activity-confirm:active{border-bottom:0;border-top:2px solid #048a32}.ec-link-button__container .ec-link-button__activity-confirm:hover{background:#06d54d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__activity-confirm[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}.ec-link-button__container .ec-link-button__activity-cancel{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e15255;border:0;border-bottom:4px solid #d9272a;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__activity-cancel{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__activity-cancel{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__activity-cancel:active{border-bottom:0;border-top:2px solid #d9272a}.ec-link-button__container .ec-link-button__activity-cancel:hover{background:#e5686a;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__activity-cancel[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}.ec-link-button__container{text-align:center}.ec-link-button__container .ec-link-button__bitesize-banner{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e5640f;border:0;border-bottom:4px solid #b54f0c;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-weight:700;justify-content:center;margin-top:0;padding:8px;text-decoration:none}@media (min-width:37.5em){.ec-link-button__container .ec-link-button__bitesize-banner{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-link-button__container .ec-link-button__bitesize-banner{font-size:20px;font-size:1.25rem}}.ec-link-button__container .ec-link-button__bitesize-banner:active{border-bottom:0;border-top:2px solid #b54f0c}.ec-link-button__container .ec-link-button__bitesize-banner:hover{background:#f0711d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-link-button__container .ec-link-button__bitesize-banner[disabled]{cursor:default;opacity:.6;pointer-events:none;touch-action:none}body{font-family:Helvetica,Arial,freesans,sans-serif}.ec-button__container .ec-button__activity-confirm{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#05bc44;border:0;border-bottom:4px solid #048a32;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__activity-confirm{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__activity-confirm{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__activity-confirm:enabled:active{border-bottom:0;border-top:2px solid #048a32}.ec-button__container .ec-button__activity-confirm:enabled:hover{background:#06d54d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__activity-confirm:disabled{cursor:default;opacity:.6}.ec-button__container .ec-button__activity-cancel{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e15255;border:0;border-bottom:4px solid #d9272a;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__activity-cancel{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__activity-cancel{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__activity-cancel:enabled:active{border-bottom:0;border-top:2px solid #d9272a}.ec-button__container .ec-button__activity-cancel:enabled:hover{background:#e5686a;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__activity-cancel:disabled{cursor:default;opacity:.6}.ec-button__container{text-align:center}.ec-button__container .ec-button__bitesize-banner{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;align-items:center;background:#e5640f;border:0;border-bottom:4px solid #b54f0c;border-radius:4px;color:#fff;cursor:pointer;display:flex;font-family:inherit;font-weight:700;justify-content:center;margin-bottom:16px;margin-top:0;padding:8px 16px}@media (min-width:37.5em){.ec-button__container .ec-button__bitesize-banner{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .ec-button__container .ec-button__bitesize-banner{font-size:20px;font-size:1.25rem}}.ec-button__container .ec-button__bitesize-banner:enabled:active{border-bottom:0;border-top:2px solid #b54f0c}.ec-button__container .ec-button__bitesize-banner:enabled:hover{background:#f0711d;border-bottom-width:2px;margin-top:2px;text-decoration:underline}.ec-button__container .ec-button__bitesize-banner:disabled{cursor:default;opacity:.6}.button-banner-example-wrapper{display:flex}.button-banner-example-icon{align-self:center;height:15px;width:15px;margin-left:5px;fill:#fff}.messaging-banner__container{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff;margin-top:8px}@media (min-width:25em){.messaging-banner__container{padding-left:16px;padding-right:16px}}@media (min-width:15em){.messaging-banner__container{padding:8px 0}}@media (min-width:37.5em){.messaging-banner__container{padding:8px}}@media (min-width:63em){.messaging-banner__container{padding:16px}}.messaging-banner{list-style:none;direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0;margin-left:0!important;padding:8px;position:relative}@media (min-width:37.5em){.messaging-banner{margin-left:-16px}}.messaging-banner-close{position:absolute;right:12px;top:12px}.messaging-banner-close .ec-button__bitesize-banner,.messaging-banner-close__button{margin-bottom:0;padding:8px}.messaging-banner-close .ec-button__bitesize-banner:before,.messaging-banner-close__button:before{content:\"\";height:44px;position:absolute;width:44px}.messaging-banner-close__button-icon{display:flex;fill:#fff}.messaging-banner-content{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding:8px;text-align:center}@media (min-width:37.5em){.messaging-banner-content{padding-left:16px;width:66.66667%;padding:0 48px 8px 24px;text-align:left}}@media (min-width:56.25em){.messaging-banner-content{padding:0 48px 8px 32px}}.messaging-banner-content__title-text{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;margin:8px 0}@media (min-width:20em){.messaging-banner-content__title-text{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.messaging-banner-content__title-text{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.n-no-touchevents .messaging-banner-content__title-text{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.messaging-banner-content__subtitle-text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;margin:8px 0}@media (min-width:20em){.messaging-banner-content__subtitle-text{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.messaging-banner-content__subtitle-text{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .messaging-banner-content__subtitle-text{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.messaging-banner-content__link-container{display:inline-block;margin-top:16px}.messaging-banner-content__link{background-color:#e5640f;color:#fff;display:inline-block;font-weight:700;padding:16px;text-align:center;text-decoration:none}.messaging-banner-content__link:focus,.messaging-banner-content__link:hover{background-color:#231f20;text-decoration:underline;text-decoration-color:#fff}.messaging-banner-content__link-text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700}@media (min-width:20em){.messaging-banner-content__link-text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.messaging-banner-content__link-text{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.n-no-touchevents .messaging-banner-content__link-text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.messaging-banner__container-primary{background-color:transparent}.messaging-banner-primary{background-color:#fff}@media (max-width:37.49em){.messaging-banner-primary{padding:8px 0}}.messaging-banner-image-primary{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_mobile_desktop.svg\");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-primary{padding-left:16px;width:33.33333%;margin:-8px}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-primary{background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_tablet.svg\")}}.messaging-banner__container-primaryIndex{background-color:transparent}.messaging-banner-primaryIndex{background-color:#fff}@media (max-width:37.49em){.messaging-banner-primaryIndex{padding:8px 0}}.messaging-banner-image-primaryIndex{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/primary/primary_index.svg\");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-primaryIndex{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner__container-secondaryIndex{background-color:transparent}.messaging-banner-secondaryIndex{background-color:#fff}@media (max-width:37.49em){.messaging-banner-secondaryIndex{padding:8px 0}}.messaging-banner-image-secondaryIndex{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_mobile_desktop.svg\");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-secondaryIndex{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner-secondary{background-color:#f1f1f1;color:#231f20;padding:0}.messaging-banner-image-secondary{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/secondary/secondary_mobile_desktop.svg\"),linear-gradient(102deg,#553287 50%,#804d9f)}@media (min-width:37.5em){.messaging-banner-image-secondary{padding-left:16px;width:33.33333%}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-secondary{background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/secondary/secondary_tablet.svg\"),linear-gradient(102deg,#553287 50%,#804d9f)}}.messaging-banner__container-secondary .messaging-banner-image-secondary{padding:0}@media (min-width:37.5em){.messaging-banner-container-secondary .messaging-banner-content{padding:8px 52px 8px 16px}}@media (min-width:56.25em){.messaging-banner-container-secondary .messaging-banner-content{padding:8px 52px 8px 24px}}.messaging-banner__container-post16{padding:0}.messaging-banner-image-post16{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/post16/post16_mobile_desktop.svg\")}@media (min-width:37.5em){.messaging-banner-image-post16{padding-left:16px;width:33.33333%}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-post16{background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/post16/post16_tablet.svg\")}}.messaging-banner__container-ks1level{background-color:transparent}.messaging-banner-ks1level{background-color:#fff}@media (max-width:37.49em){.messaging-banner-ks1level{padding:8px 0}}.messaging-banner-image-ks1level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks1level/primary_level.svg\");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-ks1level{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner__container-ks2level{background-color:transparent}.messaging-banner-ks2level{background-color:#fff}@media (max-width:37.49em){.messaging-banner-ks2level{padding:8px 0}}.messaging-banner-image-ks2level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks2level/starting_secondary_school.svg\");margin-top:-8px}@media (min-width:37.5em){.messaging-banner-image-ks2level{padding-left:16px;width:33.33333%;margin:-8px}}.messaging-banner-ks3level{background-color:#f1f1f1;color:#231f20;padding:0}.messaging-banner-image-ks3level{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/ks2level/starting_secondary_school.svg\"),linear-gradient(102deg,#553287 50%,#804d9f)}@media (min-width:37.5em){.messaging-banner-image-ks3level{padding-left:16px;width:33.33333%}}.messaging-banner__container-ks3level .messaging-banner-image-ks3level{padding:0}@media (min-width:37.5em){.messaging-banner-container-ks3level .messaging-banner-content{padding:8px 52px 8px 16px}}@media (min-width:56.25em){.messaging-banner-container-ks3level .messaging-banner-content{padding:8px 52px 8px 24px}}.messaging-banner__container-planning{background-color:#f1f1f1;border-bottom:1px solid #231f20;padding:8px 8px 16px}.messaging-banner__container-planning .messaging-banner-content{width:auto;text-align:left;padding:0 40px 0 8px}.messaging-banner__container-planning .messaging-banner-content__link-container{display:inline;background-color:transparent}.messaging-banner__container-planning .messaging-banner-content__link{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;-webkit-text-decoration-color:#e5640f;border-bottom:0;color:#231f20;text-decoration:underline;text-decoration-color:#e5640f;background-color:transparent;display:inline;font-weight:700;margin:0;padding:0}@media (min-width:20em){.messaging-banner__container-planning .messaging-banner-content__link{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.messaging-banner__container-planning .messaging-banner-content__link{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .messaging-banner__container-planning .messaging-banner-content__link{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.messaging-banner__container-planning .messaging-banner-content__link:visited{color:#706d66}.messaging-banner__container-planning .messaging-banner-content__link:focus{color:#231f20}.messaging-banner__container-planning .messaging-banner-content__link:hover{color:#e5640f;text-decoration:none}.messaging-banner__container-planning .messaging-banner-content__subtitle,.messaging-banner__container-planning .messaging-banner-content__subtitle-text{display:inline;font-weight:700}.messaging-banner__container-planning .messaging-banner-close{bottom:-2px}.messaging-banner-image-planning{display:none}.messaging-banner__container-default{background-color:#fff}@media (min-width:37.5em){.messaging-banner__container-default{padding:16px}}@media (max-width:37.49em){.messaging-banner-default{padding:8px 0}}.messaging-banner-image-default{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;background-origin:content-box;background-position:50%;background-repeat:no-repeat;min-height:180px;padding:8px;background-color:#f1f1f1;background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_mobile_desktop.svg\");margin-top:-8px;padding:16px}@media (min-width:37.5em){.messaging-banner-image-default{padding-left:16px;width:33.33333%;margin:-8px}}@media (min-width:37.5em) and (max-width:56.24em){.messaging-banner-image-default{background-image:url(\"https://bitesize.files.bbci.co.uk/images/svgs/messageBanner/default/default_tablet.svg\")}}.messaging-banner-container{margin:16px 8px;position:relative}@media (min-width:56.25em){.messaging-banner-container{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0!important}}@media (min-width:56.25em) and (min-width:25em){.messaging-banner-container{padding-left:16px;padding-right:16px}}@media (min-width:56.25em) and (max-width:62.99em){.messaging-banner-container{margin:8px}}</style>"); }</script><script type="text/javascript">Morph.initStyles(); /* u7422361455819281 */</script><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:"ss01"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.education-links-panel__invisible--bitesize-primary{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-links-panel__heading--bitesize-primary{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;background-color:#e45153;color:#fff;font-weight:700;margin:0;padding:16px 8px}@media (min-width:37.5em){.education-links-panel__heading--bitesize-primary{padding:16px}}.education-links-panel__list--bitesize-primary{list-style:none;margin-bottom:0;margin-top:0;padding-left:0}.education-link__invisible--bitesize-primary{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-link__link--bitesize-primary{text-decoration:none}.education-link__link--bitesize-primary:visited .education-link__link-title--bitesize-primary{color:#706d66}.education-link__link--bitesize-primary:focus .education-link__link-panel--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-panel--bitesize-primary{background-color:#e45153}.education-link__link--bitesize-primary:focus .education-link__link-title--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-title--bitesize-primary{color:#fff;font-weight:400;text-decoration:underline}.education-link__link--bitesize-primary:focus .education-link__link-subtitle--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-subtitle--bitesize-primary{color:#fff;font-weight:400;text-decoration:none}.education-link__link--bitesize-primary:focus .education-link__link-icon--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-icon--bitesize-primary{fill:#fff}.education-link__link--bitesize-primary:focus .education-link__link-icon--bitesize-primary svg,.education-link__link--bitesize-primary:hover .education-link__link-icon--bitesize-primary svg{pointer-events:none}.education-link__link-panel--bitesize-primary{background-color:#fff;margin-bottom:3px;padding:16px}.education-link__link-text-wrapper--bitesize-primary{display:table-cell;width:100%}.education-link__link-title--bitesize-primary{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;color:#231f20;font-weight:700;text-decoration:none}.education-link__link-subtitle--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;color:#e5640f;font-weight:700;margin-top:4px;text-decoration:none}.education-link__link-icon-wrapper--bitesize-primary{display:table-cell;vertical-align:middle}.education-link__link-icon--bitesize-primary{fill:#e5640f;height:16px;padding-top:3px;padding-left:8px;width:16px}@media (min-width:37.5em){.education-link__link-icon--bitesize-primary{padding-top:4px}}.education-link__link-icon--bitesize-primary svg{pointer-events:none}.ec-content-panel--default{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;background-color:#fff;padding:24px 8px 8px}@media (max-width:37.49em){.ec-content-panel--default{padding-right:8px;padding-left:8px}}.ec-content-panel__item--default{margin-bottom:32px}.ec-content-panel__item--default:last-child{margin-bottom:0}.ec-content-panel__item--default>a{display:inline-block}.ec-grid--default{margin-left:0}.ec-grid__item-wrapper--default{direction:ltr;text-align:left;list-style:none}.ec-grid__item--default{width:100%;padding-bottom:16px;padding-left:0}@media (min-width:37.5em){.ec-grid__item--default{width:50%;padding-bottom:32px;padding-left:0}}@media (min-width:63em){.ec-grid__item--default{width:33.33333%;padding-left:0}}.ec-grid__item-content-wrapper--default{display:block;height:100%;padding-left:8px}@media (min-width:37.5em){.ec-grid__item-content-wrapper--default{padding-left:16px}}.ec-content-panel--primary-index{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;background-color:transparent;padding:24px 8px 8px}@media (max-width:37.49em){.ec-content-panel--primary-index{padding-right:8px;padding-left:8px}}.ec-content-panel__item--primary-index{margin-bottom:32px}.ec-content-panel__item--primary-index:last-child{margin-bottom:0}.ec-content-panel__item--primary-index>a{display:inline-block}.ec-grid--primary-index{margin-left:0}.ec-grid__item-wrapper--primary-index{direction:ltr;text-align:left;list-style:none}.ec-grid__item--primary-index{width:100%;padding-bottom:16px;padding-left:0}@media (min-width:37.5em){.ec-grid__item--primary-index{width:50%;padding-bottom:32px;padding-left:0}}@media (min-width:63em){.ec-grid__item--primary-index{width:25%;padding-left:0}}.ec-grid__item-content-wrapper--primary-index{display:block;height:100%;padding-left:8px}@media (min-width:37.5em){.ec-grid__item-content-wrapper--primary-index{padding-left:16px}}.ec-content-panel--primary-index{padding:32px 8px 8px;position:relative}@media (min-width:37.5em){.ec-content-panel--primary-index{padding-bottom:0;padding-top:48px}}@media (min-width:63em){.ec-content-panel--primary-index{padding-bottom:0;padding-left:16px;padding-right:16px}}.nations-levels-character{background-repeat:no-repeat;background-size:cover;display:block;position:absolute}@media (min-width:63em){.nations-levels-character{background-image:url("https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/phases/primary/nations-levels-desktop.png");bottom:32px;height:190px;left:8px;width:230px}}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-primary-index-view/1.4.0"]=true; Morph.styleSrc.push("<style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:\"ss01\"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.education-links-panel__invisible--bitesize-primary{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-links-panel__heading--bitesize-primary{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;background-color:#e45153;color:#fff;font-weight:700;margin:0;padding:16px 8px}@media (min-width:37.5em){.education-links-panel__heading--bitesize-primary{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.n-no-touchevents .education-links-panel__heading--bitesize-primary{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.education-links-panel__heading--bitesize-primary{padding:16px}}.education-links-panel__list--bitesize-primary{list-style:none;margin-bottom:0;margin-top:0;padding-left:0}.education-link__invisible--bitesize-primary{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-link__link--bitesize-primary{text-decoration:none}.education-link__link--bitesize-primary:visited .education-link__link-title--bitesize-primary{color:#706d66}.education-link__link--bitesize-primary:focus .education-link__link-panel--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-panel--bitesize-primary{background-color:#e45153}.education-link__link--bitesize-primary:focus .education-link__link-title--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-title--bitesize-primary{color:#fff;font-weight:400;text-decoration:underline}.education-link__link--bitesize-primary:focus .education-link__link-subtitle--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-subtitle--bitesize-primary{color:#fff;font-weight:400;text-decoration:none}.education-link__link--bitesize-primary:focus .education-link__link-icon--bitesize-primary,.education-link__link--bitesize-primary:hover .education-link__link-icon--bitesize-primary{fill:#fff}.education-link__link--bitesize-primary:focus .education-link__link-icon--bitesize-primary svg,.education-link__link--bitesize-primary:hover .education-link__link-icon--bitesize-primary svg{pointer-events:none}.education-link__link-panel--bitesize-primary{background-color:#fff;margin-bottom:3px;padding:16px}.education-link__link-text-wrapper--bitesize-primary{display:table-cell;width:100%}.education-link__link-title--bitesize-primary{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;color:#231f20;font-weight:700;text-decoration:none}@media (min-width:37.5em){.education-link__link-title--bitesize-primary{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .education-link__link-title--bitesize-primary{font-size:20px;font-size:1.25rem}}.education-link__link-subtitle--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;color:#e5640f;font-weight:700;margin-top:4px;text-decoration:none}@media (min-width:20em){.education-link__link-subtitle--bitesize-primary{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.education-link__link-subtitle--bitesize-primary{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.n-no-touchevents .education-link__link-subtitle--bitesize-primary{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.education-link__link-icon-wrapper--bitesize-primary{display:table-cell;vertical-align:middle}.education-link__link-icon--bitesize-primary{fill:#e5640f;height:16px;padding-top:3px;padding-left:8px;width:16px}@media (min-width:37.5em){.education-link__link-icon--bitesize-primary{padding-top:4px}}.education-link__link-icon--bitesize-primary svg{pointer-events:none}.ec-content-panel--default{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff;padding:24px 8px 8px}@media (min-width:25em){.ec-content-panel--default{padding-left:16px;padding-right:16px}}@media (max-width:37.49em){.ec-content-panel--default{padding-right:8px;padding-left:8px}}.ec-content-panel__item--default{margin-bottom:32px}.ec-content-panel__item--default:last-child{margin-bottom:0}.ec-content-panel__item--default>a{display:inline-block}.ec-grid--default{margin-left:0}.ec-grid__item-wrapper--default{direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0;list-style:none}@media (min-width:37.5em){.ec-grid__item-wrapper--default{margin-left:-16px}}.ec-grid__item--default{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding-bottom:16px;padding-left:0}@media (min-width:37.5em){.ec-grid__item--default{padding-left:16px;width:50%;padding-bottom:32px;padding-left:0}}@media (min-width:63em){.ec-grid__item--default{width:33.33333%;padding-left:0}}.ec-grid__item-content-wrapper--default{display:block;height:100%;padding-left:8px}@media (min-width:37.5em){.ec-grid__item-content-wrapper--default{padding-left:16px}}.ec-content-panel--primary-index{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:transparent;padding:24px 8px 8px}@media (min-width:25em){.ec-content-panel--primary-index{padding-left:16px;padding-right:16px}}@media (max-width:37.49em){.ec-content-panel--primary-index{padding-right:8px;padding-left:8px}}.ec-content-panel__item--primary-index{margin-bottom:32px}.ec-content-panel__item--primary-index:last-child{margin-bottom:0}.ec-content-panel__item--primary-index>a{display:inline-block}.ec-grid--primary-index{margin-left:0}.ec-grid__item-wrapper--primary-index{direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0;list-style:none}@media (min-width:37.5em){.ec-grid__item-wrapper--primary-index{margin-left:-16px}}.ec-grid__item--primary-index{display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding-bottom:16px;padding-left:0}@media (min-width:37.5em){.ec-grid__item--primary-index{padding-left:16px;width:50%;padding-bottom:32px;padding-left:0}}@media (min-width:63em){.ec-grid__item--primary-index{width:25%;padding-left:0}}.ec-grid__item-content-wrapper--primary-index{display:block;height:100%;padding-left:8px}@media (min-width:37.5em){.ec-grid__item-content-wrapper--primary-index{padding-left:16px}}.ec-content-panel--primary-index{padding:32px 8px 8px;position:relative}@media (min-width:37.5em){.ec-content-panel--primary-index{padding-bottom:0;padding-top:48px}}@media (min-width:63em){.ec-content-panel--primary-index{padding-bottom:0;padding-left:16px;padding-right:16px}}.nations-levels-character{background-repeat:no-repeat;background-size:cover;display:block;position:absolute}@media (min-width:63em){.nations-levels-character{background-image:url(\"https://bitesize.files.bbci.co.uk/images/phases/primary/nations-levels-desktop.png\");bottom:32px;height:190px;left:8px;width:230px}}</style>"); }</script><script type="text/javascript">Morph.initStyles(); /* u33051296519322193 */</script><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>.gel-2\/4{width:50%!important}.gel-2\/8{width:25%!important}.gel-4\/8{width:50%!important}.gel-6\/8{width:75%!important}.gel-2\/10{width:20%!important}.gel-4\/10{width:40%!important}.gel-5\/10{width:50%!important}.gel-6\/10{width:60%!important}.gel-8\/10{width:80%!important}.gel-3\/12{width:25%!important}.gel-4\/12{width:33.33333%!important}.gel-6\/12{width:50%!important}.gel-8\/12{width:66.66667%!important}.gel-9\/12{width:75%!important}.gel-2\/24{width:8.33333%!important}.gel-3\/24{width:12.5%!important}.gel-4\/24{width:16.66667%!important}.gel-6\/24{width:25%!important}.gel-8\/24{width:33.33333%!important}.gel-9\/24{width:37.5%!important}.gel-10\/24{width:41.66667%!important}.gel-12\/24{width:50%!important}.gel-14\/24{width:58.33333%!important}.gel-15\/24{width:62.5%!important}.gel-16\/24{width:66.66667%!important}.gel-18\/24{width:75%!important}.gel-20\/24{width:83.33333%!important}.gel-21\/24{width:87.5%!important}.gel-22\/24{width:91.66667%!important}@media (min-width:25em){.gel-1\/1\@s{width:100%!important}.gel-1\/2\@s{width:50%!important}.gel-1\/3\@s{width:33.33333%!important}.gel-2\/3\@s{width:66.66667%!important}.gel-1\/4\@s{width:25%!important}.gel-2\/4\@s{width:50%!important}.gel-3\/4\@s{width:75%!important}.gel-1\/5\@s{width:20%!important}.gel-2\/5\@s{width:40%!important}.gel-3\/5\@s{width:60%!important}.gel-4\/5\@s{width:80%!important}.gel-1\/8\@s{width:12.5%!important}.gel-2\/8\@s{width:25%!important}.gel-3\/8\@s{width:37.5%!important}.gel-4\/8\@s{width:50%!important}.gel-5\/8\@s{width:62.5%!important}.gel-6\/8\@s{width:75%!important}.gel-7\/8\@s{width:87.5%!important}.gel-1\/10\@s{width:10%!important}.gel-2\/10\@s{width:20%!important}.gel-3\/10\@s{width:30%!important}.gel-4\/10\@s{width:40%!important}.gel-5\/10\@s{width:50%!important}.gel-6\/10\@s{width:60%!important}.gel-7\/10\@s{width:70%!important}.gel-8\/10\@s{width:80%!important}.gel-9\/10\@s{width:90%!important}.gel-1\/12\@s{width:8.33333%!important}.gel-2\/12\@s{width:16.66667%!important}.gel-3\/12\@s{width:25%!important}.gel-4\/12\@s{width:33.33333%!important}.gel-5\/12\@s{width:41.66667%!important}.gel-6\/12\@s{width:50%!important}.gel-7\/12\@s{width:58.33333%!important}.gel-8\/12\@s{width:66.66667%!important}.gel-9\/12\@s{width:75%!important}.gel-10\/12\@s{width:83.33333%!important}.gel-11\/12\@s{width:91.66667%!important}.gel-1\/24\@s{width:4.16667%!important}.gel-2\/24\@s{width:8.33333%!important}.gel-3\/24\@s{width:12.5%!important}.gel-4\/24\@s{width:16.66667%!important}.gel-5\/24\@s{width:20.83333%!important}.gel-6\/24\@s{width:25%!important}.gel-7\/24\@s{width:29.16667%!important}.gel-8\/24\@s{width:33.33333%!important}.gel-9\/24\@s{width:37.5%!important}.gel-10\/24\@s{width:41.66667%!important}.gel-11\/24\@s{width:45.83333%!important}.gel-12\/24\@s{width:50%!important}.gel-13\/24\@s{width:54.16667%!important}.gel-14\/24\@s{width:58.33333%!important}.gel-15\/24\@s{width:62.5%!important}.gel-16\/24\@s{width:66.66667%!important}.gel-17\/24\@s{width:70.83333%!important}.gel-18\/24\@s{width:75%!important}.gel-19\/24\@s{width:79.16667%!important}.gel-20\/24\@s{width:83.33333%!important}.gel-21\/24\@s{width:87.5%!important}.gel-22\/24\@s{width:91.66667%!important}.gel-23\/24\@s{width:95.83333%!important}}@media (min-width:37.5em){.gel-1\/1\@m{width:100%!important}.gel-1\/2\@m{width:50%!important}.gel-1\/3\@m{width:33.33333%!important}.gel-2\/3\@m{width:66.66667%!important}.gel-1\/4\@m{width:25%!important}.gel-2\/4\@m{width:50%!important}.gel-3\/4\@m{width:75%!important}.gel-1\/5\@m{width:20%!important}.gel-2\/5\@m{width:40%!important}.gel-3\/5\@m{width:60%!important}.gel-4\/5\@m{width:80%!important}.gel-1\/8\@m{width:12.5%!important}.gel-2\/8\@m{width:25%!important}.gel-3\/8\@m{width:37.5%!important}.gel-4\/8\@m{width:50%!important}.gel-5\/8\@m{width:62.5%!important}.gel-6\/8\@m{width:75%!important}.gel-7\/8\@m{width:87.5%!important}.gel-1\/10\@m{width:10%!important}.gel-2\/10\@m{width:20%!important}.gel-3\/10\@m{width:30%!important}.gel-4\/10\@m{width:40%!important}.gel-5\/10\@m{width:50%!important}.gel-6\/10\@m{width:60%!important}.gel-7\/10\@m{width:70%!important}.gel-8\/10\@m{width:80%!important}.gel-9\/10\@m{width:90%!important}.gel-1\/12\@m{width:8.33333%!important}.gel-2\/12\@m{width:16.66667%!important}.gel-3\/12\@m{width:25%!important}.gel-4\/12\@m{width:33.33333%!important}.gel-5\/12\@m{width:41.66667%!important}.gel-6\/12\@m{width:50%!important}.gel-7\/12\@m{width:58.33333%!important}.gel-8\/12\@m{width:66.66667%!important}.gel-9\/12\@m{width:75%!important}.gel-10\/12\@m{width:83.33333%!important}.gel-11\/12\@m{width:91.66667%!important}.gel-1\/24\@m{width:4.16667%!important}.gel-2\/24\@m{width:8.33333%!important}.gel-3\/24\@m{width:12.5%!important}.gel-4\/24\@m{width:16.66667%!important}.gel-5\/24\@m{width:20.83333%!important}.gel-6\/24\@m{width:25%!important}.gel-7\/24\@m{width:29.16667%!important}.gel-8\/24\@m{width:33.33333%!important}.gel-9\/24\@m{width:37.5%!important}.gel-10\/24\@m{width:41.66667%!important}.gel-11\/24\@m{width:45.83333%!important}.gel-12\/24\@m{width:50%!important}.gel-13\/24\@m{width:54.16667%!important}.gel-14\/24\@m{width:58.33333%!important}.gel-15\/24\@m{width:62.5%!important}.gel-16\/24\@m{width:66.66667%!important}.gel-17\/24\@m{width:70.83333%!important}.gel-18\/24\@m{width:75%!important}.gel-19\/24\@m{width:79.16667%!important}.gel-20\/24\@m{width:83.33333%!important}.gel-21\/24\@m{width:87.5%!important}.gel-22\/24\@m{width:91.66667%!important}.gel-23\/24\@m{width:95.83333%!important}}@media (min-width:56.25em){.gel-1\/1\@l{width:100%!important}.gel-1\/2\@l{width:50%!important}.gel-1\/3\@l{width:33.33333%!important}.gel-2\/3\@l{width:66.66667%!important}.gel-1\/4\@l{width:25%!important}.gel-2\/4\@l{width:50%!important}.gel-3\/4\@l{width:75%!important}.gel-1\/5\@l{width:20%!important}.gel-2\/5\@l{width:40%!important}.gel-3\/5\@l{width:60%!important}.gel-4\/5\@l{width:80%!important}.gel-1\/8\@l{width:12.5%!important}.gel-2\/8\@l{width:25%!important}.gel-3\/8\@l{width:37.5%!important}.gel-4\/8\@l{width:50%!important}.gel-5\/8\@l{width:62.5%!important}.gel-6\/8\@l{width:75%!important}.gel-7\/8\@l{width:87.5%!important}.gel-1\/10\@l{width:10%!important}.gel-2\/10\@l{width:20%!important}.gel-3\/10\@l{width:30%!important}.gel-4\/10\@l{width:40%!important}.gel-5\/10\@l{width:50%!important}.gel-6\/10\@l{width:60%!important}.gel-7\/10\@l{width:70%!important}.gel-8\/10\@l{width:80%!important}.gel-9\/10\@l{width:90%!important}.gel-1\/12\@l{width:8.33333%!important}.gel-2\/12\@l{width:16.66667%!important}.gel-3\/12\@l{width:25%!important}.gel-4\/12\@l{width:33.33333%!important}.gel-5\/12\@l{width:41.66667%!important}.gel-6\/12\@l{width:50%!important}.gel-7\/12\@l{width:58.33333%!important}.gel-8\/12\@l{width:66.66667%!important}.gel-9\/12\@l{width:75%!important}.gel-10\/12\@l{width:83.33333%!important}.gel-11\/12\@l{width:91.66667%!important}.gel-1\/24\@l{width:4.16667%!important}.gel-2\/24\@l{width:8.33333%!important}.gel-3\/24\@l{width:12.5%!important}.gel-4\/24\@l{width:16.66667%!important}.gel-5\/24\@l{width:20.83333%!important}.gel-6\/24\@l{width:25%!important}.gel-7\/24\@l{width:29.16667%!important}.gel-8\/24\@l{width:33.33333%!important}.gel-9\/24\@l{width:37.5%!important}.gel-10\/24\@l{width:41.66667%!important}.gel-11\/24\@l{width:45.83333%!important}.gel-12\/24\@l{width:50%!important}.gel-13\/24\@l{width:54.16667%!important}.gel-14\/24\@l{width:58.33333%!important}.gel-15\/24\@l{width:62.5%!important}.gel-16\/24\@l{width:66.66667%!important}.gel-17\/24\@l{width:70.83333%!important}.gel-18\/24\@l{width:75%!important}.gel-19\/24\@l{width:79.16667%!important}.gel-20\/24\@l{width:83.33333%!important}.gel-21\/24\@l{width:87.5%!important}.gel-22\/24\@l{width:91.66667%!important}.gel-23\/24\@l{width:95.83333%!important}}@media (min-width:63em){.gel-1\/1\@xl{width:100%!important}.gel-1\/2\@xl{width:50%!important}.gel-1\/3\@xl{width:33.33333%!important}.gel-2\/3\@xl{width:66.66667%!important}.gel-1\/4\@xl{width:25%!important}.gel-2\/4\@xl{width:50%!important}.gel-3\/4\@xl{width:75%!important}.gel-1\/5\@xl{width:20%!important}.gel-2\/5\@xl{width:40%!important}.gel-3\/5\@xl{width:60%!important}.gel-4\/5\@xl{width:80%!important}.gel-1\/8\@xl{width:12.5%!important}.gel-2\/8\@xl{width:25%!important}.gel-3\/8\@xl{width:37.5%!important}.gel-4\/8\@xl{width:50%!important}.gel-5\/8\@xl{width:62.5%!important}.gel-6\/8\@xl{width:75%!important}.gel-7\/8\@xl{width:87.5%!important}.gel-1\/10\@xl{width:10%!important}.gel-2\/10\@xl{width:20%!important}.gel-3\/10\@xl{width:30%!important}.gel-4\/10\@xl{width:40%!important}.gel-5\/10\@xl{width:50%!important}.gel-6\/10\@xl{width:60%!important}.gel-7\/10\@xl{width:70%!important}.gel-8\/10\@xl{width:80%!important}.gel-9\/10\@xl{width:90%!important}.gel-1\/12\@xl{width:8.33333%!important}.gel-2\/12\@xl{width:16.66667%!important}.gel-3\/12\@xl{width:25%!important}.gel-4\/12\@xl{width:33.33333%!important}.gel-5\/12\@xl{width:41.66667%!important}.gel-6\/12\@xl{width:50%!important}.gel-7\/12\@xl{width:58.33333%!important}.gel-8\/12\@xl{width:66.66667%!important}.gel-9\/12\@xl{width:75%!important}.gel-10\/12\@xl{width:83.33333%!important}.gel-11\/12\@xl{width:91.66667%!important}.gel-1\/24\@xl{width:4.16667%!important}.gel-2\/24\@xl{width:8.33333%!important}.gel-3\/24\@xl{width:12.5%!important}.gel-4\/24\@xl{width:16.66667%!important}.gel-5\/24\@xl{width:20.83333%!important}.gel-6\/24\@xl{width:25%!important}.gel-7\/24\@xl{width:29.16667%!important}.gel-8\/24\@xl{width:33.33333%!important}.gel-9\/24\@xl{width:37.5%!important}.gel-10\/24\@xl{width:41.66667%!important}.gel-11\/24\@xl{width:45.83333%!important}.gel-12\/24\@xl{width:50%!important}.gel-13\/24\@xl{width:54.16667%!important}.gel-14\/24\@xl{width:58.33333%!important}.gel-15\/24\@xl{width:62.5%!important}.gel-16\/24\@xl{width:66.66667%!important}.gel-17\/24\@xl{width:70.83333%!important}.gel-18\/24\@xl{width:75%!important}.gel-19\/24\@xl{width:79.16667%!important}.gel-20\/24\@xl{width:83.33333%!important}.gel-21\/24\@xl{width:87.5%!important}.gel-22\/24\@xl{width:91.66667%!important}.gel-23\/24\@xl{width:95.83333%!important}}@media (min-width:80em){.gel-1\/1\@xxl{width:100%!important}.gel-1\/2\@xxl{width:50%!important}.gel-1\/3\@xxl{width:33.33333%!important}.gel-2\/3\@xxl{width:66.66667%!important}.gel-1\/4\@xxl{width:25%!important}.gel-2\/4\@xxl{width:50%!important}.gel-3\/4\@xxl{width:75%!important}.gel-1\/5\@xxl{width:20%!important}.gel-2\/5\@xxl{width:40%!important}.gel-3\/5\@xxl{width:60%!important}.gel-4\/5\@xxl{width:80%!important}.gel-1\/8\@xxl{width:12.5%!important}.gel-2\/8\@xxl{width:25%!important}.gel-3\/8\@xxl{width:37.5%!important}.gel-4\/8\@xxl{width:50%!important}.gel-5\/8\@xxl{width:62.5%!important}.gel-6\/8\@xxl{width:75%!important}.gel-7\/8\@xxl{width:87.5%!important}.gel-1\/10\@xxl{width:10%!important}.gel-2\/10\@xxl{width:20%!important}.gel-3\/10\@xxl{width:30%!important}.gel-4\/10\@xxl{width:40%!important}.gel-5\/10\@xxl{width:50%!important}.gel-6\/10\@xxl{width:60%!important}.gel-7\/10\@xxl{width:70%!important}.gel-8\/10\@xxl{width:80%!important}.gel-9\/10\@xxl{width:90%!important}.gel-1\/12\@xxl{width:8.33333%!important}.gel-2\/12\@xxl{width:16.66667%!important}.gel-3\/12\@xxl{width:25%!important}.gel-4\/12\@xxl{width:33.33333%!important}.gel-5\/12\@xxl{width:41.66667%!important}.gel-6\/12\@xxl{width:50%!important}.gel-7\/12\@xxl{width:58.33333%!important}.gel-8\/12\@xxl{width:66.66667%!important}.gel-9\/12\@xxl{width:75%!important}.gel-10\/12\@xxl{width:83.33333%!important}.gel-11\/12\@xxl{width:91.66667%!important}.gel-1\/24\@xxl{width:4.16667%!important}.gel-2\/24\@xxl{width:8.33333%!important}.gel-3\/24\@xxl{width:12.5%!important}.gel-4\/24\@xxl{width:16.66667%!important}.gel-5\/24\@xxl{width:20.83333%!important}.gel-6\/24\@xxl{width:25%!important}.gel-7\/24\@xxl{width:29.16667%!important}.gel-8\/24\@xxl{width:33.33333%!important}.gel-9\/24\@xxl{width:37.5%!important}.gel-10\/24\@xxl{width:41.66667%!important}.gel-11\/24\@xxl{width:45.83333%!important}.gel-12\/24\@xxl{width:50%!important}.gel-13\/24\@xxl{width:54.16667%!important}.gel-14\/24\@xxl{width:58.33333%!important}.gel-15\/24\@xxl{width:62.5%!important}.gel-16\/24\@xxl{width:66.66667%!important}.gel-17\/24\@xxl{width:70.83333%!important}.gel-18\/24\@xxl{width:75%!important}.gel-19\/24\@xxl{width:79.16667%!important}.gel-20\/24\@xxl{width:83.33333%!important}.gel-21\/24\@xxl{width:87.5%!important}.gel-22\/24\@xxl{width:91.66667%!important}.gel-23\/24\@xxl{width:95.83333%!important}}.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px}@media (min-width:25em){.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{padding-left:16px;padding-right:16px}}@media (min-width:80em){.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{max-width:1280px}}.gel-layout{list-style:none;direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0}@media (min-width:37.5em){.gel-layout{margin-left:-16px}}.gel-layout__item{width:100%;display:inline-block;padding-left:8px;text-align:left;vertical-align:top}@media (min-width:37.5em){.gel-layout__item{padding-left:16px}}.gel-layout--flush{margin-left:0}.gel-layout--flush>.gel-layout__item{padding-left:0}.gel-layout--rev{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.no-flexbox .gel-layout--rev{direction:rtl;text-align:left}.no-flexbox .gel-layout--rev>.gel-layout__item{direction:ltr;text-align:left}.gel-layout--middle{-webkit-align-items:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center}.gel-layout--middle>.gel-layout__item{vertical-align:middle}.gel-layout--bottom{-webkit-align-items:flex-end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.gel-layout--bottom>.gel-layout__item{vertical-align:bottom}.gel-layout--right{text-align:right;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.gel-layout--right>.gel-layout__item{text-align:left}.gel-layout--center{text-align:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.gel-layout--center>.gel-layout__item{text-align:left}.gel-layout--auto>.gel-layout__item{width:auto}.gel-layout--no-flex{min-width:100%}.gel-layout--no-flex,.gel-layout--no-flex>.gel-layout__item{display:block;display:inline-block}.gel-layout--equal>.gel-layout__item{display:-webkit-flex;display:flex}.gel-layout--fit>.gel-layout__item{width:auto;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.gel-layout__item--top{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.gel-layout__item--center{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.gel-layout__item--bottom{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.gel-1\/1{width:100%!important}.gel-1\/2{width:50%!important}.gel-1\/3{width:33.33333%!important}.gel-2\/3{width:66.66667%!important}.gel-1\/4{width:25%!important}.gel-3\/4{width:75%!important}.gel-1\/5{width:20%!important}.gel-2\/5{width:40%!important}.gel-3\/5{width:60%!important}.gel-4\/5{width:80%!important}.gel-1\/8{width:12.5%!important}.gel-3\/8{width:37.5%!important}.gel-5\/8{width:62.5%!important}.gel-7\/8{width:87.5%!important}.gel-1\/10{width:10%!important}.gel-3\/10{width:30%!important}.gel-7\/10{width:70%!important}.gel-9\/10{width:90%!important}.gel-1\/12{width:8.33333%!important}.gel-2\/12{width:16.66667%!important}.gel-5\/12{width:41.66667%!important}.gel-7\/12{width:58.33333%!important}.gel-10\/12{width:83.33333%!important}.gel-11\/12{width:91.66667%!important}.gel-1\/24{width:4.16667%!important}.gel-5\/24{width:20.83333%!important}.gel-7\/24{width:29.16667%!important}.gel-11\/24{width:45.83333%!important}.gel-13\/24{width:54.16667%!important}.gel-17\/24{width:70.83333%!important}.gel-19\/24{width:79.16667%!important}.gel-23\/24{width:95.83333%!important}@media (min-width:25em){.gel-1\/1\@s{width:100%!important}.gel-1\/2\@s{width:50%!important}.gel-1\/3\@s{width:33.33333%!important}.gel-2\/3\@s{width:66.66667%!important}.gel-1\/4\@s{width:25%!important}.gel-3\/4\@s{width:75%!important}.gel-1\/5\@s{width:20%!important}.gel-2\/5\@s{width:40%!important}.gel-3\/5\@s{width:60%!important}.gel-4\/5\@s{width:80%!important}.gel-1\/8\@s{width:12.5%!important}.gel-3\/8\@s{width:37.5%!important}.gel-5\/8\@s{width:62.5%!important}.gel-7\/8\@s{width:87.5%!important}.gel-1\/10\@s{width:10%!important}.gel-3\/10\@s{width:30%!important}.gel-7\/10\@s{width:70%!important}.gel-9\/10\@s{width:90%!important}.gel-1\/12\@s{width:8.33333%!important}.gel-2\/12\@s{width:16.66667%!important}.gel-5\/12\@s{width:41.66667%!important}.gel-7\/12\@s{width:58.33333%!important}.gel-10\/12\@s{width:83.33333%!important}.gel-11\/12\@s{width:91.66667%!important}.gel-1\/24\@s{width:4.16667%!important}.gel-5\/24\@s{width:20.83333%!important}.gel-7\/24\@s{width:29.16667%!important}.gel-11\/24\@s{width:45.83333%!important}.gel-13\/24\@s{width:54.16667%!important}.gel-17\/24\@s{width:70.83333%!important}.gel-19\/24\@s{width:79.16667%!important}.gel-23\/24\@s{width:95.83333%!important}}@media (min-width:37.5em){.gel-1\/1\@m{width:100%!important}.gel-1\/2\@m{width:50%!important}.gel-1\/3\@m{width:33.33333%!important}.gel-2\/3\@m{width:66.66667%!important}.gel-1\/4\@m{width:25%!important}.gel-3\/4\@m{width:75%!important}.gel-1\/5\@m{width:20%!important}.gel-2\/5\@m{width:40%!important}.gel-3\/5\@m{width:60%!important}.gel-4\/5\@m{width:80%!important}.gel-1\/8\@m{width:12.5%!important}.gel-3\/8\@m{width:37.5%!important}.gel-5\/8\@m{width:62.5%!important}.gel-7\/8\@m{width:87.5%!important}.gel-1\/10\@m{width:10%!important}.gel-3\/10\@m{width:30%!important}.gel-7\/10\@m{width:70%!important}.gel-9\/10\@m{width:90%!important}.gel-1\/12\@m{width:8.33333%!important}.gel-2\/12\@m{width:16.66667%!important}.gel-5\/12\@m{width:41.66667%!important}.gel-7\/12\@m{width:58.33333%!important}.gel-10\/12\@m{width:83.33333%!important}.gel-11\/12\@m{width:91.66667%!important}.gel-1\/24\@m{width:4.16667%!important}.gel-5\/24\@m{width:20.83333%!important}.gel-7\/24\@m{width:29.16667%!important}.gel-11\/24\@m{width:45.83333%!important}.gel-13\/24\@m{width:54.16667%!important}.gel-17\/24\@m{width:70.83333%!important}.gel-19\/24\@m{width:79.16667%!important}.gel-23\/24\@m{width:95.83333%!important}}@media (min-width:56.25em){.gel-1\/1\@l{width:100%!important}.gel-1\/2\@l{width:50%!important}.gel-1\/3\@l{width:33.33333%!important}.gel-2\/3\@l{width:66.66667%!important}.gel-1\/4\@l{width:25%!important}.gel-3\/4\@l{width:75%!important}.gel-1\/5\@l{width:20%!important}.gel-2\/5\@l{width:40%!important}.gel-3\/5\@l{width:60%!important}.gel-4\/5\@l{width:80%!important}.gel-1\/8\@l{width:12.5%!important}.gel-3\/8\@l{width:37.5%!important}.gel-5\/8\@l{width:62.5%!important}.gel-7\/8\@l{width:87.5%!important}.gel-1\/10\@l{width:10%!important}.gel-3\/10\@l{width:30%!important}.gel-7\/10\@l{width:70%!important}.gel-9\/10\@l{width:90%!important}.gel-1\/12\@l{width:8.33333%!important}.gel-2\/12\@l{width:16.66667%!important}.gel-5\/12\@l{width:41.66667%!important}.gel-7\/12\@l{width:58.33333%!important}.gel-10\/12\@l{width:83.33333%!important}.gel-11\/12\@l{width:91.66667%!important}.gel-1\/24\@l{width:4.16667%!important}.gel-5\/24\@l{width:20.83333%!important}.gel-7\/24\@l{width:29.16667%!important}.gel-11\/24\@l{width:45.83333%!important}.gel-13\/24\@l{width:54.16667%!important}.gel-17\/24\@l{width:70.83333%!important}.gel-19\/24\@l{width:79.16667%!important}.gel-23\/24\@l{width:95.83333%!important}}@media (min-width:63em){.gel-1\/1\@xl{width:100%!important}.gel-1\/2\@xl{width:50%!important}.gel-1\/3\@xl{width:33.33333%!important}.gel-2\/3\@xl{width:66.66667%!important}.gel-1\/4\@xl{width:25%!important}.gel-3\/4\@xl{width:75%!important}.gel-1\/5\@xl{width:20%!important}.gel-2\/5\@xl{width:40%!important}.gel-3\/5\@xl{width:60%!important}.gel-4\/5\@xl{width:80%!important}.gel-1\/8\@xl{width:12.5%!important}.gel-3\/8\@xl{width:37.5%!important}.gel-5\/8\@xl{width:62.5%!important}.gel-7\/8\@xl{width:87.5%!important}.gel-1\/10\@xl{width:10%!important}.gel-3\/10\@xl{width:30%!important}.gel-7\/10\@xl{width:70%!important}.gel-9\/10\@xl{width:90%!important}.gel-1\/12\@xl{width:8.33333%!important}.gel-2\/12\@xl{width:16.66667%!important}.gel-5\/12\@xl{width:41.66667%!important}.gel-7\/12\@xl{width:58.33333%!important}.gel-10\/12\@xl{width:83.33333%!important}.gel-11\/12\@xl{width:91.66667%!important}.gel-1\/24\@xl{width:4.16667%!important}.gel-5\/24\@xl{width:20.83333%!important}.gel-7\/24\@xl{width:29.16667%!important}.gel-11\/24\@xl{width:45.83333%!important}.gel-13\/24\@xl{width:54.16667%!important}.gel-17\/24\@xl{width:70.83333%!important}.gel-19\/24\@xl{width:79.16667%!important}.gel-23\/24\@xl{width:95.83333%!important}}@media (min-width:80em){.gel-1\/1\@xxl{width:100%!important}.gel-1\/2\@xxl{width:50%!important}.gel-1\/3\@xxl{width:33.33333%!important}.gel-2\/3\@xxl{width:66.66667%!important}.gel-1\/4\@xxl{width:25%!important}.gel-3\/4\@xxl{width:75%!important}.gel-1\/5\@xxl{width:20%!important}.gel-2\/5\@xxl{width:40%!important}.gel-3\/5\@xxl{width:60%!important}.gel-4\/5\@xxl{width:80%!important}.gel-1\/8\@xxl{width:12.5%!important}.gel-3\/8\@xxl{width:37.5%!important}.gel-5\/8\@xxl{width:62.5%!important}.gel-7\/8\@xxl{width:87.5%!important}.gel-1\/10\@xxl{width:10%!important}.gel-3\/10\@xxl{width:30%!important}.gel-7\/10\@xxl{width:70%!important}.gel-9\/10\@xxl{width:90%!important}.gel-1\/12\@xxl{width:8.33333%!important}.gel-2\/12\@xxl{width:16.66667%!important}.gel-5\/12\@xxl{width:41.66667%!important}.gel-7\/12\@xxl{width:58.33333%!important}.gel-10\/12\@xxl{width:83.33333%!important}.gel-11\/12\@xxl{width:91.66667%!important}.gel-1\/24\@xxl{width:4.16667%!important}.gel-5\/24\@xxl{width:20.83333%!important}.gel-7\/24\@xxl{width:29.16667%!important}.gel-11\/24\@xxl{width:45.83333%!important}.gel-13\/24\@xxl{width:54.16667%!important}.gel-17\/24\@xxl{width:70.83333%!important}.gel-19\/24\@xxl{width:79.16667%!important}.gel-23\/24\@xxl{width:95.83333%!important}}.ec-icon{fill:currentColor;height:1em;position:relative;top:2px;width:1em}.ec-icon svg{height:inherit;width:inherit}.ec-pagination{display:flex;padding-bottom:24px}.ec-pagination__list{display:inline-block;list-style:none;margin:0 auto;padding:0}.ec-pagination__list-item{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700;display:none;padding-left:8px;padding-top:8px}@media (min-width:20em){.ec-pagination__list-item{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination__list-item{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .ec-pagination__list-item{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.ec-pagination__list-item:first-child{padding-left:0}.ec-pagination__list-item.ec-pagination__priority--0{display:inline}@media (min-width:37.5em){.ec-pagination__list-item.ec-pagination__priority--1{display:inline}}@media (min-width:56.25em){.ec-pagination__list-item.ec-pagination__priority--2{display:inline}}@media (min-width:63em){.ec-pagination__list-item.ec-pagination__priority--3{display:inline}}.ec-pagination__ellipsis{display:inline}.ec-pagination__ellipsis:after{content:"..."}@media (min-width:63em){.ec-pagination__ellipsis--priority-1{display:none}}@media (min-width:56.25em){.ec-pagination__ellipsis--priority-2{display:none}}@media (min-width:37.5em){.ec-pagination__ellipsis--priority-3{display:none}}.ec-pagination__ellipsis--priority-4{display:none}.ec-pagination__link{background-color:#eee;color:#252525;display:inline-block;line-height:44px;text-align:center;text-decoration:none;width:44px}.ec-pagination__link:visited{color:#706d66}.ec-pagination__link:focus,.ec-pagination__link:hover{background-color:#252525;color:#eee;text-decoration:underline}.ec-pagination__link--disabled{color:#dbdbdb}.ec-pagination__link--disabled:focus,.ec-pagination__link--disabled:hover{background-color:#eee;color:#dbdbdb;text-decoration:none}.ec-pagination__link--selected{background-color:#0073bb;color:#fff}.ec-pagination__link .ec-icon{top:0}.ec-pagination__link .ec-icon svg{height:12px;width:12px}.ec-pagination-summary{padding-bottom:16px;padding-top:24px}.ec-pagination-summary__text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.ec-pagination-summary__text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination-summary__text{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .ec-pagination-summary__text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination-summary{padding-bottom:24px}}.ec-pagination--bitesize .ec-pagination__link{background-color:#fff;text-decoration:underline;text-decoration-color:#e5640f}.ec-pagination--bitesize .ec-pagination__link--arrow{background-color:#e5640f;color:#fff}.ec-pagination--bitesize .ec-pagination__link--arrow:focus,.ec-pagination--bitesize .ec-pagination__link--arrow:hover{background-color:#252525;color:#fff}.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled,.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled:focus,.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled:hover{background-color:#eee;color:#fff}.ec-pagination--bitesize .ec-pagination__link:focus,.ec-pagination--bitesize .ec-pagination__link:hover{background-color:#fff;color:#e5640f;text-decoration:none}.ec-pagination--bitesize .ec-pagination__link--selected{background-color:#252525;text-decoration:none}.ec-pagination--bitesize .ec-pagination__link--selected:focus,.ec-pagination--bitesize .ec-pagination__link--selected:hover{background-color:#252525;color:#fff}.baseplate-canon{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}@media (min-width:20em){.baseplate-canon{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}@media (min-width:37.5em){.baseplate-canon{font-size:52px;font-size:3.25rem;line-height:56px;line-height:3.5rem}.no-touch .baseplate-canon{font-size:44px;font-size:2.75rem;line-height:48px;line-height:3rem}}.baseplate-canon-bold{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-canon-bold{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}@media (min-width:37.5em){.baseplate-canon-bold{font-size:52px;font-size:3.25rem;line-height:56px;line-height:3.5rem}.no-touch .baseplate-canon-bold{font-size:44px;font-size:2.75rem;line-height:48px;line-height:3rem}}.baseplate-trafalgar{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.baseplate-trafalgar{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.baseplate-trafalgar{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .baseplate-trafalgar{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.baseplate-trafalgar-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-trafalgar-bold{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.baseplate-trafalgar-bold{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .baseplate-trafalgar-bold{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.baseplate-paragon{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.baseplate-paragon{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.baseplate-paragon{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.no-touch .baseplate-paragon{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.baseplate-paragon-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-paragon-bold{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.baseplate-paragon-bold{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.no-touch .baseplate-paragon-bold{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.baseplate-double-pica{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:37.5em){.baseplate-double-pica{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .baseplate-double-pica{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.baseplate-double-pica-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:37.5em){.baseplate-double-pica-bold{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .baseplate-double-pica-bold{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.baseplate-great-primer{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}@media (min-width:37.5em){.baseplate-great-primer{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-great-primer{font-size:20px;font-size:1.25rem}}.baseplate-great-primer-bold{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;font-weight:700}@media (min-width:20em){.baseplate-great-primer-bold{letter-spacing:-1px;letter-spacing:-.0625rem}}@media (min-width:37.5em){.baseplate-great-primer-bold{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-great-primer-bold{font-size:20px;font-size:1.25rem}}.baseplate-pica{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.baseplate-pica{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.baseplate-pica{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .baseplate-pica{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.baseplate-pica-bold{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700}@media (min-width:20em){.baseplate-pica-bold{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.baseplate-pica-bold{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .baseplate-pica-bold{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.baseplate-long-primer{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem}@media (min-width:37.5em){.baseplate-long-primer{line-height:20px;line-height:1.25rem}.no-touch .baseplate-long-primer{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.baseplate-long-primer-bold{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700}@media (min-width:37.5em){.baseplate-long-primer-bold{line-height:20px;line-height:1.25rem}.no-touch .baseplate-long-primer-bold{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.baseplate-brevier{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem}@media (min-width:20em){.baseplate-brevier{line-height:18px;line-height:1.125rem}}@media (min-width:37.5em){.no-touch .baseplate-brevier{font-size:13px;font-size:.8125rem;line-height:16px;line-height:1rem}}.baseplate-brevier-bold{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem;font-weight:700}@media (min-width:20em){.baseplate-brevier-bold{line-height:18px;line-height:1.125rem}}@media (min-width:37.5em){.no-touch .baseplate-brevier-bold{font-size:13px;font-size:.8125rem;line-height:16px;line-height:1rem}}.baseplate-minion{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;text-transform:uppercase}@media (min-width:37.5em){.baseplate-minion{font-size:13px;font-size:.8125rem}.no-touch .baseplate-minion{font-size:12px;font-size:.75rem}}.baseplate-minion-bold{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;text-transform:uppercase;font-weight:700}@media (min-width:37.5em){.baseplate-minion-bold{font-size:13px;font-size:.8125rem}.no-touch .baseplate-minion-bold{font-size:12px;font-size:.75rem}}.baseplate-body-copy{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.baseplate-body-copy{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.baseplate-body-copy{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-body-copy{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.education-link__invisible--my-bitesize{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-link__link--my-bitesize{text-decoration:none}.education-link__link--my-bitesize:visited .education-link__link-title--my-bitesize{color:#fff}.education-link__link--my-bitesize:focus .education-link__link-panel--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-panel--my-bitesize{background-color:#231f20}.education-link__link--my-bitesize:focus .education-link__link-title--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-title--my-bitesize{color:#fff;font-weight:400;text-decoration:underline}.education-link__link--my-bitesize:focus .education-link__link-subtitle--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-subtitle--my-bitesize{color:#fff;font-weight:400;text-decoration:none}.education-link__link--my-bitesize:focus .education-link__link-icon--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-icon--my-bitesize{fill:#fff}.education-link__link--my-bitesize:focus svg,.education-link__link--my-bitesize:hover svg{pointer-events:none}.education-link__link-panel--my-bitesize{background-color:#e5640f;margin-bottom:3px;padding:12px}.education-link__link-text-wrapper--my-bitesize{display:table-cell;width:100%}.education-link__link-title--my-bitesize{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;color:#fff;font-weight:400;text-decoration:none}@media (min-width:37.5em){.education-link__link-title--my-bitesize{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .education-link__link-title--my-bitesize{font-size:20px;font-size:1.25rem}}.education-link__link-subtitle--my-bitesize{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;color:#fff;font-weight:400;margin-top:4px;text-decoration:none}@media (min-width:20em){.education-link__link-subtitle--my-bitesize{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.education-link__link-subtitle--my-bitesize{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .education-link__link-subtitle--my-bitesize{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.education-link__link-icon-wrapper--my-bitesize{display:table-cell;vertical-align:middle}.education-link__link-icon--my-bitesize{fill:#fff;height:16px;padding-top:3px;padding-left:8px;width:16px}@media (min-width:37.5em){.education-link__link-icon--my-bitesize{padding-top:4px}}svg{pointer-events:none}body{margin:0}.promo{width:100%;box-sizing:border-box;margin-bottom:16px}.promo .promo-link{flex-direction:column;background:#f1f1f1;border:none;color:#fff;line-height:0;margin:0;text-decoration:none;padding:0;width:100%;display:flex}.promo:hover .promo-link{background:#333}.promo:hover .promo-link .promo-title{text-decoration:underline}.promo:hover .promo-image-container .gel-icon{background:#333}.promo .promo-image-container{width:100%;background-color:#f0f0f0;background-image:url(https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/svgs/furniture/bbc-blocks-image-placeholder.svg);background-position:50%;background-repeat:no-repeat;background-size:30%;flex:none;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.promo .promo-image-container .gel-icon{display:block;position:absolute;bottom:0;left:0;background:#f1f1f1;height:54px;width:54px;color:#000;padding:16px 0;box-sizing:border-box}.promo .promo-image-container .gel-icon svg{height:20px!important}.promo .promo-image{width:100%;margin:0;border:none;position:absolute}.promo .promo-image--lazyload+.gel-icon{display:none}.promo .promo-label-container{background-color:#000;left:0;position:absolute;top:0}.promo .promo-label{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;color:#fff;display:inline-block;padding:8px;text-transform:uppercase}@media (min-width:37.5em){.promo .promo-label{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-label{font-size:12px;font-size:.75rem}}.promo .promo-footer{width:100%;display:flex;flex-grow:1;flex-direction:column}.promo .promo-title{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;border:none;margin:16px;padding:0}@media (min-width:20em){.promo .promo-title{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.promo .promo-title{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .promo .promo-title{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.promo .promo-synopsis{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;border:none;margin:16px;margin-top:0;padding:0}@media (min-width:37.5em){.promo .promo-synopsis{line-height:20px;line-height:1.25rem}.no-touch .promo .promo-synopsis{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.promo .promo-attribution{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;margin:16px;margin-top:auto;padding:0;text-transform:uppercase;font-weight:400}@media (min-width:37.5em){.promo .promo-attribution{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-attribution{font-size:12px;font-size:.75rem}}.promo .promo-label--live{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;color:#fff;display:inline-block;font-weight:700;padding:8px;text-transform:uppercase}@media (min-width:37.5em){.promo .promo-label--live{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-label--live{font-size:12px;font-size:.75rem}}@keyframes pulse{0%{opacity:1}50%{opacity:0}to{opacity:1}}.promo .promo-label--live__icon-outer{padding-left:8px;vertical-align:text-top}.promo .promo-label--live__icon-center{display:inline-block;will-change:opacity;animation:pulse 1.7s ease infinite}@supports (-ms-ime-align:auto){.promo{overflow:hidden}.promo-image-container{display:table}.promo-link{height:100%}.promo-footer{position:relative}}.collection .collection-content{box-sizing:border-box;padding-bottom:16px;padding-top:28px}.collection .collection-title{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;margin-bottom:18px;margin-top:0}@media (min-width:37.5em){.collection .collection-title{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .collection .collection-title{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.collection .collection-title--light{color:#fff!important}.collection .collection-title .collection-title-link{color:#000;text-decoration:none}.collection .collection-title .collection-title-link:hover{color:#1074b9;text-decoration:underline}.collection .collection-title .collection-title-link .gel-icon{margin-left:8px;width:.6em;height:.6em}.error-container{box-sizing:border-box;padding:16px;background:#fff}.error-container .gel-icon--loading{padding:16px}.error-container .gel-icon--loading,.error-container svg{height:64px;width:64px}.error-container h2{font-size:2rem;max-width:800px}.error-container p{font-size:1rem;font-weight:400;max-width:800px}.error-container ul{list-style:none;margin-left:0;padding-left:0;font-size:1rem}.error-container ul a{color:#000;font-weight:700}@media (min-width:37.5em){.error-container h2{font-size:2.75rem}}.index-page{box-sizing:border-box;margin-top:16px}.index-page.sr-only{position:absolute;padding:0;margin:-1px;clip:rect(0,0,0,0);width:1px;height:1px;border:0;overflow:hidden}.index-page .index-page-title{box-sizing:border-box;padding-bottom:16px;font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.index-page .index-page-title{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.index-page .index-page-title{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .index-page .index-page-title{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.index-page .index-page__short-description{box-sizing:border-box;padding-bottom:16px;font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.index-page .index-page__short-description{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.index-page .index-page__short-description{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.no-touch .index-page .index-page__short-description{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.index-page .index-page__call-to-action{box-sizing:border-box;padding-bottom:16px}.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{box-sizing:border-box;margin-top:-30px;padding:0 8px}@media (min-width:37.5em){.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{margin-left:16px;margin-right:16px;padding:0 16px}}@media (min-width:66em){.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{margin-left:auto;margin-right:auto;max-width:1008px}}.index-page .index-page__collection-search-bar-wrapper{background-color:#fff;padding-top:8px}@media (min-width:37.5em){.index-page .index-page__collection-search-bar-wrapper{padding:16px}}.layout-hero-2 .promo{width:50%}.layout-hero-2 .promo:first-child{width:100%}.layout-hero-2 .promo .promo-link{flex-direction:column}.layout-hero-2 .promo .promo-footer,.layout-hero-2 .promo .promo-image-container{width:100%}.layout-branding-image-3{background-size:cover}.layout-pocket .layout-pocket__row--hidden{display:none}.layout-pocket .layout-pocket__row--last{height:50px;overflow:hidden}.layout-pocket .layout-pocket__mask{box-shadow:inset 0 -10px 7px 0 rgba(0,0,0,.2);width:100%;content:" ";position:relative;bottom:0;box-shadow:inset -16px 16px -8px rgba(0,0,0,.3);text-align:center;top:-50px;height:50px;margin-bottom:-34px}.layout-pocket .layout-pocket__show-more{font-size:18px;padding:12px;background:#333;border:0;color:#fff;cursor:pointer;margin-top:22px;position:relative}.layout-pocket .layout-pocket__show-more:focus,.layout-pocket .layout-pocket__show-more:hover{background:#262626;text-decoration:underline}.layout-pocket .gel-icon--down svg{vertical-align:middle;height:12px;width:12px;padding-left:8px}.layout-2-with-links .promo-container{box-sizing:border-box;flex-direction:column}.layout-2-with-links .promo-container .collection-title:empty{margin-top:0;margin-bottom:0}.layout-2-with-links .promo-container .collection-title:empty:before{display:none}.layout-2-with-links .promo-container .promo{display:flex;flex:1 1 auto}.layout-branding-colour-three-with-link{padding-bottom:32px;direction:rtl}.layout-branding-colour-three-with-link .link-container{display:table-cell;padding:11px 0 13px;direction:ltr}@media (min-width:37.5em){.promo .promo-link{flex-direction:column}.promo .promo-footer,.promo .promo-image-container{width:100%}.layout-hero-2 .promo{width:50%}.layout-hero-2 .promo:first-child{width:100%}.layout-hero-2 .promo:first-child .promo-link{flex-direction:row}.layout-hero-2 .promo:first-child .promo-image-container{width:66.66667%}.layout-branding-colour-3 .promo,.layout-branding-image-3 .promo,.layout-hero-2 .promo:first-child .promo-footer{width:33.33333%}.layout-branding-colour-3 .promo .promo-link,.layout-branding-image-3 .promo .promo-link{flex-direction:column}.layout-branding-colour-3 .promo .promo-footer,.layout-branding-colour-3 .promo .promo-image-container,.layout-branding-image-3 .promo .promo-footer,.layout-branding-image-3 .promo .promo-image-container{width:100%}.layout-pocket .layout-pocket__row--last{height:180px}.layout-pocket .layout-pocket__mask{top:-180px;height:180px;margin-bottom:-164px}.layout-pocket .layout-pocket__show-more{margin-top:152px}.layout-2-with-links .promo-container{width:50%}.layout-2-with-links .promo-container .collection-title:empty{margin-bottom:18px}.layout-2-with-links .promo-container .collection-title:empty:before{content:"\A0";display:block}.index-page .index-page__short-description{padding-right:25%}}@media (min-width:48em){.layout-hero-2 .promo{width:25%}.layout-hero-2 .promo:first-child{width:50%}.layout-hero-2 .promo:first-child .promo-link{flex-direction:column}.layout-hero-2 .promo:first-child .promo-footer,.layout-hero-2 .promo:first-child .promo-image-container{width:100%}.layout-branding-colour-3,.layout-branding-image-3{padding:0 16px}.layout-branding-colour-3 .collection-title,.layout-branding-image-3 .collection-title{width:75%;color:#fff;padding-left:32px}.layout-branding-colour-3 .promo,.layout-branding-image-3 .promo{width:25%}.layout-branding-colour-3 .promo .promo-link,.layout-branding-image-3 .promo .promo-link{flex-direction:column}.layout-branding-colour-3 .promo .promo-footer,.layout-branding-colour-3 .promo .promo-image-container,.layout-branding-image-3 .promo .promo-footer,.layout-branding-image-3 .promo .promo-image-container{width:100%}.layout-branding-image-3 .promo:hover .promo-link .promo-title{text-decoration:underline}.layout-row-4 .promo{width:25%}.layout-pocket .layout-pocket__row--last{height:80px}.layout-pocket .layout-pocket__mask{top:-80px;height:80px;margin-bottom:-48px}.layout-pocket .layout-pocket__show-more{margin-top:52px}}.index-page__search-bar-wrapper{margin-top:-30px}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-baseplate-content-view/5.25.0"]=true; Morph.styleSrc.push("<style>.gel-2\\/4{width:50%!important}.gel-2\\/8{width:25%!important}.gel-4\\/8{width:50%!important}.gel-6\\/8{width:75%!important}.gel-2\\/10{width:20%!important}.gel-4\\/10{width:40%!important}.gel-5\\/10{width:50%!important}.gel-6\\/10{width:60%!important}.gel-8\\/10{width:80%!important}.gel-3\\/12{width:25%!important}.gel-4\\/12{width:33.33333%!important}.gel-6\\/12{width:50%!important}.gel-8\\/12{width:66.66667%!important}.gel-9\\/12{width:75%!important}.gel-2\\/24{width:8.33333%!important}.gel-3\\/24{width:12.5%!important}.gel-4\\/24{width:16.66667%!important}.gel-6\\/24{width:25%!important}.gel-8\\/24{width:33.33333%!important}.gel-9\\/24{width:37.5%!important}.gel-10\\/24{width:41.66667%!important}.gel-12\\/24{width:50%!important}.gel-14\\/24{width:58.33333%!important}.gel-15\\/24{width:62.5%!important}.gel-16\\/24{width:66.66667%!important}.gel-18\\/24{width:75%!important}.gel-20\\/24{width:83.33333%!important}.gel-21\\/24{width:87.5%!important}.gel-22\\/24{width:91.66667%!important}@media (min-width:25em){.gel-1\\/1\\@s{width:100%!important}.gel-1\\/2\\@s{width:50%!important}.gel-1\\/3\\@s{width:33.33333%!important}.gel-2\\/3\\@s{width:66.66667%!important}.gel-1\\/4\\@s{width:25%!important}.gel-2\\/4\\@s{width:50%!important}.gel-3\\/4\\@s{width:75%!important}.gel-1\\/5\\@s{width:20%!important}.gel-2\\/5\\@s{width:40%!important}.gel-3\\/5\\@s{width:60%!important}.gel-4\\/5\\@s{width:80%!important}.gel-1\\/8\\@s{width:12.5%!important}.gel-2\\/8\\@s{width:25%!important}.gel-3\\/8\\@s{width:37.5%!important}.gel-4\\/8\\@s{width:50%!important}.gel-5\\/8\\@s{width:62.5%!important}.gel-6\\/8\\@s{width:75%!important}.gel-7\\/8\\@s{width:87.5%!important}.gel-1\\/10\\@s{width:10%!important}.gel-2\\/10\\@s{width:20%!important}.gel-3\\/10\\@s{width:30%!important}.gel-4\\/10\\@s{width:40%!important}.gel-5\\/10\\@s{width:50%!important}.gel-6\\/10\\@s{width:60%!important}.gel-7\\/10\\@s{width:70%!important}.gel-8\\/10\\@s{width:80%!important}.gel-9\\/10\\@s{width:90%!important}.gel-1\\/12\\@s{width:8.33333%!important}.gel-2\\/12\\@s{width:16.66667%!important}.gel-3\\/12\\@s{width:25%!important}.gel-4\\/12\\@s{width:33.33333%!important}.gel-5\\/12\\@s{width:41.66667%!important}.gel-6\\/12\\@s{width:50%!important}.gel-7\\/12\\@s{width:58.33333%!important}.gel-8\\/12\\@s{width:66.66667%!important}.gel-9\\/12\\@s{width:75%!important}.gel-10\\/12\\@s{width:83.33333%!important}.gel-11\\/12\\@s{width:91.66667%!important}.gel-1\\/24\\@s{width:4.16667%!important}.gel-2\\/24\\@s{width:8.33333%!important}.gel-3\\/24\\@s{width:12.5%!important}.gel-4\\/24\\@s{width:16.66667%!important}.gel-5\\/24\\@s{width:20.83333%!important}.gel-6\\/24\\@s{width:25%!important}.gel-7\\/24\\@s{width:29.16667%!important}.gel-8\\/24\\@s{width:33.33333%!important}.gel-9\\/24\\@s{width:37.5%!important}.gel-10\\/24\\@s{width:41.66667%!important}.gel-11\\/24\\@s{width:45.83333%!important}.gel-12\\/24\\@s{width:50%!important}.gel-13\\/24\\@s{width:54.16667%!important}.gel-14\\/24\\@s{width:58.33333%!important}.gel-15\\/24\\@s{width:62.5%!important}.gel-16\\/24\\@s{width:66.66667%!important}.gel-17\\/24\\@s{width:70.83333%!important}.gel-18\\/24\\@s{width:75%!important}.gel-19\\/24\\@s{width:79.16667%!important}.gel-20\\/24\\@s{width:83.33333%!important}.gel-21\\/24\\@s{width:87.5%!important}.gel-22\\/24\\@s{width:91.66667%!important}.gel-23\\/24\\@s{width:95.83333%!important}}@media (min-width:37.5em){.gel-1\\/1\\@m{width:100%!important}.gel-1\\/2\\@m{width:50%!important}.gel-1\\/3\\@m{width:33.33333%!important}.gel-2\\/3\\@m{width:66.66667%!important}.gel-1\\/4\\@m{width:25%!important}.gel-2\\/4\\@m{width:50%!important}.gel-3\\/4\\@m{width:75%!important}.gel-1\\/5\\@m{width:20%!important}.gel-2\\/5\\@m{width:40%!important}.gel-3\\/5\\@m{width:60%!important}.gel-4\\/5\\@m{width:80%!important}.gel-1\\/8\\@m{width:12.5%!important}.gel-2\\/8\\@m{width:25%!important}.gel-3\\/8\\@m{width:37.5%!important}.gel-4\\/8\\@m{width:50%!important}.gel-5\\/8\\@m{width:62.5%!important}.gel-6\\/8\\@m{width:75%!important}.gel-7\\/8\\@m{width:87.5%!important}.gel-1\\/10\\@m{width:10%!important}.gel-2\\/10\\@m{width:20%!important}.gel-3\\/10\\@m{width:30%!important}.gel-4\\/10\\@m{width:40%!important}.gel-5\\/10\\@m{width:50%!important}.gel-6\\/10\\@m{width:60%!important}.gel-7\\/10\\@m{width:70%!important}.gel-8\\/10\\@m{width:80%!important}.gel-9\\/10\\@m{width:90%!important}.gel-1\\/12\\@m{width:8.33333%!important}.gel-2\\/12\\@m{width:16.66667%!important}.gel-3\\/12\\@m{width:25%!important}.gel-4\\/12\\@m{width:33.33333%!important}.gel-5\\/12\\@m{width:41.66667%!important}.gel-6\\/12\\@m{width:50%!important}.gel-7\\/12\\@m{width:58.33333%!important}.gel-8\\/12\\@m{width:66.66667%!important}.gel-9\\/12\\@m{width:75%!important}.gel-10\\/12\\@m{width:83.33333%!important}.gel-11\\/12\\@m{width:91.66667%!important}.gel-1\\/24\\@m{width:4.16667%!important}.gel-2\\/24\\@m{width:8.33333%!important}.gel-3\\/24\\@m{width:12.5%!important}.gel-4\\/24\\@m{width:16.66667%!important}.gel-5\\/24\\@m{width:20.83333%!important}.gel-6\\/24\\@m{width:25%!important}.gel-7\\/24\\@m{width:29.16667%!important}.gel-8\\/24\\@m{width:33.33333%!important}.gel-9\\/24\\@m{width:37.5%!important}.gel-10\\/24\\@m{width:41.66667%!important}.gel-11\\/24\\@m{width:45.83333%!important}.gel-12\\/24\\@m{width:50%!important}.gel-13\\/24\\@m{width:54.16667%!important}.gel-14\\/24\\@m{width:58.33333%!important}.gel-15\\/24\\@m{width:62.5%!important}.gel-16\\/24\\@m{width:66.66667%!important}.gel-17\\/24\\@m{width:70.83333%!important}.gel-18\\/24\\@m{width:75%!important}.gel-19\\/24\\@m{width:79.16667%!important}.gel-20\\/24\\@m{width:83.33333%!important}.gel-21\\/24\\@m{width:87.5%!important}.gel-22\\/24\\@m{width:91.66667%!important}.gel-23\\/24\\@m{width:95.83333%!important}}@media (min-width:56.25em){.gel-1\\/1\\@l{width:100%!important}.gel-1\\/2\\@l{width:50%!important}.gel-1\\/3\\@l{width:33.33333%!important}.gel-2\\/3\\@l{width:66.66667%!important}.gel-1\\/4\\@l{width:25%!important}.gel-2\\/4\\@l{width:50%!important}.gel-3\\/4\\@l{width:75%!important}.gel-1\\/5\\@l{width:20%!important}.gel-2\\/5\\@l{width:40%!important}.gel-3\\/5\\@l{width:60%!important}.gel-4\\/5\\@l{width:80%!important}.gel-1\\/8\\@l{width:12.5%!important}.gel-2\\/8\\@l{width:25%!important}.gel-3\\/8\\@l{width:37.5%!important}.gel-4\\/8\\@l{width:50%!important}.gel-5\\/8\\@l{width:62.5%!important}.gel-6\\/8\\@l{width:75%!important}.gel-7\\/8\\@l{width:87.5%!important}.gel-1\\/10\\@l{width:10%!important}.gel-2\\/10\\@l{width:20%!important}.gel-3\\/10\\@l{width:30%!important}.gel-4\\/10\\@l{width:40%!important}.gel-5\\/10\\@l{width:50%!important}.gel-6\\/10\\@l{width:60%!important}.gel-7\\/10\\@l{width:70%!important}.gel-8\\/10\\@l{width:80%!important}.gel-9\\/10\\@l{width:90%!important}.gel-1\\/12\\@l{width:8.33333%!important}.gel-2\\/12\\@l{width:16.66667%!important}.gel-3\\/12\\@l{width:25%!important}.gel-4\\/12\\@l{width:33.33333%!important}.gel-5\\/12\\@l{width:41.66667%!important}.gel-6\\/12\\@l{width:50%!important}.gel-7\\/12\\@l{width:58.33333%!important}.gel-8\\/12\\@l{width:66.66667%!important}.gel-9\\/12\\@l{width:75%!important}.gel-10\\/12\\@l{width:83.33333%!important}.gel-11\\/12\\@l{width:91.66667%!important}.gel-1\\/24\\@l{width:4.16667%!important}.gel-2\\/24\\@l{width:8.33333%!important}.gel-3\\/24\\@l{width:12.5%!important}.gel-4\\/24\\@l{width:16.66667%!important}.gel-5\\/24\\@l{width:20.83333%!important}.gel-6\\/24\\@l{width:25%!important}.gel-7\\/24\\@l{width:29.16667%!important}.gel-8\\/24\\@l{width:33.33333%!important}.gel-9\\/24\\@l{width:37.5%!important}.gel-10\\/24\\@l{width:41.66667%!important}.gel-11\\/24\\@l{width:45.83333%!important}.gel-12\\/24\\@l{width:50%!important}.gel-13\\/24\\@l{width:54.16667%!important}.gel-14\\/24\\@l{width:58.33333%!important}.gel-15\\/24\\@l{width:62.5%!important}.gel-16\\/24\\@l{width:66.66667%!important}.gel-17\\/24\\@l{width:70.83333%!important}.gel-18\\/24\\@l{width:75%!important}.gel-19\\/24\\@l{width:79.16667%!important}.gel-20\\/24\\@l{width:83.33333%!important}.gel-21\\/24\\@l{width:87.5%!important}.gel-22\\/24\\@l{width:91.66667%!important}.gel-23\\/24\\@l{width:95.83333%!important}}@media (min-width:63em){.gel-1\\/1\\@xl{width:100%!important}.gel-1\\/2\\@xl{width:50%!important}.gel-1\\/3\\@xl{width:33.33333%!important}.gel-2\\/3\\@xl{width:66.66667%!important}.gel-1\\/4\\@xl{width:25%!important}.gel-2\\/4\\@xl{width:50%!important}.gel-3\\/4\\@xl{width:75%!important}.gel-1\\/5\\@xl{width:20%!important}.gel-2\\/5\\@xl{width:40%!important}.gel-3\\/5\\@xl{width:60%!important}.gel-4\\/5\\@xl{width:80%!important}.gel-1\\/8\\@xl{width:12.5%!important}.gel-2\\/8\\@xl{width:25%!important}.gel-3\\/8\\@xl{width:37.5%!important}.gel-4\\/8\\@xl{width:50%!important}.gel-5\\/8\\@xl{width:62.5%!important}.gel-6\\/8\\@xl{width:75%!important}.gel-7\\/8\\@xl{width:87.5%!important}.gel-1\\/10\\@xl{width:10%!important}.gel-2\\/10\\@xl{width:20%!important}.gel-3\\/10\\@xl{width:30%!important}.gel-4\\/10\\@xl{width:40%!important}.gel-5\\/10\\@xl{width:50%!important}.gel-6\\/10\\@xl{width:60%!important}.gel-7\\/10\\@xl{width:70%!important}.gel-8\\/10\\@xl{width:80%!important}.gel-9\\/10\\@xl{width:90%!important}.gel-1\\/12\\@xl{width:8.33333%!important}.gel-2\\/12\\@xl{width:16.66667%!important}.gel-3\\/12\\@xl{width:25%!important}.gel-4\\/12\\@xl{width:33.33333%!important}.gel-5\\/12\\@xl{width:41.66667%!important}.gel-6\\/12\\@xl{width:50%!important}.gel-7\\/12\\@xl{width:58.33333%!important}.gel-8\\/12\\@xl{width:66.66667%!important}.gel-9\\/12\\@xl{width:75%!important}.gel-10\\/12\\@xl{width:83.33333%!important}.gel-11\\/12\\@xl{width:91.66667%!important}.gel-1\\/24\\@xl{width:4.16667%!important}.gel-2\\/24\\@xl{width:8.33333%!important}.gel-3\\/24\\@xl{width:12.5%!important}.gel-4\\/24\\@xl{width:16.66667%!important}.gel-5\\/24\\@xl{width:20.83333%!important}.gel-6\\/24\\@xl{width:25%!important}.gel-7\\/24\\@xl{width:29.16667%!important}.gel-8\\/24\\@xl{width:33.33333%!important}.gel-9\\/24\\@xl{width:37.5%!important}.gel-10\\/24\\@xl{width:41.66667%!important}.gel-11\\/24\\@xl{width:45.83333%!important}.gel-12\\/24\\@xl{width:50%!important}.gel-13\\/24\\@xl{width:54.16667%!important}.gel-14\\/24\\@xl{width:58.33333%!important}.gel-15\\/24\\@xl{width:62.5%!important}.gel-16\\/24\\@xl{width:66.66667%!important}.gel-17\\/24\\@xl{width:70.83333%!important}.gel-18\\/24\\@xl{width:75%!important}.gel-19\\/24\\@xl{width:79.16667%!important}.gel-20\\/24\\@xl{width:83.33333%!important}.gel-21\\/24\\@xl{width:87.5%!important}.gel-22\\/24\\@xl{width:91.66667%!important}.gel-23\\/24\\@xl{width:95.83333%!important}}@media (min-width:80em){.gel-1\\/1\\@xxl{width:100%!important}.gel-1\\/2\\@xxl{width:50%!important}.gel-1\\/3\\@xxl{width:33.33333%!important}.gel-2\\/3\\@xxl{width:66.66667%!important}.gel-1\\/4\\@xxl{width:25%!important}.gel-2\\/4\\@xxl{width:50%!important}.gel-3\\/4\\@xxl{width:75%!important}.gel-1\\/5\\@xxl{width:20%!important}.gel-2\\/5\\@xxl{width:40%!important}.gel-3\\/5\\@xxl{width:60%!important}.gel-4\\/5\\@xxl{width:80%!important}.gel-1\\/8\\@xxl{width:12.5%!important}.gel-2\\/8\\@xxl{width:25%!important}.gel-3\\/8\\@xxl{width:37.5%!important}.gel-4\\/8\\@xxl{width:50%!important}.gel-5\\/8\\@xxl{width:62.5%!important}.gel-6\\/8\\@xxl{width:75%!important}.gel-7\\/8\\@xxl{width:87.5%!important}.gel-1\\/10\\@xxl{width:10%!important}.gel-2\\/10\\@xxl{width:20%!important}.gel-3\\/10\\@xxl{width:30%!important}.gel-4\\/10\\@xxl{width:40%!important}.gel-5\\/10\\@xxl{width:50%!important}.gel-6\\/10\\@xxl{width:60%!important}.gel-7\\/10\\@xxl{width:70%!important}.gel-8\\/10\\@xxl{width:80%!important}.gel-9\\/10\\@xxl{width:90%!important}.gel-1\\/12\\@xxl{width:8.33333%!important}.gel-2\\/12\\@xxl{width:16.66667%!important}.gel-3\\/12\\@xxl{width:25%!important}.gel-4\\/12\\@xxl{width:33.33333%!important}.gel-5\\/12\\@xxl{width:41.66667%!important}.gel-6\\/12\\@xxl{width:50%!important}.gel-7\\/12\\@xxl{width:58.33333%!important}.gel-8\\/12\\@xxl{width:66.66667%!important}.gel-9\\/12\\@xxl{width:75%!important}.gel-10\\/12\\@xxl{width:83.33333%!important}.gel-11\\/12\\@xxl{width:91.66667%!important}.gel-1\\/24\\@xxl{width:4.16667%!important}.gel-2\\/24\\@xxl{width:8.33333%!important}.gel-3\\/24\\@xxl{width:12.5%!important}.gel-4\\/24\\@xxl{width:16.66667%!important}.gel-5\\/24\\@xxl{width:20.83333%!important}.gel-6\\/24\\@xxl{width:25%!important}.gel-7\\/24\\@xxl{width:29.16667%!important}.gel-8\\/24\\@xxl{width:33.33333%!important}.gel-9\\/24\\@xxl{width:37.5%!important}.gel-10\\/24\\@xxl{width:41.66667%!important}.gel-11\\/24\\@xxl{width:45.83333%!important}.gel-12\\/24\\@xxl{width:50%!important}.gel-13\\/24\\@xxl{width:54.16667%!important}.gel-14\\/24\\@xxl{width:58.33333%!important}.gel-15\\/24\\@xxl{width:62.5%!important}.gel-16\\/24\\@xxl{width:66.66667%!important}.gel-17\\/24\\@xxl{width:70.83333%!important}.gel-18\\/24\\@xxl{width:75%!important}.gel-19\\/24\\@xxl{width:79.16667%!important}.gel-20\\/24\\@xxl{width:83.33333%!important}.gel-21\\/24\\@xxl{width:87.5%!important}.gel-22\\/24\\@xxl{width:91.66667%!important}.gel-23\\/24\\@xxl{width:95.83333%!important}}.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px}@media (min-width:25em){.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{padding-left:16px;padding-right:16px}}@media (min-width:80em){.collection .collection-content,.error-container,.gel-wrap,.index-page .index-page-title,.index-page .index-page__call-to-action,.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper,.index-page .index-page__short-description{max-width:1280px}}.gel-layout{list-style:none;direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0}@media (min-width:37.5em){.gel-layout{margin-left:-16px}}.gel-layout__item{width:100%;display:inline-block;padding-left:8px;text-align:left;vertical-align:top}@media (min-width:37.5em){.gel-layout__item{padding-left:16px}}.gel-layout--flush{margin-left:0}.gel-layout--flush>.gel-layout__item{padding-left:0}.gel-layout--rev{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.no-flexbox .gel-layout--rev{direction:rtl;text-align:left}.no-flexbox .gel-layout--rev>.gel-layout__item{direction:ltr;text-align:left}.gel-layout--middle{-webkit-align-items:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center}.gel-layout--middle>.gel-layout__item{vertical-align:middle}.gel-layout--bottom{-webkit-align-items:flex-end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.gel-layout--bottom>.gel-layout__item{vertical-align:bottom}.gel-layout--right{text-align:right;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.gel-layout--right>.gel-layout__item{text-align:left}.gel-layout--center{text-align:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.gel-layout--center>.gel-layout__item{text-align:left}.gel-layout--auto>.gel-layout__item{width:auto}.gel-layout--no-flex{min-width:100%}.gel-layout--no-flex,.gel-layout--no-flex>.gel-layout__item{display:block;display:inline-block}.gel-layout--equal>.gel-layout__item{display:-webkit-flex;display:flex}.gel-layout--fit>.gel-layout__item{width:auto;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.gel-layout__item--top{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.gel-layout__item--center{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.gel-layout__item--bottom{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.gel-1\\/1{width:100%!important}.gel-1\\/2{width:50%!important}.gel-1\\/3{width:33.33333%!important}.gel-2\\/3{width:66.66667%!important}.gel-1\\/4{width:25%!important}.gel-3\\/4{width:75%!important}.gel-1\\/5{width:20%!important}.gel-2\\/5{width:40%!important}.gel-3\\/5{width:60%!important}.gel-4\\/5{width:80%!important}.gel-1\\/8{width:12.5%!important}.gel-3\\/8{width:37.5%!important}.gel-5\\/8{width:62.5%!important}.gel-7\\/8{width:87.5%!important}.gel-1\\/10{width:10%!important}.gel-3\\/10{width:30%!important}.gel-7\\/10{width:70%!important}.gel-9\\/10{width:90%!important}.gel-1\\/12{width:8.33333%!important}.gel-2\\/12{width:16.66667%!important}.gel-5\\/12{width:41.66667%!important}.gel-7\\/12{width:58.33333%!important}.gel-10\\/12{width:83.33333%!important}.gel-11\\/12{width:91.66667%!important}.gel-1\\/24{width:4.16667%!important}.gel-5\\/24{width:20.83333%!important}.gel-7\\/24{width:29.16667%!important}.gel-11\\/24{width:45.83333%!important}.gel-13\\/24{width:54.16667%!important}.gel-17\\/24{width:70.83333%!important}.gel-19\\/24{width:79.16667%!important}.gel-23\\/24{width:95.83333%!important}@media (min-width:25em){.gel-1\\/1\\@s{width:100%!important}.gel-1\\/2\\@s{width:50%!important}.gel-1\\/3\\@s{width:33.33333%!important}.gel-2\\/3\\@s{width:66.66667%!important}.gel-1\\/4\\@s{width:25%!important}.gel-3\\/4\\@s{width:75%!important}.gel-1\\/5\\@s{width:20%!important}.gel-2\\/5\\@s{width:40%!important}.gel-3\\/5\\@s{width:60%!important}.gel-4\\/5\\@s{width:80%!important}.gel-1\\/8\\@s{width:12.5%!important}.gel-3\\/8\\@s{width:37.5%!important}.gel-5\\/8\\@s{width:62.5%!important}.gel-7\\/8\\@s{width:87.5%!important}.gel-1\\/10\\@s{width:10%!important}.gel-3\\/10\\@s{width:30%!important}.gel-7\\/10\\@s{width:70%!important}.gel-9\\/10\\@s{width:90%!important}.gel-1\\/12\\@s{width:8.33333%!important}.gel-2\\/12\\@s{width:16.66667%!important}.gel-5\\/12\\@s{width:41.66667%!important}.gel-7\\/12\\@s{width:58.33333%!important}.gel-10\\/12\\@s{width:83.33333%!important}.gel-11\\/12\\@s{width:91.66667%!important}.gel-1\\/24\\@s{width:4.16667%!important}.gel-5\\/24\\@s{width:20.83333%!important}.gel-7\\/24\\@s{width:29.16667%!important}.gel-11\\/24\\@s{width:45.83333%!important}.gel-13\\/24\\@s{width:54.16667%!important}.gel-17\\/24\\@s{width:70.83333%!important}.gel-19\\/24\\@s{width:79.16667%!important}.gel-23\\/24\\@s{width:95.83333%!important}}@media (min-width:37.5em){.gel-1\\/1\\@m{width:100%!important}.gel-1\\/2\\@m{width:50%!important}.gel-1\\/3\\@m{width:33.33333%!important}.gel-2\\/3\\@m{width:66.66667%!important}.gel-1\\/4\\@m{width:25%!important}.gel-3\\/4\\@m{width:75%!important}.gel-1\\/5\\@m{width:20%!important}.gel-2\\/5\\@m{width:40%!important}.gel-3\\/5\\@m{width:60%!important}.gel-4\\/5\\@m{width:80%!important}.gel-1\\/8\\@m{width:12.5%!important}.gel-3\\/8\\@m{width:37.5%!important}.gel-5\\/8\\@m{width:62.5%!important}.gel-7\\/8\\@m{width:87.5%!important}.gel-1\\/10\\@m{width:10%!important}.gel-3\\/10\\@m{width:30%!important}.gel-7\\/10\\@m{width:70%!important}.gel-9\\/10\\@m{width:90%!important}.gel-1\\/12\\@m{width:8.33333%!important}.gel-2\\/12\\@m{width:16.66667%!important}.gel-5\\/12\\@m{width:41.66667%!important}.gel-7\\/12\\@m{width:58.33333%!important}.gel-10\\/12\\@m{width:83.33333%!important}.gel-11\\/12\\@m{width:91.66667%!important}.gel-1\\/24\\@m{width:4.16667%!important}.gel-5\\/24\\@m{width:20.83333%!important}.gel-7\\/24\\@m{width:29.16667%!important}.gel-11\\/24\\@m{width:45.83333%!important}.gel-13\\/24\\@m{width:54.16667%!important}.gel-17\\/24\\@m{width:70.83333%!important}.gel-19\\/24\\@m{width:79.16667%!important}.gel-23\\/24\\@m{width:95.83333%!important}}@media (min-width:56.25em){.gel-1\\/1\\@l{width:100%!important}.gel-1\\/2\\@l{width:50%!important}.gel-1\\/3\\@l{width:33.33333%!important}.gel-2\\/3\\@l{width:66.66667%!important}.gel-1\\/4\\@l{width:25%!important}.gel-3\\/4\\@l{width:75%!important}.gel-1\\/5\\@l{width:20%!important}.gel-2\\/5\\@l{width:40%!important}.gel-3\\/5\\@l{width:60%!important}.gel-4\\/5\\@l{width:80%!important}.gel-1\\/8\\@l{width:12.5%!important}.gel-3\\/8\\@l{width:37.5%!important}.gel-5\\/8\\@l{width:62.5%!important}.gel-7\\/8\\@l{width:87.5%!important}.gel-1\\/10\\@l{width:10%!important}.gel-3\\/10\\@l{width:30%!important}.gel-7\\/10\\@l{width:70%!important}.gel-9\\/10\\@l{width:90%!important}.gel-1\\/12\\@l{width:8.33333%!important}.gel-2\\/12\\@l{width:16.66667%!important}.gel-5\\/12\\@l{width:41.66667%!important}.gel-7\\/12\\@l{width:58.33333%!important}.gel-10\\/12\\@l{width:83.33333%!important}.gel-11\\/12\\@l{width:91.66667%!important}.gel-1\\/24\\@l{width:4.16667%!important}.gel-5\\/24\\@l{width:20.83333%!important}.gel-7\\/24\\@l{width:29.16667%!important}.gel-11\\/24\\@l{width:45.83333%!important}.gel-13\\/24\\@l{width:54.16667%!important}.gel-17\\/24\\@l{width:70.83333%!important}.gel-19\\/24\\@l{width:79.16667%!important}.gel-23\\/24\\@l{width:95.83333%!important}}@media (min-width:63em){.gel-1\\/1\\@xl{width:100%!important}.gel-1\\/2\\@xl{width:50%!important}.gel-1\\/3\\@xl{width:33.33333%!important}.gel-2\\/3\\@xl{width:66.66667%!important}.gel-1\\/4\\@xl{width:25%!important}.gel-3\\/4\\@xl{width:75%!important}.gel-1\\/5\\@xl{width:20%!important}.gel-2\\/5\\@xl{width:40%!important}.gel-3\\/5\\@xl{width:60%!important}.gel-4\\/5\\@xl{width:80%!important}.gel-1\\/8\\@xl{width:12.5%!important}.gel-3\\/8\\@xl{width:37.5%!important}.gel-5\\/8\\@xl{width:62.5%!important}.gel-7\\/8\\@xl{width:87.5%!important}.gel-1\\/10\\@xl{width:10%!important}.gel-3\\/10\\@xl{width:30%!important}.gel-7\\/10\\@xl{width:70%!important}.gel-9\\/10\\@xl{width:90%!important}.gel-1\\/12\\@xl{width:8.33333%!important}.gel-2\\/12\\@xl{width:16.66667%!important}.gel-5\\/12\\@xl{width:41.66667%!important}.gel-7\\/12\\@xl{width:58.33333%!important}.gel-10\\/12\\@xl{width:83.33333%!important}.gel-11\\/12\\@xl{width:91.66667%!important}.gel-1\\/24\\@xl{width:4.16667%!important}.gel-5\\/24\\@xl{width:20.83333%!important}.gel-7\\/24\\@xl{width:29.16667%!important}.gel-11\\/24\\@xl{width:45.83333%!important}.gel-13\\/24\\@xl{width:54.16667%!important}.gel-17\\/24\\@xl{width:70.83333%!important}.gel-19\\/24\\@xl{width:79.16667%!important}.gel-23\\/24\\@xl{width:95.83333%!important}}@media (min-width:80em){.gel-1\\/1\\@xxl{width:100%!important}.gel-1\\/2\\@xxl{width:50%!important}.gel-1\\/3\\@xxl{width:33.33333%!important}.gel-2\\/3\\@xxl{width:66.66667%!important}.gel-1\\/4\\@xxl{width:25%!important}.gel-3\\/4\\@xxl{width:75%!important}.gel-1\\/5\\@xxl{width:20%!important}.gel-2\\/5\\@xxl{width:40%!important}.gel-3\\/5\\@xxl{width:60%!important}.gel-4\\/5\\@xxl{width:80%!important}.gel-1\\/8\\@xxl{width:12.5%!important}.gel-3\\/8\\@xxl{width:37.5%!important}.gel-5\\/8\\@xxl{width:62.5%!important}.gel-7\\/8\\@xxl{width:87.5%!important}.gel-1\\/10\\@xxl{width:10%!important}.gel-3\\/10\\@xxl{width:30%!important}.gel-7\\/10\\@xxl{width:70%!important}.gel-9\\/10\\@xxl{width:90%!important}.gel-1\\/12\\@xxl{width:8.33333%!important}.gel-2\\/12\\@xxl{width:16.66667%!important}.gel-5\\/12\\@xxl{width:41.66667%!important}.gel-7\\/12\\@xxl{width:58.33333%!important}.gel-10\\/12\\@xxl{width:83.33333%!important}.gel-11\\/12\\@xxl{width:91.66667%!important}.gel-1\\/24\\@xxl{width:4.16667%!important}.gel-5\\/24\\@xxl{width:20.83333%!important}.gel-7\\/24\\@xxl{width:29.16667%!important}.gel-11\\/24\\@xxl{width:45.83333%!important}.gel-13\\/24\\@xxl{width:54.16667%!important}.gel-17\\/24\\@xxl{width:70.83333%!important}.gel-19\\/24\\@xxl{width:79.16667%!important}.gel-23\\/24\\@xxl{width:95.83333%!important}}.ec-icon{fill:currentColor;height:1em;position:relative;top:2px;width:1em}.ec-icon svg{height:inherit;width:inherit}.ec-pagination{display:flex;padding-bottom:24px}.ec-pagination__list{display:inline-block;list-style:none;margin:0 auto;padding:0}.ec-pagination__list-item{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700;display:none;padding-left:8px;padding-top:8px}@media (min-width:20em){.ec-pagination__list-item{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination__list-item{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .ec-pagination__list-item{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.ec-pagination__list-item:first-child{padding-left:0}.ec-pagination__list-item.ec-pagination__priority--0{display:inline}@media (min-width:37.5em){.ec-pagination__list-item.ec-pagination__priority--1{display:inline}}@media (min-width:56.25em){.ec-pagination__list-item.ec-pagination__priority--2{display:inline}}@media (min-width:63em){.ec-pagination__list-item.ec-pagination__priority--3{display:inline}}.ec-pagination__ellipsis{display:inline}.ec-pagination__ellipsis:after{content:\"...\"}@media (min-width:63em){.ec-pagination__ellipsis--priority-1{display:none}}@media (min-width:56.25em){.ec-pagination__ellipsis--priority-2{display:none}}@media (min-width:37.5em){.ec-pagination__ellipsis--priority-3{display:none}}.ec-pagination__ellipsis--priority-4{display:none}.ec-pagination__link{background-color:#eee;color:#252525;display:inline-block;line-height:44px;text-align:center;text-decoration:none;width:44px}.ec-pagination__link:visited{color:#706d66}.ec-pagination__link:focus,.ec-pagination__link:hover{background-color:#252525;color:#eee;text-decoration:underline}.ec-pagination__link--disabled{color:#dbdbdb}.ec-pagination__link--disabled:focus,.ec-pagination__link--disabled:hover{background-color:#eee;color:#dbdbdb;text-decoration:none}.ec-pagination__link--selected{background-color:#0073bb;color:#fff}.ec-pagination__link .ec-icon{top:0}.ec-pagination__link .ec-icon svg{height:12px;width:12px}.ec-pagination-summary{padding-bottom:16px;padding-top:24px}.ec-pagination-summary__text{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.ec-pagination-summary__text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination-summary__text{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .ec-pagination-summary__text{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.ec-pagination-summary{padding-bottom:24px}}.ec-pagination--bitesize .ec-pagination__link{background-color:#fff;text-decoration:underline;text-decoration-color:#e5640f}.ec-pagination--bitesize .ec-pagination__link--arrow{background-color:#e5640f;color:#fff}.ec-pagination--bitesize .ec-pagination__link--arrow:focus,.ec-pagination--bitesize .ec-pagination__link--arrow:hover{background-color:#252525;color:#fff}.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled,.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled:focus,.ec-pagination--bitesize .ec-pagination__link--arrow.ec-pagination__link--disabled:hover{background-color:#eee;color:#fff}.ec-pagination--bitesize .ec-pagination__link:focus,.ec-pagination--bitesize .ec-pagination__link:hover{background-color:#fff;color:#e5640f;text-decoration:none}.ec-pagination--bitesize .ec-pagination__link--selected{background-color:#252525;text-decoration:none}.ec-pagination--bitesize .ec-pagination__link--selected:focus,.ec-pagination--bitesize .ec-pagination__link--selected:hover{background-color:#252525;color:#fff}.baseplate-canon{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}@media (min-width:20em){.baseplate-canon{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}@media (min-width:37.5em){.baseplate-canon{font-size:52px;font-size:3.25rem;line-height:56px;line-height:3.5rem}.no-touch .baseplate-canon{font-size:44px;font-size:2.75rem;line-height:48px;line-height:3rem}}.baseplate-canon-bold{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-canon-bold{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}@media (min-width:37.5em){.baseplate-canon-bold{font-size:52px;font-size:3.25rem;line-height:56px;line-height:3.5rem}.no-touch .baseplate-canon-bold{font-size:44px;font-size:2.75rem;line-height:48px;line-height:3rem}}.baseplate-trafalgar{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.baseplate-trafalgar{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.baseplate-trafalgar{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .baseplate-trafalgar{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.baseplate-trafalgar-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-trafalgar-bold{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.baseplate-trafalgar-bold{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .baseplate-trafalgar-bold{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.baseplate-paragon{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.baseplate-paragon{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.baseplate-paragon{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.no-touch .baseplate-paragon{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.baseplate-paragon-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:20em){.baseplate-paragon-bold{font-size:22px;font-size:1.375rem;line-height:26px;line-height:1.625rem}}@media (min-width:37.5em){.baseplate-paragon-bold{font-size:30px;font-size:1.875rem;line-height:34px;line-height:2.125rem}.no-touch .baseplate-paragon-bold{font-size:28px;font-size:1.75rem;line-height:32px;line-height:2rem}}.baseplate-double-pica{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:37.5em){.baseplate-double-pica{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .baseplate-double-pica{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.baseplate-double-pica-bold{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;font-weight:700;letter-spacing:-1px;letter-spacing:-.0625rem}@media (min-width:37.5em){.baseplate-double-pica-bold{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .baseplate-double-pica-bold{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.baseplate-great-primer{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}@media (min-width:37.5em){.baseplate-great-primer{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-great-primer{font-size:20px;font-size:1.25rem}}.baseplate-great-primer-bold{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;font-weight:700}@media (min-width:20em){.baseplate-great-primer-bold{letter-spacing:-1px;letter-spacing:-.0625rem}}@media (min-width:37.5em){.baseplate-great-primer-bold{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-great-primer-bold{font-size:20px;font-size:1.25rem}}.baseplate-pica{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.baseplate-pica{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.baseplate-pica{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .baseplate-pica{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.baseplate-pica-bold{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;font-weight:700}@media (min-width:20em){.baseplate-pica-bold{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.baseplate-pica-bold{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .baseplate-pica-bold{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.baseplate-long-primer{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem}@media (min-width:37.5em){.baseplate-long-primer{line-height:20px;line-height:1.25rem}.no-touch .baseplate-long-primer{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.baseplate-long-primer-bold{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700}@media (min-width:37.5em){.baseplate-long-primer-bold{line-height:20px;line-height:1.25rem}.no-touch .baseplate-long-primer-bold{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.baseplate-brevier{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem}@media (min-width:20em){.baseplate-brevier{line-height:18px;line-height:1.125rem}}@media (min-width:37.5em){.no-touch .baseplate-brevier{font-size:13px;font-size:.8125rem;line-height:16px;line-height:1rem}}.baseplate-brevier-bold{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem;font-weight:700}@media (min-width:20em){.baseplate-brevier-bold{line-height:18px;line-height:1.125rem}}@media (min-width:37.5em){.no-touch .baseplate-brevier-bold{font-size:13px;font-size:.8125rem;line-height:16px;line-height:1rem}}.baseplate-minion{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;text-transform:uppercase}@media (min-width:37.5em){.baseplate-minion{font-size:13px;font-size:.8125rem}.no-touch .baseplate-minion{font-size:12px;font-size:.75rem}}.baseplate-minion-bold{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;text-transform:uppercase;font-weight:700}@media (min-width:37.5em){.baseplate-minion-bold{font-size:13px;font-size:.8125rem}.no-touch .baseplate-minion-bold{font-size:12px;font-size:.75rem}}.baseplate-body-copy{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.baseplate-body-copy{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.baseplate-body-copy{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.no-touch .baseplate-body-copy{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.education-link__invisible--my-bitesize{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.education-link__link--my-bitesize{text-decoration:none}.education-link__link--my-bitesize:visited .education-link__link-title--my-bitesize{color:#fff}.education-link__link--my-bitesize:focus .education-link__link-panel--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-panel--my-bitesize{background-color:#231f20}.education-link__link--my-bitesize:focus .education-link__link-title--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-title--my-bitesize{color:#fff;font-weight:400;text-decoration:underline}.education-link__link--my-bitesize:focus .education-link__link-subtitle--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-subtitle--my-bitesize{color:#fff;font-weight:400;text-decoration:none}.education-link__link--my-bitesize:focus .education-link__link-icon--my-bitesize,.education-link__link--my-bitesize:hover .education-link__link-icon--my-bitesize{fill:#fff}.education-link__link--my-bitesize:focus svg,.education-link__link--my-bitesize:hover svg{pointer-events:none}.education-link__link-panel--my-bitesize{background-color:#e5640f;margin-bottom:3px;padding:12px}.education-link__link-text-wrapper--my-bitesize{display:table-cell;width:100%}.education-link__link-title--my-bitesize{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem;color:#fff;font-weight:400;text-decoration:none}@media (min-width:37.5em){.education-link__link-title--my-bitesize{font-size:21px;font-size:1.3125rem;line-height:24px;line-height:1.5rem}.no-touch .education-link__link-title--my-bitesize{font-size:20px;font-size:1.25rem}}.education-link__link-subtitle--my-bitesize{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;color:#fff;font-weight:400;margin-top:4px;text-decoration:none}@media (min-width:20em){.education-link__link-subtitle--my-bitesize{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.education-link__link-subtitle--my-bitesize{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .education-link__link-subtitle--my-bitesize{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.education-link__link-icon-wrapper--my-bitesize{display:table-cell;vertical-align:middle}.education-link__link-icon--my-bitesize{fill:#fff;height:16px;padding-top:3px;padding-left:8px;width:16px}@media (min-width:37.5em){.education-link__link-icon--my-bitesize{padding-top:4px}}svg{pointer-events:none}body{margin:0}.promo{width:100%;box-sizing:border-box;margin-bottom:16px}.promo .promo-link{flex-direction:column;background:#f1f1f1;border:none;color:#fff;line-height:0;margin:0;text-decoration:none;padding:0;width:100%;display:flex}.promo:hover .promo-link{background:#333}.promo:hover .promo-link .promo-title{text-decoration:underline}.promo:hover .promo-image-container .gel-icon{background:#333}.promo .promo-image-container{width:100%;background-color:#f0f0f0;background-image:url(https://bitesize.files.bbci.co.uk/images/svgs/furniture/bbc-blocks-image-placeholder.svg);background-position:50%;background-repeat:no-repeat;background-size:30%;flex:none;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.promo .promo-image-container .gel-icon{display:block;position:absolute;bottom:0;left:0;background:#f1f1f1;height:54px;width:54px;color:#000;padding:16px 0;box-sizing:border-box}.promo .promo-image-container .gel-icon svg{height:20px!important}.promo .promo-image{width:100%;margin:0;border:none;position:absolute}.promo .promo-image--lazyload+.gel-icon{display:none}.promo .promo-label-container{background-color:#000;left:0;position:absolute;top:0}.promo .promo-label{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;color:#fff;display:inline-block;padding:8px;text-transform:uppercase}@media (min-width:37.5em){.promo .promo-label{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-label{font-size:12px;font-size:.75rem}}.promo .promo-footer{width:100%;display:flex;flex-grow:1;flex-direction:column}.promo .promo-title{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;border:none;margin:16px;padding:0}@media (min-width:20em){.promo .promo-title{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.promo .promo-title{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.no-touch .promo .promo-title{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}.promo .promo-synopsis{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;border:none;margin:16px;margin-top:0;padding:0}@media (min-width:37.5em){.promo .promo-synopsis{line-height:20px;line-height:1.25rem}.no-touch .promo .promo-synopsis{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.promo .promo-attribution{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;margin:16px;margin-top:auto;padding:0;text-transform:uppercase;font-weight:400}@media (min-width:37.5em){.promo .promo-attribution{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-attribution{font-size:12px;font-size:.75rem}}.promo .promo-label--live{font-size:12px;font-size:.75rem;line-height:16px;line-height:1rem;color:#fff;display:inline-block;font-weight:700;padding:8px;text-transform:uppercase}@media (min-width:37.5em){.promo .promo-label--live{font-size:13px;font-size:.8125rem}.no-touch .promo .promo-label--live{font-size:12px;font-size:.75rem}}@keyframes pulse{0%{opacity:1}50%{opacity:0}to{opacity:1}}.promo .promo-label--live__icon-outer{padding-left:8px;vertical-align:text-top}.promo .promo-label--live__icon-center{display:inline-block;will-change:opacity;animation:pulse 1.7s ease infinite}@supports (-ms-ime-align:auto){.promo{overflow:hidden}.promo-image-container{display:table}.promo-link{height:100%}.promo-footer{position:relative}}.collection .collection-content{box-sizing:border-box;padding-bottom:16px;padding-top:28px}.collection .collection-title{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;margin-bottom:18px;margin-top:0}@media (min-width:37.5em){.collection .collection-title{font-size:26px;font-size:1.625rem;line-height:30px;line-height:1.875rem}.no-touch .collection .collection-title{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}.collection .collection-title--light{color:#fff!important}.collection .collection-title .collection-title-link{color:#000;text-decoration:none}.collection .collection-title .collection-title-link:hover{color:#1074b9;text-decoration:underline}.collection .collection-title .collection-title-link .gel-icon{margin-left:8px;width:.6em;height:.6em}.error-container{box-sizing:border-box;padding:16px;background:#fff}.error-container .gel-icon--loading{padding:16px}.error-container .gel-icon--loading,.error-container svg{height:64px;width:64px}.error-container h2{font-size:2rem;max-width:800px}.error-container p{font-size:1rem;font-weight:400;max-width:800px}.error-container ul{list-style:none;margin-left:0;padding-left:0;font-size:1rem}.error-container ul a{color:#000;font-weight:700}@media (min-width:37.5em){.error-container h2{font-size:2.75rem}}.index-page{box-sizing:border-box;margin-top:16px}.index-page.sr-only{position:absolute;padding:0;margin:-1px;clip:rect(0,0,0,0);width:1px;height:1px;border:0;overflow:hidden}.index-page .index-page-title{box-sizing:border-box;padding-bottom:16px;font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem}@media (min-width:20em){.index-page .index-page-title{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.index-page .index-page-title{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.no-touch .index-page .index-page-title{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.index-page .index-page__short-description{box-sizing:border-box;padding-bottom:16px;font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:20em){.index-page .index-page__short-description{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.index-page .index-page__short-description{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.no-touch .index-page .index-page__short-description{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.index-page .index-page__call-to-action{box-sizing:border-box;padding-bottom:16px}.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{box-sizing:border-box;margin-top:-30px;padding:0 8px}@media (min-width:37.5em){.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{margin-left:16px;margin-right:16px;padding:0 16px}}@media (min-width:66em){.index-page .index-page__collection-search-bar-wrapper,.index-page .index-page__search-bar-wrapper{margin-left:auto;margin-right:auto;max-width:1008px}}.index-page .index-page__collection-search-bar-wrapper{background-color:#fff;padding-top:8px}@media (min-width:37.5em){.index-page .index-page__collection-search-bar-wrapper{padding:16px}}.layout-hero-2 .promo{width:50%}.layout-hero-2 .promo:first-child{width:100%}.layout-hero-2 .promo .promo-link{flex-direction:column}.layout-hero-2 .promo .promo-footer,.layout-hero-2 .promo .promo-image-container{width:100%}.layout-branding-image-3{background-size:cover}.layout-pocket .layout-pocket__row--hidden{display:none}.layout-pocket .layout-pocket__row--last{height:50px;overflow:hidden}.layout-pocket .layout-pocket__mask{box-shadow:inset 0 -10px 7px 0 rgba(0,0,0,.2);width:100%;content:\" \";position:relative;bottom:0;box-shadow:inset -16px 16px -8px rgba(0,0,0,.3);text-align:center;top:-50px;height:50px;margin-bottom:-34px}.layout-pocket .layout-pocket__show-more{font-size:18px;padding:12px;background:#333;border:0;color:#fff;cursor:pointer;margin-top:22px;position:relative}.layout-pocket .layout-pocket__show-more:focus,.layout-pocket .layout-pocket__show-more:hover{background:#262626;text-decoration:underline}.layout-pocket .gel-icon--down svg{vertical-align:middle;height:12px;width:12px;padding-left:8px}.layout-2-with-links .promo-container{box-sizing:border-box;flex-direction:column}.layout-2-with-links .promo-container .collection-title:empty{margin-top:0;margin-bottom:0}.layout-2-with-links .promo-container .collection-title:empty:before{display:none}.layout-2-with-links .promo-container .promo{display:flex;flex:1 1 auto}.layout-branding-colour-three-with-link{padding-bottom:32px;direction:rtl}.layout-branding-colour-three-with-link .link-container{display:table-cell;padding:11px 0 13px;direction:ltr}@media (min-width:37.5em){.promo .promo-link{flex-direction:column}.promo .promo-footer,.promo .promo-image-container{width:100%}.layout-hero-2 .promo{width:50%}.layout-hero-2 .promo:first-child{width:100%}.layout-hero-2 .promo:first-child .promo-link{flex-direction:row}.layout-hero-2 .promo:first-child .promo-image-container{width:66.66667%}.layout-branding-colour-3 .promo,.layout-branding-image-3 .promo,.layout-hero-2 .promo:first-child .promo-footer{width:33.33333%}.layout-branding-colour-3 .promo .promo-link,.layout-branding-image-3 .promo .promo-link{flex-direction:column}.layout-branding-colour-3 .promo .promo-footer,.layout-branding-colour-3 .promo .promo-image-container,.layout-branding-image-3 .promo .promo-footer,.layout-branding-image-3 .promo .promo-image-container{width:100%}.layout-pocket .layout-pocket__row--last{height:180px}.layout-pocket .layout-pocket__mask{top:-180px;height:180px;margin-bottom:-164px}.layout-pocket .layout-pocket__show-more{margin-top:152px}.layout-2-with-links .promo-container{width:50%}.layout-2-with-links .promo-container .collection-title:empty{margin-bottom:18px}.layout-2-with-links .promo-container .collection-title:empty:before{content:\"\\A0\";display:block}.index-page .index-page__short-description{padding-right:25%}}@media (min-width:48em){.layout-hero-2 .promo{width:25%}.layout-hero-2 .promo:first-child{width:50%}.layout-hero-2 .promo:first-child .promo-link{flex-direction:column}.layout-hero-2 .promo:first-child .promo-footer,.layout-hero-2 .promo:first-child .promo-image-container{width:100%}.layout-branding-colour-3,.layout-branding-image-3{padding:0 16px}.layout-branding-colour-3 .collection-title,.layout-branding-image-3 .collection-title{width:75%;color:#fff;padding-left:32px}.layout-branding-colour-3 .promo,.layout-branding-image-3 .promo{width:25%}.layout-branding-colour-3 .promo .promo-link,.layout-branding-image-3 .promo .promo-link{flex-direction:column}.layout-branding-colour-3 .promo .promo-footer,.layout-branding-colour-3 .promo .promo-image-container,.layout-branding-image-3 .promo .promo-footer,.layout-branding-image-3 .promo .promo-image-container{width:100%}.layout-branding-image-3 .promo:hover .promo-link .promo-title{text-decoration:underline}.layout-row-4 .promo{width:25%}.layout-pocket .layout-pocket__row--last{height:80px}.layout-pocket .layout-pocket__mask{top:-80px;height:80px;margin-bottom:-48px}.layout-pocket .layout-pocket__show-more{margin-top:52px}}.index-page__search-bar-wrapper{margin-top:-30px}</style>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>.ec-search-bar{background-color:#deddde;padding:8px;margin-top:12px;margin-bottom:16px}.ec-search-bar__form{position:relative}.ec-search-bar__querybox{border:none;box-sizing:border-box;font-family:inherit;font-feature-settings:inherit;font-size:16px;height:40px;line-height:1.15;padding:0 36px 0 8px;width:100%}.ec-search-bar__querybox:focus{outline:none}.ec-search-bar__querybox::-ms-clear{display:none}.ec-search-bar__results{list-style-type:none;padding-left:0;margin:0}.ec-search-bar__close-button{background-color:transparent;border:0;cursor:pointer;height:36px;position:absolute;right:0;top:2px;width:36px}.ec-search-bar__close-button>svg{height:16px;width:16px}.ec-search-bar__icon{height:36px;position:absolute;right:0;text-align:center;top:10px;width:36px}.ec-search-bar__icon>svg{height:16px;width:16px}.ec-search-bar__label{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.ec-search-bar__no-results-label{display:block;font-size:16px;padding:12px 8px;overflow-wrap:break-word}.ec-search-bar__result-item{border:0 solid #b8b8b8;border-bottom-width:1px;font-size:16px;padding:0}.ec-search-bar__result-item--active{background-color:#5a5a5a}.ec-search-bar__result-item:last-child{border:none}.ec-search-bar__result-item-link{padding:12px 8px;display:block;text-decoration:none;color:#231f20}.ec-search-bar__result-item-link:visited{color:#525252}.ec-search-bar__result-item-link--active{padding:12px 8px;display:block;text-decoration:none;color:#fff}.ec-search-bar__results:list-of-type{border:none}body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:"ss01"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.bitesize-article-search-view-wrapper{margin:0 auto;max-width:1008px}.bitesize-article-search-view-wrapper .ec-search-bar{margin:0 16px}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-search-view/1.17.1"]=true; Morph.styleSrc.push("<style>.ec-search-bar{background-color:#deddde;padding:8px;margin-top:12px;margin-bottom:16px}.ec-search-bar__form{position:relative}.ec-search-bar__querybox{border:none;box-sizing:border-box;font-family:inherit;font-feature-settings:inherit;font-size:16px;height:40px;line-height:1.15;padding:0 36px 0 8px;width:100%}.ec-search-bar__querybox:focus{outline:none}.ec-search-bar__querybox::-ms-clear{display:none}.ec-search-bar__results{list-style-type:none;padding-left:0;margin:0}.ec-search-bar__close-button{background-color:transparent;border:0;cursor:pointer;height:36px;position:absolute;right:0;top:2px;width:36px}.ec-search-bar__close-button>svg{height:16px;width:16px}.ec-search-bar__icon{height:36px;position:absolute;right:0;text-align:center;top:10px;width:36px}.ec-search-bar__icon>svg{height:16px;width:16px}.ec-search-bar__label{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.ec-search-bar__no-results-label{display:block;font-size:16px;padding:12px 8px;overflow-wrap:break-word}.ec-search-bar__result-item{border:0 solid #b8b8b8;border-bottom-width:1px;font-size:16px;padding:0}.ec-search-bar__result-item--active{background-color:#5a5a5a}.ec-search-bar__result-item:last-child{border:none}.ec-search-bar__result-item-link{padding:12px 8px;display:block;text-decoration:none;color:#231f20}.ec-search-bar__result-item-link:visited{color:#525252}.ec-search-bar__result-item-link--active{padding:12px 8px;display:block;text-decoration:none;color:#fff}.ec-search-bar__results:list-of-type{border:none}body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:\"ss01\"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.bitesize-article-search-view-wrapper{margin:0 auto;max-width:1008px}.bitesize-article-search-view-wrapper .ec-search-bar{margin:0 16px}</style>"); }</script><script>if (Morph.enhanced) { Morph.styles["bbc-morph-gel-icons/3.0.0"]=true; Morph.styleSrc.push("<style>.gel-icon{display:inline-block}.gel-icon svg{width:inherit;height:inherit;fill:currentColor}.gel-icon--loading{-webkit-animation-name:gel-spin;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:gel-spin;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;animation-name:gel-spin;animation-duration:1s;animation-iteration-count:infinite;animation-timing-function:linear}@-moz-keyframes gel-spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(360deg)}}@-webkit-keyframes gel-spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes gel-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}\n</style>"); }</script><script type="text/javascript">Morph.initStyles(); /* u28991960304970954 */</script><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:"ss01"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.education-content-promo--bitesize-primary{background-color:#f1f1f1;min-height:75px;padding:0;position:relative}@media (min-width:56.25em){.education-content-promo--bitesize-primary{min-height:128px}}.education-content-promo--bitesize-primary:hover{background-color:#e45153}.education-content-promo--bitesize-primary:hover .education-content-promo__context-synopsis--bitesize-primary{color:#fff}.education-content-promo--bitesize-primary--focus{background-color:#e45153}.education-content-promo--bitesize-primary--focus .education-content-promo__context-synopsis--bitesize-primary{color:#fff}.education-content-promo--bitesize-primary .education-content-promo-container--bitesize-primary .education-content-promo__link--bitesize-primary:after{display:none}.education-content-promo-placeholder--bitesize-primary{background-color:#fff;padding:0}.education-content-promo-placeholder__container--bitesize-primary{list-style:none;direction:ltr;text-align:left}.education-content-promo-placeholder__text--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:56.25em){.education-content-promo-placeholder__text--bitesize-primary{width:75%}}@media (min-width:37.5em){.education-content-promo-container--bitesize-primary{display:-webkit-flex;display:-ms-flexbox;display:flex}}.education-content-text-wrapper--bitesize-primary{padding:8px 24px}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary{width:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;justify-content:space-between}}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:100%;position:static;color:#231f20;font-weight:700;padding-bottom:8px;text-decoration:none}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:before{content:"";min-height:75px;overflow:hidden;position:absolute;white-space:nowrap;z-index:1;bottom:0;left:0;right:0;top:0}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:before{min-height:128px}}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:66.66667%;padding-bottom:0}}@media (min-width:63em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:75%}}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:focus{color:#231f20;outline:none}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:focus .education-content-promo__title--bitesize-primary{color:#fff;text-decoration:underline}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:active .education-content-promo__title--bitesize-primary,.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:hover .education-content-promo__title--bitesize-primary{-webkit-text-decoration-color:#fff;color:#fff;text-decoration:underline;text-decoration-color:#fff}.education-content-promo-meta--bitesize-primary{padding-bottom:8px}@media (min-width:37.5em){.education-content-promo__image-wrapper--bitesize-primary{width:33.33333%;flex-shrink:0}}.education-content-promo__image--bitesize-primary{display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.education-content-promo__image--bitesize-primary.core{background-color:#e5640f}.education-content-promo__image--bitesize-primary.primary{background-color:#e45153}.education-content-promo__image--bitesize-primary.secondary{background-color:#553287}.education-content-promo__image--bitesize-primary.post-16{background-color:#253a81}.education-content-promo__title--bitesize-primary{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;color:#231f20;margin:0;padding:8px 0;text-decoration:inherit}.education-content-promo__context-separator--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700;padding-left:8px;padding-right:8px}.education-content-promo__context-label--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;float:left;margin-bottom:8px;margin-right:8px}.education-content-promo__context-labels--bitesize-primary{display:block}@media (min-width:37.5em){.education-content-promo__context-labels--bitesize-primary{display:block}}.education-content-promo__context-item-label--bitesize-primary,.education-content-promo__context-item-label--separator--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700;color:#231f20;display:block}@media (min-width:15em){.education-content-promo__context-item-label--bitesize-primary,.education-content-promo__context-item-label--separator--bitesize-primary{display:inline}.education-content-promo__context-item-label--bitesize-primary.education-content-promo__context-item-label--separator--bitesize-primary:after,.education-content-promo__context-item-label--separator--bitesize-primary.education-content-promo__context-item-label--separator--bitesize-primary:after{content:"|";margin:0 8px}}.education-content-promo__context-item-link--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;z-index:2;-webkit-text-decoration-color:#e5640f;border-bottom:0;color:#231f20;font-weight:700;text-decoration:underline;text-decoration-color:#e5640f;display:inline-block;margin:0;position:relative}.education-content-promo__context-item-link--bitesize-primary:visited{color:#706d66}.education-content-promo__context-item-link--bitesize-primary:focus{color:#231f20}.education-content-promo__context-item-link--bitesize-primary:hover{color:#e5640f;text-decoration:none}.education-content-promo__context-item-link--bitesize-primary:visited{color:#231f20}.education-content-promo__context-item-link--bitesize-primary:visited:hover{color:#e5640f}.education-content-promo__context-synopsis--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;padding-bottom:8px}.education-content-promo__timestamp--bitesize-primary{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem;color:#231f20;font-weight:400;padding-bottom:8px;position:relative}.education-content-promo__timestamp--bitesize-primary svg{height:16px;margin-right:8px;padding-bottom:2px;vertical-align:middle;width:17px}.ec-content-panel--default{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;background-color:#fff;padding:24px 8px 8px}@media (max-width:37.49em){.ec-content-panel--default{padding-right:8px;padding-left:8px}}.ec-content-panel__item--default{margin-bottom:32px}.ec-content-panel__item--default:last-child{margin-bottom:0}.ec-content-panel__item--default>a{display:inline-block}.primary-phonics-view-wrapper{padding:48px 8px 64px}@media (min-width:37.5em){.primary-phonics-view-wrapper{padding-top:0}}.primary-phonics-view-wrapper .ec-content-panel--default{padding:0}</style><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-bitesize-primary-phonics-view/1.0.4"]=true; Morph.styleSrc.push("<style>body{font-family:Helvetica,Arial,freesans,sans-serif}.b-reith-sans-font.b-reith-sans-loaded{font-feature-settings:\"ss01\"}.b-reith-sans-font .language-selector__drawer{line-height:1.2rem}.education-content-promo--bitesize-primary{background-color:#f1f1f1;min-height:75px;padding:0;position:relative}@media (min-width:56.25em){.education-content-promo--bitesize-primary{min-height:128px}}.education-content-promo--bitesize-primary:hover{background-color:#e45153}.education-content-promo--bitesize-primary:hover .education-content-promo__context-synopsis--bitesize-primary{color:#fff}.education-content-promo--bitesize-primary--focus{background-color:#e45153}.education-content-promo--bitesize-primary--focus .education-content-promo__context-synopsis--bitesize-primary{color:#fff}.education-content-promo--bitesize-primary .education-content-promo-container--bitesize-primary .education-content-promo__link--bitesize-primary:after{display:none}.education-content-promo-placeholder--bitesize-primary{background-color:#fff;padding:0}.education-content-promo-placeholder__container--bitesize-primary{list-style:none;direction:ltr;text-align:left;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin-right:0;margin-left:-8px;padding-right:0;padding-left:0}@media (min-width:37.5em){.education-content-promo-placeholder__container--bitesize-primary{margin-left:-16px}}.education-content-promo-placeholder__text--bitesize-primary{width:100%;display:inline-block;padding-left:8px;text-align:left;vertical-align:top;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem}@media (min-width:37.5em){.education-content-promo-placeholder__text--bitesize-primary{padding-left:16px}}@media (min-width:20em){.education-content-promo-placeholder__text--bitesize-primary{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:37.5em){.education-content-promo-placeholder__text--bitesize-primary{font-size:18px;font-size:1.125rem;line-height:22px;line-height:1.375rem}.n-no-touchevents .education-content-promo-placeholder__text--bitesize-primary{font-size:16px;font-size:1rem;line-height:20px;line-height:1.25rem}}@media (min-width:56.25em){.education-content-promo-placeholder__text--bitesize-primary{width:75%}}@media (min-width:37.5em){.education-content-promo-container--bitesize-primary{display:-webkit-flex;display:-ms-flexbox;display:flex}}.education-content-text-wrapper--bitesize-primary{padding:8px 24px}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary{width:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:column;-ms-flex-direction:column;-webkit-flex-direction:column;justify-content:space-between}}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:100%;position:static;color:#231f20;font-weight:700;padding-bottom:8px;text-decoration:none}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:before{content:\"\";min-height:75px;overflow:hidden;position:absolute;white-space:nowrap;z-index:1;bottom:0;left:0;right:0;top:0}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:before{min-height:128px}}@media (min-width:37.5em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:66.66667%;padding-bottom:0}}@media (min-width:63em){.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary{width:75%}}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:focus{color:#231f20;outline:none}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:focus .education-content-promo__title--bitesize-primary{color:#fff;text-decoration:underline}.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:active .education-content-promo__title--bitesize-primary,.education-content-text-wrapper--bitesize-primary .education-content-promo__link--bitesize-primary:hover .education-content-promo__title--bitesize-primary{-webkit-text-decoration-color:#fff;color:#fff;text-decoration:underline;text-decoration-color:#fff}.education-content-promo-meta--bitesize-primary{padding-bottom:8px}@media (min-width:37.5em){.education-content-promo__image-wrapper--bitesize-primary{width:33.33333%;flex-shrink:0}}.education-content-promo__image--bitesize-primary{display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.education-content-promo__image--bitesize-primary.core{background-color:#e5640f}.education-content-promo__image--bitesize-primary.primary{background-color:#e45153}.education-content-promo__image--bitesize-primary.secondary{background-color:#553287}.education-content-promo__image--bitesize-primary.post-16{background-color:#253a81}.education-content-promo__title--bitesize-primary{font-size:20px;font-size:1.25rem;line-height:24px;line-height:1.5rem;color:#231f20;margin:0;padding:8px 0;text-decoration:inherit}@media (min-width:20em){.education-content-promo__title--bitesize-primary{font-size:24px;font-size:1.5rem;line-height:28px;line-height:1.75rem}}@media (min-width:37.5em){.education-content-promo__title--bitesize-primary{font-size:36px;font-size:2.25rem;line-height:40px;line-height:2.5rem}.n-no-touchevents .education-content-promo__title--bitesize-primary{font-size:32px;font-size:2rem;line-height:36px;line-height:2.25rem}}.education-content-promo__context-separator--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700;padding-left:8px;padding-right:8px}@media (min-width:37.5em){.education-content-promo__context-separator--bitesize-primary{line-height:20px;line-height:1.25rem}.n-no-touchevents .education-content-promo__context-separator--bitesize-primary{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.education-content-promo__context-label--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;float:left;margin-bottom:8px;margin-right:8px}@media (min-width:37.5em){.education-content-promo__context-label--bitesize-primary{line-height:20px;line-height:1.25rem}.n-no-touchevents .education-content-promo__context-label--bitesize-primary{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.education-content-promo__context-labels--bitesize-primary{display:block}@media (min-width:37.5em){.education-content-promo__context-labels--bitesize-primary{display:block}}.education-content-promo__context-item-label--bitesize-primary,.education-content-promo__context-item-label--separator--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;font-weight:700;color:#231f20;display:block}@media (min-width:37.5em){.education-content-promo__context-item-label--bitesize-primary,.education-content-promo__context-item-label--separator--bitesize-primary{line-height:20px;line-height:1.25rem}.n-no-touchevents .education-content-promo__context-item-label--bitesize-primary,.n-no-touchevents .education-content-promo__context-item-label--separator--bitesize-primary{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}@media (min-width:15em){.education-content-promo__context-item-label--bitesize-primary,.education-content-promo__context-item-label--separator--bitesize-primary{display:inline}.education-content-promo__context-item-label--bitesize-primary.education-content-promo__context-item-label--separator--bitesize-primary:after,.education-content-promo__context-item-label--separator--bitesize-primary.education-content-promo__context-item-label--separator--bitesize-primary:after{content:\"|\";margin:0 8px}}.education-content-promo__context-item-link--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:18px;line-height:1.125rem;z-index:2;-webkit-text-decoration-color:#e5640f;border-bottom:0;color:#231f20;font-weight:700;text-decoration:underline;text-decoration-color:#e5640f;display:inline-block;margin:0;position:relative}@media (min-width:37.5em){.education-content-promo__context-item-link--bitesize-primary{line-height:20px;line-height:1.25rem}.n-no-touchevents .education-content-promo__context-item-link--bitesize-primary{font-size:14px;font-size:.875rem;line-height:18px;line-height:1.125rem}}.education-content-promo__context-item-link--bitesize-primary:visited{color:#706d66}.education-content-promo__context-item-link--bitesize-primary:focus{color:#231f20}.education-content-promo__context-item-link--bitesize-primary:hover{color:#e5640f;text-decoration:none}.education-content-promo__context-item-link--bitesize-primary:visited{color:#231f20}.education-content-promo__context-item-link--bitesize-primary:visited:hover{color:#e5640f}.education-content-promo__context-synopsis--bitesize-primary{font-size:15px;font-size:.9375rem;line-height:20px;line-height:1.25rem;padding-bottom:8px}@media (min-width:20em){.education-content-promo__context-synopsis--bitesize-primary{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}@media (min-width:37.5em){.education-content-promo__context-synopsis--bitesize-primary{font-size:18px;font-size:1.125rem;line-height:24px;line-height:1.5rem}.n-no-touchevents .education-content-promo__context-synopsis--bitesize-primary{font-size:16px;font-size:1rem;line-height:22px;line-height:1.375rem}}.education-content-promo__timestamp--bitesize-primary{font-size:14px;font-size:.875rem;line-height:16px;line-height:1rem;color:#231f20;font-weight:400;padding-bottom:8px;position:relative}@media (min-width:20em){.education-content-promo__timestamp--bitesize-primary{line-height:18px;line-height:1.125rem}}@media (min-width:37.5em){.n-no-touchevents .education-content-promo__timestamp--bitesize-primary{font-size:13px;font-size:.8125rem;line-height:16px;line-height:1rem}}.education-content-promo__timestamp--bitesize-primary svg{height:16px;margin-right:8px;padding-bottom:2px;vertical-align:middle;width:17px}.ec-content-panel--default{max-width:1008px;margin:0 auto;padding-right:8px;padding-left:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff;padding:24px 8px 8px}@media (min-width:25em){.ec-content-panel--default{padding-left:16px;padding-right:16px}}@media (max-width:37.49em){.ec-content-panel--default{padding-right:8px;padding-left:8px}}.ec-content-panel__item--default{margin-bottom:32px}.ec-content-panel__item--default:last-child{margin-bottom:0}.ec-content-panel__item--default>a{display:inline-block}.primary-phonics-view-wrapper{padding:48px 8px 64px}@media (min-width:37.5em){.primary-phonics-view-wrapper{padding-top:0}}.primary-phonics-view-wrapper .ec-content-panel--default{padding:0}</style>"); }</script><script type="text/javascript">Morph.initStyles(); /* u08258114398408978 */</script><script type="text/javascript"> var domain = "co.uk"; var _sf_async_config = _sf_async_config || {}; var _sf_startpt=(new Date()).getTime(); _sf_async_config.domain = "www" + ".bbc." + domain; _sf_async_config.uid = 50924; _sf_async_config.title = window.document.title; _sf_async_config.path = "bbc." + domain + window.location.pathname + ""; _sf_async_config.sections = "bitesize"; </script></head><body><noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20200820050938im_/https://a1.api.bbc.co.uk/hit.xiti?&col=1&from=p&ptag=js&s=598253&p=learn::primary::bitesize.primary.levels.zvbc87h.page&x1=[urn:bbc:ldp:zvbc87h]&x2=[responsive]&x3=[bbc_website]&x4=[en-GB]&x7=[index-section]&x8=[reverb-1.5.0-nojs]&x11=[BITESIZE]&x12=[BITESIZE]" height="1" width="1" alt=""></p></noscript> <!-- BBCDOTCOM bodyFirst --><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { googletag.cmd.push(function() { googletag.display('bbccom_interstitial'); }); } }()); /*]]>*/</script></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { var wallpaper; if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { if (bbcdotcom.config.isAsync()) { googletag.cmd.push(function() { googletag.display('bbccom_wallpaper'); }); } else if (typeof googletag !== "undefined" && typeof googletag.display === "function") { googletag.display("wallpaper"); } wallpaper = bbcdotcom.adverts.adRegister.getAd('wallpaper'); } }()); /*]]>*/</script></div><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { document.write(unescape('%3Cscript id="gnlAdsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isAnalyticsEnabled()) { document.write(unescape('%3Cscript id="gnlAnalyticsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } }()); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyFirst = true; }()); /*]]>*/</script> <div id="cookiePrompt"></div> <!--[if (gt IE 8) | (IEMobile)]><!--><header id="orb-banner" role="banner" aria-label="BBC"><!--<![endif]--><!--[if (lt IE 9) & (!IEMobile)]> <![if (IE 8)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie8" aria-label="BBC"> <![endif]> <![if (IE 7)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie7" aria-label="BBC"> <![endif]> <![if (IE 6)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie6" aria-label="BBC"> <![endif]> <![endif]--><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{"id-cta-type": "statusbar-orb"}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20200820050938/https://account.bbc.com/account?context=cbbc"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"> <a class="orb-search__button" href="https://web.archive.org/web/20200820050938/https://search.bbc.co.uk/search?scope=cbbc" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20200820050938/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><input type="hidden" name="scope" id="orb-search-scope" value="cbbc"><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="100" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form> </div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <div id="u8298738821837631"><div class="background--primary--angled" data-reactid=".1g7xltjcigi" data-react-checksum="-101574077"></div></div><div id="u2949953754942365"><div class="bitesize-header--pageType bitesize-header--primary-index" data-reactid=".109oxkn5lb4" data-react-checksum="-411554784"><div class="bitesize-header-background" data-reactid=".109oxkn5lb4.0"></div><noscript data-reactid=".109oxkn5lb4.1"></noscript><div data-reactid=".109oxkn5lb4.2"><div class="global-navigation" data-reactid=".109oxkn5lb4.2.0"><header class="global-navigation__header" data-reactid=".109oxkn5lb4.2.0.0"><div class="global-navigation__header__wrap" data-reactid=".109oxkn5lb4.2.0.0.0"><span class="global-navigation__header__logo" tabindex="-1" data-reactid=".109oxkn5lb4.2.0.0.0.0"><a class="global-navigation__header__logo__link--animate global-navigation__header__logo__link--delay-animation global-navigation__header__logo__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize" data-reactid=".109oxkn5lb4.2.0.0.0.0.0">Bitesize</a></span><button type="button" class="global-navigation__header__menu-button" aria-label="Open menu" data-reactid=".109oxkn5lb4.2.0.0.0.1"><i class="gel-icon gel-icon--list-view global-navigation__header__menu-button__list-view" data-reactid=".109oxkn5lb4.2.0.0.0.1.0"><svg width="32" height="32" viewbox="0 0 32 32" data-reactid=".109oxkn5lb4.2.0.0.0.1.0.0"><path d="M0 0v8h32V0zM0 17v3h32v-8H0zM0 29v3h32v-8H0z" data-reactid=".109oxkn5lb4.2.0.0.0.1.0.0.0"></path></svg></i><span class="global-navigation__header__menu-button__text" data-reactid=".109oxkn5lb4.2.0.0.0.1.1">All Bitesize</span></button><div class="global-navigation__mobile-nav" data-reactid=".109oxkn5lb4.2.0.0.0.2"></div></div></header><nav class="global-navigation__primary-nav" data-reactid=".109oxkn5lb4.2.0.1"><div class="global-navigation__primary-nav__wrap" data-reactid=".109oxkn5lb4.2.0.1.0"><div class="global-language-selector" data-reactid=".109oxkn5lb4.2.0.1.0.0"><button type="button" class="global-language-selector__drawer global-language-selector__drawer--closed" data-reactid=".109oxkn5lb4.2.0.1.0.0.0"><span class="global-language-selector__drawer-text" data-reactid=".109oxkn5lb4.2.0.1.0.0.0.0">Change language</span></button><div class="global-language-selector__container global-language-selector__container--hidden" data-reactid=".109oxkn5lb4.2.0.1.0.0.1"><ol class="global-language-selector__list" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0"><li class="global-language-selector__language global-language-selector__language--selected" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0"><button type="button" tabindex="0" lang="en-GB" class="global-language-selector__language-link" aria-label="English, selected" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0.0"><span class="global-language-selector__language-label" lang="en-GB" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0.0.0">English</span><span class="global-language-selector__icon-yes gel-icon gel-icon--yes" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0.0.1"><svg class="bitesize-yes-svg" version="1.1" x="0px" y="0px" width="31.8px" height="32px" viewbox="0 0 31.8 32" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0.0.1.0"><polygon points="12.8,28.9 31.8,6.3 28,3.1 12.2,21.9 3.2,14.4 0,18.2 " data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.0.0.1.0.0"></polygon></svg></span></button></li><li class="global-language-selector__language" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$cy-GB"><button type="button" tabindex="0" lang="cy-GB" class="global-language-selector__language-link" aria-label="Cymraeg" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$cy-GB.0"><span class="global-language-selector__language-label" lang="cy-GB" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$cy-GB.0.0">Cymraeg</span></button></li><li class="global-language-selector__language" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$ga-GB"><button type="button" tabindex="0" lang="ga-GB" class="global-language-selector__language-link" aria-label="Gaeilge" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$ga-GB.0"><span class="global-language-selector__language-label" lang="ga-GB" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$ga-GB.0.0">Gaeilge</span></button></li><li class="global-language-selector__language" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$gd-GB"><button type="button" tabindex="0" lang="gd-GB" class="global-language-selector__language-link" aria-label="Gàidhlig" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$gd-GB.0"><span class="global-language-selector__language-label" lang="gd-GB" data-reactid=".109oxkn5lb4.2.0.1.0.0.1.0.1:$gd-GB.0.0">Gàidhlig</span></button></li></ol></div></div><ul class="global-navigation__list" data-reactid=".109oxkn5lb4.2.0.1.0.1"><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$home"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$home.0"><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$home.0.0">Home</span></a></li><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$daily-lessons"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$daily-lessons.0"><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$daily-lessons.0.0">Daily lessons</span></a></li><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$learn"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/learn" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$learn.0"><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$learn.0.0">Learn</span></a></li><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$support"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/support" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$support.0"><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$support.0.0">Support</span></a></li><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$careers"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/careers" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$careers.0"><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.0:$careers.0.0">Careers</span></a></li><li data-reactid=".109oxkn5lb4.2.0.1.0.1.1"><ul class="global-navigation__list__items--pinned" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0"><li class="global-navigation__list__item" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$my-bitesize"><a class="global-navigation__list__link" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/my" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$my-bitesize.0"><span class="global-navigation__list__link-my-bitesize" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$my-bitesize.0.0">My Bitesize</span></a></li><li class="global-navigation__list__item global-navigation__list__item--pinned global-navigation__list__item--all-bitesize" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize"><button type="button" class="global-navigation__list__link--button global-navigation__list__link--button--pinned" aria-live="polite" aria-label="Menu button, this menu is closed" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize.0"><span class="gel-icon gel-icon--list-view" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize.0.0"><svg width="32" height="32" viewbox="0 0 32 32" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize.0.0.0"><path d="M0 0v8h32V0zM0 17v3h32v-8H0zM0 29v3h32v-8H0z" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize.0.0.0.0"></path></svg></span><span class="global-navigation__list__link-text" data-reactid=".109oxkn5lb4.2.0.1.0.1.1.0.$all-bitesize.0.1">All Bitesize</span></button></li></ul></li></ul></div></nav></div><div class="header-image-container header-image-container--homepage header-image-no-logo" aria-hidden="false" data-reactid=".109oxkn5lb4.2.1"><div class="header-image-container__wrap" data-reactid=".109oxkn5lb4.2.1.0"><header class="context-panel context-panel-primary-index" data-reactid=".109oxkn5lb4.2.1.0.1"><div class="context-panel__info-container" data-reactid=".109oxkn5lb4.2.1.0.1.1"><div class="context-panel__header-container" data-reactid=".109oxkn5lb4.2.1.0.1.1.0"><h1 class="context-panel__header" data-reactid=".109oxkn5lb4.2.1.0.1.1.0.1">Primary Levels</h1></div><div class="context-panel__description-container" data-reactid=".109oxkn5lb4.2.1.0.1.1.1"><p class="context-panel__description context-panel__description--large" data-reactid=".109oxkn5lb4.2.1.0.1.1.1.0">Ages 3 to 11</p></div><noscript data-reactid=".109oxkn5lb4.2.1.0.1.1.5"></noscript></div></header><span class="bitesize-header__subject-illustration" style="background-image:url(https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/phases/primary/primary-index.png);" data-reactid=".109oxkn5lb4.2.1.0.2"></span></div></div></div></div></div><div id="u7422361455819281"><div class="messaging-banner-container messaging-banner-container-primaryIndex" data-reactid=".1t61uaz8wei" data-react-checksum="-1034329203"><div data-reactid=".1t61uaz8wei.0"><div class="messaging-banner__container messaging-banner__container-primaryIndex" data-reactid=".1t61uaz8wei.0.0"><div class="messaging-banner messaging-banner-primaryIndex" data-reactid=".1t61uaz8wei.0.0.0"><div class="messaging-banner-close" data-reactid=".1t61uaz8wei.0.0.0.0"><div class="ec-button__container ec-button__container-messaging-banner-close__button" data-reactid=".1t61uaz8wei.0.0.0.0.0"><button type="button" class="ec-button__bitesize-banner messaging-banner-close__button" aria-label="Close" data-bbc-container="global-banner" data-bbc-title="close" data-reactid=".1t61uaz8wei.0.0.0.0.0.0"><div class="messaging-banner-close__button-icon" data-reactid=".1t61uaz8wei.0.0.0.0.0.0.0"><svg version="1.1" x="0px" y="0px" width="18px" height="18px" viewbox="0 0 32 32" xml:space="preserve" data-reactid=".1t61uaz8wei.0.0.0.0.0.0.0.0"><polygon points="32,3.5 28.5,0 16,12.5 3.5,0 0,3.5 12.5,16 0,28.5 3.5,32 16,19.5 28.5,32 32,28.5 19.5,16" data-reactid=".1t61uaz8wei.0.0.0.0.0.0.0.0.0"></polygon></svg></div></button></div></div><div class="messaging-banner-image-primaryIndex" data-reactid=".1t61uaz8wei.0.0.0.1"></div><div class="messaging-banner-content" data-reactid=".1t61uaz8wei.0.0.0.2"><div class="messaging-banner-content__title" data-reactid=".1t61uaz8wei.0.0.0.2.0"><p class="messaging-banner-content__title-text" data-reactid=".1t61uaz8wei.0.0.0.2.0.0">Starting primary school?</p></div><div class="messaging-banner-content__subtitle" data-reactid=".1t61uaz8wei.0.0.0.2.1"><p class="messaging-banner-content__subtitle-text" data-reactid=".1t61uaz8wei.0.0.0.2.1.0">We’ve got games, activities and tips to help you feel ready for your first term.</p></div><div class="messaging-banner-content__link-container" data-reactid=".1t61uaz8wei.0.0.0.2.2"><div class="ec-link-button__container" data-reactid=".1t61uaz8wei.0.0.0.2.2.0"><a tabindex="0" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1 " class="ec-link-button__bitesize-banner" aria-label="Let's go to starting primary!" data-bbc-container="global-banner" data-reactid=".1t61uaz8wei.0.0.0.2.2.0.0"><span class="messaging-banner-content__link-text" data-reactid=".1t61uaz8wei.0.0.0.2.2.0.0.0">Let’s go!</span></a></div></div></div></div></div></div></div></div><div id="u33051296519322193"><div class="primary-index-view-wrapper" data-reactid=".iyqmqmqo9u" data-react-checksum="-1209007479"><section class="ec-content-panel--primary-index" data-reactid=".iyqmqmqo9u.0"><div class="ec-content-panel__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10"><div class="ec-grid--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0"><div class="ec-grid__item-wrapper--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0"><div class="ec-grid__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10"><span class="ec-grid__item-content-wrapper--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0"><div data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0"><h3 class="education-links-panel__heading--bitesize-primary" id="England" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.0">England</h3><ul class="education-links-panel__list--bitesize-primary" role="group" aria-labelledby="England" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1"><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/z3g4d2p" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.0.0">KS1</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.0.1">KS1:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.0.2">Year 1 to 2</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.0.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zbr9wmn" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.0.0">KS2</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.0.1">KS2:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.0.2">Year 3 to 6</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=10.0.0.1.1.0.0.1.0.0"></polygon></svg></div></div></a></li></ul></div></span></div><div class="ec-grid__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11"><span class="ec-grid__item-content-wrapper--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0"><div data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0"><h3 class="education-links-panel__heading--bitesize-primary" id="NorthernIreland" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.0">Northern Ireland</h3><ul class="education-links-panel__list--bitesize-primary" role="group" aria-labelledby="NorthernIreland" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1"><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/znyh7nb" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.0.0">Foundation Stage</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.0.1">Foundation Stage:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.0.2">Primary 1 to 2</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.0.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/z3g4d2p" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.0.0">KS1</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.0.1">KS1:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.0.2">Primary 3 to 4</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.1.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zjmj92p" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.0.0">KS2</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.0.1">KS2:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.0.2">Primary 5 to 7</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=11.0.0.1.2.0.0.1.0.0"></polygon></svg></div></div></a></li></ul></div></span></div><div class="ec-grid__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12"><span class="ec-grid__item-content-wrapper--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0"><div data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0"><h3 class="education-links-panel__heading--bitesize-primary" id="Scotland" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.0">Scotland</h3><ul class="education-links-panel__list--bitesize-primary" role="group" aria-labelledby="Scotland" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1"><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zf7hgwx" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.0.0">Early level</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.0.1">Early level:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.0.2">Primary 1</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.0.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zgckjxs" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.0.0">1st level</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.0.1">1st level:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.0.2">Primary 2 to 4</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.1.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zr48q6f" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.0.0">2nd level</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.0.1">2nd level:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.0.2">Primary 5 to 7</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.2.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zk3xy9q" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.0.0">A' Chiad Ìre</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.0.1">A' Chiad Ìre:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.0.2">Bun-sgoil 2 gu 4</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.3.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/z4y2scw" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.0.0">An Dàrna Ìre</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.0.1">An Dàrna Ìre:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.0.2">Bun-sgoil 5 gu 7</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=12.0.0.1.4.0.0.1.0.0"></polygon></svg></div></div></a></li></ul></div></span></div><div class="ec-grid__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13"><span class="ec-grid__item-content-wrapper--primary-index" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0"><div data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0"><h3 class="education-links-panel__heading--bitesize-primary" id="Wales" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.0">Wales</h3><ul class="education-links-panel__list--bitesize-primary" role="group" aria-labelledby="Wales" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1"><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zxybmsg" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.0.0">Foundation Phase</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.0.1">Foundation Phase:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.0.2">Reception to Year 2</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.0.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zbr9wmn" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.0.0">KS2</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.0.1">KS2:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.0.2">Year 3 to 6</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.1.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/z4js6v4" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.0.0">Cyfnod Sylfaen</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.0.1">Cyfnod Sylfaen:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.0.2">Reception to Year 2</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.2.0.0.1.0.0"></polygon></svg></div></div></a></li><li data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3"><a class="education-link__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/levels/zbpwt39" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0"><div class="education-link__link-panel--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0"><div class="education-link__link-text-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.0"><div aria-hidden="true" class="education-link__link-title--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.0.0">CA2</div><span class="education-link__invisible--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.0.1">CA2:</span><div class="education-link__link-subtitle--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.0.2">Year 3 to 6</div></div><div class="education-link__link-icon-wrapper--bitesize-primary" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.1"><svg class="education-link__link-icon--bitesize-primary" width="32" height="32" viewbox="0 0 32 32" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".iyqmqmqo9u.0.$/=10.0.0.$/=13.0.0.1.3.0.0.1.0.0"></polygon></svg></div></div></a></li></ul></div></span></div></div></div></div><div class="ec-content-panel__item--primary-index" data-reactid=".iyqmqmqo9u.0.$/=11"><div class="nations-levels-character" data-reactid=".iyqmqmqo9u.0.$/=11.0"></div></div></section></div></div><div id="u28991960304970954"><div class="index-page" data-reactid=".1jbdles329c" data-react-checksum="-659159189"><span data-reactid=".1jbdles329c.1"></span><span data-reactid=".1jbdles329c.2"></span><div class="collection" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0"><div class="layout-branding-colour-three-with-link" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0"><div class="layout-branding-colour-3" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0"><div class="collection-content" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0"><div class="gel-layout gel-layout--center" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.0"><h2 class="collection-title collection-title--dark gel-layout__item" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.0.0">Play games</h2></div><div class="gel-layout gel-layout--center gel-layout--equal" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1"><div class="promo gel-layout__item" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0"><a class="promo-link" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zn3vvk7/articles/zsydr2p" tabindex="0" aria-hidden="false" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0"><div class="promo-image-container" aria-hidden="true" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.0"><div class="promo-image--lazyload" data-src="https://web.archive.org/web/20200820050938oe_/https://ichef.bbci.co.uk/images/ic/{width}xn/p08m1m2t.png" data-alt="Back in time with... Exciting Explorers" data-class="promo-image" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.0.0"></div></div><div class="promo-footer" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.1"><h2 class="promo-title" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.1.0">Back in time with... Exciting Explorers</h2><p class="promo-synopsis" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.1.1">Be an exciting explorer! Join Ibn, Amelia and Neil on their incredible journeys across the world... and beyond.</p><h5 class="promo-attribution" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-z3nkbqt-0.0.1.2">Key Stage 1 - History</h5></div></a></div><div class="promo gel-layout__item" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1"><a class="promo-link" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zn3vvk7/articles/zh7m8hv" tabindex="0" aria-hidden="false" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0"><div class="promo-image-container" aria-hidden="true" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.0"><div class="promo-image--lazyload" data-src="https://web.archive.org/web/20200820050938oe_/https://ichef.bbci.co.uk/images/ic/{width}xn/p08kz0l8.png" data-alt="Back in time with... Astonishing Activists" data-class="promo-image" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.0.0"></div></div><div class="promo-footer" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.1"><h2 class="promo-title" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.1.0">Back in time with... Astonishing Activists</h2><p class="promo-synopsis" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.1.1">Be an astonishing activist! Help Nelson, Emmeline, Guy and Rosa to fight racism, campaign for women's rights and more.</p><h5 class="promo-attribution" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zmqp2v4-1.0.1.2">Key Stage 1 - History</h5></div></a></div><div class="promo gel-layout__item" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2"><a class="promo-link" href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zdp4382/articles/zn7bscw" tabindex="0" aria-hidden="false" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0"><div class="promo-image-container" aria-hidden="true" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.0"><div class="promo-image--lazyload" data-src="https://web.archive.org/web/20200820050938oe_/https://ichef.bbci.co.uk/images/ic/{width}xn/p07qg547.png" data-alt="Galaxy Pugs" data-class="promo-image" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.0.0"></div></div><div class="promo-footer" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.1"><h2 class="promo-title" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.1.0">Galaxy Pugs</h2><p class="promo-synopsis" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.1.1">Meet the Galaxy Pugs! Help them study and observe our planet's animals, plants and materials.</p><h5 class="promo-attribution" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.1.$promo-zkj78xs-2.0.1.2">Key Stage 1 - Science</h5></div></a></div></div><div class="link-container" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2"><a class="education-link__link--my-bitesize" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/primary-games/1" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0"><div class="education-link__link-panel--my-bitesize" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0"><div class="education-link__link-text-wrapper--my-bitesize" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.0"><div aria-hidden="true" class="education-link__link-title--my-bitesize" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.0.0">All games</div><span class="education-link__invisible--my-bitesize" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.0.1">All games:</span></div><div class="education-link__link-icon-wrapper--my-bitesize" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.1"><svg class="education-link__link-icon--my-bitesize" width="32" height="32" viewbox="0 0 32 32" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.1.0"><polygon points="29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16" data-reactid=".1jbdles329c.4:$collection-zhs8gwx-0.0.0.0.2.0.0.1.0.0"></polygon></svg></div></div></a></div></div></div></div></div></div></div><div id="u08258114398408978"><div class="primary-phonics-view-wrapper" data-reactid=".1pve4ivwzqw" data-react-checksum="526584915"><section class="ec-content-panel--default" data-reactid=".1pve4ivwzqw.0"><div class="ec-content-panel__item--default" data-reactid=".1pve4ivwzqw.0.$/=10"><div class="education-content-promo--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0"><div class="education-content-promo-container--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0.0"><div class="education-content-promo__image-wrapper--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0.0.0"><img alt="" src="https://web.archive.org/web/20200820050938im_/https://bitesize.files.bbci.co.uk/images/phases/primary/phonics-promo-wizards-primary-index.png" class="education-content-promo__image--bitesize-primary " data-reactid=".1pve4ivwzqw.0.$/=10.0.0.0.0"/></div><div class="education-content-text-wrapper--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0.0.1"><div data-reactid=".1pve4ivwzqw.0.$/=10.0.0.1.0"><a data-bbc-title="Phonics Phase 3" data-bbc-metadata="{"CHD":"card::1"}" class="education-content-promo__link--bitesize-primary" href="/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvq9bdm" data-reactid=".1pve4ivwzqw.0.$/=10.0.0.1.0.0"><div class="education-content-promo__title--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0.0.1.0.0.0">Phonics Phase 3</div></a><div class="education-content-promo__context-synopsis--bitesize-primary" data-reactid=".1pve4ivwzqw.0.$/=10.0.0.1.0.2">Learn phonics by helping the wizards turn letters and sounds into words.</div></div></div></div></div></div></section></div></div> </div> <div id="orb-footer" class="orb-footer" dir="ltr"> <div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20200820050938/https://advertising.bbcworldwide.com/">Advertise with us<'+'/a><'+'/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/">AdChoices / Do Not Sell My Info<'+'/a><'+'/li>';</script><div class="orb-footer-inner"> <ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright © 2020 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/help/web/links/" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script id="orb-js-script" data-assetpath="https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/" src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/js/orb.min.js"></script> <script type="text/javascript">/*<![CDATA[*/ require(['orb/nav'], function(nav) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { nav.loadJs('https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/orbit/b3428ed36e7e195dbf298117ef155a8f/js/edr.min.js'); } }); }); /*]]>*/</script> <!-- BBCDOTCOM bodyLast --><div class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && window.bbcdotcom.analytics && bbcdotcom.config && !bbcdotcom.config.isSportApp() && !bbcdotcom.config.isReel()) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.analytics.page, bbcdotcom.analytics); } /*]]>*/</script><noscript><img src="//web.archive.org/web/20200820050938im_/https://ssc.api.bbc.com/?c1=2&c2=19293874&ns_site=bbc&name=" height="1" width="1" alt=""></noscript><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.write, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.postWrite, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.stats && bbcdotcom.data.stats === 1 && bbcdotcom.utils && window.location.pathname === '/') { var wwhpEdition = bbcdotcom.utils.getMetaPropertyContent('wwhp-edition'); var _sf_async_config={}; /** CONFIGURATION START **/ _sf_async_config.uid = 50924; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.title = "Homepage"+(wwhpEdition !== '' ? ' - '+wwhpEdition : ''); _sf_async_config.sections = "Homepage"+(wwhpEdition !== '' ? ', Homepage - '+wwhpEdition : ''); _sf_async_config.region = wwhpEdition; _sf_async_config.path = "/"+(wwhpEdition !== '' ? '?'+wwhpEdition : ''); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200820050938/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyLast = true; }()); /*]]>*/</script></div><!-- BBCDOTCOM all code in page --> <script type="text/javascript">require.config({ "paths": { "orb/async/_footerpromo": 'https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/navpromo/147159bb26f38dcdcdba6f164d96667a/js/async/_footerpromo' } }); (function() { document.addEventListener("DOMContentLoaded", function(event) { initialiseFooter(); }); var scrollCheckTimer; var didScroll; var previousPosition = 0; var delta = 5; var PROMO_SHOW_BREAKPOINT = 1500; var pageLength = 0; function getCookie(key) { if (!key) { return document.cookie; } return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(key).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1")) || null; } function initialiseFooter() { // Suppress this feature on browsers we no longer test var myNav = navigator.userAgent.toLowerCase(); var oldIE = (myNav.indexOf('msie') !== -1) && parseInt(myNav.split('msie')[1], 10) <= 10; if (!oldIE) { var disabledByCookie = (parseInt(getCookie('ckns_nav_promofail')) || 0) >= 3; if (!disabledByCookie) { window.bbcpage.getLanguage().then(function(language) { if (language === 'en') { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { setUpLazyLoading(); } }); } }); } } } function setUpLazyLoading() { // offsetHeight is expensive to calculate, only do it once. pageLength = Math.abs(document.body.offsetHeight); if (pageLength < getViewportHeight() + 300 || pageLength - getCurrentPosition() < PROMO_SHOW_BREAKPOINT) { loadPromo(); } else { window.onscroll = function () { didScroll = true; }; scrollCheckTimer = setInterval(function () { if (didScroll) { hasScrolled(); didScroll = false; } }, 250); } } function loadPromo() { clearInterval(scrollCheckTimer); require(['orb/async/_footerpromo'], function(promo) { promo.init('https://web.archive.org/web/20200820050938/https://navpromo.api.bbci.co.uk', 'cbbc'); }); } function getViewportHeight() { return window.innerHeight; } function getCurrentPosition() { return Math.abs(window.scrollY || document.body.scrollTop || document.documentElement.scrollTop); } function hasScrolled() { var currentPosition = getCurrentPosition(); if (Math.abs(previousPosition - currentPosition) <= delta) { return; } if (currentPosition > previousPosition) { if ((pageLength - currentPosition) <= PROMO_SHOW_BREAKPOINT) { loadPromo(); } } previousPosition = currentPosition; } })();</script> <script type="text/javascript">window.COOKIES_STATIC_HOST = 'https://web.archive.org/web/20200820050938/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-477.3a39ca0/cookie-banner/cookie-prompt/';</script><script src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-477.3a39ca0/cookie-banner/cookie-banners.bundle.js" async=""></script><script type="text/javascript">require(["istats-1","orb/cookies"],function(o,t){if(t.isAllowed("s1"))try{if(!require.s.contexts._.config.paths.idcta)return void i();require(["idcta/idcta-1"],function(t){t&&"function"==typeof t.getIStatsLabels&&o.addLabels(t.getIStatsLabels()),i()},function(t){throw t})}catch(t){console&&"function"==typeof console.log&&console.log("an exception occurred while adding idcta labels to istats, invoking istats without them",t),i()}function i(){o.invoke()}});</script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script><script src="https://web.archive.org/web/20200820050938js_/https://nav.files.bbci.co.uk//user-activity-helper/1d5fa47d9ba60d5c52b377ec3208b7be/js/detectview.bundle.js" async=""></script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-bitesize-background-view@1.1.0"]={"@bbc/bitesize-branding":"12.0.0","morph-container":"4.0.0",react:"0.14.7"},function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={exports:{},id:n,loaded:!1};return e[n].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var r={};t.m=e,t.c=r,t.p="",t(0)}([function(e,t,r){Morph.modules["bbc-morph-bitesize-background-view@1.1.0"]=r(1)},function(e,t,r){e.exports=r(2)},function(e,t,r){e.exports=function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=1)}([function(e,t){e.exports=r(3)},function(e,t,r){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(0),u=n(o),i=r(2),a=n(i),c=r(3),s=n(c),p=function(e){return u.default.createElement(s.default,e)};p.displayName="BackgroundContainer",t.default=a.default.create(p,{}),e.exports=t.default},function(e,t){e.exports=r(4)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(0),o=function(e){return e&&e.__esModule?e:{default:e}}(n),u=function(e){var t=e.colorThemePreset,r=e.gradientTypePreset;return o.default.createElement("div",{className:function(e,t){return t?e?"background--"+t+"--"+e:"background--"+t:null}(r,t)})};u.displayName="Background",u.defaultProps={gradientTypePreset:"left-to-right"},u.propTypes={colorThemePreset:n.PropTypes.string.isRequired,gradientTypePreset:n.PropTypes.string},t.default=u,e.exports=t.default}])},function(e,t){e.exports=React},function(e,t){e.exports={create:function(e,t){return Morph.createContainerWithCaller("bbc-morph-bitesize-background-view@1.1.0",e,t)}}}]);; });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-bitesize-background-view","colorThemePreset":"primary","gradientTypePreset":"angled","language":"en-GB","version":"1.1.0","_mrrVersion":"2.0.18"},'u8298738821837631'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u8298738821837631 */</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-promise@1.0.6"]={"es6-promise":"3.2.1"},function(t){function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}var e={};return n.m=t,n.c=e,n.p="",n(0)}([function(t,n,e){Morph.modules["bbc-morph-promise@1.0.6"]=e(1)},function(t,n,e){var r=e(2).Promise;t.exports=r},function(t,n,e){var r;(function(t,o,i){(function(){"use strict";function s(t){return"function"==typeof t||"object"==typeof t&&null!==t}function u(t){return"function"==typeof t}function c(t){V=t}function a(t){tt=t}function f(){return function(){t.nextTick(v)}}function l(){return function(){R(v)}}function h(){var t=0,n=new rt(v),e=document.createTextNode("");return n.observe(e,{characterData:!0}),function(){e.data=t=++t%2}}function p(){var t=new MessageChannel;return t.port1.onmessage=v,function(){t.port2.postMessage(0)}}function d(){return function(){setTimeout(v,1)}}function v(){for(var t=0;t<$;t+=2){var n=st[t],e=st[t+1];n(e),st[t]=void 0,st[t+1]=void 0}$=0}function _(){try{var t=e(5);return R=t.runOnLoop||t.runOnContext,l()}catch(t){return d()}}function y(t,n){var e=this,r=new this.constructor(w);void 0===r[at]&&N(r);var o=e._state;if(o){var i=arguments[o-1];tt(function(){F(o,r,i,e._result)})}else C(e,r,t,n);return r}function m(t){var n=this;if(t&&"object"==typeof t&&t.constructor===n)return t;var e=new n(w);return j(e,t),e}function w(){}function b(){return new TypeError("You cannot resolve a promise with itself")}function g(){return new TypeError("A promises callback cannot return that same promise.")}function A(t){try{return t.then}catch(t){return pt.error=t,pt}}function x(t,n,e,r){try{t.call(n,e,r)}catch(t){return t}}function E(t,n,e){tt(function(t){var r=!1,o=x(e,n,function(e){r||(r=!0,n!==e?j(t,e):M(t,e))},function(n){r||(r=!0,k(t,n))},"Settle: "+(t._label||" unknown promise"));!r&&o&&(r=!0,k(t,o))},t)}function T(t,n){n._state===lt?M(t,n._result):n._state===ht?k(t,n._result):C(n,void 0,function(n){j(t,n)},function(n){k(t,n)})}function S(t,n,e){n.constructor===t.constructor&&e===ut&&constructor.resolve===ct?T(t,n):e===pt?k(t,pt.error):void 0===e?M(t,n):u(e)?E(t,n,e):M(t,n)}function j(t,n){t===n?k(t,b()):s(n)?S(t,n,A(n)):M(t,n)}function P(t){t._onerror&&t._onerror(t._result),O(t)}function M(t,n){t._state===ft&&(t._result=n,t._state=lt,0!==t._subscribers.length&&tt(O,t))}function k(t,n){t._state===ft&&(t._state=ht,t._result=n,tt(P,t))}function C(t,n,e,r){var o=t._subscribers,i=o.length;t._onerror=null,o[i]=n,o[i+lt]=e,o[i+ht]=r,0===i&&t._state&&tt(O,t)}function O(t){var n=t._subscribers,e=t._state;if(0!==n.length){for(var r,o,i=t._result,s=0;s<n.length;s+=3)r=n[s],o=n[s+e],r?F(e,r,o,i):o(i);t._subscribers.length=0}}function L(){this.error=null}function Y(t,n){try{return t(n)}catch(t){return dt.error=t,dt}}function F(t,n,e,r){var o,i,s,c,a=u(e);if(a){if(o=Y(e,r),o===dt?(c=!0,i=o.error,o=null):s=!0,n===o)return void k(n,g())}else o=r,s=!0;n._state!==ft||(a&&s?j(n,o):c?k(n,i):t===lt?M(n,o):t===ht&&k(n,o))}function D(t,n){try{n(function(n){j(t,n)},function(n){k(t,n)})}catch(n){k(t,n)}}function K(){return vt++}function N(t){t[at]=vt++,t._state=void 0,t._result=void 0,t._subscribers=[]}function U(t){return new bt(this,t).promise}function W(t){var n=this;return new n(Z(t)?function(e,r){for(var o=t.length,i=0;i<o;i++)n.resolve(t[i]).then(e,r)}:function(t,n){n(new TypeError("You must pass an array to race."))})}function q(t){var n=this,e=new n(w);return k(e,t),e}function z(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function B(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}function G(t){this[at]=K(),this._result=this._state=void 0,this._subscribers=[],w!==t&&("function"!=typeof t&&z(),this instanceof G?D(this,t):B())}function H(t,n){this._instanceConstructor=t,this.promise=new t(w),this.promise[at]||N(this.promise),Z(n)?(this._input=n,this.length=n.length,this._remaining=n.length,this._result=new Array(this.length),0===this.length?M(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&M(this.promise,this._result))):k(this.promise,I())}function I(){return new Error("Array Methods must be provided an Array")}function J(){var t;if("undefined"!=typeof o)t=o;else if("undefined"!=typeof self)t=self;else try{t=Function("return this")()}catch(t){throw new Error("polyfill failed because global object is unavailable in this environment")}var n=t.Promise;n&&"[object Promise]"===Object.prototype.toString.call(n.resolve())&&!n.cast||(t.Promise=wt)}var Q;Q=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)};var R,V,X,Z=Q,$=0,tt=function(t,n){st[$]=t,st[$+1]=n,$+=2,2===$&&(V?V(v):X())},nt="undefined"!=typeof window?window:void 0,et=nt||{},rt=et.MutationObserver||et.WebKitMutationObserver,ot="undefined"==typeof self&&"undefined"!=typeof t&&"[object process]"==={}.toString.call(t),it="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel,st=new Array(1e3);X=ot?f():rt?h():it?p():void 0===nt?_():d();var ut=y,ct=m,at=Math.random().toString(36).substring(16),ft=void 0,lt=1,ht=2,pt=new L,dt=new L,vt=0,_t=U,yt=W,mt=q,wt=G;G.all=_t,G.race=yt,G.resolve=ct,G.reject=mt,G._setScheduler=c,G._setAsap=a,G._asap=tt,G.prototype={constructor:G,then:ut,catch:function(t){return this.then(null,t)}};var bt=H;H.prototype._enumerate=function(){for(var t=this.length,n=this._input,e=0;this._state===ft&&e<t;e++)this._eachEntry(n[e],e)},H.prototype._eachEntry=function(t,n){var e=this._instanceConstructor,r=e.resolve;if(r===ct){var o=A(t);if(o===ut&&t._state!==ft)this._settledAt(t._state,n,t._result);else if("function"!=typeof o)this._remaining--,this._result[n]=t;else if(e===wt){var i=new e(w);S(i,t,o),this._willSettleAt(i,n)}else this._willSettleAt(new e(function(n){n(t)}),n)}else this._willSettleAt(r(t),n)},H.prototype._settledAt=function(t,n,e){var r=this.promise;r._state===ft&&(this._remaining--,t===ht?k(r,e):this._result[n]=e),0===this._remaining&&M(r,this._result)},H.prototype._willSettleAt=function(t,n){var e=this;C(t,void 0,function(t){e._settledAt(lt,n,t)},function(t){e._settledAt(ht,n,t)})};var gt=J,At={Promise:wt,polyfill:gt};e(6).amd?(r=function(){return At}.call(n,e,n,i),!(void 0!==r&&(i.exports=r))):"undefined"!=typeof i&&i.exports?i.exports=At:"undefined"!=typeof this&&(this.ES6Promise=At),gt()}).call(this)}).call(n,e(3),function(){return this}(),e(4)(t))},function(t,n){function e(){l&&a&&(l=!1,a.length?f=a.concat(f):h=-1,f.length&&r())}function r(){if(!l){var t=s(e);l=!0;for(var n=f.length;n;){for(a=f,f=[];++h<n;)a&&a[h].run();h=-1,n=f.length}a=null,l=!1,u(t)}}function o(t,n){this.fun=t,this.array=n}function i(){}var s,u,c=t.exports={};!function(){try{s=setTimeout}catch(t){s=function(){throw new Error("setTimeout is not defined")}}try{u=clearTimeout}catch(t){u=function(){throw new Error("clearTimeout is not defined")}}}();var a,f=[],l=!1,h=-1;c.nextTick=function(t){var n=new Array(arguments.length-1);if(arguments.length>1)for(var e=1;e<arguments.length;e++)n[e-1]=arguments[e];f.push(new o(t,n)),1!==f.length||l||s(r,0)},o.prototype.run=function(){this.fun.apply(null,this.array)},c.title="browser",c.browser=!0,c.env={},c.argv=[],c.version="",c.versions={},c.on=i,c.addListener=i,c.once=i,c.off=i,c.removeListener=i,c.removeAllListeners=i,c.emit=i,c.binding=function(t){throw new Error("process.binding is not supported")},c.cwd=function(){return"/"},c.chdir=function(t){throw new Error("process.chdir is not supported")},c.umask=function(){return 0}},function(t,n){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,n){},function(t,n){t.exports=function(){throw new Error("define cannot be used indirect")}}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-istats@1.3.0"]={"bbc-morph-promise":"1.0.6",requirejs:"2.3.5"},function(n){function r(e){if(t[e])return t[e].exports;var o=t[e]={exports:{},id:e,loaded:!1};return n[e].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}var t={};return r.m=n,r.c=t,r.p="",r(0)}([function(n,r,t){Morph.modules["bbc-morph-istats@1.3.0"]=t(1)},function(n,r,t){function e(){return p?a.resolve(p):new a(function(n){requirejs(["istats-1"],function(r){p=r,n(p)})})}function o(n){return"string"==typeof n&&n[0]}function u(n,r){return o(n)&&o(r)}function i(n,r,t){return e().then(function(e){e.log(n,r,t)})}function c(n,r){return e().then(function(t){t.track(n,r)})}function s(n,r,t){return u(n,r)?i(r,n,t):a.reject("Invalid parameters")}function f(){return e().then(function(n){return n.getCountername()})}var p,a=t(2);r.track=s,r.trackRegion=c,r.getCountername=f,r.log=i},function(n,r){n.exports=Morph.modules["bbc-morph-promise@1.0.6"]}]);; });</script><script>Morph.toInit.bundles.push(function() { !function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=46)}([function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){var r=n(13),a=n(29),o=n(18),i=Object.defineProperty;t.f=n(2)?Object.defineProperty:function(e,t,n){if(r(e),t=o(t,!0),r(n),a)try{return i(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){e.exports=!n(14)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){e.exports=React},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(61),a=n(62);e.exports=function(e){return r(a(e))}},function(e,t,n){function r(e){return null==e?void 0===e?l:u:c&&c in Object(e)?o(e):i(e)}var a=n(24),o=n(79),i=n(80),u="[object Null]",l="[object Undefined]",c=a?a.toStringTag:void 0;e.exports=r},function(e,t){function n(e){return null!=e&&"object"==typeof e}e.exports=n},function(e,t,n){n(27)("asyncIterator")},function(e,t){var n=e.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},function(e,t,n){var r=n(11),a=n(0),o=a["__core-js_shared__"]||(a["__core-js_shared__"]={});(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n(16)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(e,t,n){var r=n(6);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){"use strict";var r=n(0),a=n(3),o=n(2),i=n(54),u=n(31),l=n(58).KEY,c=n(14),f=n(12),s=n(59),d=n(5),p=n(17),g=n(28),b=n(27),h=n(60),y=n(66),v=n(13),m=n(6),_=n(7),w=n(18),x=n(20),O=n(67),j=n(70),E=n(71),k=n(1),S=n(21),z=E.f,P=k.f,N=j.f,C=r.Symbol,R=r.JSON,T=R&&R.stringify,q=p("_hidden"),D=p("toPrimitive"),M={}.propertyIsEnumerable,A=f("symbol-registry"),B=f("symbols"),L=f("op-symbols"),G=Object.prototype,I="function"==typeof C,F=r.QObject,W=!F||!F.prototype||!F.prototype.findChild,K=o&&c(function(){return 7!=O(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=z(G,t);r&&delete G[t],P(e,t,n),r&&e!==G&&P(G,t,r)}:P,U=function(e){var t=B[e]=O(C.prototype);return t._k=e,t},H=I&&"symbol"==typeof C.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof C},Z=function(e,t,n){return e===G&&Z(L,t,n),v(e),t=w(t,!0),v(n),a(B,t)?(n.enumerable?(a(e,q)&&e[q][t]&&(e[q][t]=!1),n=O(n,{enumerable:x(0,!1)})):(a(e,q)||P(e,q,x(1,{})),e[q][t]=!0),K(e,t,n)):P(e,t,n)},Y=function(e,t){v(e);for(var n,r=h(t=_(t)),a=0,o=r.length;o>a;)Z(e,n=r[a++],t[n]);return e},$=function(e,t){return void 0===t?O(e):Y(O(e),t)},J=function(e){var t=M.call(this,e=w(e,!0));return!(this===G&&a(B,e)&&!a(L,e))&&(!(t||!a(this,e)||!a(B,e)||a(this,q)&&this[q][e])||t)},V=function(e,t){if(e=_(e),t=w(t,!0),e!==G||!a(B,t)||a(L,t)){var n=z(e,t);return!n||!a(B,t)||a(e,q)&&e[q][t]||(n.enumerable=!0),n}},Q=function(e){for(var t,n=N(_(e)),r=[],o=0;n.length>o;)a(B,t=n[o++])||t==q||t==l||r.push(t);return r},X=function(e){for(var t,n=e===G,r=N(n?L:_(e)),o=[],i=0;r.length>i;)!a(B,t=r[i++])||n&&!a(G,t)||o.push(B[t]);return o};I||(C=function(){if(this instanceof C)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===G&&t.call(L,n),a(this,q)&&a(this[q],e)&&(this[q][e]=!1),K(this,e,x(1,n))};return o&&W&&K(G,e,{configurable:!0,set:t}),U(e)},u(C.prototype,"toString",function(){return this._k}),E.f=V,k.f=Z,n(37).f=j.f=Q,n(23).f=J,n(36).f=X,o&&!n(16)&&u(G,"propertyIsEnumerable",J,!0),g.f=function(e){return U(p(e))}),i(i.G+i.W+i.F*!I,{Symbol:C});for(var ee="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),te=0;ee.length>te;)p(ee[te++]);for(var ne=S(p.store),re=0;ne.length>re;)b(ne[re++]);i(i.S+i.F*!I,"Symbol",{for:function(e){return a(A,e+="")?A[e]:A[e]=C(e)},keyFor:function(e){if(!H(e))throw TypeError(e+" is not a symbol!");for(var t in A)if(A[t]===e)return t},useSetter:function(){W=!0},useSimple:function(){W=!1}}),i(i.S+i.F*!I,"Object",{create:$,defineProperty:Z,defineProperties:Y,getOwnPropertyDescriptor:V,getOwnPropertyNames:Q,getOwnPropertySymbols:X}),R&&i(i.S+i.F*(!I||c(function(){var e=C();return"[null]"!=T([e])||"{}"!=T({a:e})||"{}"!=T(Object(e))})),"JSON",{stringify:function(e){for(var t,n,r=[e],a=1;arguments.length>a;)r.push(arguments[a++]);if(n=t=r[1],(m(t)||void 0!==e)&&!H(e))return y(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!H(t))return t}),r[1]=t,T.apply(R,r)}}),C.prototype[D]||n(19)(C.prototype,D,C.prototype.valueOf),s(C,"Symbol"),s(Math,"Math",!0),s(r.JSON,"JSON",!0)},function(e,t){e.exports=!1},function(e,t,n){var r=n(12)("wks"),a=n(5),o=n(0).Symbol,i="function"==typeof o;(e.exports=function(e){return r[e]||(r[e]=i&&o[e]||(i?o:a)("Symbol."+e))}).store=r},function(e,t,n){var r=n(6);e.exports=function(e,t){if(!r(e))return e;var n,a;if(t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;if("function"==typeof(n=e.valueOf)&&!r(a=n.call(e)))return a;if(!t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){var r=n(1),a=n(20);e.exports=n(2)?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){var r=n(32),a=n(22);e.exports=Object.keys||function(e){return r(e,a)}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){var r=n(39),a=r.Symbol;e.exports=a},function(e,t){var n=Array.isArray;e.exports=n},function(e,t,n){function r(e){return null==e?"":a(e)}var a=n(111);e.exports=r},function(e,t,n){var r=n(0),a=n(11),o=n(16),i=n(28),u=n(1).f;e.exports=function(e){var t=a.Symbol||(a.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||u(t,e,{value:i.f(e)})}},function(e,t,n){t.f=n(17)},function(e,t,n){e.exports=!n(2)&&!n(14)(function(){return 7!=Object.defineProperty(n(30)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){var r=n(6),a=n(0).document,o=r(a)&&r(a.createElement);e.exports=function(e){return o?a.createElement(e):{}}},function(e,t,n){var r=n(0),a=n(19),o=n(3),i=n(5)("src"),u=n(55),l=(""+u).split("toString");n(11).inspectSource=function(e){return u.call(e)},(e.exports=function(e,t,n,u){var c="function"==typeof n;c&&(o(n,"name")||a(n,"name",t)),e[t]!==n&&(c&&(o(n,i)||a(n,i,e[t]?""+e[t]:l.join(String(t)))),e===r?e[t]=n:u?e[t]?e[t]=n:a(e,t,n):(delete e[t],a(e,t,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[i]||u.call(this)})},function(e,t,n){var r=n(3),a=n(7),o=n(63)(!1),i=n(35)("IE_PROTO");e.exports=function(e,t){var n,u=a(e),l=0,c=[];for(n in u)n!=i&&r(u,n)&&c.push(n);for(;t.length>l;)r(u,n=t[l++])&&(~o(c,n)||c.push(n));return c}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(12)("keys"),a=n(5);e.exports=function(e){return r[e]||(r[e]=a(e))}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var r=n(32),a=n(22).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,a)}},function(e,t,n){function r(e){return null!=e&&o(e.length)&&!a(e)}var a=n(77),o=n(42);e.exports=r},function(e,t,n){var r=n(40),a="object"==typeof self&&self&&self.Object===Object&&self,o=r||a||Function("return this")();e.exports=o},function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(t,n(78))},function(e,t){function n(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}e.exports=n},function(e,t){function n(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=r}var r=9007199254740991;e.exports=n},function(e,t,n){function r(e){return"symbol"==typeof e||o(e)&&a(e)==i}var a=n(8),o=n(9),i="[object Symbol]";e.exports=r},function(e,t){function n(e,t){for(var n=-1,r=null==e?0:e.length,a=Array(r);++n<r;)a[n]=t(e[n],n,e);return a}e.exports=n},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(47),a=n.n(r);Morph.modules["bbc-morph-bitesize-global-navigation-view@1.46.0"]=a.a},function(e,t,n){"use strict";e.exports=function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=9)}([function(e,t){e.exports=n(4)},function(e,t){e.exports=n(48)},function(e,t){e.exports=n(51)},function(e,t){e.exports=n(52)},function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r={"en-GB":{england:"England","northern-ireland":"Northern Ireland",scotland:"Scotland",wales:"Wales",home:"Home","daily-lessons":"Daily lessons","learn-revise":"Learn & revise",learn:"Learn",support:"Support",careers:"Careers","about-us":"About us","my-bitesize":"My Bitesize","all-bitesize":"All Bitesize",menu:"Menu",primary:"Primary",secondary:"Secondary","post-16":"Post-16",subjects:"Subjects",maths:"Maths",science:"Science",geography:"Geography",spanish:"Spanish",english:"English",history:"History",french:"French","63-more-subjects":"63 more subjects"},"cy-GB":{england:"Lloegr","northern-ireland":"Gogledd Iwerddon",scotland:"Yr Alban",wales:"Cymru",home:"Hafan","learn-revise":"Dysgu ac adolygu",support:"Cyngor",careers:"Gyrfaoedd","about-us":"Amdanom ni","my-bitesize":"Fy Bitesize","all-bitesize":"Pob pwnc",menu:"Dewislen",primary:"Cynradd",secondary:"Uwchradd","post-16":"Ôl 16",subjects:"Pynciau",maths:"Mathemateg",science:"Gwyddoniaeth",geography:"Daearyddiaeth",spanish:"Sbaeneg",english:"Saesneg",history:"Hanes",french:"Ffrangeg","all-subjects":"Pob pwnc...","63-more-subjects":"63 o bynciau eraill"},"ga-GB":{england:"Sasana","northern-ireland":"Tuaisceart Eireann",scotland:"Albain",wales:"An Bhreatain Bheag",home:"Baile","learn-revise":"Foghlaim",support:"Tacaíocht",careers:"Gairmeacha","about-us":"Fúinn","my-bitesize":"Mo Bitesize","all-bitesize":"Bitesize Uilig",menu:"Clàr",primary:"Bunoideachas",secondary:"Meánoideachas","post-16":"Iar-16",subjects:"Ábhair",maths:"Matamaitic",science:"Eolaíocht",geography:"Tíreolaíocht",spanish:"Spáinnis",english:"Béarla",history:"Stair",french:"Fraincis","63-more-subjects":"63 ábhar eile"},"gd-GB":{england:"Sasainn","northern-ireland":"Eirinn a Tuath",scotland:"Alba",wales:"A'Chuimrigh",home:"Dachaigh","learn-revise":"Ionnsaich",support:"Taic",careers:"Dreuchdan","about-us":"Mu ar deidhinn","my-bitesize":"Bitesize agamsa","all-bitesize":"Bitesize gu lèir",menu:"Roghchlár",primary:"Bun-sgoil",secondary:"Àrd-sgoil","post-16":"Nas sine na 16",subjects:"Cuspairean",maths:"Matamataig",science:"Saidheans",geography:"Cruinn-eòlas",spanish:"Spàinntis",english:"Beurla",history:"Eachdraidh",french:"Fraingis","63-more-subjects":"63 cuspairean a bharrachd"}};t.default=r,e.exports=t.default},function(e,t){e.exports=n(53)},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(2)),u=r(n(13)),l=r(n(5)),c=r(n(3)),f=r(n(7)),s=r(n(4)),d=function(e){return e.toLowerCase().replace(/[^\w]+/,"-")},p=function(e,t,n){return(0,u.default)([n,t],"/bitesize".concat(e.href))},g=function(e){var t=e.buckets,n=e.pageType,r=e.language,o=e.href,u=e.onClick,g=e.showDrawer,b=e.includeLanguageSelector,h=e.linkToHighlight;return c.default.initLocalisations({language:r,localisations:s.default}),a.default.createElement("ul",{className:"global-navigation__list"},t.map(function(e){var t=(0,i.default)("global-navigation__list__item",{"global-navigation__list__item--highlighted":p(e,o,h)});return a.default.createElement("li",{className:t,key:d(e.title)},a.default.createElement("a",{className:"global-navigation__list__link",href:"/bitesize".concat(e.href)},a.default.createElement("span",{className:"global-navigation__list__link-text"},c.default.localise(d(e.title)))))}),a.default.createElement("li",null,a.default.createElement("ul",{className:"global-navigation__list__items--pinned"},a.default.createElement("li",{className:(0,i.default)("global-navigation__list__item",{"global-navigation__list__item--highlighted":"my"===n}),key:"my-bitesize"},a.default.createElement("a",{className:"global-navigation__list__link",href:"/bitesize/my"},a.default.createElement("span",{className:(0,i.default)("global-navigation__list__link-my-bitesize",{"global-navigation__list__link-my-bitesize--no-border":g})},c.default.localise("my-bitesize")))),b&&a.default.createElement("li",{className:"global-navigation__list__item",key:"language-selector"},a.default.createElement(f.default,{language:r})),a.default.createElement("li",{className:"global-navigation__list__item global-navigation__list__item--pinned global-navigation__list__item--all-bitesize",key:"all-bitesize"},a.default.createElement("button",{type:"button",onClick:u,className:(0,i.default)("global-navigation__list__link--button","global-navigation__list__link--button--pinned",{"global-navigation__list__link--button--pinned--open":g}),"aria-live":"polite","aria-label":"Menu button, this menu is ".concat(g?"open":"closed")},a.default.createElement("span",{className:"gel-icon gel-icon--list-view"},a.default.createElement(l.default,null)),a.default.createElement("span",{className:"global-navigation__list__link-text"},c.default.localise("all-bitesize")))))))};g.defaultProps={pageType:"",language:"en-GB",includeLanguageSelector:!1,href:null,linkToHighlight:""},g.propTypes={buckets:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}).isRequired).isRequired,href:o.default.string,pageType:o.default.string,language:o.default.string,onClick:o.default.func.isRequired,showDrawer:o.default.bool.isRequired,includeLanguageSelector:o.default.bool,linkToHighlight:o.default.string};var b=g;t.default=b,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}function a(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return a=function(){return e},e}function o(e){"@babel/helpers - typeof";return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(){return i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i.apply(this,arguments)}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function c(e,t,n){return t&&l(e.prototype,t),n&&l(e,n),e}function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function d(e){var t=b();return function(){var n,r=h(e);if(t){var a=h(this).constructor;n=Reflect.construct(r,arguments,a)}else n=r.apply(this,arguments);return p(this,n)}}function p(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?g(e):t}function g(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function b(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function h(e){return(h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function y(e,t){return x(e)||w(e,t)||m(e,t)||v()}function v(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function m(e,t){if(e){if("string"==typeof e)return _(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_(e,t):void 0}}function _(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function w(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,a=!1,o=void 0;try{for(var i,u=e[Symbol.iterator]();!(r=(i=u.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){a=!0,o=e}finally{try{r||null==u.return||u.return()}finally{if(a)throw o}}return n}}function x(e){if(Array.isArray(e))return e}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var O=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==o(e)&&"function"!=typeof e)return{default:e};var t=a();if(t&&t.has(e))return t.get(e);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var u=r?Object.getOwnPropertyDescriptor(e,i):null;u&&(u.get||u.set)?Object.defineProperty(n,i,u):n[i]=e[i]}return n.default=e,t&&t.set(e,n),n}(n(0)),j=r(n(1)),E=r(n(2)),k=r(n(14)),S=r(n(15)),z=function(){var e=new Date;return e.setYear(e.getFullYear()+1),e},P=function(e,t){var n=window.bbccookies._getCurrentDomain()||".bbc.co.uk";n="."===n.charAt(0)?n:".".concat(n),window.bbccookies.set(e,t,{path:"/",domain:n,expires:z()})},N=function(e){P("ckps_kl_lang",e),window.location.reload(!0)},C=function(e){return y(k.default.filter(function(t){return t.languageCode===e}),1)[0]||k.default[0]},R=function(e){function t(){var e;return u(this,t),e=n.call(this),e.state={showLanguages:!1},e.close=e.close.bind(g(e)),e.closeClickEvent=e.closeClickEvent.bind(g(e)),e.toggle=e.toggle.bind(g(e)),e.handleKeyPress=e.handleKeyPress.bind(g(e)),e.handleFocusOut=e.handleFocusOut.bind(g(e)),e}f(t,e);var n=d(t);return c(t,[{key:"componentDidMount",value:function(){document.addEventListener("keydown",this.handleKeyPress),document.addEventListener("mousedown",this.closeClickEvent),document.addEventListener("touchstart",this.closeClickEvent),document.addEventListener("focusout",this.handleFocusOut)}},{key:"componentWillUnmount",value:function(){document.removeEventListener("keydown",this.handleKeyPress),document.removeEventListener("mousedown",this.closeClickEvent),document.removeEventListener("touchstart",this.closeClickEvent),document.removeEventListener("focusout",this.handleFocusOut)}},{key:"closeClickEvent",value:function(e){this.state.showLanguages&&!this.languageSelector.contains(e.target)&&this.setState({showLanguages:!1})}},{key:"handleFocusOut",value:function(e){this.closeClickEvent({target:e.relatedTarget||e.target})}},{key:"handleKeyPress",value:function(e){27===e.keyCode&&this.setState({showLanguages:!1})}},{key:"close",value:function(){this.setState({showLanguages:!1})}},{key:"toggle",value:function(){this.setState(function(e){return{showLanguages:!e.showLanguages}})}},{key:"render",value:function(){var e=this,t=this.props,n=t.language,r=t.className,a=this.state.showLanguages,o=C(n),u=k.default.filter(function(e){return e.languageCode!==o.languageCode});return O.default.createElement("div",{className:(0,E.default)("global-language-selector",r),ref:function(t){e.languageSelector=t}},O.default.createElement("button",{type:"button",onClick:this.toggle,className:"global-language-selector__drawer ".concat(a?"global-language-selector__drawer--open":"global-language-selector__drawer--closed")},O.default.createElement("span",{className:"global-language-selector__drawer-text"},o.languageLabel)),O.default.createElement("div",{className:(0,E.default)("global-language-selector__container",{"global-language-selector__container--hidden":!a})},O.default.createElement("ol",{className:"global-language-selector__list"},O.default.createElement(S.default,i({},o,{onClick:N,selected:!0})),u.map(function(e){return O.default.createElement(S.default,i({key:"".concat(e.languageCode)},e,{onClick:N}))}))))}}]),t}(O.Component);R.defaultProps={language:"en-GB",className:""},R.propTypes={language:j.default.string,className:j.default.string};var T=R;t.default=T,e.exports=t.default},function(e,t){e.exports={buckets:[{title:"Home",href:""},{title:"learn-revise",href:"/learn"},{title:"Support",href:"/support"},{title:"Careers",href:"/careers"}],englishBuckets:[{title:"Home",href:""},{title:"daily-lessons",href:"/dailylessons"},{title:"Learn",href:"/learn"},{title:"Support",href:"/support"},{title:"Careers",href:"/careers"}],mobileBuckets:[{title:"Home",href:""},{title:"learn-revise",href:"/learn"},{title:"Support",href:"/support"},{title:"Careers",href:"/careers"},{title:"about-us",href:"/articles/z6x992p"}],mobileEnglishBuckets:[{title:"Home",href:""},{title:"daily-lessons",href:"/dailylessons"},{title:"Learn",href:"/learn"},{title:"Support",href:"/support"},{title:"Careers",href:"/careers"},{title:"about-us",href:"/articles/z6x992p"}],pinned:{title:"My Bitesize",href:"/my"},allBitesize:[{section:"Primary",regions:[{region:"England",aria:"English curriculum",content:[{title:"KS1",href:"/levels/z3g4d2p",zid:"z3g4d2p",aria:"Key Stage one England"},{title:"KS2",href:"/levels/zbr9wmn",zid:"zbr9wmn",aria:"Key Stage two England"}]},{region:"Northern Ireland",aria:"Northern Irish curriculum",content:[{title:"Foundation Stage",href:"/levels/znyh7nb",zid:"znyh7nb",aria:"Foundation Stage"},{title:"KS1",href:"/levels/z3g4d2p",zid:"z3g4d2p",aria:"Key Stage one Northern Ireland"},{title:"KS2",href:"/levels/zjmj92p",zid:"zjmj92p",aria:"Key Stage two Northern Ireland"}]},{region:"Scotland",aria:"Scottish curriculum",content:[{title:"Early level",href:"/levels/zf7hgwx",zid:"zf7hgwx",aria:"Early level"},{title:"1st level",href:"/levels/zgckjxs",zid:"zgckjxs",aria:"First level"},{title:"2nd Level",href:"/levels/zr48q6f",zid:"zr48q6f",aria:"Second level"},{title:"A' Chiad Ìre ",href:"/levels/zk3xy9q",zid:"zk3xy9q",aria:"A' Chiad Ìre "},{title:"An Dàrna Ìre",href:"/levels/z4y2scw",zid:"z4y2scw",aria:"An Dàrna Ìre"}]},{region:"Wales",aria:"Welsh curriculum",content:[{title:"Foundation Phase",href:"/levels/zxybmsg",zid:"zxybmsg",aria:"Foundation phase"},{title:"KS2",href:"/levels/zbr9wmn",zid:"zbr9wmn",aria:"Key Stage two Wales"},{title:"Cyfnod Sylfaen",href:"/levels/z4js6v4",zid:"z4js6v4",aria:"Cyfnod Sylfaen"},{title:"CA2",href:"/levels/zbpwt39",zid:"zbpwt39",aria:"CA2"}]}]},{section:"Secondary",regions:[{region:"England",aria:"English curriculum",content:[{title:"KS3",href:"/levels/z4kw2hv",zid:"z4kw2hv",aria:"Key Stage three England"},{title:"GCSE",href:"/levels/z98jmp3",zid:"z98jmp3",aria:"GCSE England"}]},{region:"Northern Ireland",aria:"Northern Irish curriculum",content:[{title:"KS3",href:"/levels/z4kw2hv",zid:"z4kw2hv",aria:"Key Stage three Northern Ireland"},{title:"GCSE",href:"/levels/z98jmp3",zid:"z98jmp3",aria:"GCSE Northern Ireland"}]},{region:"Scotland",aria:"Scottish curriculum",content:[{title:"3rd level",href:"/levels/zy4qn39",zid:"zy4qn39",aria:"Third level"},{title:"4th level",href:"/levels/zvk2fg8",zid:"zvk2fg8",aria:"Fourth level"},{title:"Nàiseanta 4",href:"/levels/z8hhvcw",zid:"z8hhvcw",aria:"Naiseanta four"},{title:"Nàiseanta 5",href:"/levels/zdpp34j",zid:"zdpp34j",aria:"Naiseanta five"},{title:"National 4",href:"/levels/zp3d7ty",zid:"zp3d7ty",aria:"National four"},{title:"National 5",href:"/levels/z6gw2hv",zid:"z6gw2hv",aria:"National five"},{title:"Àrd Ìre",href:"/levels/zqq4wxs",zid:"zqq4wxs",aria:"Ard Ire"},{title:"Higher",href:"/levels/zkdqxnb",zid:"zkdqxnb",aria:"Higher Scotland"}]},{region:"Wales",aria:"Welsh curriculum",content:[{title:"CA3",href:"/levels/zh6vr82",zid:"zh6vr82",aria:"CA3"},{title:"KS3",href:"/levels/z4kw2hv",zid:"z4kw2hv",aria:"Key Stage three Wales"},{title:"CBC",href:"/levels/zqxy8mn",zid:"zqxy8mn",aria:"CBC"},{title:"GCSE",href:"/levels/z98jmp3",zid:"z98jmp3",aria:"GCSE Wales"},{title:"TGAU",href:"/levels/z8w76sg",zid:"z8w76sg",aria:"TGAU"},{title:"WBQ",href:"/levels/z9wtgdm",zid:"z9wtgdm",aria:"WBQ"}]}]},{section:"Post-16",regions:[{region:"England",aria:"English curriculum",content:[{title:"Functional Skills",href:"/levels/zvhtng8",zid:"",aria:"Functional Skills levels one and two"}]},{region:"Northern Ireland",aria:"Northern Irish curriculum",content:[]},{region:"Scotland",aria:"Scottish curriculum",content:[{title:"Core Skills",href:"/levels/z66jhbk",zid:"z66jhbk",aria:"Core skills level three"}]},{region:"Wales",aria:"Welsh curriculum",content:[{title:"Essential Skills",href:"/levels/zhh7nrd",zid:"zhh7nrd",aria:"Essential skills levels one and two"}]}]},{section:"Subjects",regions:[{region:"",aria:"",content:[{title:"Maths",href:"/subjects/z6vg9j6",zid:"z6vg9j6",aria:"Maths"},{title:"English",href:"/subjects/zt3rkqt",zid:"zt3rkqt",aria:"English"}]},{region:"",aria:"",content:[{title:"Science",href:"/subjects/z7nygk7",zid:"z7nygk7",aria:"Science"},{title:"Cymraeg",href:"/subjects/zf48q6f",zid:"zf48q6f",aria:"Cymraeg"}]},{region:"",aria:"",content:[{title:"Gàidhlig",href:"/subjects/zgj2tfr",zid:"zgj2tfr",aria:"Gàidhlig"},{title:"63 more subjects",href:"/subjects/",zid:"",aria:"63 more subjects"}]}]},{section:"Support",href:"/support",aria:"Support"},{section:"Careers",href:"/careers",aria:"Careers"},{section:"about-us",href:"/articles/z6x992p",aria:"About us"}]}},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(10)),u=r(n(8)),l=function(e){var t=e.language,n=e.href,r=e.pageType,o=e.phase,l=e.headerData;return a.default.createElement(i.default,{language:t,href:n,pageType:r,phase:o,headerData:l,navigationData:u.default,subdirectory:"bitesize"})};l.defaultProps={headerData:{}},l.propTypes={language:o.default.string.isRequired,href:o.default.string.isRequired,pageType:o.default.string.isRequired,phase:o.default.string.isRequired,headerData:o.default.shape({title:o.default.string.isRequired,children:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired})).isRequired})};var c=l;t.default=c,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}function a(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return a=function(){return e},e}function o(e){"@babel/helpers - typeof";return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function l(e,t,n){return t&&u(e.prototype,t),n&&u(e,n),e}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&f(e,t)}function f(e,t){return(f=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e){var t=g();return function(){var n,r=b(e);if(t){var a=b(this).constructor;n=Reflect.construct(r,arguments,a)}else n=r.apply(this,arguments);return d(this,n)}}function d(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?p(e):t}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function g(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function b(e){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var h=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==o(e)&&"function"!=typeof e)return{default:e};var t=a();if(t&&t.has(e))return t.get(e);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var u=r?Object.getOwnPropertyDescriptor(e,i):null;u&&(u.get||u.set)?Object.defineProperty(n,i,u):n[i]=e[i]}return n.default=e,t&&t.set(e,n),n}(n(0)),y=r(n(1)),v=r(n(11)),m=r(n(19)),_=n(25),w=function(e){function t(e){var r;return i(this,t),r=n.call(this,e),r.state={showDrawer:!1},r.toggleDrawer=r.toggleDrawer.bind(p(r)),r}c(t,e);var n=s(t);return l(t,[{key:"componentDidMount",value:function(){var e=document.querySelector(".global-navigation__header__logo__link");null!==e&&e.addEventListener("animationend",function(e){e.target.classList.remove("global-navigation__header__logo__link--animate"),e.target.classList.remove("global-navigation__header__logo__link--delay-animation")})}},{key:"toggleDrawer",value:function(){document.body.classList.toggle("drawer-open"),this.setState(function(e){return{showDrawer:!e.showDrawer}})}},{key:"render",value:function(){var e=this.props,t=e.pageType,n=e.language,r=e.subdirectory,a=e.navigationData,o=e.href,i=e.phase,u=e.headerData,l=this.state.showDrawer;return h.default.createElement("div",{className:"global-navigation"},h.default.createElement(v.default,{buckets:(0,_.MobileBucketProvider)(n),pageType:t,href:o,language:n,subdirectory:r,onClick:this.toggleDrawer,showDrawer:l,phase:i,headerData:u}),h.default.createElement(m.default,{allBitesize:a.allBitesize,buckets:(0,_.BucketProvider)(n),href:o,pageType:t,language:n,subdirectory:r,onClick:this.toggleDrawer,showDrawer:l,headerData:u}))}}]),t}(h.Component);w.defaultProps={pageType:"",href:"",subdirectory:"bitesize",language:"en-GB",phase:"",headerData:{href:null}},w.propTypes={navigationData:y.default.shape({allBitesize:y.default.arrayOf({}),buckets:y.default.arrayOf(y.default.shape({title:y.default.string.isRequired,href:y.default.string.isRequired}).isRequired).isRequired,mobileBuckets:y.default.arrayOf(y.default.shape({title:y.default.string.isRequired,href:y.default.string.isRequired}).isRequired).isRequired}).isRequired,href:y.default.string,pageType:y.default.string,subdirectory:y.default.string,language:y.default.string,phase:y.default.string,headerData:y.default.shape({href:y.default.string,title:y.default.string.isRequired,children:y.default.arrayOf(y.default.shape({title:y.default.string.isRequired,href:y.default.string.isRequired})).isRequired})};var x=w;t.default=x,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(5)),u=r(n(3)),l=r(n(2)),c=r(n(4)),f=r(n(12)),s=function(e){var t=e.buckets,n=e.pageType,r=e.href,o=e.language,s=e.subdirectory,d=e.onClick,p=e.showDrawer,g=e.phase,b=e.headerData;return u.default.initLocalisations({language:o,localisations:c.default}),a.default.createElement("header",{className:"global-navigation__header"},a.default.createElement("div",{className:"global-navigation__header__wrap"},a.default.createElement("span",{className:"global-navigation__header__logo",tabIndex:"-1"},a.default.createElement("a",{className:"global-navigation__header__logo__link--animate global-navigation__header__logo__link--delay-animation ".concat(g?"global-navigation__header__logo__link global-navigation__header__logo__link--phase-".concat(g.toLowerCase()):"global-navigation__header__logo__link"),href:"/".concat(s),onMouseEnter:function(e){e.target.classList.add("global-navigation__header__logo__link--animate")}},"Bitesize")),a.default.createElement("button",{type:"button",className:(0,l.default)("global-navigation__header__menu-button",{"global-navigation__header__menu-button-active":p}),onClick:function(){return d()},"aria-label":"Open menu"},a.default.createElement("i",{className:"gel-icon gel-icon--list-view global-navigation__header__menu-button__list-view"},a.default.createElement(i.default,null)),a.default.createElement("span",{className:"global-navigation__header__menu-button__text"},u.default.localise("all-bitesize"))),a.default.createElement(f.default,{href:r,buckets:t,pageType:n,language:o,subdirectory:s,showDrawer:p,onClick:d,headerData:b})))};s.displayName="Header",s.defaultProps={href:"",language:"en-GB",pageType:"",phase:"",showDrawer:!1,subdirectory:"bitesize",headerData:{}},s.propTypes={buckets:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}).isRequired).isRequired,href:o.default.string,language:o.default.string,onClick:o.default.func.isRequired,pageType:o.default.string,phase:o.default.string,showDrawer:o.default.bool,subdirectory:o.default.string,headerData:o.default.shape({title:o.default.string.isRequired,children:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired})).isRequired})};var d=s;t.default=d,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(6)),u=r(n(17)),l=function(e){return e&&"title"in e&&"children"in e&&e.children.length>0},c=function(e){var t=e.showDrawer,n=e.buckets,r=e.pageType,o=e.language,c=e.href,f=e.onClick,s=e.headerData;return a.default.createElement("div",{className:"global-navigation__mobile-nav"},t&&a.default.createElement("div",{className:"global-navigation__mobile-nav__drawer"},a.default.createElement(i.default,{buckets:n,pageType:r,language:o,href:c,onClick:f,showDrawer:t,linkToHighlight:s?s.href:null,includeLanguageSelector:!0})),l(s)&&a.default.createElement(u.default,{submenu:s,currentPage:c}))};c.defaultProps={pageType:"",language:"en-GB",showDrawer:!1,href:null,headerData:{href:null}},c.propTypes={buckets:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}).isRequired).isRequired,pageType:o.default.string,language:o.default.string,showDrawer:o.default.bool,onClick:o.default.func.isRequired,href:o.default.string,headerData:o.default.shape({href:o.default.string,title:o.default.string.isRequired,children:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired})).isRequired})};var f=c;t.default=f,e.exports=t.default},function(e,t){e.exports=n(72)},function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=[{languageCode:"en-GB",languageLabel:"Change language",label:"English"},{languageCode:"cy-GB",languageLabel:"Newid iaith",label:"Cymraeg"},{languageCode:"ga-GB",languageLabel:"Athraigh teanga",label:"Gaeilge"},{languageCode:"gd-GB",languageLabel:"Atharraich cànan",label:"Gàidhlig"}];t.default=r,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(2)),u=r(n(16)),l=function(e){var t=e.label,n=e.onClick,r=e.languageCode,o=e.selected;return a.default.createElement("li",{key:r,className:(0,i.default)("global-language-selector__language",{"global-language-selector__language--selected":o})},a.default.createElement("button",{type:"button",tabIndex:"0",lang:r,className:"global-language-selector__language-link",onClick:function(){return n(r)},"aria-label":o?"".concat(t,", selected"):t},a.default.createElement("span",{className:"global-language-selector__language-label",lang:r},t),o&&a.default.createElement("span",{className:"global-language-selector__icon-yes gel-icon gel-icon--yes"},a.default.createElement(u.default,null))))};l.defaultProps={selected:!1},l.propTypes={label:o.default.string.isRequired,onClick:o.default.func.isRequired,languageCode:o.default.string.isRequired,selected:o.default.bool};var c=l;t.default=c,e.exports=t.default},function(e,t){e.exports=n(103)},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}function a(e){"@babel/helpers - typeof";return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function u(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&c(e,t)}function c(e,t){return(c=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function f(e){var t=p();return function(){var n,r=g(e);if(t){var a=g(this).constructor;n=Reflect.construct(r,arguments,a)}else n=r.apply(this,arguments);return s(this,n)}}function s(e,t){return!t||"object"!==a(t)&&"function"!=typeof t?d(e):t}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function g(e){return(g=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var b=r(n(0)),h=r(n(1)),y=r(n(2)),v=r(n(18)),m=function(e){function t(e){var r;return o(this,t),r=n.call(this,e),r.toggleClick=r.toggleClick.bind(d(r)),r.state={isExpanded:!1},r}l(t,e);var n=f(t);return u(t,[{key:"toggleClick",value:function(){this.setState(function(e){return{isExpanded:!e.isExpanded}})}},{key:"render",value:function(){var e=this.props,t=e.submenu,n=t.title,r=t.children,a=e.currentPage,o=this.state.isExpanded;return b.default.createElement("nav",{className:(0,y.default)("global-navigation__mobile-sub-nav",{"global-navigation__mobile-sub-nav--expanded":o})},b.default.createElement("h3",{className:"global-navigation__mobile-sub-nav-title"},b.default.createElement("button",{type:"button",className:"global-navigation__mobile-sub-nav__toggle",onClick:this.toggleClick,"aria-expanded":o,"aria-controls":"mobile-sub-nav-menu"},b.default.createElement("span",{className:"global-navigation__mobile-sub-nav-title__text"},n),b.default.createElement("span",{className:"global-navigation__chevron__down-svg"},b.default.createElement(v.default,null)))),b.default.createElement("ul",{id:"mobile-sub-nav-menu",className:"global-navigation__mobile-sub-nav-menu",hidden:!o},r.map(function(e){var t=e.title,n=e.href,r=a===n;return b.default.createElement("li",{key:t,className:(0,y.default)("global-navigation__mobile-sub-nav-menu-item",{"global-navigation__mobile-sub-nav-menu-item--highlighted":r})},b.default.createElement("a",{className:"global-navigation__mobile-sub-nav-menu-link",href:n,"data-bbc-container":"global-navigation","aria-current":r?"page":null},t))})))}}]),t}(b.default.Component);m.displayName="MobileSubNav",m.propTypes={submenu:h.default.shape({title:h.default.string.isRequired,children:h.default.arrayOf(h.default.shape({title:h.default.string.isRequired,href:h.default.string.isRequired})).isRequired}).isRequired,currentPage:h.default.string.isRequired};var _=m;t.default=_,e.exports=t.default},function(e,t){e.exports=n(104)},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(20)),u=r(n(6)),l=r(n(7)),c=r(n(24)),f=function(e){return e&&"title"in e&&"children"in e&&e.children.length>0},s=function(e){var t=e.allBitesize,n=e.buckets,r=e.pageType,o=e.language,s=e.subdirectory,d=e.onClick,p=e.showDrawer,g=e.href,b=e.headerData;return a.default.createElement("nav",{className:"global-navigation__primary-nav"},a.default.createElement("div",{className:"global-navigation__primary-nav__wrap"},a.default.createElement(l.default,{language:o}),a.default.createElement(u.default,{buckets:n,pageType:r,language:o,subdirectory:s,onClick:d,showDrawer:p,href:g,linkToHighlight:b?b.href:null})),p&&a.default.createElement(i.default,{language:o,allBitesize:t,subdirectory:s}),f(b)&&a.default.createElement("div",{className:"global-navigation__sub-nav-wrap"},a.default.createElement(c.default,{currentPage:g,submenu:b})))};s.displayName="PrimaryNav",s.defaultProps={pageType:"",subdirectory:"bitesize",language:"en-GB",showDrawer:!1,href:"",headerData:{href:null}},s.propTypes={allBitesize:o.default.arrayOf(o.default.shape({section:o.default.string.isRequired,content:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}))})).isRequired,buckets:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}).isRequired).isRequired,href:o.default.string,pageType:o.default.string,subdirectory:o.default.string,language:o.default.string,onClick:o.default.func.isRequired,showDrawer:o.default.bool,headerData:o.default.shape({href:o.default.string,title:o.default.string.isRequired,children:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired})).isRequired})};var d=s;t.default=d,e.exports=t.default},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(21)),u=r(n(22)),l=r(n(23)),c=r(n(3)),f=r(n(4)),s=function(e){return e.toLowerCase().replace(/[^\w]+/g,"-")},d=function(e){var t=e.className,n=e.allBitesize,r=e.subdirectory,o=e.language;return c.default.initLocalisations({language:o,localisations:f.default}),a.default.createElement("div",{className:t},a.default.createElement("div",{className:"global-navigation__drawer__content"},a.default.createElement("ul",{className:"global-navigation__drawer__content-list global-navigation__drawer__content-list--primary-list"},n.map(function(e){return e.href?a.default.createElement("li",{key:(0,u.default)((0,i.default)(e.section)),className:"global-navigation__drawer__content-primary-list-item global-navigation__drawer__content-primary-list-item--clickable"},a.default.createElement("a",{className:"global-navigation__drawer__content-primary-list-item__link",href:"/".concat(r).concat(e.href),"aria-label":e.aria},a.default.createElement("h2",{className:"global-navigation__drawer__content-primary-list-item__link__header"},c.default.localise(s(e.section)),a.default.createElement(l.default,null)))):a.default.createElement("li",{key:(0,i.default)(e.section),className:"global-navigation__drawer__content-primary-list-item"},a.default.createElement("h2",{className:"global-navigation__drawer__content-primary-list-item__header"},c.default.localise(s(e.section))),a.default.createElement("ul",{className:"global-navigation__drawer__content-list global-navigation__drawer__content-list--secondary-list"},e.regions.map(function(e){return a.default.createElement("li",{key:(0,u.default)((0,i.default)(e.region)),className:"global-navigation__drawer__content-secondary-list-item-container"},a.default.createElement("h3",{"aria-label":e.aria,className:"global-navigation__drawer__content-secondary-list-item__header"},c.default.localise(s(e.region))),a.default.createElement("ul",{className:"global-navigation__drawer__content-list global-navigation__drawer__content-list--tertiary-list"},e.content.map(function(t){return a.default.createElement("li",{className:"global-navigation__drawer__content-tertiary-list-item",key:(0,u.default)(t.zid)},a.default.createElement("a",{className:"global-navigation__drawer__content-tertiary-list-item__link",href:"/".concat(r).concat(t.href),"aria-label":t.aria?t.aria:"".concat(t.title," ").concat(e.region)},a.default.createElement("p",{className:"global-navigation__drawer__content-tertiary-list-item__text-container"},a.default.createElement("span",{className:"global-navigation__drawer__content-tertiary-list-item__text"},c.default.localise(s(t.title))||t.title))))})))})))}))))};d.defaultProps={className:"global-navigation__drawer",allBitesize:[],subdirectory:"bitesize",language:"en-GB"},d.propTypes={className:o.default.string,allBitesize:o.default.arrayOf(o.default.shape({section:o.default.string.isRequired,content:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired}))})),subdirectory:o.default.string,language:o.default.string};var p=d;t.default=p,e.exports=t.default},function(e,t){e.exports=n(105)},function(e,t){e.exports=n(116)},function(e,t){e.exports=n(117)},function(e,t,n){function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(0)),o=r(n(1)),i=r(n(2)),u=function(e){var t=e.submenu.children,n=e.currentPage;return a.default.createElement("nav",{className:"global-navigation__sub-nav"},a.default.createElement("ul",{className:"global-navigation__sub-nav__menu"},t.map(function(e){var t=e.title,r=e.href,o=n===r;return a.default.createElement("li",{key:t,className:(0,i.default)("global-navigation__sub-nav__menu__item",{"global-navigation__sub-nav__menu__item--selected":o})},a.default.createElement("a",{className:"global-navigation__sub-nav__menu__link",href:r,"data-bbc-container":"global-navigation","aria-current":o?"page":null},t))})))};u.displayName="SubNav",u.propTypes={submenu:o.default.shape({title:o.default.string.isRequired,children:o.default.arrayOf(o.default.shape({title:o.default.string.isRequired,href:o.default.string.isRequired})).isRequired}).isRequired,currentPage:o.default.string.isRequired};var l=u;t.default=l,e.exports=t.default},function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),t.MobileBucketProvider=t.BucketProvider=void 0;var r=function(e){return e&&e.__esModule?e:{default:e}}(n(8)),a=function(e){return"en-GB"===e?r.default.englishBuckets:r.default.buckets};t.BucketProvider=a;var o=function(e){return"en-GB"===e?r.default.mobileEnglishBuckets:r.default.mobileBuckets};t.MobileBucketProvider=o}])},function(e,t,n){e.exports=n(49)()},function(e,t,n){"use strict";function r(){}function a(){}var o=n(50);a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,i){if(i!==o){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){var r,a;!function(){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var a=typeof r;if("string"===a||"number"===a)e.push(r);else if(Array.isArray(r)&&r.length){var i=n.apply(null,r);i&&e.push(i)}else if("object"===a)for(var u in r)o.call(r,u)&&r[u]&&e.push(u)}}return e.join(" ")}var o={}.hasOwnProperty;void 0!==e&&e.exports?(n.default=n,e.exports=n):(r=[],void 0!==(a=function(){return n}.apply(t,r))&&(e.exports=a))}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,a=["en-GB","ga-GB","gd-GB","cy-GB"],o="en-GB",i=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var a=function(e,t){return void 0!==n[t]?n[t]:e};return e.replace(/{(\d+)}/g,a)},u=function(e){var t=e.language,n=e.localisations;a.indexOf(t)>=0&&(o=t),n&&(r=n)},l=function(){return o},c=function(e){if(!r)throw new Error("No localisation data has been set.");if(!r[o])return"";for(var t=r[o][e],n=arguments.length,a=new Array(n>1?n-1:0),u=1;u<n;u++)a[u-1]=arguments[u];return a.length>0?i.apply(void 0,[t].concat(a)):t},f={initLocalisations:u,getLocale:l,localise:c};t.default=f,e.exports=t.default},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}function u(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?l(e):t}function l(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,n(10),n(15);var d=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t.default=e,t}(n(4)),p=function(e){function t(){return a(this,t),u(this,c(t).apply(this,arguments))}return f(t,e),i(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.svg=t}},d.default.createElement("path",{d:"M0 0v8h32V0zM0 17v3h32v-8H0zM0 29v3h32v-8H0z"}))}}]),t}(d.Component),g=p;t.default=g,e.exports=t.default},function(e,t,n){var r=n(0),a=n(11),o=n(19),i=n(31),u=n(56),l=function(e,t,n){var c,f,s,d,p=e&l.F,g=e&l.G,b=e&l.S,h=e&l.P,y=e&l.B,v=g?r:b?r[t]||(r[t]={}):(r[t]||{}).prototype,m=g?a:a[t]||(a[t]={}),_=m.prototype||(m.prototype={});g&&(n=t);for(c in n)f=!p&&v&&void 0!==v[c],s=(f?v:n)[c],d=y&&f?u(s,r):h&&"function"==typeof s?u(Function.call,s):s,v&&i(v,c,s,e&l.U),m[c]!=s&&o(m,c,d),h&&_[c]!=s&&(_[c]=s)};r.core=a,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t,n){e.exports=n(12)("native-function-to-string",Function.toString)},function(e,t,n){var r=n(57);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,a){return e.call(t,n,r,a)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){var r=n(5)("meta"),a=n(6),o=n(3),i=n(1).f,u=0,l=Object.isExtensible||function(){return!0},c=!n(14)(function(){return l(Object.preventExtensions({}))}),f=function(e){i(e,r,{value:{i:"O"+ ++u,w:{}}})},s=function(e,t){if(!a(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!o(e,r)){if(!l(e))return"F";if(!t)return"E";f(e)}return e[r].i},d=function(e,t){if(!o(e,r)){if(!l(e))return!0;if(!t)return!1;f(e)}return e[r].w},p=function(e){return c&&g.NEED&&l(e)&&!o(e,r)&&f(e),e},g=e.exports={KEY:r,NEED:!1,fastKey:s,getWeak:d,onFreeze:p}},function(e,t,n){var r=n(1).f,a=n(3),o=n(17)("toStringTag");e.exports=function(e,t,n){e&&!a(e=n?e:e.prototype,o)&&r(e,o,{configurable:!0,value:t})}},function(e,t,n){var r=n(21),a=n(36),o=n(23);e.exports=function(e){var t=r(e),n=a.f;if(n)for(var i,u=n(e),l=o.f,c=0;u.length>c;)l.call(e,i=u[c++])&&t.push(i);return t}},function(e,t,n){var r=n(33);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){var r=n(7),a=n(64),o=n(65);e.exports=function(e){return function(t,n,i){var u,l=r(t),c=a(l.length),f=o(i,c);if(e&&n!=n){for(;c>f;)if((u=l[f++])!=u)return!0}else for(;c>f;f++)if((e||f in l)&&l[f]===n)return e||f||0;return!e&&-1}}},function(e,t,n){var r=n(34),a=Math.min;e.exports=function(e){return e>0?a(r(e),9007199254740991):0}},function(e,t,n){var r=n(34),a=Math.max,o=Math.min;e.exports=function(e,t){return e=r(e),e<0?a(e+t,0):o(e,t)}},function(e,t,n){var r=n(33);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(13),a=n(68),o=n(22),i=n(35)("IE_PROTO"),u=function(){},l=function(){var e,t=n(30)("iframe"),r=o.length;for(t.style.display="none",n(69).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write("<script>document.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l.prototype[o[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(u.prototype=r(e),n=new u,u.prototype=null,n[i]=e):n=l(),void 0===t?n:a(n,t)}},function(e,t,n){var r=n(1),a=n(13),o=n(21);e.exports=n(2)?Object.defineProperties:function(e,t){a(e);for(var n,i=o(t),u=i.length,l=0;u>l;)r.f(e,n=i[l++],t[n]);return e}},function(e,t,n){var r=n(0).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(7),a=n(37).f,o={}.toString,i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],u=function(e){try{return a(e)}catch(e){return i.slice()}};e.exports.f=function(e){return i&&"[object Window]"==o.call(e)?u(e):a(r(e))}},function(e,t,n){var r=n(23),a=n(20),o=n(7),i=n(18),u=n(3),l=n(29),c=Object.getOwnPropertyDescriptor;t.f=n(2)?c:function(e,t){if(e=o(e),t=i(t,!0),l)try{return c(e,t)}catch(e){}if(u(e,t))return a(!r.f.call(e,t),e[t])}},function(e,t,n){function r(e,t,n,r){e=o(e)?e:l(e),n=n&&!r?u(n):0;var f=e.length;return n<0&&(n=c(f+n,0)),i(e)?n<=f&&e.indexOf(t,n)>-1:!!f&&a(e,t,n)>-1}var a=n(73),o=n(38),i=n(81),u=n(82),l=n(85),c=Math.max;e.exports=r},function(e,t,n){function r(e,t,n){return t===t?i(e,t,n):a(e,o,n)}var a=n(74),o=n(75),i=n(76);e.exports=r},function(e,t){function n(e,t,n,r){for(var a=e.length,o=n+(r?1:-1);r?o--:++o<a;)if(t(e[o],o,e))return o;return-1}e.exports=n},function(e,t){function n(e){return e!==e}e.exports=n},function(e,t){function n(e,t,n){for(var r=n-1,a=e.length;++r<a;)if(e[r]===t)return r;return-1}e.exports=n},function(e,t,n){function r(e){if(!o(e))return!1;var t=a(e);return t==u||t==l||t==i||t==c}var a=n(8),o=n(41),i="[object AsyncFunction]",u="[object Function]",l="[object GeneratorFunction]",c="[object Proxy]";e.exports=r},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){function r(e){var t=i.call(e,l),n=e[l];try{e[l]=void 0;var r=!0}catch(e){}var a=u.call(e);return r&&(t?e[l]=n:delete e[l]),a}var a=n(24),o=Object.prototype,i=o.hasOwnProperty,u=o.toString,l=a?a.toStringTag:void 0;e.exports=r},function(e,t){function n(e){return a.call(e)}var r=Object.prototype,a=r.toString;e.exports=n},function(e,t,n){function r(e){return"string"==typeof e||!o(e)&&i(e)&&a(e)==u}var a=n(8),o=n(25),i=n(9),u="[object String]";e.exports=r},function(e,t,n){function r(e){var t=a(e),n=t%1;return t===t?n?t-n:t:0}var a=n(83);e.exports=r},function(e,t,n){function r(e){return e?(e=a(e))===o||e===-o?(e<0?-1:1)*i:e===e?e:0:0===e?e:0}var a=n(84),o=1/0,i=1.7976931348623157e308;e.exports=r},function(e,t,n){function r(e){if("number"==typeof e)return e;if(o(e))return i;if(a(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=a(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(u,"");var n=c.test(e);return n||f.test(e)?s(e.slice(2),n?2:8):l.test(e)?i:+e}var a=n(41),o=n(43),i=NaN,u=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,f=/^0o[0-7]+$/i,s=parseInt;e.exports=r},function(e,t,n){function r(e){return null==e?[]:a(e,o(e))}var a=n(86),o=n(87);e.exports=r},function(e,t,n){function r(e,t){return a(t,function(t){return e[t]})}var a=n(44);e.exports=r},function(e,t,n){function r(e){return i(e)?a(e):o(e)}var a=n(88),o=n(99),i=n(38);e.exports=r},function(e,t,n){function r(e,t){var n=i(e),r=!n&&o(e),f=!n&&!r&&u(e),d=!n&&!r&&!f&&c(e),p=n||r||f||d,g=p?a(e.length,String):[],b=g.length;for(var h in e)!t&&!s.call(e,h)||p&&("length"==h||f&&("offset"==h||"parent"==h)||d&&("buffer"==h||"byteLength"==h||"byteOffset"==h)||l(h,b))||g.push(h);return g}var a=n(89),o=n(90),i=n(25),u=n(92),l=n(94),c=n(95),f=Object.prototype,s=f.hasOwnProperty;e.exports=r},function(e,t){function n(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}e.exports=n},function(e,t,n){var r=n(91),a=n(9),o=Object.prototype,i=o.hasOwnProperty,u=o.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return a(e)&&i.call(e,"callee")&&!u.call(e,"callee")};e.exports=l},function(e,t,n){function r(e){return o(e)&&a(e)==i}var a=n(8),o=n(9),i="[object Arguments]";e.exports=r},function(e,t,n){(function(e){var r=n(39),a=n(93),o="object"==typeof t&&t&&!t.nodeType&&t,i=o&&"object"==typeof e&&e&&!e.nodeType&&e,u=i&&i.exports===o,l=u?r.Buffer:void 0,c=l?l.isBuffer:void 0,f=c||a;e.exports=f}).call(t,n(45)(e))},function(e,t){function n(){return!1}e.exports=n},function(e,t){function n(e,t){var n=typeof e;return!!(t=null==t?r:t)&&("number"==n||"symbol"!=n&&a.test(e))&&e>-1&&e%1==0&&e<t}var r=9007199254740991,a=/^(?:0|[1-9]\d*)$/;e.exports=n},function(e,t,n){var r=n(96),a=n(97),o=n(98),i=o&&o.isTypedArray,u=i?a(i):r;e.exports=u},function(e,t,n){function r(e){return i(e)&&o(e.length)&&!!u[a(e)]}var a=n(8),o=n(42),i=n(9),u={};u["[object Float32Array]"]=u["[object Float64Array]"]=u["[object Int8Array]"]=u["[object Int16Array]"]=u["[object Int32Array]"]=u["[object Uint8Array]"]=u["[object Uint8ClampedArray]"]=u["[object Uint16Array]"]=u["[object Uint32Array]"]=!0,u["[object Arguments]"]=u["[object Array]"]=u["[object ArrayBuffer]"]=u["[object Boolean]"]=u["[object DataView]"]=u["[object Date]"]=u["[object Error]"]=u["[object Function]"]=u["[object Map]"]=u["[object Number]"]=u["[object Object]"]=u["[object RegExp]"]=u["[object Set]"]=u["[object String]"]=u["[object WeakMap]"]=!1,e.exports=r},function(e,t){function n(e){return function(t){return e(t)}}e.exports=n},function(e,t,n){(function(e){var r=n(40),a="object"==typeof t&&t&&!t.nodeType&&t,o=a&&"object"==typeof e&&e&&!e.nodeType&&e,i=o&&o.exports===a,u=i&&r.process,l=function(){try{return o&&o.require&&o.require("util").types||u&&u.binding&&u.binding("util")}catch(e){}}();e.exports=l}).call(t,n(45)(e))},function(e,t,n){function r(e){if(!a(e))return o(e);var t=[];for(var n in Object(e))u.call(e,n)&&"constructor"!=n&&t.push(n);return t}var a=n(100),o=n(101),i=Object.prototype,u=i.hasOwnProperty;e.exports=r},function(e,t){function n(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||r)}var r=Object.prototype;e.exports=n},function(e,t,n){var r=n(102),a=r(Object.keys,Object);e.exports=a},function(e,t){function n(e,t){return function(n){return e(t(n))}}e.exports=n},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}function u(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?l(e):t}function l(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,n(10),n(15);var d=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t.default=e,t}(n(4)),p=function(e){function t(){return a(this,t),u(this,c(t).apply(this,arguments))}return f(t,e),i(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{className:"bitesize-yes-svg",version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"31.8px",height:"32px",viewBox:"0 0 31.8 32",enableBackground:"new 0 0 31.8 32",ref:function(t){e.svg=t}},d.default.createElement("polygon",{points:"12.8,28.9 31.8,6.3 28,3.1 12.2,21.9 3.2,14.4 0,18.2 \t"}))}}]),t}(d.Component),g=p;t.default=g,e.exports=t.default},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}function u(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?l(e):t}function l(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,n(10),n(15);var d=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t.default=e,t}(n(4)),p=function(e){function t(){return a(this,t),u(this,c(t).apply(this,arguments))}return f(t,e),i(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"32px",height:"32px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",ref:function(t){e.svg=t}},d.default.createElement("g",{id:"Grid"}),d.default.createElement("g",{id:"Layer_2"},d.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3"})))}}]),t}(d.Component),g=p;t.default=g,e.exports=t.default},function(e,t,n){var r=n(106),a=r(function(e,t,n){return e+(n?"_":"")+t.toLowerCase()});e.exports=a},function(e,t,n){function r(e){return function(t){return a(i(o(t).replace(u,"")),e,"")}}var a=n(107),o=n(108),i=n(112),u=RegExp("['’]","g");e.exports=r},function(e,t){function n(e,t,n,r){var a=-1,o=null==e?0:e.length;for(r&&o&&(n=e[++a]);++a<o;)n=t(n,e[a],a,e);return n}e.exports=n},function(e,t,n){function r(e){return(e=o(e))&&e.replace(i,a).replace(u,"")}var a=n(109),o=n(26),i=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,u=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");e.exports=r},function(e,t,n){var r=n(110),a={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},o=r(a);e.exports=o},function(e,t){function n(e){return function(t){return null==e?void 0:e[t]}}e.exports=n},function(e,t,n){function r(e){if("string"==typeof e)return e;if(i(e))return o(e,r)+"";if(u(e))return f?f.call(e):"";var t=e+"";return"0"==t&&1/e==-l?"-0":t}var a=n(24),o=n(44),i=n(25),u=n(43),l=1/0,c=a?a.prototype:void 0,f=c?c.toString:void 0;e.exports=r},function(e,t,n){function r(e,t,n){return e=i(e),t=n?void 0:t,void 0===t?o(e)?u(e):a(e):e.match(t)||[]}var a=n(113),o=n(114),i=n(26),u=n(115);e.exports=r},function(e,t){function n(e){return e.match(r)||[]}var r=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;e.exports=n},function(e,t){function n(e){return r.test(e)}var r=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;e.exports=n},function(e,t){function n(e){return e.match(g)||[]}var r="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",a="["+r+"]",o="[a-z\\xdf-\\xf6\\xf8-\\xff]",i="(?:\\ud83c[\\udde6-\\uddff]){2}",u="[\\ud800-\\udbff][\\udc00-\\udfff]",l="[A-Z\\xc0-\\xd6\\xd8-\\xde]",c="(?:"+o+"|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])",f="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",s="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",i,u].join("|")+")[\\ufe0e\\ufe0f]?"+f+")*",d="[\\ufe0e\\ufe0f]?"+f+s,p="(?:"+["[\\u2700-\\u27bf]",i,u].join("|")+")"+d,g=RegExp([l+"?"+o+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[a,l,"$"].join("|")+")","(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[a,l+c,"$"].join("|")+")",l+"?"+c+"+(?:['’](?:d|ll|m|re|s|t|ve))?",l+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])","\\d+",p].join("|"),"g");e.exports=n},function(e,t,n){function r(e){var t=++o;return a(e)+t}var a=n(26),o=0;e.exports=r},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}function u(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?l(e):t}function l(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,n(10),n(15);var d=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t.default=e,t}(n(4)),p=function(e){function t(){return a(this,t),u(this,c(t).apply(this,arguments))}return f(t,e),i(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31.9",height:"32",viewBox:"0 0 31.9 32",ref:function(t){e.svg=t}},d.default.createElement("path",{d:"M29 16L3 0v7.2L17.6 16 3 24.8V32z"}))}}]),t}(d.Component),g=p;t.default=g,e.exports=t.default}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-bitesize-header-view@8.73.0"]={"@babel/runtime":"7.11.2","@bbc/bitesize-branding":"12.0.0","@bbc/education-share-tools":"1.0.0","@bbc/mr-sparkle":"3.0.0","bbc-morph-bitesize-class-clip-data":"1.3.4","bbc-morph-bitesize-class-clips-data":"1.2.3","bbc-morph-bitesize-core-components":"12.3.0","bbc-morph-bitesize-crumbtrail":"2.1.2","bbc-morph-bitesize-examspec":"2.0.6","bbc-morph-bitesize-field-of-study":"1.2.2","bbc-morph-bitesize-global-navigation-view":"1.46.0","bbc-morph-bitesize-header-data":"1.12.0","bbc-morph-bitesize-level":"3.1.0","bbc-morph-bitesize-personalisation-client-tools":"11.3.0","bbc-morph-bitesize-programme-of-study":"4.2.1","bbc-morph-bitesize-topics-for-web":"2.3.0","bbc-morph-blocks-article-data":"5.8.0","bbc-morph-istats":"1.3.0","bbc-morph-istats-internal-link-tracking":"1.0.0","classnames":"2.2.6","lodash":"4.17.19","lodash.endswith":"4.2.1","morph-container":"4.0.0","react":"0.14.7","react-dom":"0.14.7"}; !function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=199)}([function(t,e){t.exports=React},function(t,e,n){var r=n(147),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();t.exports=i},function(t,e){var n=Array.isArray;t.exports=n},function(t,e){function n(t){return null!=t&&"object"==typeof t}t.exports=n},function(t,e){function n(t){return t&&t.__esModule?t:{default:t}}t.exports=n},function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){t.exports=n(486)()},function(t,e,n){var r=n(117),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();t.exports=i},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){n(191)("asyncIterator")},function(t,e,n){"use strict";var r=n(8),o=n(17),i=n(16),u=n(52),a=n(55),c=n(460).KEY,f=n(23),s=n(56),l=n(80),p=n(31),d=n(18),h=n(192),y=n(191),v=n(461),g=n(462),b=n(53),_=n(30),m=n(25),x=n(74),w=n(54),j=n(143),O=n(463),k=n(464),P=n(15),A=n(24),S=k.f,T=P.f,E=O.f,I=r.Symbol,z=r.JSON,R=z&&z.stringify,C=d("_hidden"),M=d("toPrimitive"),W={}.propertyIsEnumerable,L=s("symbol-registry"),D=s("symbols"),B=s("op-symbols"),N=Object.prototype,F="function"==typeof I,q=r.QObject,U=!q||!q.prototype||!q.prototype.findChild,$=i&&f(function(){return 7!=j(T({},"a",{get:function(){return T(this,"a",{value:7}).a}})).a})?function(t,e,n){var r=S(N,e);r&&delete N[e],T(t,e,n),r&&t!==N&&T(N,e,r)}:T,G=function(t){var e=D[t]=j(I.prototype);return e._k=t,e},V=F&&"symbol"==typeof I.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof I},K=function(t,e,n){return t===N&&K(B,e,n),b(t),e=x(e,!0),b(n),o(D,e)?(n.enumerable?(o(t,C)&&t[C][e]&&(t[C][e]=!1),n=j(n,{enumerable:w(0,!1)})):(o(t,C)||T(t,C,w(1,{})),t[C][e]=!0),$(t,e,n)):T(t,e,n)},H=function(t,e){b(t);for(var n,r=v(e=m(e)),o=0,i=r.length;i>o;)K(t,n=r[o++],e[n]);return t},Z=function(t,e){return void 0===e?j(t):H(j(t),e)},Y=function(t){var e=W.call(this,t=x(t,!0));return!(this===N&&o(D,t)&&!o(B,t))&&(!(e||!o(this,t)||!o(D,t)||o(this,C)&&this[C][t])||e)},J=function(t,e){if(t=m(t),e=x(e,!0),t!==N||!o(D,e)||o(B,e)){var n=S(t,e);return!n||!o(D,e)||o(t,C)&&t[C][e]||(n.enumerable=!0),n}},X=function(t){for(var e,n=E(m(t)),r=[],i=0;n.length>i;)o(D,e=n[i++])||e==C||e==c||r.push(e);return r},Q=function(t){for(var e,n=t===N,r=E(n?B:m(t)),i=[],u=0;r.length>u;)!o(D,e=r[u++])||n&&!o(N,e)||i.push(D[e]);return i};F||(I=function(){if(this instanceof I)throw TypeError("Symbol is not a constructor!");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===N&&e.call(B,n),o(this,C)&&o(this[C],t)&&(this[C][t]=!1),$(this,t,w(1,n))};return i&&U&&$(N,t,{configurable:!0,set:e}),G(t)},a(I.prototype,"toString",function(){return this._k}),k.f=J,P.f=K,n(193).f=O.f=X,n(58).f=Y,n(77).f=Q,i&&!n(57)&&a(N,"propertyIsEnumerable",Y,!0),h.f=function(t){return G(d(t))}),u(u.G+u.W+u.F*!F,{Symbol:I});for(var tt="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),et=0;tt.length>et;)d(tt[et++]);for(var nt=A(d.store),rt=0;nt.length>rt;)y(nt[rt++]);u(u.S+u.F*!F,"Symbol",{for:function(t){return o(L,t+="")?L[t]:L[t]=I(t)},keyFor:function(t){if(!V(t))throw TypeError(t+" is not a symbol!");for(var e in L)if(L[e]===t)return e},useSetter:function(){U=!0},useSimple:function(){U=!1}}),u(u.S+u.F*!F,"Object",{create:Z,defineProperty:K,defineProperties:H,getOwnPropertyDescriptor:J,getOwnPropertyNames:X,getOwnPropertySymbols:Q}),z&&u(u.S+u.F*(!F||f(function(){var t=I();return"[null]"!=R([t])||"{}"!=R({a:t})||"{}"!=R(Object(t))})),"JSON",{stringify:function(t){for(var e,n,r=[t],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=e=r[1],(_(e)||void 0!==t)&&!V(t))return g(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!V(e))return e}),r[1]=e,R.apply(z,r)}}),I.prototype[M]||n(14)(I.prototype,M,I.prototype.valueOf),l(I,"Symbol"),l(Math,"Math",!0),l(r.JSON,"JSON",!0)},function(t,e){function n(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}t.exports=n},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){function r(t,e){var n=i(t,e);return o(n)?n:void 0}var o=n(237),i=n(240);t.exports=r},function(t,e,n){var r=n(15),o=n(54);t.exports=n(16)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(53),o=n(135),i=n(74),u=Object.defineProperty;e.f=n(16)?Object.defineProperty:function(t,e,n){if(r(t),e=i(e,!0),r(n),o)try{return u(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){t.exports=!n(23)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(56)("wks"),o=n(31),i=n(8).Symbol,u="function"==typeof i;(t.exports=function(t){return r[t]||(r[t]=u&&i[t]||(u?i:o)("Symbol."+t))}).store=r},function(t,e,n){function r(t,e){var n=i(t,e);return o(n)?n:void 0}var o=n(313),i=n(318);t.exports=r},function(t,e,n){function r(t){return null==t?void 0===t?c:a:f&&f in Object(t)?i(t):u(t)}var o=n(27),i=n(314),u=n(315),a="[object Null]",c="[object Undefined]",f=o?o.toStringTag:void 0;t.exports=r},function(t,e,n){function r(t){return null==t?void 0===t?c:a:f&&f in Object(t)?i(t):u(t)}var o=n(42),i=n(205),u=n(206),a="[object Null]",c="[object Undefined]",f=o?o.toStringTag:void 0;t.exports=r},function(t,e){function n(t){return null!=t&&"object"==typeof t}t.exports=n},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(137),o=n(76);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(138),o=n(140);t.exports=function(t){return r(o(t))}},function(t,e){t.exports={}},function(t,e,n){var r=n(1),o=r.Symbol;t.exports=o},function(t,e,n){function r(t){return u(t)?o(t):i(t)}var o=n(212),i=n(219),u=n(41);t.exports=r},function(t,e){var n=t.exports={version:"2.6.5"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e,n){function r(t,e,n){return o(i,t,e,n)}var o=n(309),i=n(311);t.exports=r},function(t,e,n){function r(t){return"symbol"==typeof t||i(t)&&o(t)==u}var o=n(20),i=n(3),u="[object Symbol]";t.exports=r},function(t,e,n){function r(t){return u(t)?o(t):i(t)}var o=n(164),i=n(166),u=n(168);t.exports=r},function(t,e,n){var r=n(377),o=n(101),i=n(378),u=n(379),a=n(146),c=n(20),f=n(148),s=f(r),l=f(o),p=f(i),d=f(u),h=f(a),y=c;(r&&"[object DataView]"!=y(new r(new ArrayBuffer(1)))||o&&"[object Map]"!=y(new o)||i&&"[object Promise]"!=y(i.resolve())||u&&"[object Set]"!=y(new u)||a&&"[object WeakMap]"!=y(new a))&&(y=function(t){var e=c(t),n="[object Object]"==e?t.constructor:void 0,r=n?f(n):"";if(r)switch(r){case s:return"[object DataView]";case l:return"[object Map]";case p:return"[object Promise]";case d:return"[object Set]";case h:return"[object WeakMap]"}return e}),t.exports=y},function(t,e,n){function r(t){return null==t?"":o(t)}var o=n(413);t.exports=r},function(t,e,n){function r(t){if("string"==typeof t||o(t))return t;var e=t+"";return"0"==e&&1/t==-i?"-0":e}var o=n(33),i=1/0;t.exports=r},function(t,e){t.exports=Morph.modules["prop-types@15.7.2"]},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.openWindow=void 0;var r=function(t,e){var n=(t-e)/2;return n>0?Math.floor(n):0},o=function(t,e){if(window){var n=window.innerWidth||window.document.documentElement.clientWidth||window.document.body.clientWidth,o=window.innerHeight||window.document.documentElement.clientHeight||window.document.body.clientHeight,i=r(n,575),u=r(o,400),a="status=1,width=".concat(575,",height=").concat(400,",left=").concat(i,",top=").concat(u);window.open(t,e,a).moveTo(i,u)}};e.openWindow=o},function(t,e,n){"use strict";var r=n(109),o=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=o(n(110)),u=o(n(111)),a=o(n(112)),c=o(n(113)),f=o(n(114)),s=o(n(489)),l=r(n(0)),p=o(n(51)),d=n(0).PropTypes||n(6),h=function(t){var e=t.icon,n=t.lowerCaseName,r=t.standalone,o=(0,p.default)("ec-share-icon__svg",(0,s.default)({"ec-share-icon__svg--standalone":r},"ec-share-icon__svg--".concat(n),n));return l.default.createElement("span",{className:o},e)};h.propTypes={icon:d.element.isRequired,lowerCaseName:d.string.isRequired,standalone:d.bool.isRequired};var y=function(t){function e(t){var n;return(0,i.default)(this,e),n=(0,a.default)(this,(0,c.default)(e).call(this,t)),n.buttonRef=null,n}return(0,f.default)(e,t),(0,u.default)(e,[{key:"render",value:function(){var t=this,e=this.props,n=e.icon,r=e.name,o=e.standalone,i=e.onClick,u=e.position,a=(r||"").toLowerCase(),c=(0,p.default)("ec-share-button","ec-share-button--transparent",(0,s.default)({},"ec-share-button--".concat(a),a)),f=(0,p.default)("ec-share-cta-text",(0,s.default)({},"ec-share-cta-text--display-only-to-screen-reader",o));return l.default.createElement("button",{ref:function(e){t.buttonRef=e},className:c,"data-bbc-container":"Share Tools","data-bbc-title":r,"data-bbc-metadata":JSON.stringify({CHD:"".concat(o?"button":"menu-item",":: ").concat(u)}),"data-bbc-result":o?"share-pop-up":"share-menu","data-bbc-ignore-views":1,onClick:function(){i()}},l.default.createElement(h,{icon:n,lowerCaseName:a,standalone:o}),l.default.createElement("span",{className:f},r))}}]),e}(l.Component);y.propTypes={icon:d.node.isRequired,name:d.string.isRequired,standalone:d.bool.isRequired,onClick:d.func.isRequired,position:d.number.isRequired},y.defaultProps={dataBbc:{}};var v=y;e.default=v},function(t,e,n){function r(t){return null!=t&&i(t.length)&&!o(t)}var o=n(116),i=n(68);t.exports=r},function(t,e,n){var r=n(7),o=r.Symbol;t.exports=o},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e){function n(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}t.exports=n},function(t,e,n){function r(t){return"symbol"==typeof t||i(t)&&o(t)==u}var o=n(21),i=n(22),u="[object Symbol]";t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(227),i=n(228),u=n(229),a=n(230),c=n(231);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){function r(t,e){for(var n=t.length;n--;)if(o(t[n][0],e))return n;return-1}var o=n(124);t.exports=r},function(t,e,n){var r=n(13),o=r(Object,"create");t.exports=o},function(t,e,n){function r(t,e){var n=t.__data__;return o(e)?n["string"==typeof e?"string":"hash"]:n.map}var o=n(249);t.exports=r},function(t,e,n){function r(t){if("string"==typeof t||o(t))return t;var e=t+"";return"0"==e&&1/t==-i?"-0":e}var o=n(45),i=1/0;t.exports=r},function(t,e,n){var r,o;!function(){"use strict";function n(){for(var t=[],e=0;e<arguments.length;e++){var r=arguments[e];if(r){var o=typeof r;if("string"===o||"number"===o)t.push(r);else if(Array.isArray(r)&&r.length){var u=n.apply(null,r);u&&t.push(u)}else if("object"===o)for(var a in r)i.call(r,a)&&r[a]&&t.push(a)}}return t.join(" ")}var i={}.hasOwnProperty;void 0!==t&&t.exports?(n.default=n,t.exports=n):(r=[],void 0!==(o=function(){return n}.apply(e,r))&&(t.exports=o))}()},function(t,e,n){var r=n(8),o=n(29),i=n(14),u=n(55),a=n(291),c=function(t,e,n){var f,s,l,p,d=t&c.F,h=t&c.G,y=t&c.S,v=t&c.P,g=t&c.B,b=h?r:y?r[e]||(r[e]={}):(r[e]||{}).prototype,_=h?o:o[e]||(o[e]={}),m=_.prototype||(_.prototype={});h&&(n=e);for(f in n)s=!d&&b&&void 0!==b[f],l=(s?b:n)[f],p=g&&s?a(l,r):v&&"function"==typeof l?a(Function.call,l):l,b&&u(b,f,l,t&c.U),_[f]!=l&&i(_,f,p),v&&m[f]!=l&&(m[f]=l)};r.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,t.exports=c},function(t,e,n){var r=n(30);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(8),o=n(14),i=n(17),u=n(31)("src"),a=n(290),c=(""+a).split("toString");n(29).inspectSource=function(t){return a.call(t)},(t.exports=function(t,e,n,a){var f="function"==typeof n;f&&(i(n,"name")||o(n,"name",e)),t[e]!==n&&(f&&(i(n,u)||o(n,u,t[e]?""+t[e]:c.join(String(e)))),t===r?t[e]=n:a?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[u]||a.call(this)})},function(t,e,n){var r=n(29),o=n(8),i=o["__core-js_shared__"]||(o["__core-js_shared__"]={});(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(57)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){function r(t){return function(){var e=arguments;switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3]);case 5:return new t(e[0],e[1],e[2],e[3],e[4]);case 6:return new t(e[0],e[1],e[2],e[3],e[4],e[5]);case 7:return new t(e[0],e[1],e[2],e[3],e[4],e[5],e[6])}var n=o(t.prototype),r=t.apply(n,e);return i(r)?r:n}}var o=n(60),i=n(11);t.exports=r},function(t,e,n){var r=n(11),o=Object.create,i=function(){function t(){}return function(e){if(!r(e))return{};if(o)return o(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();t.exports=i},function(t,e){function n(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++n<r;)e[n]=t[n];return e}t.exports=n},function(t,e,n){function r(t,e,n,r){var u=!n;n||(n={});for(var a=-1,c=e.length;++a<c;){var f=e[a],s=r?r(n[f],t[f],f,n,t):void 0;void 0===s&&(s=t[f]),u?i(n,f,s):o(n,f,s)}return n}var o=n(163),i=n(92);t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(347),i=n(348),u=n(349),a=n(350),c=n(351);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){function r(t,e){for(var n=t.length;n--;)if(o(t[n][0],e))return n;return-1}var o=n(93);t.exports=r},function(t,e,n){var r=n(19),o=r(Object,"create");t.exports=o},function(t,e,n){function r(t,e){var n=t.__data__;return o(e)?n["string"==typeof e?"string":"hash"]:n.map}var o=n(365);t.exports=r},function(t,e){t.exports=Morph.modules["bbc-morph-istats@1.3.0"]},function(t,e){function n(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=r}var r=9007199254740991;t.exports=n},function(t,e,n){function r(t){var e=o(t),n=e%1;return e===e?n?e-n:e:0}var o=n(208);t.exports=r},function(t,e,n){function r(t){return"function"==typeof t?t:null==t?u:"object"==typeof t?a(t)?i(t[0],t[1]):o(t):c(t)}var o=n(225),i=n(276),u=n(283),a=n(5),c=n(284);t.exports=r},function(t,e,n){var r=n(13),o=n(7),i=r(o,"Map");t.exports=i},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(241),i=n(248),u=n(250),a=n(251),c=n(252);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){function r(t,e){if(o(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!i(t))||(a.test(t)||!u.test(t)||null!=e&&t in Object(e))}var o=n(5),i=n(45),u=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;t.exports=r},function(t,e,n){var r=n(30);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(56)("keys"),o=n(31);t.exports=function(t){return r[t]||(r[t]=o(t))}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(140);t.exports=function(t){return Object(r(t))}},function(t,e){t.exports={}},function(t,e,n){var r=n(15).f,o=n(17),i=n(18)("toStringTag");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},function(t,e,n){function r(t,e,n,r,w,j,O,k){var P=e&v;if(!P&&"function"!=typeof t)throw new TypeError(h);var A=r?r.length:0;if(A||(e&=~(_|m),r=w=void 0),O=void 0===O?O:x(d(O),0),k=void 0===k?k:d(k),A-=w?w.length:0,e&m){var S=r,T=w;r=w=void 0}var E=P?void 0:f(t),I=[t,e,n,r,w,S,T,j,O,k];if(E&&s(I,E),t=I[0],e=I[1],n=I[2],r=I[3],w=I[4],k=I[9]=void 0===I[9]?P?0:t.length:x(I[9]-A,0),!k&&e&(g|b)&&(e&=~(g|b)),e&&e!=y)z=e==g||e==b?u(t,e,k):e!=_&&e!=(y|_)||w.length?a.apply(void 0,I):c(t,e,n,r);else var z=i(t,e,n);return p((E?o:l)(z,I),t,e)}var o=n(144),i=n(319),u=n(320),a=n(149),c=n(337),f=n(87),s=n(338),l=n(155),p=n(157),d=n(161),h="Expected a function",y=1,v=2,g=8,b=16,_=32,m=64,x=Math.max;t.exports=r},function(t,e){function n(t){return t}t.exports=n},function(t,e,n){function r(t){if(!i(t))return!1;var e=o(t);return e==a||e==c||e==u||e==f}var o=n(20),i=n(11),u="[object AsyncFunction]",a="[object Function]",c="[object GeneratorFunction]",f="[object Proxy]";t.exports=r},function(t,e){function n(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}t.exports=n},function(t,e,n){function r(t){this.__wrapped__=t,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=u,this.__views__=[]}var o=n(60),i=n(86),u=4294967295;r.prototype=o(i.prototype),r.prototype.constructor=r,t.exports=r},function(t,e){function n(){}t.exports=n},function(t,e,n){var r=n(145),o=n(322),i=r?function(t){return r.get(t)}:o;t.exports=i},function(t,e,n){function r(t,e){this.__wrapped__=t,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=void 0}var o=n(60),i=n(86);r.prototype=o(i.prototype),r.prototype.constructor=r,t.exports=r},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length;++n<r&&!1!==e(t[n],n,t););return t}t.exports=n},function(t,e){function n(t,e){var n=typeof t;return!!(e=null==e?r:e)&&("number"==n||"symbol"!=n&&o.test(t))&&t>-1&&t%1==0&&t<e}var r=9007199254740991,o=/^(?:0|[1-9]\d*)$/;t.exports=n},function(t,e){function n(t,e){for(var n=-1,o=t.length,i=0,u=[];++n<o;){var a=t[n];a!==e&&a!==r||(t[n]=r,u[i++]=n)}return u}var r="__lodash_placeholder__";t.exports=n},function(t,e,n){function r(t,e,n){"__proto__"==e&&o?o(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}var o=n(159);t.exports=r},function(t,e){function n(t,e){return t===e||t!==t&&e!==e}t.exports=n},function(t,e,n){var r=n(342),o=n(3),i=Object.prototype,u=i.hasOwnProperty,a=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(t){return o(t)&&u.call(t,"callee")&&!a.call(t,"callee")};t.exports=c},function(t,e,n){(function(t){var r=n(1),o=n(343),i="object"==typeof e&&e&&!e.nodeType&&e,u=i&&"object"==typeof t&&t&&!t.nodeType&&t,a=u&&u.exports===i,c=a?r.Buffer:void 0,f=c?c.isBuffer:void 0,s=f||o;t.exports=s}).call(e,n(12)(t))},function(t,e){function n(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=r}var r=9007199254740991;t.exports=n},function(t,e){function n(t){return function(e){return t(e)}}t.exports=n},function(t,e,n){(function(t){var r=n(147),o="object"==typeof e&&e&&!e.nodeType&&e,i=o&&"object"==typeof t&&t&&!t.nodeType&&t,u=i&&i.exports===o,a=u&&r.process,c=function(){try{var t=i&&i.require&&i.require("util").types;return t||a&&a.binding&&a.binding("util")}catch(t){}}();t.exports=c}).call(e,n(12)(t))},function(t,e){function n(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||r)}var r=Object.prototype;t.exports=n},function(t,e,n){function r(t){var e=this.__data__=new o(t);this.size=e.size}var o=n(63),i=n(352),u=n(353),a=n(354),c=n(355),f=n(356);r.prototype.clear=i,r.prototype.delete=u,r.prototype.get=a,r.prototype.has=c,r.prototype.set=f,t.exports=r},function(t,e,n){var r=n(19),o=n(1),i=r(o,"Map");t.exports=i},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(357),i=n(364),u=n(366),a=n(367),c=n(368);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){var r=n(374),o=n(171),i=Object.prototype,u=i.propertyIsEnumerable,a=Object.getOwnPropertySymbols,c=a?function(t){return null==t?[]:(t=Object(t),r(a(t),function(e){return u.call(t,e)}))}:o;t.exports=c},function(t,e){function n(t,e){for(var n=-1,r=e.length,o=t.length;++n<r;)t[o+n]=e[n];return t}t.exports=n},function(t,e,n){var r=n(167),o=r(Object.getPrototypeOf,Object);t.exports=o},function(t,e,n){function r(t){var e=new t.constructor(t.byteLength);return new o(e).set(new o(t)),e}var o=n(175);t.exports=r},function(t,e,n){function r(t,e){if(o(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!i(t))||(a.test(t)||!u.test(t)||null!=e&&t in Object(e))}var o=n(2),i=n(33),u=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;t.exports=r},function(t,e){function n(t){return t&&t.__esModule?t:{default:t}}t.exports=n},function(t,e,n){function r(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return r=function(){return t},t}function o(t){if(t&&t.__esModule)return t;if(null===t||"object"!==i(t)&&"function"!=typeof t)return{default:t};var e=r();if(e&&e.has(t))return e.get(t);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=o?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}var i=n(197);t.exports=o},function(t,e){function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}t.exports=n},function(t,e){function n(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function r(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}t.exports=r},function(t,e,n){function r(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?i(t):e}var o=n(197),i=n(198);t.exports=r},function(t,e){function n(e){return t.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},n(e)}t.exports=n},function(t,e,n){function r(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&o(t,e)}var o=n(485);t.exports=r},function(t,e){function n(t,e,n,r){for(var o=t.length,i=n+(r?1:-1);r?i--:++i<o;)if(e(t[i],i,t))return i;return-1}t.exports=n},function(t,e,n){function r(t){if(!i(t))return!1;var e=o(t);return e==a||e==c||e==u||e==f}var o=n(21),i=n(44),u="[object AsyncFunction]",a="[object Function]",c="[object GeneratorFunction]",f="[object Proxy]";t.exports=r},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(e,n(43))},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length,o=Array(r);++n<r;)o[n]=e(t[n],n,t);return o}t.exports=n},function(t,e,n){var r=n(214),o=n(22),i=Object.prototype,u=i.hasOwnProperty,a=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(t){return o(t)&&u.call(t,"callee")&&!a.call(t,"callee")};t.exports=c},function(t,e,n){(function(t){var r=n(7),o=n(215),i="object"==typeof e&&e&&!e.nodeType&&e,u=i&&"object"==typeof t&&t&&!t.nodeType&&t,a=u&&u.exports===i,c=a?r.Buffer:void 0,f=c?c.isBuffer:void 0,s=f||o;t.exports=s}).call(e,n(12)(t))},function(t,e){function n(t,e){var n=typeof t;return!!(e=null==e?r:e)&&("number"==n||"symbol"!=n&&o.test(t))&&t>-1&&t%1==0&&t<e}var r=9007199254740991,o=/^(?:0|[1-9]\d*)$/;t.exports=n},function(t,e,n){var r=n(216),o=n(217),i=n(218),u=i&&i.isTypedArray,a=u?o(u):r;t.exports=a},function(t,e,n){function r(t){var e=this.__data__=new o(t);this.size=e.size}var o=n(46),i=n(232),u=n(233),a=n(234),c=n(235),f=n(236);r.prototype.clear=i,r.prototype.delete=u,r.prototype.get=a,r.prototype.has=c,r.prototype.set=f,t.exports=r},function(t,e){function n(t,e){return t===e||t!==t&&e!==e}t.exports=n},function(t,e){function n(t){if(null!=t){try{return o.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var r=Function.prototype,o=r.toString;t.exports=n},function(t,e,n){function r(t,e,n,u,a){return t===e||(null==t||null==e||!i(t)&&!i(e)?t!==t&&e!==e:o(t,e,n,u,r,a))}var o=n(253),i=n(22);t.exports=r},function(t,e,n){function r(t,e,n,r,f,s){var l=n&a,p=t.length,d=e.length;if(p!=d&&!(l&&d>p))return!1;var h=s.get(t);if(h&&s.get(e))return h==e;var y=-1,v=!0,g=n&c?new o:void 0;for(s.set(t,e),s.set(e,t);++y<p;){var b=t[y],_=e[y];if(r)var m=l?r(_,b,y,e,t,s):r(b,_,y,t,e,s);if(void 0!==m){if(m)continue;v=!1;break}if(g){if(!i(e,function(t,e){if(!u(g,e)&&(b===t||f(b,t,n,r,s)))return g.push(e)})){v=!1;break}}else if(b!==_&&!f(b,_,n,r,s)){v=!1;break}}return s.delete(t),s.delete(e),v}var o=n(254),i=n(257),u=n(258),a=1,c=2;t.exports=r},function(t,e,n){function r(t){return t===t&&!o(t)}var o=n(44);t.exports=r},function(t,e){function n(t,e){return function(n){return null!=n&&(n[t]===e&&(void 0!==e||t in Object(n)))}}t.exports=n},function(t,e,n){function r(t,e,n){var r=null==t?void 0:o(t,e);return void 0===r?n:r}var o=n(131);t.exports=r},function(t,e,n){function r(t,e){e=o(e,t);for(var n=0,r=e.length;null!=t&&n<r;)t=t[i(e[n++])];return n&&n==r?t:void 0}var o=n(132),i=n(50);t.exports=r},function(t,e,n){function r(t,e){return o(t)?t:i(t,e)?[t]:u(a(t))}var o=n(5),i=n(73),u=n(277),a=n(133);t.exports=r},function(t,e,n){function r(t){return null==t?"":o(t)}var o=n(134);t.exports=r},function(t,e,n){function r(t){if("string"==typeof t)return t;if(u(t))return i(t,r)+"";if(a(t))return s?s.call(t):"";var e=t+"";return"0"==e&&1/t==-c?"-0":e}var o=n(42),i=n(118),u=n(5),a=n(45),c=1/0,f=o?o.prototype:void 0,s=f?f.toString:void 0;t.exports=r},function(t,e,n){t.exports=!n(16)&&!n(23)(function(){return 7!=Object.defineProperty(n(136)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var r=n(30),o=n(8).document,i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,e,n){var r=n(17),o=n(25),i=n(294)(!1),u=n(75)("IE_PROTO");t.exports=function(t,e){var n,a=o(t),c=0,f=[];for(n in a)n!=u&&r(a,n)&&f.push(n);for(;e.length>c;)r(a,n=e[c++])&&(~i(f,n)||f.push(n));return f}},function(t,e,n){var r=n(139);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){"use strict";var r=n(298),o=n(299),i=n(79),u=n(25);t.exports=n(300)(Array,"Array",function(t,e){this._t=u(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,o(1)):"keys"==e?o(0,n):"values"==e?o(0,t[n]):o(0,[n,t[n]])},"values"),i.Arguments=i.Array,r("keys"),r("values"),r("entries")},function(t,e,n){var r=n(53),o=n(302),i=n(76),u=n(75)("IE_PROTO"),a=function(){},c=function(){var t,e=n(136)("iframe"),r=i.length;for(e.style.display="none",n(303).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("<script>document.F=Object<\/script>"),t.close(),c=t.F;r--;)delete c.prototype[i[r]];return c()};t.exports=Object.create||function(t,e){var n;return null!==t?(a.prototype=r(t),n=new a,a.prototype=null,n[u]=t):n=c(),void 0===e?n:o(n,e)}},function(t,e,n){var r=n(82),o=n(145),i=o?function(t,e){return o.set(t,e),t}:r;t.exports=i},function(t,e,n){var r=n(146),o=r&&new r;t.exports=o},function(t,e,n){var r=n(19),o=n(1),i=r(o,"WeakMap");t.exports=i},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(e,n(43))},function(t,e){function n(t){if(null!=t){try{return o.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var r=Function.prototype,o=r.toString;t.exports=n},function(t,e,n){function r(t,e,n,_,m,x,w,j,O,k){function P(){for(var d=arguments.length,h=Array(d),y=d;y--;)h[y]=arguments[y];if(E)var v=f(P),g=u(h,v);if(_&&(h=o(h,_,m,E)),x&&(h=i(h,x,w,E)),d-=g,E&&d<k){var b=l(h,v);return c(t,e,r,P.placeholder,n,h,b,j,O,k-d)}var R=S?n:this,C=T?R[t]:t;return d=h.length,j?h=s(h,j):I&&d>1&&h.reverse(),A&&O<d&&(h.length=O),this&&this!==p&&this instanceof P&&(C=z||a(C)),C.apply(R,h)}var A=e&g,S=e&d,T=e&h,E=e&(y|v),I=e&b,z=T?void 0:a(t);return P}var o=n(150),i=n(151),u=n(321),a=n(59),c=n(152),f=n(160),s=n(336),l=n(91),p=n(1),d=1,h=2,y=8,v=16,g=128,b=512;t.exports=r},function(t,e){function n(t,e,n,o){for(var i=-1,u=t.length,a=n.length,c=-1,f=e.length,s=r(u-a,0),l=Array(f+s),p=!o;++c<f;)l[c]=e[c];for(;++i<a;)(p||i<u)&&(l[n[i]]=t[i]);for(;s--;)l[c++]=t[i++];return l}var r=Math.max;t.exports=n},function(t,e){function n(t,e,n,o){for(var i=-1,u=t.length,a=-1,c=n.length,f=-1,s=e.length,l=r(u-c,0),p=Array(l+s),d=!o;++i<l;)p[i]=t[i];for(var h=i;++f<s;)p[h+f]=e[f];for(;++a<c;)(d||i<u)&&(p[h+n[a]]=t[i++]);return p}var r=Math.max;t.exports=n},function(t,e,n){function r(t,e,n,r,d,h,y,v,g,b){var _=e&s,m=_?y:void 0,x=_?void 0:y,w=_?h:void 0,j=_?void 0:h;e|=_?l:p,(e&=~(_?p:l))&f||(e&=~(a|c));var O=[t,e,d,w,m,j,x,v,g,b],k=n.apply(void 0,O);return o(t)&&i(k,O),k.placeholder=r,u(k,t,e)}var o=n(153),i=n(155),u=n(157),a=1,c=2,f=4,s=8,l=32,p=64;t.exports=r},function(t,e,n){function r(t){var e=u(t),n=a[e];if("function"!=typeof n||!(e in o.prototype))return!1;if(t===n)return!0;var r=i(n);return!!r&&t===r[0]}var o=n(85),i=n(87),u=n(154),a=n(324);t.exports=r},function(t,e,n){function r(t){for(var e=t.name+"",n=o[e],r=u.call(o,e)?n.length:0;r--;){var i=n[r],a=i.func;if(null==a||a==t)return i.name}return e}var o=n(323),i=Object.prototype,u=i.hasOwnProperty;t.exports=r},function(t,e,n){var r=n(144),o=n(156),i=o(r);t.exports=i},function(t,e){function n(t){var e=0,n=0;return function(){var u=i(),a=o-(u-n);if(n=u,a>0){if(++e>=r)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}var r=800,o=16,i=Date.now;t.exports=n},function(t,e,n){function r(t,e,n){var r=e+"";return u(t,i(r,a(o(r),n)))}var o=n(326),i=n(327),u=n(158),a=n(330);t.exports=r},function(t,e,n){var r=n(328),o=n(156),i=o(r);t.exports=i},function(t,e,n){var r=n(19),o=function(){try{var t=r(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=o},function(t,e){function n(t){return t.placeholder}t.exports=n},function(t,e,n){function r(t){var e=o(t),n=e%1;return e===e?n?e-n:e:0}var o=n(339);t.exports=r},function(t,e,n){function r(t,e){return t&&o(e,i(e),t)}var o=n(62),i=n(34);t.exports=r},function(t,e,n){function r(t,e,n){var r=t[e];a.call(t,e)&&i(r,n)&&(void 0!==n||e in t)||o(t,e,n)}var o=n(92),i=n(93),u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e,n){function r(t,e){var n=u(t),r=!n&&i(t),s=!n&&!r&&a(t),p=!n&&!r&&!s&&f(t),d=n||r||s||p,h=d?o(t.length,String):[],y=h.length;for(var v in t)!e&&!l.call(t,v)||d&&("length"==v||s&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||c(v,y))||h.push(v);return h}var o=n(341),i=n(94),u=n(2),a=n(95),c=n(90),f=n(165),s=Object.prototype,l=s.hasOwnProperty;t.exports=r},function(t,e,n){var r=n(344),o=n(97),i=n(98),u=i&&i.isTypedArray,a=u?o(u):r;t.exports=a},function(t,e,n){function r(t){if(!o(t))return i(t);var e=[];for(var n in Object(t))a.call(t,n)&&"constructor"!=n&&e.push(n);return e}var o=n(99),i=n(345),u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e){function n(t,e){return function(n){return t(e(n))}}t.exports=n},function(t,e,n){function r(t){return null!=t&&i(t.length)&&!o(t)}var o=n(83),i=n(96);t.exports=r},function(t,e,n){function r(t,e,n,R,C,M){var W,L=e&k,D=e&P,B=e&A;if(n&&(W=C?n(t,R,C,M):n(t)),void 0!==W)return W;if(!w(t))return t;var N=_(t);if(N){if(W=v(t),!L)return s(t,W)}else{var F=y(t),q=F==T||F==E;if(m(t))return f(t,L);if(F==I||F==S||q&&!C){if(W=D||q?{}:b(t),!L)return D?p(t,c(W,t)):l(t,a(W,t))}else{if(!z[F])return C?t:{};W=g(t,F,L)}}M||(M=new o);var U=M.get(t);if(U)return U;if(M.set(t,W),j(t))return t.forEach(function(o){W.add(r(o,e,n,o,t,M))}),W;if(x(t))return t.forEach(function(o,i){W.set(i,r(o,e,n,i,t,M))}),W;var $=B?D?h:d:D?keysIn:O,G=N?void 0:$(t);return i(G||t,function(o,i){G&&(i=o,o=t[i]),u(W,i,r(o,e,n,i,t,M))}),W}var o=n(100),i=n(89),u=n(163),a=n(162),c=n(369),f=n(372),s=n(61),l=n(373),p=n(375),d=n(173),h=n(376),y=n(35),v=n(380),g=n(381),b=n(386),_=n(2),m=n(95),x=n(387),w=n(11),j=n(389),O=n(34),k=1,P=2,A=4,S="[object Arguments]",T="[object Function]",E="[object GeneratorFunction]",I="[object Object]",z={};z[S]=z["[object Array]"]=z["[object ArrayBuffer]"]=z["[object DataView]"]=z["[object Boolean]"]=z["[object Date]"]=z["[object Float32Array]"]=z["[object Float64Array]"]=z["[object Int8Array]"]=z["[object Int16Array]"]=z["[object Int32Array]"]=z["[object Map]"]=z["[object Number]"]=z[I]=z["[object RegExp]"]=z["[object Set]"]=z["[object String]"]=z["[object Symbol]"]=z["[object Uint8Array]"]=z["[object Uint8ClampedArray]"]=z["[object Uint16Array]"]=z["[object Uint32Array]"]=!0,z["[object Error]"]=z[T]=z["[object WeakMap]"]=!1,t.exports=r},function(t,e,n){function r(t){return u(t)?o(t,!0):i(t)}var o=n(164),i=n(370),u=n(168);t.exports=r},function(t,e){function n(){return[]}t.exports=n},function(t,e,n){var r=n(104),o=n(105),i=n(103),u=n(171),a=Object.getOwnPropertySymbols,c=a?function(t){for(var e=[];t;)r(e,i(t)),t=o(t);return e}:u;t.exports=c},function(t,e,n){function r(t){return o(t,u,i)}var o=n(174),i=n(103),u=n(34);t.exports=r},function(t,e,n){function r(t,e,n){var r=e(t);return i(t)?r:o(r,n(t))}var o=n(104),i=n(2);t.exports=r},function(t,e,n){var r=n(1),o=r.Uint8Array;t.exports=o},function(t,e,n){function r(t){return"function"==typeof t?t:null==t?u:"object"==typeof t?a(t)?i(t[0],t[1]):o(t):c(t)}var o=n(396),i=n(409),u=n(82),a=n(2),c=n(417);t.exports=r},function(t,e,n){function r(t,e,n,u,a){return t===e||(null==t||null==e||!i(t)&&!i(e)?t!==t&&e!==e:o(t,e,n,u,r,a))}var o=n(398),i=n(3);t.exports=r},function(t,e,n){function r(t,e,n,r,f,s){var l=n&a,p=t.length,d=e.length;if(p!=d&&!(l&&d>p))return!1;var h=s.get(t);if(h&&s.get(e))return h==e;var y=-1,v=!0,g=n&c?new o:void 0;for(s.set(t,e),s.set(e,t);++y<p;){var b=t[y],_=e[y];if(r)var m=l?r(_,b,y,e,t,s):r(b,_,y,t,e,s);if(void 0!==m){if(m)continue;v=!1;break}if(g){if(!i(e,function(t,e){if(!u(g,e)&&(b===t||f(b,t,n,r,s)))return g.push(e)})){v=!1;break}}else if(b!==_&&!f(b,_,n,r,s)){v=!1;break}}return s.delete(t),s.delete(e),v}var o=n(399),i=n(402),u=n(403),a=1,c=2;t.exports=r},function(t,e,n){function r(t){return t===t&&!o(t)}var o=n(11);t.exports=r},function(t,e){function n(t,e){return function(n){return null!=n&&(n[t]===e&&(void 0!==e||t in Object(n)))}}t.exports=n},function(t,e,n){function r(t,e){e=o(e,t);for(var n=0,r=e.length;null!=t&&n<r;)t=t[i(e[n++])];return n&&n==r?t:void 0}var o=n(182),i=n(37);t.exports=r},function(t,e,n){function r(t,e){return o(t)?t:i(t,e)?[t]:u(a(t))}var o=n(2),i=n(107),u=n(183),a=n(36);t.exports=r},function(t,e,n){var r=n(411),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,i=/\\(\\)?/g,u=r(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(o,function(t,n,r,o){e.push(r?o.replace(i,"$1"):n||t)}),e});t.exports=u},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length,o=Array(r);++n<r;)o[n]=e(t[n],n,t);return o}t.exports=n},function(t,e,n){function r(t){return u(i(t,void 0,o),t+"")}var o=n(421),i=n(424),u=n(158);t.exports=r},function(t,e){t.exports={cap:!1,curry:!1,fixed:!1,immutable:!1,rearg:!1}},function(t,e){t.exports=Morph.modules["bbc-morph-promise@1.0.6"]},function(t,e,n){"use strict";var r=n(108);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(187)),i=r(n(67)),u=function(){return window.Promise||(window.Promise=o.default),new o.default(function(t,e){requirejs(["idcta-v2/id-config"],function(n){n.getConfigAsync().then(function(n){n["id-availability"]&&"RED"!==n["id-availability"]?t():(i.default.track("id_flagpole_red","error"),e(new Error("Flagpole RED or value missing")))})},function(t){i.default.track("requirejs","error",{error_message:t.toString()}),e(t)})})},a={checkFlagpole:u};e.default=a,t.exports=e.default},function(t,e){t.exports=Morph.modules["whatwg-fetch@2.0.4"]},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r={live:{uasApiKey:"f84u0qqpuquhr",newtonApiKey:"hY7m6nL3dPAXyn9kK763kW65tu3hG0A0"},test:{uasApiKey:"rn5lii9febqql",newtonApiKey:"0YIvZUWEyGJxVGIyyuHIHKANb4cshSXt"}},o=function(){return"undefined"!=typeof window&&window.Morph&&""!==window.Morph.config.pushEnv?window.Morph.config.pushEnv:"test"},i=function(){return window&&window.location&&window.location.hostname&&window.location.hostname.indexOf("bbc.co.uk")>-1?"co.uk":"com"},u={test:".test",live:""},a=function(){return u[o()]},c=function(){return r[o()].uasApiKey},f=function(){return"https://activity".concat(a(),".api.bbc.").concat(i())},s=function(){return"https://newton".concat(a(),".api.bbc.").concat(i())},l=function(){return r[o()].newtonApiKey},p=function(){return"https://idcta".concat(a(),".api.bbc.co.uk")},d=function(){return"https://push".concat(a(),".api.bbci.co.uk")},h=function(){return"https://www".concat(a(),".bbc.com")},y={getUASHost:f,getUASApiKey:c,getNewtonHost:s,getNewtonApiKey:l,getIdHost:p,getMorphPushProxyHost:d,getBBCHost:h,getEnv:o};e.default=y,t.exports=e.default},function(t,e,n){var r=n(8),o=n(29),i=n(57),u=n(192),a=n(15).f;t.exports=function(t){var e=o.Symbol||(o.Symbol=i?{}:r.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:u.f(t)})}},function(t,e,n){e.f=n(18)},function(t,e,n){var r=n(137),o=n(76).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){return t&&t.__esModule?t:{default:t}}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(e){t.node=e}},p.default.createElement("polygon",{points:"32,3.5 28.5,0 16,12.5 3.5,0 0,3.5 12.5,16 0,28.5 3.5,32 16,19.5 28.5,32 32,28.5 19.5,16"}))}}]),e}(p.default.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){return t&&t.__esModule?t:{default:t}}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"18px",height:"26px",viewBox:"0 0 32 48",enableBackground:"new 0 0 32 48",xmlSpace:"preserve",ref:function(e){t.node=e}},p.default.createElement("polygon",{points:"32,3.5 28.5,0 16,12.5 3.5,0 0,3.5 12.5,16 0,28.5 3.5,32 16,19.5 28.5,32 32,28.5 19.5,16"}),p.default.createElement("rect",{y:"43.8",x:"0",height:"4.2",width:"32"}))}}]),e}(p.default.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=(r(n(38)),function(t){var e=t.onClick,n=t.text,r=t.isEnabled,i=t.className,u=t.children,a=t.aria;return o.default.createElement("button",{type:"button",className:"bitesize__button ".concat(i),disabled:!r,onClick:e,"aria-live":a},u,n)});i.defaultProps={className:"",isEnabled:!0,text:"",aria:"off",children:""};var u=i;e.default=u,t.exports=e.default},function(t,e){function n(e){"@babel/helpers - typeof";return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?t.exports=n=function(t){return typeof t}:t.exports=n=function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(e)}t.exports=n},function(t,e){function n(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}t.exports=n},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(200),o=n.n(r);Morph.modules["bbc-morph-bitesize-header-view@8.73.0"]=o.a},function(t,e,n){"use strict";t.exports=function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=43)}([function(t,e){t.exports=n(0)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return t&&t.__esModule?t:{default:t}}(n(23)),o={"en-GB":{"all-subjects":{label:"All subjects",description:"Learning resources for adults, children, parents and teachers organised by subject."},counter:{clips:{plural:"$numberOfClassClips class clips",singular:"$numberOfClassClips class clip"},guides:{plural:"$numberOfLearnerGuides learner guides",singular:"$numberOfLearnerGuides learner guide"}},subjects:"Subjects",levels:"Levels",partOf:"Part of","class-clips":"class clips",duration:"Duration $clipDuration","Learn & revise":"Learn & revise",buttonText:{added:"Added",addToMyBitesize:"Add to My Bitesize",adding:"Adding",removing:"Removing",remove:"Remove"},errorSavingNotification:"Sorry, we haven't been able to save your changes",signInUpsellToolTipTitle:"Add this learner guide to My Bitesize",signInUpsellToolTipText:"You need to be signed in to add this to My Bitesize",shareTools:{ctaText:"Share",headerText:"Share this with",readMoreText:"Read more about sharing",copyLinkText:"Copy link",copiedText:"Copied!"}},"ga-GB":{"all-subjects":{label:"Na hábhair ar fad",description:"Acmhainní foghlama do dhaoine fásta, páistí, tuismitheoirí agus múinteoirí eagraithe de réir leibhéil, ábhair agus topaice."},counter:{clips:{plural:"$numberOfClassClips gearrthóg ranga",singular:"$numberOfClassClips gearrthóg ranga"},guides:{plural:"$numberOfLearnerGuides treoir d'fhoghlaimeoirí",singular:"$numberOfLearnerGuides treoir d'fhoghlaimeoirí"}},subjects:"Ábhair",levels:"Leibhéil",partOf:"Cuid de","class-clips":"gearrthóga ranga",duration:"Fad $clipDuration","Learn & revise":"Foghlaim",buttonText:{added:"Curtha leis",addToMyBitesize:"Cuir le Mo Bitesize",adding:"Ag cur leis",removing:"Á bhaint",remove:"Bain"},errorSavingNotification:"Buartha, níor éirigh linn d'athruithe a shábháil",signInUpsellToolTipTitle:"Add this learner guide to My Bitesize",signInUpsellToolTipText:"You need to be signed in to add this to My Bitesize",shareTools:{ctaText:"Roinn",headerText:"Roinn é seo le",readMoreText:"Léigh níos mó maidir le comhroinnt",copyLinkText:"Cóipeáil an nasc",copiedText:"Cóipeáilte!"}},"gd-GB":{"all-subjects":{label:"Na cuspairean air fad",description:"Goireasan foghlaim dha inbhich, clann, pàrantan is tidsearan le fiosrachadh mu chuspairean."},counter:{clips:{plural:"$numberOfClassClips criomagan clas",singular:"$numberOfClassClips chriomag clas"},guides:{plural:"$numberOfLearnerGuides Iùil luchd-ionnsachaidh",singular:"$numberOfLearnerGuides Iùl Luchd-ionnsachaidh"}},subjects:"Cuspairean",levels:"Ìrean",partOf:"Pàirt de","class-clips":"criomagan clas",duration:"Fad $clipDuration","Learn & revise":"Ionnsaich",buttonText:{added:"Air a chur-ris",addToMyBitesize:"Cuir ri Bitesize Agamsa",adding:"A' cur-ris",removing:"A' dubhadh às",remove:"Dubh às"},errorSavingNotification:"Duilich, cha deach againn air d' atharrachaidhean a shàbhaladh",signInUpsellToolTipTitle:"Cuir an t-iùil-ionnsachaidh seo ri Bitesize Agamsa",signInUpsellToolTipText:"Feumaidh tu logadh a-steach airson seo a chur ri Bitesize Agamsa",shareTools:{ctaText:"Sgaoil",headerText:"Sgaoil seo gu",readMoreText:"Leugh tuilleadh mu sgaoileadh",copyLinkText:"Leth-bhreac den cheangal",copiedText:"Leth-bhreac dèanta!"}},"cy-GB":{"all-subjects":{label:"Holl bynciau",description:"Adnoddau dysgu i oedolion, plant, rhieni ac athrawon wedi'u trefnu yn ôl pwnc."},counter:{clips:{plural:"$numberOfClassClips o glipiau dosbarth",singular:"$numberOfClassClips clip dosbarth"},guides:{plural:"$numberOfLearnerGuides o ganllawiau i ddysgwyr",singular:"$numberOfLearnerGuides canllaw i ddysgwyr"}},subjects:"Pynciau",levels:"Lefelau",partOf:"Rhan o bwnc",partOfWelshAlternative:"Rhan o'r adran","class-clips":"clipiau dosbarth",duration:"Hyd $clipDuration","Learn & revise":"Dysgu ac adolygu",buttonText:{added:"Wedi ychwanegu",addToMyBitesize:"Ychwanegu i Fy Bitesize",adding:"Wrthi'n ychwanegu",removing:"Wrthi'n dileu",remove:"Dileu"},errorSavingNotification:"Dyw dy newidiadau ddim wedi cael eu cadw",signInUpsellToolTipTitle:"Ychwanegu’r canllaw dysgu yma i Fy Bitesize",signInUpsellToolTipText:"Rhaid i ti fewngofnodi i ychwanegu hwn i Fy Bitesize",shareTools:{ctaText:"Rhannu",headerText:"Rhannu hwn gyda",readMoreText:"Darllen mwy am rannu",copyLinkText:"Copïo’r ddolen",copiedText:"Wedi copïo"}}},i=function(){return{"en-gb":"en-GB","ga-gb":"ga-GB","gd-gb":"gd-GB","cy-gb":"cy-GB"}[(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"").toLowerCase()]||"en-GB"},u=function(t){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},u=(0,r.default)(o,"".concat(i(t),".").concat(e),"");return Object.keys(n).reduce(function(t,e){return t.replace("$".concat(e),n[e])},u)}};e.default=u,t.exports=e.default},function(t,e){t.exports=n(201)},function(t,e){t.exports=n(223)},function(t,e){t.exports=n(51)},function(t,e){t.exports=n(288)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.validateDuration=e.formatDuration=void 0;var r=/PT(?:(\d+)H)?(?:(\d+)M)?(\d+)S?/,o=function(t){return"string"==typeof t&&t.match(r)||!1};e.validateDuration=o;var i=function(t){var e=o(t);if(!e)return"";e.shift();var n=e.filter(function(t){return void 0!==t});return n.map(function(e,r){var o=e&&1===e.toString().length?"0".concat(e):e;return r<n.length-1?"".concat(o,":"):1===n.length&&t.indexOf("M")>0?"".concat(o,":00"):1===n.length&&t.indexOf("S")>0?"00:".concat(o):o}).concat().join("")};e.formatDuration=i},function(t,e){t.exports=n(67)},function(t,e){t.exports=n(442)},function(t,e){t.exports=n(443)},function(t,e){t.exports=n(450)},function(t,e,n){var r=function(t){return t&&t.__esModule?t:{default:t}}(n(3)),o=["https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/10435de9-7258-4254-957c-203067baccdf#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/543d8d8c-44ed-4020-8328-f14615098c48#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/8328092b-cddc-4201-a05e-db0c075cd5bd#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/999a43f6-53ae-4cd2-a81c-a65886423094#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/a3009169-62f3-4264-b6e8-56b6043cbabc#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/f338d1b2-1330-49a7-91f9-0c17f4fe33bb#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/405f00e2-d547-4b11-85c6-3cc41c2c4c3d#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/8ff85747-2ac0-44ed-8b4f-e06ad21dee61#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/893413eb-36d3-4aac-9b5c-fe70a75665b9#id","https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/fec8c8c7-8826-443b-8649-faaa98627e16#id"],i=[{label:"Year 1 and P2 lessons",slug:"year-1-and-p2-lessons",zid:"zjpqqp3",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/10435de9-7258-4254-957c-203067baccdf#id"},{label:"Year 2 and P3 lessons",slug:"year-2-and-p3-lessons",zid:"z7s22sg",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/543d8d8c-44ed-4020-8328-f14615098c48#id"},{label:"Year 3 and P4 lessons",slug:"year-3-and-p4-lessons",zid:"zmyxxyc",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/8328092b-cddc-4201-a05e-db0c075cd5bd#id"},{label:"Year 4 and P5 lessons",slug:"year-4-and-p5-lessons",zid:"z63tt39",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/999a43f6-53ae-4cd2-a81c-a65886423094#id"},{label:"Year 5 and P6 lessons",slug:"year-5-and-p6-lessons",zid:"zhgppg8",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/a3009169-62f3-4264-b6e8-56b6043cbabc#id"},{label:"Year 6 and P7 lessons",slug:"year-6-and-p7-lessons",zid:"zncsscw",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/f338d1b2-1330-49a7-91f9-0c17f4fe33bb#id"},{label:"Year 7 and S1 lessons",slug:"year-7-and-s1-lessons",zid:"zf9yy9q",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/405f00e2-d547-4b11-85c6-3cc41c2c4c3d#id"},{label:"Year 8 and S2 lessons",slug:"year-8-and-s2-lessons",zid:"zvdbbdm",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/8ff85747-2ac0-44ed-8b4f-e06ad21dee61#id"},{label:"Year 9 and S3 lessons",slug:"year-9-and-s3-lessons",zid:"zbjrrj6",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/893413eb-36d3-4aac-9b5c-fe70a75665b9#id"},{label:"Year 10 and S4 lessons",slug:"year-10-and-s4-lessons",zid:"zr7447h",url:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/things/fec8c8c7-8826-443b-8649-faaa98627e16#id"}],u=function(t){return(0,r.default)(t,function(t){return o.indexOf(t.url)>-1})},a=function(t){var e=(0,r.default)(i,function(e){return e.url===t.url});return e?{label:e.label,zid:e.zid,path:"/bitesize/tags/".concat(e.zid,"/").concat(e.slug)}:null},c=function(t){return"zmnmmfr"===t||void 0!==(0,r.default)(i,function(e){return e.zid===t})};t.exports={findAgeTag:u,getExtraData:a,showPlanningBanner:c}},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(9)),i=r(n(8)),u=function(t,e){return i.default.getDetails().then(function(n){return n.hasPersonalisationEnabled?o.default.postReadForAnArticle(t,e):Promise.resolve()})},a=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"favourited",n=arguments.length>2?arguments[2]:void 0;return o.default.postFavourite({id:t,type:n,action:e})},c={submitRead:u,submitFavourite:a};e.default=c,t.exports=e.default},function(t,e){t.exports=n(451)},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}function i(t){"@babel/helpers - typeof";return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function u(){return u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},u.apply(this,arguments)}function a(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function f(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function p(t){var e=y();return function(){var n,r=v(t);if(e){var o=v(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return d(this,n)}}function d(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?h(t):e}function h(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function y(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function v(t){return(v=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var g=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==i(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=r?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),b=r(n(4)),_=r(n(15)),m=r(n(16)),x=r(n(17)),w=r(n(2)),j=n(18),O=r(n(19)),k=r(n(41)),P=function(t,e){return(0,b.default)("header-image-no-logo",{"header-image-container--in-app":t},{"header-image-container--no-illustration":!e})},A=function(t){return(0,b.default)("bitesize-header--pageType",{"bitesize-header--primary-index":"primary-index"===t},{"bitesize-header--secondary-index":"secondary-index"===t})},S=function(t,e){return(0,b.default)("bitesize-header-background",t?"bitesize-header-background--phase-".concat(t.toLowerCase()):"",{"bitesize-header-background--in-app":e})},T=function(t){var e=["programme-of-study","examspecs","primary-index","secondary-index"];return(0,w.default)(e,t)},E=function(t,e){var n=["zgkw2hv","zjxhfg8","z6svr82","z826n39","zv48q6f","z2pfb9q","zyhbwmn","zvnrq6f","zwxhfg8","zdm3nrd","zbkw2hv","z7hs34j"],r=["primary-index","secondary-index"];return(0,w.default)(n,e)||(0,w.default)(r,t)},I=function(t,e){return T(t)&&!E(t,e)},z=function(t){function e(t){var n;return a(this,e),n=r.call(this,t),n.state={notificationMessage:"",notificationError:!1},n}s(e,t);var r=p(e);return f(e,[{key:"componentDidMount",value:function(){var t=this.props,e=t.phase,r=t.fosZid;n(42);var o=e.toLowerCase();window.mrSparkle({phase:o,selector:".bitesize-header-background",zid:r})}},{key:"render",value:function(){var t=this,e=this.props,n=e.phase,r=e.isInApp,o=e.fosZid,i=e.isPreview,a=e.pageType,c=e.headerData,f=e.zid,s=(e.language,e.href,this.state),l=s.notificationMessage,p=s.notificationError,d=["index-page","flashcards","tags","collection-index"],h=!r&&["primary-index","secondary-index","quizzes"].indexOf(a)<0,y=function(e,n){t.setState({notificationMessage:e,notificationError:n})},v=T(a),b=I(a,f);return g.default.createElement("div",{className:A(a)},g.default.createElement("div",{className:S(n,r)}),g.default.createElement(x.default,{message:l,notificationClearedAction:function(){t.state.notificationMessage="",t.state.notificationError=!1},isError:p}),g.default.createElement("div",null,!r&&g.default.createElement(_.default,u({},this.props,{headerData:c})),g.default.createElement(m.default,{fosZid:o,className:P(r,v)},i&&g.default.createElement("p",{className:"preview-panel"},"THIS IS A PREVIEW PAGE"),d.indexOf(a)<0&&g.default.createElement(O.default,u({},this.props,{displayPartialWidth:b,displaySubjectIllustration:v,setNotificationMessage:y,showPartOf:h})),v&&g.default.createElement(k.default,{pageHasPartialWidthContextPanel:b,url:(0,j.getIllustrationUrl)(this.props)}))))}}]),e}(g.Component);z.displayName="Header",z.defaultProps={description:"",zid:null,topicId:null,label:"",isPreview:void 0,numberOfClassClips:0,numberOfLearnerGuides:0,hasTopics:!1,fosZid:"",subdirectory:"education",globalNav:"false",phase:"",isTaggedWithMultipleTopics:!1,headerData:{},href:""},z.propTypes={href:g.PropTypes.string,description:g.PropTypes.string,fosZid:g.PropTypes.string,label:g.PropTypes.string,language:g.PropTypes.string.isRequired,numberOfClassClips:g.PropTypes.number,numberOfLearnerGuides:g.PropTypes.number,hasTopics:g.PropTypes.bool,pageType:g.PropTypes.string.isRequired,zid:g.PropTypes.string,topicId:g.PropTypes.string,isPreview:g.PropTypes.string,subdirectory:g.PropTypes.string,globalNav:g.PropTypes.string,phase:g.PropTypes.string,isInApp:g.PropTypes.bool.isRequired,isTaggedWithMultipleTopics:g.PropTypes.bool,headerData:g.PropTypes.shape({title:g.PropTypes.string.isRequired,href:g.PropTypes.string.isRequired,children:g.PropTypes.arrayOf(g.PropTypes.shape({title:g.PropTypes.string.isRequired,href:g.PropTypes.string.isRequired})).isRequired})};var R=z;e.default=R,t.exports=e.default},function(t,e){t.exports=n(456)},function(t,e){t.exports=n(457)},function(t,e){t.exports=n(459)},function(t,e,n){var r=function(t){return"primary-index"===t.pageType?"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/images/phases/primary/".concat(t.pageType,".png"):"secondary-index"===t.pageType?"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/images/phases/secondary/".concat(t.pageType,".svg"):"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/images/svgs/subjects/v2/".concat(t.phase.toLowerCase(),"/").concat(t.fosZid,".svg")};t.exports={getIllustrationUrl:r}},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return t&&t.__esModule?t:{default:t}}function i(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return i=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=i();if(e&&e.has(t))return e.get(t);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=o?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),a=o(n(2)),c=o(n(4)),f=o(n(20)),s=o(n(21)),l=o(n(25)),p=n(6),d=o(n(26)),h=o(n(29)),y=o(n(39)),v=function(t,e,n){var r="404"!==t,o=""!==e;return r&&o&&!n},g=function(t,e,n){var r=["z98jmp3","z6gw2hv","zdpp34j","z8w76sg","zp3d7ty","z8hhvcw","zkdqxnb","zqq4wxs"];return!n&&(0,a.default)(r,t)&&"guide"===e},b=function(t,e){var n=["zmnmmfr"];return!e&&!(0,a.default)(n,t)},_=function(t,e,n){var r=t;return e&&(r=r.replace(new RegExp("^(".concat(e,"\\s)([\\-|\\–]\\s)?"),"g"),"").trim()),n&&(r=r.replace(new RegExp("(\\s[\\-|\\–])?(\\s\\b".concat(n,")?$"),"g"),"")),r},m=function(t,e){return(0,c.default)("context-panel".concat(t?" context-panel--partial-width":""),{"context-panel-primary-index":"primary-index"===e},{"context-panel-secondary-index":"secondary-index"===e})},x=function(t,e){return!t&&e?"context-panel__info-container":null},w=function(t){return"context-panel__description".concat(["primary-index","secondary-index"].indexOf(t)<0?"":" context-panel__description--large")},j=function(t){var e=t.contentId,n=t.description,r=t.hasTopics,o=t.label,i=t.language,a=t.levelId,c=t.levelLabel,j=t.examspecLabel,O=t.numberOfClassClips,k=t.numberOfLearnerGuides,P=t.pageType,A=t.zid,S=t.duration,T=t.subdirectory,E=t.isInApp,I=t.setNotificationMessage,z=t.showPartOf,R=t.displayPartialWidth,C=t.displaySubjectIllustration,M=_(o,c,j);return u.default.createElement("header",{className:m(R,P)},v(P,c,E)&&u.default.createElement(f.default,t),u.default.createElement("div",{className:x(R,C)},u.default.createElement("div",{className:"context-panel__header-container"},"guide"===P&&u.default.createElement("h2",{className:"context-panel__header"},M),"guide"!==P&&u.default.createElement("h1",{className:"context-panel__header"},M)),n&&u.default.createElement("div",{className:"context-panel__description-container"},u.default.createElement("p",{className:w(P)},n)),z&&u.default.createElement(d.default,t),!r&&("clips"===P||k>0)&&u.default.createElement(s.default,{subdirectory:T,language:i,numberOfClassClips:O,numberOfLearnerGuides:k,pageType:P,zid:A}),!r&&(0,p.validateDuration)(S)&&u.default.createElement(l.default,{duration:S,language:i}),b(A,E)&&u.default.createElement(h.default,{contentId:e,pageType:P,setNotificationMessage:I,language:i}),g(a,P,E)&&u.default.createElement(y.default,{zid:e,language:i})))};j.displayName="ContextPanel",j.defaultProps={contentId:"",description:"",numberOfClassClips:0,numberOfLearnerGuides:0,hasTopics:!1,zid:"",topicId:"",levelLabel:"",examspecLabel:"",subdirectory:"bitesize",examspecId:"",levelId:"",duration:"",isInApp:!1,showPartOf:!0,displaySubjectIllustration:!1},j.propTypes={contentId:u.PropTypes.string,description:u.PropTypes.string,label:u.PropTypes.string.isRequired,language:u.PropTypes.string.isRequired,numberOfClassClips:u.PropTypes.number,numberOfLearnerGuides:u.PropTypes.number,hasTopics:u.PropTypes.bool,pageType:u.PropTypes.string.isRequired,zid:u.PropTypes.string,topicId:u.PropTypes.string,levelLabel:u.PropTypes.string,examspecLabel:u.PropTypes.string,subdirectory:u.PropTypes.string,examspecId:u.PropTypes.string,levelId:u.PropTypes.string,duration:u.PropTypes.string,isInApp:u.PropTypes.bool,setNotificationMessage:u.PropTypes.func.isRequired,showPartOf:u.PropTypes.bool,displayPartialWidth:u.PropTypes.bool.isRequired,displaySubjectIllustration:u.PropTypes.bool};var O=j;e.default=O,t.exports=e.default},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),u=function(t){var e=t.levelLabel,n=t.levelId,r=t.examspecLabel,o=t.examspecId,u=t.subdirectory;return i.default.createElement("div",{className:"level-filter"},i.default.createElement("div",{className:"level-filter__items"},i.default.createElement("div",{className:"level-filter__item"},i.default.createElement("a",{className:"level-filter__item-level",href:"/".concat(u,"/levels/").concat(n),"data-bbc-container":"context-navigation","data-bbc-metadata":JSON.stringify({CHD:"level"})},e)),r&&i.default.createElement("div",{className:"level-filter__item"},i.default.createElement("a",{className:"level-filter__item-examspec",href:"/".concat(u,"/examspecs/").concat(o),"data-bbc-container":"context-navigation","data-bbc-metadata":JSON.stringify({CHD:"examspec"})},r))))};u.displayName="LevelFilter",u.defaultProps={levelLabel:"",levelId:"",examspecLabel:"",examspecId:"",subdirectory:"bitesize"},u.propTypes={levelLabel:i.PropTypes.string,levelId:i.PropTypes.string,examspecLabel:i.PropTypes.string,examspecId:i.PropTypes.string,subdirectory:i.PropTypes.string};var a=u;e.default=a,t.exports=e.default},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return t&&t.__esModule?t:{default:t}}function i(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return i=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=i();if(e&&e.has(t))return e.get(t);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=o?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),a=o(n(22)),c=o(n(24)),f=function(t){var e=t.pageType;return u.default.createElement("div",{className:"resource-counter__container"},"clips"===e?u.default.createElement(a.default,t):u.default.createElement(c.default,t))};f.displayName="ResourceCounter",f.propTypes={pageType:u.PropTypes.string.isRequired};var s=f;e.default=s,t.exports=e.default},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return t&&t.__esModule?t:{default:t}}function i(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return i=function(){return t},t}function u(){return u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},u.apply(this,arguments)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=i();if(e&&e.has(t))return e.get(t);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=o?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),c=o(n(5)),f=o(n(1)),s=(0,c.default)(function(t){return a.default.createElement("a",u({className:"resource-counter__container-link"},t),t.children)}),l=function(t){return t>1?"plural":"singular"},p=function(t){var e=t.language,n=t.numberOfClassClips,r=t.numberOfLearnerGuides,o=t.subdirectory,i=t.zid,u=(0,f.default)(e),c=r>0&&n>0?" + ":"";return a.default.createElement("p",{className:"resource-counter__container-text"},r>0&&a.default.createElement(s,{className:"resource-counter__container-link",href:"/".concat(o,"/topics/").concat(i),iStatsAction:"learner_guides",iStatsType:"click"},u("counter.guides.".concat(l(r)),{numberOfLearnerGuides:r})),c,n>0&&u("counter.clips.".concat(l(n)),{numberOfClassClips:n}))};p.displayName="ClipsResourceCounter",p.defaultProps={numberOfClassClips:0,numberOfLearnerGuides:0,subdirectory:"bitesize"},p.propTypes={language:a.PropTypes.string.isRequired,numberOfClassClips:a.PropTypes.number,numberOfLearnerGuides:a.PropTypes.number,subdirectory:a.PropTypes.string,zid:a.PropTypes.string.isRequired};var d=p;e.default=d,t.exports=e.default},function(t,e){t.exports=n(130)},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t){return t&&t.__esModule?t:{default:t}}function i(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return i=function(){return t},t}function u(){return u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},u.apply(this,arguments)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=i();if(e&&e.has(t))return e.get(t);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=o?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),c=o(n(5)),f=o(n(1)),s=(0,c.default)(function(t){return a.default.createElement("a",u({className:"resource-counter__container-link"},t),t.children)}),l=function(t){return t>1?"plural":"singular"},p=function(t){var e=t.language,n=t.numberOfClassClips,r=t.numberOfLearnerGuides,o=t.zid,i=(0,f.default)(e);return a.default.createElement("p",{className:"resource-counter__container-text"},r>0&&i("counter.guides.".concat(l(r)),{numberOfLearnerGuides:r})+(n>0?" + ":""),n>0&&a.default.createElement(s,{className:"resource-counter__container-link",href:"/bitesize/topics/".concat(o,"/resources/1"),iStatsAction:"class_clips",iStatsType:"click"},i("counter.clips.".concat(l(n)),{numberOfClassClips:n})))};p.displayName="TopicsResourceCounter",p.defaultProps={numberOfClassClips:0,numberOfLearnerGuides:0},p.propTypes={language:a.PropTypes.string.isRequired,numberOfClassClips:a.PropTypes.number,numberOfLearnerGuides:a.PropTypes.number,zid:a.PropTypes.string.isRequired};var d=p;e.default=d,t.exports=e.default},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),u=n(6),a=function(t){return t&&t.__esModule?t:{default:t}}(n(1)),c=function(t){var e=t.language,n=t.duration,r=(0,a.default)(e),o=(0,u.formatDuration)(n);return""!==o?i.default.createElement("div",{className:"context-panel__duration"},i.default.createElement("span",null,r("duration",{clipDuration:o}))):i.default.createElement("span",null)};c.displayName="Duration",c.propTypes={language:i.PropTypes.string.isRequired,duration:i.PropTypes.string.isRequired};var f=c;e.default=f,t.exports=e.default},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}function i(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=i(n(10)),a=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),c=i(n(27)),f=i(n(3)),s=i(n(2)),l=i(n(28)),p=i(n(11)),d=["programme-of-study","field-of-study"],h=function(t,e,n,r){if(p.default.findAgeTag(r))return{label:"Daily lessons",link:"/".concat(t,"/dailylessons")};var o=["Support","Careers"],i=r&&(0,f.default)(r,function(t){return o.indexOf(t.label)>-1}),u=i?i.label:null;return!n&&u?{label:u,link:"/".concat(t,"/").concat(u.toLowerCase())}:{label:e?e.label:"Learn & revise",link:e&&e.id?"/".concat(t,"/subjects/").concat(e.id):"/".concat(t).concat("/learn")}},y=function(t){var e=t.subdirectory,n=t.tags,r=t.topicLabel,o=t.topicId,i=t.language,u=t.crumbtrailData.body,f=t.stubs,s=(0,c.default)(u,"type"),p=r?{label:r,id:o}:s["topic-of-study"],d=h(e,s["programme-of-study"],p,n);return a.default.createElement(l.default,{subdirectory:e,language:i,context:d,topic:p,stubs:f})},v=function(t){var e=t.crumbtrail,n=t.language,r=t.stubs,o=t.subdirectory,i=(0,c.default)(e,"type"),u=i["programme-of-study"],f=i["topic-of-study"],s=h(o,u);return a.default.createElement(l.default,{subdirectory:o,language:n,context:s,topic:f,stubs:r})},g=u.default.create(y,{data:function(t){var e=t.zid,n=t.topicId;return{crumbtrailData:{uri:{data:"bbc-morph-bitesize-crumbtrail",zid:t.isTaggedWithMultipleTopics?n:e},updates:!1}}}}),b=function(t){var e=t.pageType;return(0,s.default)(d,e)?a.default.createElement(v,t):a.default.createElement(g,t)};b.displayName="ContextLabelContainer",b.defaultProps={subdirectory:"",language:"en-GB",tags:[],topicLabel:void 0,topicId:void 0,stubs:[],crumbtrail:[]},b.propTypes={subdirectory:a.PropTypes.string,language:a.PropTypes.string,crumbtrail:a.PropTypes.arrayOf(a.PropTypes.shape({id:a.PropTypes.string.isRequired,type:a.PropTypes.string.isRequired,label:a.PropTypes.string.isRequired}).isRequired),tags:a.PropTypes.arrayOf(a.PropTypes.shape({label:a.PropTypes.string})),topicLabel:a.PropTypes.string,topicId:a.PropTypes.string,stubs:a.default.PropTypes.shape({id:a.default.PropTypes.string.isRequired,label:a.default.PropTypes.string.isRequired,path:a.default.PropTypes.string.isRequired})};var _=b;e.default=_,t.exports=e.default},function(t,e){t.exports=n(466)},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),u=function(t){return t&&t.__esModule?t:{default:t}}(n(1)),a=function(t){return null!==t.match(/subjects/)?"part-of-subject":null!==t.match(/topics/)?"part-of-topic":"part-of-section"},c=function(t){var e=t.context,n=t.language,r=t.stubs,o=(0,u.default)(n),c=e.label,f=e.link,s=e&&null!==c.match(/Learn & revise|Support/i)&&"cy-GB"===n?"partOfWelshAlternative":"partOf";return i.default.createElement("div",{className:"context-label"},i.default.createElement("div",{className:"context-label__title"},o(s)),i.default.createElement("div",{className:"context-label__items"},e&&i.default.createElement("div",{className:"context-label__item"},i.default.createElement("a",{className:"context-label__item-link",href:f,"data-bbc-container":"context-navigation","data-bbc-metadata":JSON.stringify({CHD:"".concat(a(f))})},o(c)||c)),r.map(function(t){return i.default.createElement("div",{className:"context-label__item"},i.default.createElement("a",{className:"context-label__item-link",href:t.path,"data-bbc-container":"context-navigation","data-bbc-metadata":JSON.stringify({CHD:"".concat(a(t.path))})},t.label))})))};c.displayName="ContextLabel",c.defaultProps={topic:{},language:"en-GB",stubs:[]},c.propTypes={context:i.PropTypes.shape({label:i.PropTypes.string,link:i.PropTypes.string}).isRequired,topic:i.PropTypes.shape({id:i.PropTypes.string,type:i.PropTypes.string,label:i.PropTypes.string}),language:i.PropTypes.string,stubs:i.default.PropTypes.arrayOf(i.PropTypes.shape({id:i.default.PropTypes.string.isRequired,label:i.default.PropTypes.string.isRequired,path:i.default.PropTypes.string.isRequired}).isRequired)};var f=c;e.default=f,t.exports=e.default},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}function i(t){"@babel/helpers - typeof";return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function u(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&a(t.prototype,e),n&&a(t,n),t}function f(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(t){var e=h();return function(){var n,r=y(t);if(e){var o=y(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return p(this,n)}}function p(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function h(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function y(t){return(y=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var v=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==i(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=r?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),g=r(n(7)),b=r(n(8)),_=r(n(30)),m=r(n(31)),x=r(n(32)),w=r(n(33)),j=r(n(9)),O=r(n(34)),k=r(n(12)),P=r(n(1)),A=r(n(35)),S=function(t){return t?"favourited":"unfavourited"},T=function(t){return S(!t)},E=function(t){return"guide"===t||"blocks"===t},I=function(t){return"guide"===t?"study-guide":"article"},z=function(t){function e(t){var r;u(this,e),r=n.call(this,t);var o=(0,P.default)(t.language);return r.localisations={buttonText:o("buttonText"),errorMessage:o("errorSavingNotification"),signInUpsellToolTipTitle:o("signInUpsellToolTipTitle"),signInUpsellToolTipText:o("signInUpsellToolTipText")},r.state={featureEnabled:!1,isFavourited:!1,saveInProgress:!1,uasClientType:I(t.pageType),isSignedIn:!1},r.save=r.save.bind(d(r)),r.getButtonContent=r.getButtonContent.bind(d(r)),r}f(e,t);var n=l(e);return c(e,[{key:"componentDidMount",value:function(){var t=this,e=this.props,n=e.contentId,r=e.pageType,o=this.state.uasClientType;E(r)&&(this.setState({featureEnabled:!0}),b.default.getDetails().then(function(e){e.isSignedIn&&(t.setState({isSignedIn:!0}),j.default.isFavourited(n,o).then(function(e){t.setState({isFavourited:e})}))}).catch(function(){}))}},{key:"getButtonContent",value:function(){var t=this.state,e=t.isFavourited,n=t.saveInProgress,r=this.localisations.buttonText,o="bitesize-header__add-to-my-bitesize bitesize-header__add-to-my-bitesize--action-".concat(S(e));return e?{buttonClass:o,text:r.added,icon:v.default.createElement(x.default,null),hoverText:r.remove,hoverIcon:v.default.createElement(w.default,null),savingText:r.removing,iStatsAction:"remove_cta",saveInProgress:n}:{buttonClass:o,text:r.addToMyBitesize,icon:v.default.createElement(m.default,null),hoverText:r.addToMyBitesize,hoverIcon:v.default.createElement(m.default,null),savingText:r.adding,iStatsAction:"add_cta",saveInProgress:n}}},{key:"createButtonView",value:function(){var t=this.getButtonContent(),e=t.buttonClass,n=t.text,r=t.icon,o=t.hoverText,i=t.hoverIcon,u=t.savingText,a=t.saveInProgress;return v.default.createElement(_.default,{disabled:a,onClick:this.save,className:e,aria:"polite"},a&&v.default.createElement("span",{className:"bitesize-header__add-button-content bitesize-header__add-button-content--saving"},i,v.default.createElement("span",null,u)),!a&&v.default.createElement("span",null,v.default.createElement("span",{className:"bitesize-header__add-button-content bitesize-header__add-button-content--normal"},r,v.default.createElement("span",null,n)),v.default.createElement("span",{className:"bitesize-header__add-button-content bitesize-header__add-button-content--hover"},i,v.default.createElement("span",null,o))))}},{key:"createSignedOutButtonView",value:function(){var t=this.props.language,e=this.localisations,n=e.signInUpsellToolTipText,r=e.signInUpsellToolTipTitle,o=e.buttonText,i=v.default.createElement("span",null,v.default.createElement(m.default,null),v.default.createElement("span",null,o.addToMyBitesize));return v.default.createElement(O.default,{title:r,text:n,buttonContent:i,body:v.default.createElement(A.default,{language:t})})}},{key:"save",value:function(){var t=this,e=this.state,n=e.isFavourited,r=e.uasClientType,o=e.isSignedIn,i=this.localisations.errorMessage;if(o){var u=this.props,a=u.contentId,c=u.setNotificationMessage,f=this.getButtonContent(n),s=f.iStatsAction;this.setState({saveInProgress:!0}),g.default.track(s,"click"),k.default.submitFavourite(a,T(n),r).then(function(){t.setState({isFavourited:!n,saveInProgress:!1})}).catch(function(){t.setState({saveInProgress:!1}),c(i,!0)})}}},{key:"render",value:function(){var t=this.state,e=t.featureEnabled,n=t.isSignedIn;return e?v.default.createElement("div",{className:"bitesize-header__my-bitesize"},n?this.createButtonView():this.createSignedOutButtonView()):null}}]),e}(v.Component);z.propTypes={contentId:v.PropTypes.string.isRequired,pageType:v.PropTypes.string.isRequired,setNotificationMessage:v.PropTypes.func.isRequired,language:v.PropTypes.string.isRequired};var R=z;e.default=R,t.exports=e.default},function(t,e){t.exports=n(196)},function(t,e){t.exports=n(477)},function(t,e){t.exports=n(478)},function(t,e){t.exports=n(479)},function(t,e){t.exports=n(480)},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}function i(t){"@babel/helpers - typeof";return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function u(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function a(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function c(t,e,n){return e&&a(t.prototype,e),n&&a(t,n),t}function f(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&s(t,e)}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(t){var e=h();return function(){var n,r=y(t);if(e){var o=y(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return p(this,n)}}function p(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?d(t):e}function d(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function h(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function y(t){return(y=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var v=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==i(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=r?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),g=r(n(7)),b=r(n(36)),_=r(n(37)),m=r(n(38)),x=function(){g.default.track("sign-in-cta","click")},w=function(){g.default.track("register","click")},j=function(){document.querySelector(".my-bitesize__idcta-container .id4-cta-signin").addEventListener("click",x),document.querySelector(".my-bitesize__idcta-container .id4-cta-register").addEventListener("click",w)},O=function(){document.querySelector(".my-bitesize__idcta-container .id4-cta-signin").removeEventListener("click",x),document.querySelector(".my-bitesize__idcta-container .id4-cta-register").removeEventListener("click",w)},k=function(t){function e(t){var r;return u(this,e),r=n.call(this,t),r.state={idcta:void 0},r}f(e,t);var n=l(e);return c(e,[{key:"componentDidMount",value:function(){var t=this,e=this.props,n=e.language,r=e.purposeText;b.default.checkFlagpole().then(function(){var e=window.location.href;(0,_.default)(n,r,e).then(function(e){document.head.insertAdjacentHTML("beforeend",e.inlineHead),t.setState({idcta:{__html:e.html}})}).catch(function(){})}).catch(function(){})}},{key:"componentDidUpdate",value:function(){this.state.idcta&&j()}},{key:"componentWillUnmount",value:function(){this.state.idcta&&O()}},{key:"render",value:function(){var t=this.state.idcta;return t?v.default.createElement("div",{className:"my-bitesize__idcta-container",dangerouslySetInnerHTML:t}):v.default.createElement("div",{className:"my-bitesize__idcta-container"},v.default.createElement(m.default,null))}}]),e}(v.default.Component);k.defaultProps={language:"en-GB",purposeText:""},k.propTypes={language:v.PropTypes.string,purposeText:v.PropTypes.string};var P=k;e.default=P,t.exports=e.default},function(t,e){t.exports=n(188)},function(t,e){t.exports=n(481)},function(t,e){t.exports=n(482)},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),u=n(40),a=function(t){return t&&t.__esModule?t:{default:t}}(n(1)),c=function(t){var e=t.zid,n=t.language,r="https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/".concat(e),o=(0,a.default)(n),c=o("shareTools"),f=c.ctaText,s=c.headerText,l=c.readMoreText,p=c.copyLinkText,d=c.copiedText;return i.default.createElement("span",{className:"bitesize-sharetools"},i.default.createElement("span",{className:"bitesize-sharetools__standalone-buttons"},i.default.createElement(u.Twitter,{link:r,position:0,standalone:!0}),i.default.createElement(u.Facebook,{link:r,position:1,standalone:!0}),i.default.createElement(u.WhatsApp,{link:r,position:2,standalone:!0})),i.default.createElement(u.SharePanel,{ctaText:f,headerText:s,readMoreText:l},i.default.createElement(u.Twitter,{link:r,position:0}),i.default.createElement(u.Facebook,{link:r,position:1}),i.default.createElement(u.WhatsApp,{link:r,position:2}),i.default.createElement(u.CopyLinkBox,{link:r,shareText:p,copiedText:d,position:3})))};c.displayName="BitesizeShareTools",c.propTypes={zid:i.PropTypes.string.isRequired,language:i.PropTypes.string.isRequired};var f=c;e.default=f,t.exports=e.default},function(t,e){t.exports=n(483)},function(t,e,n){function r(t){"@babel/helpers - typeof";return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==r(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=i?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),u=function(t){var e=t.pageHasPartialWidthContextPanel,n=t.url;return i.default.createElement("span",{className:e?"bitesize-header__subject-illustration--partial-width":"bitesize-header__subject-illustration",style:{backgroundImage:"url(".concat(n,")")}})};u.propTypes={pageHasPartialWidthContextPanel:i.PropTypes.bool.isRequired,url:i.PropTypes.string.isRequired};var a=u;e.default=a,t.exports=e.default},function(t,e){t.exports=n(497)},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(){return o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(this,arguments)}function i(t,e){if(null==t)return{};var n,r,o=u(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function u(t,e){if(null==t)return{};var n,r,o={},i=Object.keys(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||(o[n]=t[n]);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=r(n(0)),c=r(n(10)),f=r(n(44)),s=r(n(45)),l=r(n(46)),p=r(n(47)),d=r(n(48)),h=r(n(49)),y=r(n(50)),v=r(n(51)),g=r(n(53)),b=r(n(54)),_=r(n(55)),m=r(n(56)),x=r(n(57)),w=r(n(58)),j=r(n(60)),O=r(n(61)),k=r(n(62)),P=r(n(63)),A=r(n(64)),S={"all-subjects":p.default,blocks:x.default,clips:l.default,clip:s.default,"collection-index":j.default,examspecs:d.default,"field-of-study":h.default,flashcards:w.default,guide:y.default,"index-page":w.default,levels:v.default,"programme-of-study":g.default,"primary-index":k.default,"secondary-index":P.default,tags:O.default,topic:b.default,quizzes:A.default,404:_.default,500:m.default},T=function(t){var e=t.pageType,n=i(t,["pageType"]);return S[e].getData(n)},E=function(t){var e=t.pageType,n=i(t,["pageType"]);return S[e].parseData(n)},I=function(t){return a.default.createElement(f.default,o({},t,{parseData:E}))},z=c.default.create(I,{data:function(t){return T(t)?{context:{uri:T(t),requireSuccess:!0,updates:!1},levels:{uri:{data:"bbc-morph-bitesize-level"},requireSuccess:!1,updates:!1}}:{}}}),R=function(t){if(t.pageType in S)return a.default.createElement(z,t);throw new Error("".concat(t.pageType," is an invalid page type"))},C=R;e.default=C,t.exports=e.default},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(){if("function"!=typeof WeakMap)return null;var t=new WeakMap;return o=function(){return t},t}function i(t){"@babel/helpers - typeof";return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function u(){return u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},u.apply(this,arguments)}function a(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function f(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),t}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function p(t){var e=y();return function(){var n,r=v(t);if(e){var o=v(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return d(this,n)}}function d(t,e){return!e||"object"!==i(e)&&"function"!=typeof e?h(t):e}function h(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function y(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function v(t){return(v=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var g=function(t){if(t&&t.__esModule)return t;if(null===t||"object"!==i(t)&&"function"!=typeof t)return{default:t};var e=o();if(e&&e.has(t))return e.get(t);var n={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var u in t)if(Object.prototype.hasOwnProperty.call(t,u)){var a=r?Object.getOwnPropertyDescriptor(t,u):null;a&&(a.get||a.set)?Object.defineProperty(n,u,a):n[u]=t[u]}return n.default=t,e&&e.set(t,n),n}(n(0)),b=r(n(3)),_=r(n(14)),m=r(n(12)),x=function(t){function e(){return a(this,e),n.apply(this,arguments)}s(e,t);var n=p(e);return f(e,[{key:"componentDidMount",value:function(){if("blocks"===this.props.pageType){var t=this.props,e=t.context.body,n=e.id,r=e.topics,o=t.isPreview,i=r.map(function(t){return t.keyStage.id}).join(","),u=r.map(function(t){return t.programmeOfStudy.id}).join(","),a={levelId:i,posId:u},c=r.map(function(t){if(t.examSpecification&&t.examSpecification.id)return t.examSpecification.id}).filter(Boolean).join(",");""!==c&&Object.assign(a,{examspecId:c}),"true"!==o&&m.default.submitRead(n,a)}}},{key:"render",value:function(){var t=this.props,e=t.language,n=t.href,r=t.parseData,o=t.pageType,i=t.isPreview,a=t.subdirectory,c=t.zid,f=t.topicId,s=t.context.body,l=t.levels,p=t.isInApp,d=t.messagingBannerType,h=r({pageType:o,data:s,language:e,zid:c,topicId:f}),y="";if(l){var v=(0,b.default)(l.body,function(t){return t.id===h.levelId});y=v?v.phase:""}return g.default.createElement(_.default,u({href:n,language:e,pageType:o,isPreview:i,subdirectory:a,phase:y,isInApp:p,messagingBannerType:d},h))}}]),e}(g.Component);x.defaultProps={context:{body:{}},levels:void 0,globalNav:"false",isPreview:void 0,zid:void 0,topicId:void 0,isInApp:!1,href:"",messagingBannerType:""},x.propTypes={zid:g.PropTypes.string,topicId:g.PropTypes.string,pageType:g.PropTypes.string.isRequired,href:g.PropTypes.string,parseData:g.PropTypes.func.isRequired,context:g.PropTypes.oneOfType([g.PropTypes.shape({body:g.PropTypes.shape()}),g.PropTypes.shape({body:g.PropTypes.shape({id:g.PropTypes.string.isRequired,label:g.PropTypes.string.isRequired,description:g.PropTypes.string.isRequired,programmeOfStudy:g.PropTypes.shape({label:g.PropTypes.string.isRequired}),fieldOfStudy:g.PropTypes.shape({label:g.PropTypes.string})})}),g.PropTypes.array]),levels:g.PropTypes.shape({body:g.PropTypes.arrayOf(g.PropTypes.shape({id:g.PropTypes.string.isRequired,label:g.PropTypes.string,description:g.PropTypes.string,lowerAge:g.PropTypes.number,phase:g.PropTypes.string,subLevelOf:g.PropTypes.string,type:g.PropTypes.string,upperAge:g.PropTypes.number,nations:g.PropTypes.arrayOf(g.PropTypes.shape({id:g.PropTypes.string.isRequired,label:g.PropTypes.string.isRequired,type:g.PropTypes.string}))}))}),globalNav:g.PropTypes.string,language:g.PropTypes.string.isRequired,subdirectory:g.PropTypes.string.isRequired,isPreview:g.PropTypes.string,isInApp:g.PropTypes.bool,messagingBannerType:g.PropTypes.string};var w=x;e.default=w,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return{data:"bbc-morph-bitesize-class-clip-data",clipId:t.zid}},o=function(t){var e=t.data;return{label:e.title,fosZid:e.topicOfStudy.fieldOfStudy.id,zid:e.topicOfStudyId,levelLabel:e.topicOfStudy.level.label,levelId:e.topicOfStudy.level.id,topicLabel:e.topicOfStudy.label,topicId:e.topicOfStudy.id,duration:e.video?e.video.duration:null,stubs:[{id:e.topicOfStudy.id,label:e.topicOfStudy.label,path:"/bitesize/topics/".concat(e.topicOfStudy.id)}]}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return t&&t.__esModule?t:{default:t}}(n(1)),o=function(t){return{data:"bbc-morph-bitesize-class-clips-data",topicOfStudyId:t.zid}},i=function(t){var e=t.data,n=t.language,o=t.zid,i=(0,r.default)(n);return{label:"".concat(e.topicOfStudy.label," ").concat(i("class-clips")),fosZid:e.topicOfStudy.fieldOfStudy.id,zid:o,numberOfClassClips:e.clipsCount,numberOfLearnerGuides:e.guidesCount,levelLabel:e.topicOfStudy.level.label,levelId:e.topicOfStudy.level.id,topicLabel:e.topicOfStudy.label,topicId:e.topicOfStudy.id,stubs:[{id:e.topicOfStudy.id,label:e.topicOfStudy.label,path:"/bitesize/topics/".concat(e.topicOfStudy.id)}]}},u={getData:o,parseData:i};e.default=u,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return t&&t.__esModule?t:{default:t}}(n(1)),o=function(){},i=function(t){var e=t.language,n=(0,r.default)(e);return{label:n("all-subjects.label"),description:n("all-subjects.description")}},u={getData:o,parseData:i};e.default=u,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return{data:"bbc-morph-bitesize-examspec",zid:t.zid}},o=function(t){var e=t.data,n=t.zid;return{label:"".concat(e.programmeOfStudy.label," - ").concat(e.label),fosZid:e.programmeOfStudy.fieldOfStudy.id,zid:n,levelLabel:e.programmeOfStudy.keyStage.label,levelId:e.programmeOfStudy.keyStage.id,examspecLabel:e.label,examspecId:n}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return{data:"bbc-morph-bitesize-header-data",pageType:"field-of-study",language:t.language,zid:t.zid}},o=function(t){return t.data},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n(13),o=(0,r.omitBy)(r.isNil),i=function(t){var e=t.zid,n=t.chapterType,r=t.cacheBuster;return o({data:"bbc-morph-bitesize-header-data",zid:e,chapterType:n,pageType:"guide",pageIndex:1,cacheBuster:r})},u=function(t){return t.data},a={getData:i,parseData:u};e.default=a,t.exports=e.default},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(52)),i=r(n(2)),u=r(n(1)),a=function(t){return{data:"bbc-morph-bitesize-level",levelId:t.zid}},c=function(t){var e=["zvbc87h","zc9d7ty","zfxmtv4"];return!!(0,i.default)(e,t)},f=function(t){return Object.assign((0,o.default)(t.language),{primaryLabel:"Learn & Revise",primaryLink:""})},s=function(t){var e=t.data,n=t.language,r=t.zid,o="subjects";return c(r)&&(o="levels"),{label:(0,u.default)(n)(o),fosZid:"",description:e.description,zid:r,levelLabel:e.label,levelId:r}},l=function(t){return t.zid?s(t):f(t)},p={getData:a,parseData:l};e.default=p,t.exports=e.default},function(t,e){t.exports=n(498)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return{data:"bbc-morph-bitesize-header-data",zid:t.zid,pageType:"programme-of-study"}},o=function(t){return t.data},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(t){return{data:"bbc-morph-bitesize-topics-for-web",language:t.language,zid:t.zid}},o=function(t){var e=t.data;return{label:e.label,fosZid:e.taughtInFieldZid,numberOfClassClips:e.numberOfClassClips,numberOfLearnerGuides:e.content.length,zid:e.id,hasTopics:e.topics.length>0,levelLabel:e.level,levelId:e.taughtAtLevelId,examspecLabel:e.examspecLabel,examspecId:e.examspecId}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(){},o=function(){return{label:"Sorry, but we’re having difficulties showing you the page you asked for.",description:"The content might have been moved or deleted, or you may have mis-typed the link."}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(){},o=function(){return{label:"Sorry, but we’re having difficulties showing you the page you asked for.",description:"Please try again later."}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),n.push.apply(n,r)}return n}function i(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach(function(e){u(t,e,n[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))})}return t}function u(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=r(n(3)),c=r(n(11)),f=function(t){return{data:"bbc-morph-blocks-article-data",projectName:"blocks-bitesize",zid:t.zid,preview:t.preview,timestamp:t.timestamp}},s=function(t,e){return e&&t&&t.length?(0,a.default)(t,function(t){return t.id===e}):null},l=function(t,e){var n=t.topics;if(n&&n.length){var r=s(n,e)||n[0],o=r.id,u=r.label,a=r.fieldOfStudy,c=r.keyStage,f=r.examSpecification,l=[{id:o,label:u,path:"/bitesize/topics/".concat(o)}];return i({levelLabel:c.label,levelId:c.id,examspecLabel:f.label,examspecId:f.id,stubs:l,fosZid:a.id},n.length>1?{topicId:o}:{})}return null},p=function(t){var e=t.tags,n=c.default.findAgeTag(e);if(!n)return null;var r=c.default.getExtraData(n);return{stubs:[{id:r.zid,label:r.label,path:r.path}]}},d=function(t,e){var n=l(t,e);return n||p(t)},h=function(t){var e=t.data,n=t.topicId,r=e.headline,o=e.topics,u=e.tags,a=o&&1===o.length,c=o&&o.length>1;return i({label:r,zid:a?o[0].id:e.id,contentId:e.id,tags:u,isTaggedWithMultipleTopics:c},d(e,n))},y={getData:f,parseData:h};e.default=y,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n(13),o=function(t){return t&&t.__esModule?t:{default:t}}(n(59)),i=(0,r.omitBy)(r.isNil),u=function(t){var e=t.href,n=t.language,r=void 0===n?"en-GB":n,u=t.cacheBuster;if(e&&(0,o.default)(e,"support")||(0,o.default)(e,"careers"))return i({data:"bbc-morph-bitesize-header-data",pageType:"index-page",href:e,language:r,cacheBuster:u})},a=function(t){return{headerData:t.data}},c={getData:u,parseData:a};e.default=c,t.exports=e.default},function(t,e){t.exports=n(499)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n(13),o=(0,r.omitBy)(r.isNil),i=function(t){var e=t.slug,n=t.language,r=void 0===n?"en-GB":n,i=t.cacheBuster;return o({data:"bbc-morph-bitesize-header-data",pageType:"collection-index",slug:e,language:r,cacheBuster:i})},u=function(t){return{headerData:t.data||{}}},a={getData:i,parseData:u};e.default=a,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n(13),o=(0,r.omitBy)(r.isNil),i=function(t){var e=t.zid,n=t.language,r=void 0===n?"en-GB":n,i=t.cacheBuster;return o({data:"bbc-morph-bitesize-header-data",pageType:"tags",zid:e,language:r,cacheBuster:i})},u=function(t){var e=t.data,n=t.zid;return{headerData:e||{},zid:n}},a={getData:i,parseData:u};e.default=a,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(){},o=function(){return{label:"Primary Levels",description:"Ages 3 to 11"}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(){},o=function(){return{label:"Secondary Levels",description:"Ages 11 to 16"}},i={getData:r,parseData:o};e.default=i,t.exports=e.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=function(){},o=function(){},i={getData:r,parseData:o};e.default=i,t.exports=e.default}])},function(t,e,n){function r(t,e,n,r){t=i(t)?t:c(t),n=n&&!r?a(n):0;var s=t.length;return n<0&&(n=f(s+n,0)),u(t)?n<=s&&t.indexOf(e,n)>-1:!!s&&o(t,e,n)>-1}var o=n(202),i=n(41),u=n(207),a=n(69),c=n(210),f=Math.max;t.exports=r},function(t,e,n){function r(t,e,n){return e===e?u(t,e,n):o(t,i,n)}var o=n(115),i=n(203),u=n(204);t.exports=r},function(t,e){function n(t){return t!==t}t.exports=n},function(t,e){function n(t,e,n){for(var r=n-1,o=t.length;++r<o;)if(t[r]===e)return r;return-1}t.exports=n},function(t,e,n){function r(t){var e=u.call(t,c),n=t[c];try{t[c]=void 0;var r=!0}catch(t){}var o=a.call(t);return r&&(e?t[c]=n:delete t[c]),o}var o=n(42),i=Object.prototype,u=i.hasOwnProperty,a=i.toString,c=o?o.toStringTag:void 0;t.exports=r},function(t,e){function n(t){return o.call(t)}var r=Object.prototype,o=r.toString;t.exports=n},function(t,e,n){function r(t){return"string"==typeof t||!i(t)&&u(t)&&o(t)==a}var o=n(21),i=n(5),u=n(22),a="[object String]";t.exports=r},function(t,e,n){function r(t){if(!t)return 0===t?t:0;if((t=o(t))===i||t===-i){return(t<0?-1:1)*u}return t===t?t:0}var o=n(209),i=1/0,u=1.7976931348623157e308;t.exports=r},function(t,e,n){function r(t){if("number"==typeof t)return t;if(i(t))return u;if(o(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=o(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(a,"");var n=f.test(t);return n||s.test(t)?l(t.slice(2),n?2:8):c.test(t)?u:+t}var o=n(44),i=n(45),u=NaN,a=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,f=/^0b[01]+$/i,s=/^0o[0-7]+$/i,l=parseInt;t.exports=r},function(t,e,n){function r(t){return null==t?[]:o(t,i(t))}var o=n(211),i=n(28);t.exports=r},function(t,e,n){function r(t,e){return o(e,function(e){return t[e]})}var o=n(118);t.exports=r},function(t,e,n){function r(t,e){var n=u(t),r=!n&&i(t),s=!n&&!r&&a(t),p=!n&&!r&&!s&&f(t),d=n||r||s||p,h=d?o(t.length,String):[],y=h.length;for(var v in t)!e&&!l.call(t,v)||d&&("length"==v||s&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||c(v,y))||h.push(v);return h}var o=n(213),i=n(119),u=n(5),a=n(120),c=n(121),f=n(122),s=Object.prototype,l=s.hasOwnProperty;t.exports=r},function(t,e){function n(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}t.exports=n},function(t,e,n){function r(t){return i(t)&&o(t)==u}var o=n(21),i=n(22),u="[object Arguments]";t.exports=r},function(t,e){function n(){return!1}t.exports=n},function(t,e,n){function r(t){return u(t)&&i(t.length)&&!!a[o(t)]}var o=n(21),i=n(68),u=n(22),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1,t.exports=r},function(t,e){function n(t){return function(e){return t(e)}}t.exports=n},function(t,e,n){(function(t){var r=n(117),o="object"==typeof e&&e&&!e.nodeType&&e,i=o&&"object"==typeof t&&t&&!t.nodeType&&t,u=i&&i.exports===o,a=u&&r.process,c=function(){try{var t=i&&i.require&&i.require("util").types;return t||a&&a.binding&&a.binding("util")}catch(t){}}();t.exports=c}).call(e,n(12)(t))},function(t,e,n){function r(t){if(!o(t))return i(t);var e=[];for(var n in Object(t))a.call(t,n)&&"constructor"!=n&&e.push(n);return e}var o=n(220),i=n(221),u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e){function n(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||r)}var r=Object.prototype;t.exports=n},function(t,e,n){var r=n(222),o=r(Object.keys,Object);t.exports=o},function(t,e){function n(t,e){return function(n){return t(e(n))}}t.exports=n},function(t,e,n){var r=n(224),o=n(287),i=r(o);t.exports=i},function(t,e,n){function r(t){return function(e,n,r){var a=Object(e);if(!i(e)){var c=o(n,3);e=u(e),n=function(t){return c(a[t],t,a)}}var f=t(e,n,r);return f>-1?a[c?e[f]:f]:void 0}}var o=n(70),i=n(41),u=n(28);t.exports=r},function(t,e,n){function r(t){var e=i(t);return 1==e.length&&e[0][2]?u(e[0][0],e[0][1]):function(n){return n===t||o(n,t,e)}}var o=n(226),i=n(275),u=n(129);t.exports=r},function(t,e,n){function r(t,e,n,r){var c=n.length,f=c,s=!r;if(null==t)return!f;for(t=Object(t);c--;){var l=n[c];if(s&&l[2]?l[1]!==t[l[0]]:!(l[0]in t))return!1}for(;++c<f;){l=n[c];var p=l[0],d=t[p],h=l[1];if(s&&l[2]){if(void 0===d&&!(p in t))return!1}else{var y=new o;if(r)var v=r(d,h,p,t,e,y);if(!(void 0===v?i(h,d,u|a,r,y):v))return!1}}return!0}var o=n(123),i=n(126),u=1,a=2;t.exports=r},function(t,e){function n(){this.__data__=[],this.size=0}t.exports=n},function(t,e,n){function r(t){var e=this.__data__,n=o(e,t);return!(n<0)&&(n==e.length-1?e.pop():u.call(e,n,1),--this.size,!0)}var o=n(47),i=Array.prototype,u=i.splice;t.exports=r},function(t,e,n){function r(t){var e=this.__data__,n=o(e,t);return n<0?void 0:e[n][1]}var o=n(47);t.exports=r},function(t,e,n){function r(t){return o(this.__data__,t)>-1}var o=n(47);t.exports=r},function(t,e,n){function r(t,e){var n=this.__data__,r=o(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this}var o=n(47);t.exports=r},function(t,e,n){function r(){this.__data__=new o,this.size=0}var o=n(46);t.exports=r},function(t,e){function n(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}t.exports=n},function(t,e){function n(t){return this.__data__.get(t)}t.exports=n},function(t,e){function n(t){return this.__data__.has(t)}t.exports=n},function(t,e,n){function r(t,e){var n=this.__data__;if(n instanceof o){var r=n.__data__;if(!i||r.length<a-1)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new u(r)}return n.set(t,e),this.size=n.size,this}var o=n(46),i=n(71),u=n(72),a=200;t.exports=r},function(t,e,n){function r(t){return!(!u(t)||i(t))&&(o(t)?h:f).test(a(t))}var o=n(116),i=n(238),u=n(44),a=n(125),c=/[\\^$.*+?()[\]{}|]/g,f=/^\[object .+?Constructor\]$/,s=Function.prototype,l=Object.prototype,p=s.toString,d=l.hasOwnProperty,h=RegExp("^"+p.call(d).replace(c,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=r},function(t,e,n){function r(t){return!!i&&i in t}var o=n(239),i=function(){var t=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();t.exports=r},function(t,e,n){var r=n(7),o=r["__core-js_shared__"];t.exports=o},function(t,e){function n(t,e){return null==t?void 0:t[e]}t.exports=n},function(t,e,n){function r(){this.size=0,this.__data__={hash:new o,map:new(u||i),string:new o}}var o=n(242),i=n(46),u=n(71);t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(243),i=n(244),u=n(245),a=n(246),c=n(247);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){function r(){this.__data__=o?o(null):{},this.size=0}var o=n(48);t.exports=r},function(t,e){function n(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}t.exports=n},function(t,e,n){function r(t){var e=this.__data__;if(o){var n=e[t];return n===i?void 0:n}return a.call(e,t)?e[t]:void 0}var o=n(48),i="__lodash_hash_undefined__",u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){var e=this.__data__;return o?void 0!==e[t]:u.call(e,t)}var o=n(48),i=Object.prototype,u=i.hasOwnProperty;t.exports=r},function(t,e,n){function r(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=o&&void 0===e?i:e,this}var o=n(48),i="__lodash_hash_undefined__";t.exports=r},function(t,e,n){function r(t){var e=o(this,t).delete(t);return this.size-=e?1:0,e}var o=n(49);t.exports=r},function(t,e){function n(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}t.exports=n},function(t,e,n){function r(t){return o(this,t).get(t)}var o=n(49);t.exports=r},function(t,e,n){function r(t){return o(this,t).has(t)}var o=n(49);t.exports=r},function(t,e,n){function r(t,e){var n=o(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this}var o=n(49);t.exports=r},function(t,e,n){function r(t,e,n,r,v,b){var _=f(t),m=f(e),x=_?h:c(t),w=m?h:c(e);x=x==d?y:x,w=w==d?y:w;var j=x==y,O=w==y,k=x==w;if(k&&s(t)){if(!s(e))return!1;_=!0,j=!1}if(k&&!j)return b||(b=new o),_||l(t)?i(t,e,n,r,v,b):u(t,e,x,n,r,v,b);if(!(n&p)){var P=j&&g.call(t,"__wrapped__"),A=O&&g.call(e,"__wrapped__");if(P||A){var S=P?t.value():t,T=A?e.value():e;return b||(b=new o),v(S,T,n,r,b)}}return!!k&&(b||(b=new o),a(t,e,n,r,v,b))}var o=n(123),i=n(127),u=n(259),a=n(263),c=n(270),f=n(5),s=n(120),l=n(122),p=1,d="[object Arguments]",h="[object Array]",y="[object Object]",v=Object.prototype,g=v.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new o;++e<n;)this.add(t[e])}var o=n(72),i=n(255),u=n(256);r.prototype.add=r.prototype.push=i,r.prototype.has=u,t.exports=r},function(t,e){function n(t){return this.__data__.set(t,r),this}var r="__lodash_hash_undefined__";t.exports=n},function(t,e){function n(t){return this.__data__.has(t)}t.exports=n},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}t.exports=n},function(t,e){function n(t,e){return t.has(e)}t.exports=n},function(t,e,n){function r(t,e,n,r,o,j,k){switch(n){case w:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case x:return!(t.byteLength!=e.byteLength||!j(new i(t),new i(e)));case p:case d:case v:return u(+t,+e);case h:return t.name==e.name&&t.message==e.message;case g:case _:return t==e+"";case y:var P=c;case b:var A=r&s;if(P||(P=f),t.size!=e.size&&!A)return!1;var S=k.get(t);if(S)return S==e;r|=l,k.set(t,e);var T=a(P(t),P(e),r,o,j,k);return k.delete(t),T;case m:if(O)return O.call(t)==O.call(e)}return!1}var o=n(42),i=n(260),u=n(124),a=n(127),c=n(261),f=n(262),s=1,l=2,p="[object Boolean]",d="[object Date]",h="[object Error]",y="[object Map]",v="[object Number]",g="[object RegExp]",b="[object Set]",_="[object String]",m="[object Symbol]",x="[object ArrayBuffer]",w="[object DataView]",j=o?o.prototype:void 0,O=j?j.valueOf:void 0;t.exports=r},function(t,e,n){var r=n(7),o=r.Uint8Array;t.exports=o},function(t,e){function n(t){var e=-1,n=Array(t.size);return t.forEach(function(t,r){n[++e]=[r,t]}),n}t.exports=n},function(t,e){function n(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}t.exports=n},function(t,e,n){function r(t,e,n,r,u,c){var f=n&i,s=o(t),l=s.length;if(l!=o(e).length&&!f)return!1;for(var p=l;p--;){var d=s[p];if(!(f?d in e:a.call(e,d)))return!1}var h=c.get(t);if(h&&c.get(e))return h==e;var y=!0;c.set(t,e),c.set(e,t);for(var v=f;++p<l;){d=s[p];var g=t[d],b=e[d];if(r)var _=f?r(b,g,d,e,t,c):r(g,b,d,t,e,c);if(!(void 0===_?g===b||u(g,b,n,r,c):_)){y=!1;break}v||(v="constructor"==d)}if(y&&!v){var m=t.constructor,x=e.constructor;m!=x&&"constructor"in t&&"constructor"in e&&!("function"==typeof m&&m instanceof m&&"function"==typeof x&&x instanceof x)&&(y=!1)}return c.delete(t),c.delete(e),y}var o=n(264),i=1,u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){return o(t,u,i)}var o=n(265),i=n(267),u=n(28);t.exports=r},function(t,e,n){function r(t,e,n){var r=e(t);return i(t)?r:o(r,n(t))}var o=n(266),i=n(5);t.exports=r},function(t,e){function n(t,e){for(var n=-1,r=e.length,o=t.length;++n<r;)t[o+n]=e[n];return t}t.exports=n},function(t,e,n){var r=n(268),o=n(269),i=Object.prototype,u=i.propertyIsEnumerable,a=Object.getOwnPropertySymbols,c=a?function(t){return null==t?[]:(t=Object(t),r(a(t),function(e){return u.call(t,e)}))}:o;t.exports=c},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length,o=0,i=[];++n<r;){var u=t[n];e(u,n,t)&&(i[o++]=u)}return i}t.exports=n},function(t,e){function n(){return[]}t.exports=n},function(t,e,n){var r=n(271),o=n(71),i=n(272),u=n(273),a=n(274),c=n(21),f=n(125),s=f(r),l=f(o),p=f(i),d=f(u),h=f(a),y=c;(r&&"[object DataView]"!=y(new r(new ArrayBuffer(1)))||o&&"[object Map]"!=y(new o)||i&&"[object Promise]"!=y(i.resolve())||u&&"[object Set]"!=y(new u)||a&&"[object WeakMap]"!=y(new a))&&(y=function(t){var e=c(t),n="[object Object]"==e?t.constructor:void 0,r=n?f(n):"";if(r)switch(r){case s:return"[object DataView]";case l:return"[object Map]";case p:return"[object Promise]";case d:return"[object Set]";case h:return"[object WeakMap]"}return e}),t.exports=y},function(t,e,n){var r=n(13),o=n(7),i=r(o,"DataView");t.exports=i},function(t,e,n){var r=n(13),o=n(7),i=r(o,"Promise");t.exports=i},function(t,e,n){var r=n(13),o=n(7),i=r(o,"Set");t.exports=i},function(t,e,n){var r=n(13),o=n(7),i=r(o,"WeakMap");t.exports=i},function(t,e,n){function r(t){for(var e=i(t),n=e.length;n--;){var r=e[n],u=t[r];e[n]=[r,u,o(u)]}return e}var o=n(128),i=n(28);t.exports=r},function(t,e,n){function r(t,e){return a(t)&&c(e)?f(s(t),e):function(n){var r=i(n,t);return void 0===r&&r===e?u(n,t):o(e,r,l|p)}}var o=n(126),i=n(130),u=n(280),a=n(73),c=n(128),f=n(129),s=n(50),l=1,p=2;t.exports=r},function(t,e,n){var r=n(278),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,i=/\\(\\)?/g,u=r(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(o,function(t,n,r,o){e.push(r?o.replace(i,"$1"):n||t)}),e});t.exports=u},function(t,e,n){function r(t){var e=o(t,function(t){return n.size===i&&n.clear(),t}),n=e.cache;return e}var o=n(279),i=500;t.exports=r},function(t,e,n){function r(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(i);var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var u=t.apply(this,r);return n.cache=i.set(o,u)||i,u};return n.cache=new(r.Cache||o),n}var o=n(72),i="Expected a function";r.Cache=o,t.exports=r},function(t,e,n){function r(t,e){return null!=t&&i(t,e,o)}var o=n(281),i=n(282);t.exports=r},function(t,e){function n(t,e){return null!=t&&e in Object(t)}t.exports=n},function(t,e,n){function r(t,e,n){e=o(e,t);for(var r=-1,s=e.length,l=!1;++r<s;){var p=f(e[r]);if(!(l=null!=t&&n(t,p)))break;t=t[p]}return l||++r!=s?l:!!(s=null==t?0:t.length)&&c(s)&&a(p,s)&&(u(t)||i(t))}var o=n(132),i=n(119),u=n(5),a=n(121),c=n(68),f=n(50);t.exports=r},function(t,e){function n(t){return t}t.exports=n},function(t,e,n){function r(t){return u(t)?o(a(t)):i(t)}var o=n(285),i=n(286),u=n(73),a=n(50);t.exports=r},function(t,e){function n(t){return function(e){return null==e?void 0:e[t]}}t.exports=n},function(t,e,n){function r(t){return function(e){return o(e,t)}}var o=n(131);t.exports=r},function(t,e,n){function r(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var c=null==n?0:u(n);return c<0&&(c=a(r+c,0)),o(t,i(e,3),c)}var o=n(115),i=n(70),u=n(69),a=Math.max;t.exports=r},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(){return o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(this,arguments)}function i(t,e){if(null==t)return{};var n,r,o=u(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function u(t,e){if(null==t)return{};var n,r,o={},i=Object.keys(t);for(r=0;r<i.length;r++)n=i[r],e.indexOf(n)>=0||(o[n]=t[n]);return o}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(289),n(297),n(142),n(305),n(307);var a=r(n(308)),c=r(n(0)),f=(r(n(38)),r(n(67))),s=n(430),l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3?arguments[3]:void 0;return function(){f.default.track((0,s.formatIStatsValue)(t),(0,s.formatIStatsValue)(e),(0,a.default)(s.formatIStatsValue,n)),r.apply(void 0,arguments)}},p=function(t){function e(e){var n=e.onClick,r=e.iStatsAction,u=e.iStatsType,a=e.iStatsOptions,f=i(e,["onClick","iStatsAction","iStatsType","iStatsOptions"]);return c.default.createElement(t,o({},f,{onClick:l(r,u,a,n)}))}return e.defaultProps={onClick:function(){return null},iStatsType:"",iStatsOptions:{}},e.displayName="iStatsOnClick(".concat(t.displayName||t.name||"Component",")"),e};e.default=p,t.exports=e.default},function(t,e,n){var r=n(52);r(r.S+r.F,"Object",{assign:n(293)})},function(t,e,n){t.exports=n(56)("native-function-to-string",Function.toString)},function(t,e,n){var r=n(292);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,n){"use strict";var r=n(24),o=n(77),i=n(58),u=n(78),a=n(138),c=Object.assign;t.exports=!c||n(23)(function(){var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach(function(t){e[t]=t}),7!=c({},t)[n]||Object.keys(c({},e)).join("")!=r})?function(t,e){for(var n=u(t),c=arguments.length,f=1,s=o.f,l=i.f;c>f;)for(var p,d=a(arguments[f++]),h=s?r(d).concat(s(d)):r(d),y=h.length,v=0;y>v;)l.call(d,p=h[v++])&&(n[p]=d[p]);return n}:c},function(t,e,n){var r=n(25),o=n(295),i=n(296);t.exports=function(t){return function(e,n,u){var a,c=r(e),f=o(c.length),s=i(u,f);if(t&&n!=n){for(;f>s;)if((a=c[s++])!=a)return!0}else for(;f>s;s++)if((t||s in c)&&c[s]===n)return t||s||0;return!t&&-1}}},function(t,e,n){var r=n(141),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(141),o=Math.max,i=Math.min;t.exports=function(t,e){return t=r(t),t<0?o(t+e,0):i(t,e)}},function(t,e,n){for(var r=n(142),o=n(24),i=n(55),u=n(8),a=n(14),c=n(79),f=n(18),s=f("iterator"),l=f("toStringTag"),p=c.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=o(d),y=0;y<h.length;y++){var v,g=h[y],b=d[g],_=u[g],m=_&&_.prototype;if(m&&(m[s]||a(m,s,p),m[l]||a(m,l,g),c[g]=p,b))for(v in r)m[v]||i(m,v,r[v],!0)}},function(t,e,n){var r=n(18)("unscopables"),o=Array.prototype;void 0==o[r]&&n(14)(o,r,{}),t.exports=function(t){o[r][t]=!0}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){"use strict";var r=n(57),o=n(52),i=n(55),u=n(14),a=n(79),c=n(301),f=n(80),s=n(304),l=n(18)("iterator"),p=!([].keys&&"next"in[].keys()),d=function(){return this};t.exports=function(t,e,n,h,y,v,g){c(n,e,h);var b,_,m,x=function(t){if(!p&&t in k)return k[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+" Iterator",j="values"==y,O=!1,k=t.prototype,P=k[l]||k["@@iterator"]||y&&k[y],A=P||x(y),S=y?j?x("entries"):A:void 0,T="Array"==e?k.entries||P:P;if(T&&(m=s(T.call(new t)))!==Object.prototype&&m.next&&(f(m,w,!0),r||"function"==typeof m[l]||u(m,l,d)),j&&P&&"values"!==P.name&&(O=!0,A=function(){return P.call(this)}),r&&!g||!p&&!O&&k[l]||u(k,l,A),a[e]=A,a[w]=d,y)if(b={values:j?A:x("values"),keys:v?A:x("keys"),entries:S},g)for(_ in b)_ in k||i(k,_,b[_]);else o(o.P+o.F*(p||O),e,b);return b}},function(t,e,n){"use strict";var r=n(143),o=n(54),i=n(80),u={};n(14)(u,n(18)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(u,{next:o(1,n)}),i(t,e+" Iterator")}},function(t,e,n){var r=n(15),o=n(53),i=n(24);t.exports=n(16)?Object.defineProperties:function(t,e){o(t);for(var n,u=i(e),a=u.length,c=0;a>c;)r.f(t,n=u[c++],e[n]);return t}},function(t,e,n){var r=n(8).document;t.exports=r&&r.documentElement},function(t,e,n){var r=n(17),o=n(78),i=n(75)("IE_PROTO"),u=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=o(t),r(t,i)?t[i]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},function(t,e,n){var r=n(78),o=n(24);n(306)("keys",function(){return function(t){return o(r(t))}})},function(t,e,n){var r=n(52),o=n(29),i=n(23);t.exports=function(t,e){var n=(o.Object||{})[t]||Object[t],u={};u[t]=e(n),r(r.S+r.F*i(function(){n(1)}),"Object",u)}},function(t,e,n){var r=n(15).f,o=Function.prototype,i=/^\s*function ([^ (]*)/;"name"in o||n(16)&&r(o,"name",{configurable:!0,get:function(){try{return(""+this).match(i)[1]}catch(t){return""}}})},function(t,e,n){var r=n(32),o=r("mapValues",n(426));o.placeholder=n(26),t.exports=o},function(t,e,n){function r(t,e){return 2==e?function(e,n){return t.apply(void 0,arguments)}:function(e){return t.apply(void 0,arguments)}}function o(t,e){return 2==e?function(e,n){return t(e,n)}:function(e){return t(e)}}function i(t){for(var e=t?t.length:0,n=Array(e);e--;)n[e]=t[e];return n}function u(t){return function(e){return t({},e)}}function a(t,e){return function(){for(var n=arguments.length,r=n-1,o=Array(n);n--;)o[n]=arguments[n];var i=o[e],u=o.slice(0,e);return i&&p.apply(u,i),e!=r&&p.apply(u,o.slice(e+1)),t.apply(this,u)}}function c(t,e){return function(){var n=arguments.length;if(n){for(var r=Array(n);n--;)r[n]=arguments[n];var o=r[0]=e.apply(void 0,r);return t.apply(void 0,r),o}}}function f(t,e,n,p){function d(t,e){if(P.cap){var n=s.iterateeRearg[t];if(n)return x(e,n);var r=!O&&s.iterateeAry[t];if(r)return m(e,r)}return e}function h(t,e,n){return S||P.curry&&n>1?W(e,n):e}function y(t,e,n){if(P.fixed&&(T||!s.skipFixed[t])){var r=s.methodSpread[t],o=r&&r.start;return void 0===o?R(e,n):a(e,o)}return e}function v(t,e,n){return P.rearg&&n>1&&(E||!s.skipRearg[t])?U(e,s.methodRearg[t]||s.aryRearg[n]):e}function g(t,e){e=G(e);for(var n=-1,r=e.length,o=r-1,i=M(Object(t)),u=i;null!=u&&++n<r;){var a=e[n],c=u[a];null==c||N(c)||B(c)||F(c)||(u[a]=M(n==o?c:Object(c))),u=u[a]}return i}function b(t){return H.runInContext.convert(t)(void 0)}function _(t,e){var n=s.aliasToReal[t]||t,r=s.remap[n]||n,o=p;return function(t){var i=O?I:z,u=O?I[r]:e,a=C(C({},o),t);return f(i,n,u,a)}}function m(t,e){return w(t,function(t){return"function"==typeof t?o(t,e):t})}function x(t,e){return w(t,function(t){var n=e.length;return r(U(o(t,n),e),n)})}function w(t,e){return function(){var n=arguments.length;if(!n)return t();for(var r=Array(n);n--;)r[n]=arguments[n];var o=P.rearg?0:n-1;return r[o]=e(r[o]),t.apply(void 0,r)}}function j(t,e,n){var r,o=s.aliasToReal[t]||t,a=e,f=K[o];return f?a=f(e):P.immutable&&(s.mutate.array[o]?a=c(e,i):s.mutate.object[o]?a=c(e,u(e)):s.mutate.set[o]&&(a=c(e,g))),L(V,function(t){return L(s.aryMethod[t],function(e){if(o==e){var n=s.methodSpread[o],i=n&&n.afterRearg;return r=i?y(o,v(o,a,t),t):v(o,y(o,a,t),t),r=d(o,r),r=h(o,r,t),!1}}),!r}),r||(r=a),r==e&&(r=S?W(r,1):function(){return e.apply(this,arguments)}),r.convert=_(o,e),r.placeholder=e.placeholder=n,r}var O="function"==typeof e,k=e===Object(e);if(k&&(p=n,n=e,e=void 0),null==n)throw new TypeError;p||(p={});var P={cap:!("cap"in p)||p.cap,curry:!("curry"in p)||p.curry,fixed:!("fixed"in p)||p.fixed,immutable:!("immutable"in p)||p.immutable,rearg:!("rearg"in p)||p.rearg},A=O?n:l,S="curry"in p&&p.curry,T="fixed"in p&&p.fixed,E="rearg"in p&&p.rearg,I=O?n.runInContext():void 0,z=O?n:{ary:t.ary,assign:t.assign,clone:t.clone,curry:t.curry,forEach:t.forEach,isArray:t.isArray,isError:t.isError,isFunction:t.isFunction,isWeakMap:t.isWeakMap,iteratee:t.iteratee,keys:t.keys,rearg:t.rearg,toInteger:t.toInteger,toPath:t.toPath},R=z.ary,C=z.assign,M=z.clone,W=z.curry,L=z.forEach,D=z.isArray,B=z.isError,N=z.isFunction,F=z.isWeakMap,q=z.keys,U=z.rearg,$=z.toInteger,G=z.toPath,V=q(s.aryMethod),K={castArray:function(t){return function(){var e=arguments[0];return D(e)?t(i(e)):t.apply(void 0,arguments)}},iteratee:function(t){return function(){var e=arguments[0],n=arguments[1],r=t(e,n),i=r.length;return P.cap&&"number"==typeof n?(n=n>2?n-2:1,i&&i<=n?r:o(r,n)):r}},mixin:function(t){return function(e){var n=this;if(!N(n))return t(n,Object(e));var r=[];return L(q(e),function(t){N(e[t])&&r.push([t,n.prototype[t]])}),t(n,Object(e)),L(r,function(t){var e=t[1];N(e)?n.prototype[t[0]]=e:delete n.prototype[t[0]]}),n}},nthArg:function(t){return function(e){var n=e<0?1:$(e)+1;return W(t(e),n)}},rearg:function(t){return function(e,n){var r=n?n.length:0;return W(t(e,n),r)}},runInContext:function(e){return function(n){return f(t,e(n),p)}}};if(!k)return j(e,n,A);var H=n,Z=[];return L(V,function(t){L(s.aryMethod[t],function(t){var e=H[s.remap[t]||t];e&&Z.push([t,j(t,e,H)])})}),L(q(H),function(t){var e=H[t];if("function"==typeof e){for(var n=Z.length;n--;)if(Z[n][0]==t)return;e.convert=_(t,e),Z.push([t,e])}}),L(Z,function(t){H[t[0]]=t[1]}),H.convert=b,H.placeholder=H,L(q(H),function(t){L(s.realToAlias[t]||[],function(e){H[e]=H[t]})}),H}var s=n(310),l=n(26),p=Array.prototype.push;t.exports=f},function(t,e){e.aliasToReal={each:"forEach",eachRight:"forEachRight",entries:"toPairs",entriesIn:"toPairsIn",extend:"assignIn",extendAll:"assignInAll",extendAllWith:"assignInAllWith",extendWith:"assignInWith",first:"head",conforms:"conformsTo",matches:"isMatch",property:"get",__:"placeholder",F:"stubFalse",T:"stubTrue",all:"every",allPass:"overEvery",always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",complement:"negate",compose:"flowRight",contains:"includes",dissoc:"unset",dissocPath:"unset",dropLast:"dropRight",dropLastWhile:"dropRightWhile",equals:"isEqual",identical:"eq",indexBy:"keyBy",init:"initial",invertObj:"invert",juxt:"over",omitAll:"omit",nAry:"ary",path:"get",pathEq:"matchesProperty",pathOr:"getOr",paths:"at",pickAll:"pick",pipe:"flow",pluck:"map",prop:"get",propEq:"matchesProperty",propOr:"getOr",props:"at",symmetricDifference:"xor",symmetricDifferenceBy:"xorBy",symmetricDifferenceWith:"xorWith",takeLast:"takeRight",takeLastWhile:"takeRightWhile",unapply:"rest",unnest:"flatten",useWith:"overArgs",where:"conformsTo",whereEq:"isMatch",zipObj:"zipObject"},e.aryMethod={1:["assignAll","assignInAll","attempt","castArray","ceil","create","curry","curryRight","defaultsAll","defaultsDeepAll","floor","flow","flowRight","fromPairs","invert","iteratee","memoize","method","mergeAll","methodOf","mixin","nthArg","over","overEvery","overSome","rest","reverse","round","runInContext","spread","template","trim","trimEnd","trimStart","uniqueId","words","zipAll"],2:["add","after","ary","assign","assignAllWith","assignIn","assignInAllWith","at","before","bind","bindAll","bindKey","chunk","cloneDeepWith","cloneWith","concat","conformsTo","countBy","curryN","curryRightN","debounce","defaults","defaultsDeep","defaultTo","delay","difference","divide","drop","dropRight","dropRightWhile","dropWhile","endsWith","eq","every","filter","find","findIndex","findKey","findLast","findLastIndex","findLastKey","flatMap","flatMapDeep","flattenDepth","forEach","forEachRight","forIn","forInRight","forOwn","forOwnRight","get","groupBy","gt","gte","has","hasIn","includes","indexOf","intersection","invertBy","invoke","invokeMap","isEqual","isMatch","join","keyBy","lastIndexOf","lt","lte","map","mapKeys","mapValues","matchesProperty","maxBy","meanBy","merge","mergeAllWith","minBy","multiply","nth","omit","omitBy","overArgs","pad","padEnd","padStart","parseInt","partial","partialRight","partition","pick","pickBy","propertyOf","pull","pullAll","pullAt","random","range","rangeRight","rearg","reject","remove","repeat","restFrom","result","sampleSize","some","sortBy","sortedIndex","sortedIndexOf","sortedLastIndex","sortedLastIndexOf","sortedUniqBy","split","spreadFrom","startsWith","subtract","sumBy","take","takeRight","takeRightWhile","takeWhile","tap","throttle","thru","times","trimChars","trimCharsEnd","trimCharsStart","truncate","union","uniqBy","uniqWith","unset","unzipWith","without","wrap","xor","zip","zipObject","zipObjectDeep"],3:["assignInWith","assignWith","clamp","differenceBy","differenceWith","findFrom","findIndexFrom","findLastFrom","findLastIndexFrom","getOr","includesFrom","indexOfFrom","inRange","intersectionBy","intersectionWith","invokeArgs","invokeArgsMap","isEqualWith","isMatchWith","flatMapDepth","lastIndexOfFrom","mergeWith","orderBy","padChars","padCharsEnd","padCharsStart","pullAllBy","pullAllWith","rangeStep","rangeStepRight","reduce","reduceRight","replace","set","slice","sortedIndexBy","sortedLastIndexBy","transform","unionBy","unionWith","update","xorBy","xorWith","zipWith"],4:["fill","setWith","updateWith"]},e.aryRearg={2:[1,0],3:[2,0,1],4:[3,2,0,1]},e.iterateeAry={dropRightWhile:1,dropWhile:1,every:1,filter:1,find:1,findFrom:1,findIndex:1,findIndexFrom:1,findKey:1,findLast:1,findLastFrom:1,findLastIndex:1,findLastIndexFrom:1,findLastKey:1,flatMap:1,flatMapDeep:1,flatMapDepth:1,forEach:1,forEachRight:1,forIn:1,forInRight:1,forOwn:1,forOwnRight:1,map:1,mapKeys:1,mapValues:1,partition:1,reduce:2,reduceRight:2,reject:1,remove:1,some:1,takeRightWhile:1,takeWhile:1,times:1,transform:2},e.iterateeRearg={mapKeys:[1],reduceRight:[1,0]},e.methodRearg={assignInAllWith:[1,0],assignInWith:[1,2,0],assignAllWith:[1,0],assignWith:[1,2,0],differenceBy:[1,2,0],differenceWith:[1,2,0],getOr:[2,1,0],intersectionBy:[1,2,0],intersectionWith:[1,2,0],isEqualWith:[1,2,0],isMatchWith:[2,1,0],mergeAllWith:[1,0],mergeWith:[1,2,0],padChars:[2,1,0],padCharsEnd:[2,1,0],padCharsStart:[2,1,0],pullAllBy:[2,1,0],pullAllWith:[2,1,0],rangeStep:[1,2,0],rangeStepRight:[1,2,0],setWith:[3,1,2,0],sortedIndexBy:[2,1,0],sortedLastIndexBy:[2,1,0],unionBy:[1,2,0],unionWith:[1,2,0],updateWith:[3,1,2,0],xorBy:[1,2,0],xorWith:[1,2,0],zipWith:[1,2,0]},e.methodSpread={assignAll:{start:0},assignAllWith:{start:0},assignInAll:{start:0},assignInAllWith:{start:0},defaultsAll:{start:0},defaultsDeepAll:{start:0},invokeArgs:{start:2},invokeArgsMap:{start:2},mergeAll:{start:0},mergeAllWith:{start:0},partial:{start:1},partialRight:{start:1},without:{start:1},zipAll:{start:0}},e.mutate={array:{fill:!0,pull:!0,pullAll:!0,pullAllBy:!0,pullAllWith:!0,pullAt:!0,remove:!0,reverse:!0},object:{assign:!0,assignAll:!0,assignAllWith:!0,assignIn:!0,assignInAll:!0,assignInAllWith:!0,assignInWith:!0,assignWith:!0,defaults:!0,defaultsAll:!0,defaultsDeep:!0,defaultsDeepAll:!0,merge:!0,mergeAll:!0,mergeAllWith:!0,mergeWith:!0},set:{set:!0,setWith:!0,unset:!0,update:!0,updateWith:!0}},e.realToAlias=function(){var t=Object.prototype.hasOwnProperty,n=e.aliasToReal,r={};for(var o in n){var i=n[o];t.call(r,i)?r[i].push(o):r[i]=[o]}return r}(),e.remap={assignAll:"assign",assignAllWith:"assignWith",assignInAll:"assignIn",assignInAllWith:"assignInWith",curryN:"curry",curryRightN:"curryRight",defaultsAll:"defaults",defaultsDeepAll:"defaultsDeep",findFrom:"find",findIndexFrom:"findIndex",findLastFrom:"findLast",findLastIndexFrom:"findLastIndex",getOr:"get",includesFrom:"includes",indexOfFrom:"indexOf",invokeArgs:"invoke",invokeArgsMap:"invokeMap",lastIndexOfFrom:"lastIndexOf",mergeAll:"merge",mergeAllWith:"mergeWith",padChars:"pad",padCharsEnd:"padEnd",padCharsStart:"padStart",propertyOf:"get",rangeStep:"range",rangeStepRight:"rangeRight",restFrom:"rest",spreadFrom:"spread",trimChars:"trim",trimCharsEnd:"trimEnd",trimCharsStart:"trimStart",zipAll:"zip"},e.skipFixed={castArray:!0,flow:!0,flowRight:!0,iteratee:!0,mixin:!0,rearg:!0,runInContext:!0},e.skipRearg={add:!0,assign:!0,assignIn:!0,bind:!0,bindKey:!0,concat:!0,difference:!0,divide:!0,eq:!0,gt:!0,gte:!0,isEqual:!0,lt:!0,lte:!0,matchesProperty:!0,merge:!0,multiply:!0,overArgs:!0,partial:!0,partialRight:!0,propertyOf:!0,random:!0,range:!0,rangeRight:!0,subtract:!0,zip:!0,zipObject:!0,zipObjectDeep:!0}},function(t,e,n){t.exports={ary:n(312),assign:n(162),clone:n(346),curry:n(391),forEach:n(89),isArray:n(2),isError:n(392),isFunction:n(83),isWeakMap:n(394),iteratee:n(395),keys:n(166),rearg:n(420),toInteger:n(161),toPath:n(425)}},function(t,e,n){function r(t,e,n){return e=n?void 0:e,e=t&&null==e?t.length:e,o(t,i,void 0,void 0,void 0,void 0,e)}var o=n(81),i=128;t.exports=r},function(t,e,n){function r(t){return!(!u(t)||i(t))&&(o(t)?h:f).test(a(t))}var o=n(83),i=n(316),u=n(11),a=n(148),c=/[\\^$.*+?()[\]{}|]/g,f=/^\[object .+?Constructor\]$/,s=Function.prototype,l=Object.prototype,p=s.toString,d=l.hasOwnProperty,h=RegExp("^"+p.call(d).replace(c,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=r},function(t,e,n){function r(t){var e=u.call(t,c),n=t[c];try{t[c]=void 0;var r=!0}catch(t){}var o=a.call(t);return r&&(e?t[c]=n:delete t[c]),o}var o=n(27),i=Object.prototype,u=i.hasOwnProperty,a=i.toString,c=o?o.toStringTag:void 0;t.exports=r},function(t,e){function n(t){return o.call(t)}var r=Object.prototype,o=r.toString;t.exports=n},function(t,e,n){function r(t){return!!i&&i in t}var o=n(317),i=function(){var t=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();t.exports=r},function(t,e,n){var r=n(1),o=r["__core-js_shared__"];t.exports=o},function(t,e){function n(t,e){return null==t?void 0:t[e]}t.exports=n},function(t,e,n){function r(t,e,n){function r(){return(this&&this!==i&&this instanceof r?c:t).apply(a?n:this,arguments)}var a=e&u,c=o(t);return r}var o=n(59),i=n(1),u=1;t.exports=r},function(t,e,n){function r(t,e,n){function r(){for(var i=arguments.length,p=Array(i),d=i,h=c(r);d--;)p[d]=arguments[d];var y=i<3&&p[0]!==h&&p[i-1]!==h?[]:f(p,h);return(i-=y.length)<n?a(t,e,u,r.placeholder,void 0,p,y,void 0,void 0,n-i):o(this&&this!==s&&this instanceof r?l:t,this,p)}var l=i(t);return r}var o=n(84),i=n(59),u=n(149),a=n(152),c=n(160),f=n(91),s=n(1);t.exports=r},function(t,e){function n(t,e){for(var n=t.length,r=0;n--;)t[n]===e&&++r;return r}t.exports=n},function(t,e){function n(){}t.exports=n},function(t,e){var n={};t.exports=n},function(t,e,n){function r(t){if(c(t)&&!a(t)&&!(t instanceof o)){if(t instanceof i)return t;if(l.call(t,"__wrapped__"))return f(t)}return new i(t)}var o=n(85),i=n(88),u=n(86),a=n(2),c=n(3),f=n(325),s=Object.prototype,l=s.hasOwnProperty;r.prototype=u.prototype,r.prototype.constructor=r,t.exports=r},function(t,e,n){function r(t){if(t instanceof o)return t.clone();var e=new i(t.__wrapped__,t.__chain__);return e.__actions__=u(t.__actions__),e.__index__=t.__index__,e.__values__=t.__values__,e}var o=n(85),i=n(88),u=n(61);t.exports=r},function(t,e){function n(t){var e=t.match(r);return e?e[1].split(o):[]}var r=/\{\n\/\* \[wrapped with (.+)\] \*/,o=/,? & /;t.exports=n},function(t,e){function n(t,e){var n=e.length;if(!n)return t;var o=n-1;return e[o]=(n>1?"& ":"")+e[o],e=e.join(n>2?", ":" "),t.replace(r,"{\n/* [wrapped with "+e+"] */\n")}var r=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/;t.exports=n},function(t,e,n){var r=n(329),o=n(159),i=n(82),u=o?function(t,e){return o(t,"toString",{configurable:!0,enumerable:!1,value:r(e),writable:!0})}:i;t.exports=u},function(t,e){function n(t){return function(){return t}}t.exports=n},function(t,e,n){function r(t,e){return o(u,function(n){var r="_."+n[0];e&n[1]&&!i(t,r)&&t.push(r)}),t.sort()}var o=n(89),i=n(331),u=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]];t.exports=r},function(t,e,n){function r(t,e){return!!(null==t?0:t.length)&&o(t,e,0)>-1}var o=n(332);t.exports=r},function(t,e,n){function r(t,e,n){return e===e?u(t,e,n):o(t,i,n)}var o=n(333),i=n(334),u=n(335);t.exports=r},function(t,e){function n(t,e,n,r){for(var o=t.length,i=n+(r?1:-1);r?i--:++i<o;)if(e(t[i],i,t))return i;return-1}t.exports=n},function(t,e){function n(t){return t!==t}t.exports=n},function(t,e){function n(t,e,n){for(var r=n-1,o=t.length;++r<o;)if(t[r]===e)return r;return-1}t.exports=n},function(t,e,n){function r(t,e){for(var n=t.length,r=u(e.length,n),a=o(t);r--;){var c=e[r];t[r]=i(c,n)?a[c]:void 0}return t}var o=n(61),i=n(90),u=Math.min;t.exports=r},function(t,e,n){function r(t,e,n,r){function c(){for(var e=-1,i=arguments.length,a=-1,l=r.length,p=Array(l+i),d=this&&this!==u&&this instanceof c?s:t;++a<l;)p[a]=r[a];for(;i--;)p[a++]=arguments[++e];return o(d,f?n:this,p)}var f=e&a,s=i(t);return c}var o=n(84),i=n(59),u=n(1),a=1;t.exports=r},function(t,e,n){function r(t,e){var n=t[1],r=e[1],y=n|r,v=y<(c|f|p),g=r==p&&n==l||r==p&&n==d&&t[7].length<=e[8]||r==(p|d)&&e[7].length<=e[8]&&n==l;if(!v&&!g)return t;r&c&&(t[2]=e[2],y|=n&c?0:s);var b=e[3];if(b){var _=t[3];t[3]=_?o(_,b,e[4]):b,t[4]=_?u(t[3],a):e[4]}return b=e[5],b&&(_=t[5],t[5]=_?i(_,b,e[6]):b,t[6]=_?u(t[5],a):e[6]),b=e[7],b&&(t[7]=b),r&p&&(t[8]=null==t[8]?e[8]:h(t[8],e[8])),null==t[9]&&(t[9]=e[9]),t[0]=e[0],t[1]=y,t}var o=n(150),i=n(151),u=n(91),a="__lodash_placeholder__",c=1,f=2,s=4,l=8,p=128,d=256,h=Math.min;t.exports=r},function(t,e,n){function r(t){if(!t)return 0===t?t:0;if((t=o(t))===i||t===-i){return(t<0?-1:1)*u}return t===t?t:0}var o=n(340),i=1/0,u=1.7976931348623157e308;t.exports=r},function(t,e,n){function r(t){if("number"==typeof t)return t;if(i(t))return u;if(o(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=o(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(a,"");var n=f.test(t);return n||s.test(t)?l(t.slice(2),n?2:8):c.test(t)?u:+t}var o=n(11),i=n(33),u=NaN,a=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,f=/^0b[01]+$/i,s=/^0o[0-7]+$/i,l=parseInt;t.exports=r},function(t,e){function n(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}t.exports=n},function(t,e,n){function r(t){return i(t)&&o(t)==u}var o=n(20),i=n(3),u="[object Arguments]";t.exports=r},function(t,e){function n(){return!1}t.exports=n},function(t,e,n){function r(t){return u(t)&&i(t.length)&&!!a[o(t)]}var o=n(20),i=n(96),u=n(3),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1,t.exports=r},function(t,e,n){var r=n(167),o=r(Object.keys,Object);t.exports=o},function(t,e,n){function r(t){return o(t,i)}var o=n(169),i=4;t.exports=r},function(t,e){function n(){this.__data__=[],this.size=0}t.exports=n},function(t,e,n){function r(t){var e=this.__data__,n=o(e,t);return!(n<0)&&(n==e.length-1?e.pop():u.call(e,n,1),--this.size,!0)}var o=n(64),i=Array.prototype,u=i.splice;t.exports=r},function(t,e,n){function r(t){var e=this.__data__,n=o(e,t);return n<0?void 0:e[n][1]}var o=n(64);t.exports=r},function(t,e,n){function r(t){return o(this.__data__,t)>-1}var o=n(64);t.exports=r},function(t,e,n){function r(t,e){var n=this.__data__,r=o(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this}var o=n(64);t.exports=r},function(t,e,n){function r(){this.__data__=new o,this.size=0}var o=n(63);t.exports=r},function(t,e){function n(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}t.exports=n},function(t,e){function n(t){return this.__data__.get(t)}t.exports=n},function(t,e){function n(t){return this.__data__.has(t)}t.exports=n},function(t,e,n){function r(t,e){var n=this.__data__;if(n instanceof o){var r=n.__data__;if(!i||r.length<a-1)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new u(r)}return n.set(t,e),this.size=n.size,this}var o=n(63),i=n(101),u=n(102),a=200;t.exports=r},function(t,e,n){function r(){this.size=0,this.__data__={hash:new o,map:new(u||i),string:new o}}var o=n(358),i=n(63),u=n(101);t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}var o=n(359),i=n(360),u=n(361),a=n(362),c=n(363);r.prototype.clear=o,r.prototype.delete=i,r.prototype.get=u,r.prototype.has=a,r.prototype.set=c,t.exports=r},function(t,e,n){function r(){this.__data__=o?o(null):{},this.size=0}var o=n(65);t.exports=r},function(t,e){function n(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}t.exports=n},function(t,e,n){function r(t){var e=this.__data__;if(o){var n=e[t];return n===i?void 0:n}return a.call(e,t)?e[t]:void 0}var o=n(65),i="__lodash_hash_undefined__",u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){var e=this.__data__;return o?void 0!==e[t]:u.call(e,t)}var o=n(65),i=Object.prototype,u=i.hasOwnProperty;t.exports=r},function(t,e,n){function r(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=o&&void 0===e?i:e,this}var o=n(65),i="__lodash_hash_undefined__";t.exports=r},function(t,e,n){function r(t){var e=o(this,t).delete(t);return this.size-=e?1:0,e}var o=n(66);t.exports=r},function(t,e){function n(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}t.exports=n},function(t,e,n){function r(t){return o(this,t).get(t)}var o=n(66);t.exports=r},function(t,e,n){function r(t){return o(this,t).has(t)}var o=n(66);t.exports=r},function(t,e,n){function r(t,e){var n=o(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this}var o=n(66);t.exports=r},function(t,e,n){function r(t,e){return t&&o(e,i(e),t)}var o=n(62),i=n(170);t.exports=r},function(t,e,n){function r(t){if(!o(t))return u(t);var e=i(t),n=[];for(var r in t)("constructor"!=r||!e&&c.call(t,r))&&n.push(r);return n}var o=n(11),i=n(99),u=n(371),a=Object.prototype,c=a.hasOwnProperty;t.exports=r},function(t,e){function n(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}t.exports=n},function(t,e,n){(function(t){function r(t,e){if(e)return t.slice();var n=t.length,r=f?f(n):new t.constructor(n);return t.copy(r),r}var o=n(1),i="object"==typeof e&&e&&!e.nodeType&&e,u=i&&"object"==typeof t&&t&&!t.nodeType&&t,a=u&&u.exports===i,c=a?o.Buffer:void 0,f=c?c.allocUnsafe:void 0;t.exports=r}).call(e,n(12)(t))},function(t,e,n){function r(t,e){return o(t,i(t),e)}var o=n(62),i=n(103);t.exports=r},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length,o=0,i=[];++n<r;){var u=t[n];e(u,n,t)&&(i[o++]=u)}return i}t.exports=n},function(t,e,n){function r(t,e){return o(t,i(t),e)}var o=n(62),i=n(172);t.exports=r},function(t,e,n){function r(t){return o(t,u,i)}var o=n(174),i=n(172),u=n(170);t.exports=r},function(t,e,n){var r=n(19),o=n(1),i=r(o,"DataView");t.exports=i},function(t,e,n){var r=n(19),o=n(1),i=r(o,"Promise");t.exports=i},function(t,e,n){var r=n(19),o=n(1),i=r(o,"Set");t.exports=i},function(t,e){function n(t){var e=t.length,n=new t.constructor(e);return e&&"string"==typeof t[0]&&o.call(t,"index")&&(n.index=t.index,n.input=t.input),n}var r=Object.prototype,o=r.hasOwnProperty;t.exports=n},function(t,e,n){function r(t,e,n){var r=t.constructor;switch(e){case g:return o(t);case f:case s:return new r(+t);case b:return i(t,n);case _:case m:case x:case w:case j:case O:case k:case P:case A:return c(t,n);case l:return new r;case p:case y:return new r(t);case d:return u(t);case h:return new r;case v:return a(t)}}var o=n(106),i=n(382),u=n(383),a=n(384),c=n(385),f="[object Boolean]",s="[object Date]",l="[object Map]",p="[object Number]",d="[object RegExp]",h="[object Set]",y="[object String]",v="[object Symbol]",g="[object ArrayBuffer]",b="[object DataView]",_="[object Float32Array]",m="[object Float64Array]",x="[object Int8Array]",w="[object Int16Array]",j="[object Int32Array]",O="[object Uint8Array]",k="[object Uint8ClampedArray]",P="[object Uint16Array]",A="[object Uint32Array]";t.exports=r},function(t,e,n){function r(t,e){var n=e?o(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.byteLength)}var o=n(106);t.exports=r},function(t,e){function n(t){var e=new t.constructor(t.source,r.exec(t));return e.lastIndex=t.lastIndex,e}var r=/\w*$/;t.exports=n},function(t,e,n){function r(t){return u?Object(u.call(t)):{}}var o=n(27),i=o?o.prototype:void 0,u=i?i.valueOf:void 0;t.exports=r},function(t,e,n){function r(t,e){var n=e?o(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}var o=n(106);t.exports=r},function(t,e,n){function r(t){return"function"!=typeof t.constructor||u(t)?{}:o(i(t))}var o=n(60),i=n(105),u=n(99);t.exports=r},function(t,e,n){var r=n(388),o=n(97),i=n(98),u=i&&i.isMap,a=u?o(u):r;t.exports=a},function(t,e,n){function r(t){return i(t)&&o(t)==u}var o=n(35),i=n(3),u="[object Map]";t.exports=r},function(t,e,n){var r=n(390),o=n(97),i=n(98),u=i&&i.isSet,a=u?o(u):r;t.exports=a},function(t,e,n){function r(t){return i(t)&&o(t)==u}var o=n(35),i=n(3),u="[object Set]";t.exports=r},function(t,e,n){function r(t,e,n){e=n?void 0:e;var u=o(t,i,void 0,void 0,void 0,void 0,void 0,e);return u.placeholder=r.placeholder,u}var o=n(81),i=8;r.placeholder={},t.exports=r},function(t,e,n){function r(t){if(!i(t))return!1;var e=o(t);return e==c||e==a||"string"==typeof t.message&&"string"==typeof t.name&&!u(t)}var o=n(20),i=n(3),u=n(393),a="[object DOMException]",c="[object Error]";t.exports=r},function(t,e,n){function r(t){if(!u(t)||o(t)!=a)return!1;var e=i(t);if(null===e)return!0;var n=l.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&s.call(n)==p}var o=n(20),i=n(105),u=n(3),a="[object Object]",c=Function.prototype,f=Object.prototype,s=c.toString,l=f.hasOwnProperty,p=s.call(Object);t.exports=r},function(t,e,n){function r(t){return i(t)&&o(t)==u}var o=n(35),i=n(3),u="[object WeakMap]";t.exports=r},function(t,e,n){function r(t){return i("function"==typeof t?t:o(t,u))}var o=n(169),i=n(176),u=1;t.exports=r},function(t,e,n){function r(t){var e=i(t);return 1==e.length&&e[0][2]?u(e[0][0],e[0][1]):function(n){return n===t||o(n,t,e)}}var o=n(397),i=n(408),u=n(180);t.exports=r},function(t,e,n){function r(t,e,n,r){var c=n.length,f=c,s=!r;if(null==t)return!f;for(t=Object(t);c--;){var l=n[c];if(s&&l[2]?l[1]!==t[l[0]]:!(l[0]in t))return!1}for(;++c<f;){l=n[c];var p=l[0],d=t[p],h=l[1];if(s&&l[2]){if(void 0===d&&!(p in t))return!1}else{var y=new o;if(r)var v=r(d,h,p,t,e,y);if(!(void 0===v?i(h,d,u|a,r,y):v))return!1}}return!0}var o=n(100),i=n(177),u=1,a=2;t.exports=r},function(t,e,n){function r(t,e,n,r,v,b){var _=f(t),m=f(e),x=_?h:c(t),w=m?h:c(e);x=x==d?y:x,w=w==d?y:w;var j=x==y,O=w==y,k=x==w;if(k&&s(t)){if(!s(e))return!1;_=!0,j=!1}if(k&&!j)return b||(b=new o),_||l(t)?i(t,e,n,r,v,b):u(t,e,x,n,r,v,b);if(!(n&p)){var P=j&&g.call(t,"__wrapped__"),A=O&&g.call(e,"__wrapped__");if(P||A){var S=P?t.value():t,T=A?e.value():e;return b||(b=new o),v(S,T,n,r,b)}}return!!k&&(b||(b=new o),a(t,e,n,r,v,b))}var o=n(100),i=n(178),u=n(404),a=n(407),c=n(35),f=n(2),s=n(95),l=n(165),p=1,d="[object Arguments]",h="[object Array]",y="[object Object]",v=Object.prototype,g=v.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new o;++e<n;)this.add(t[e])}var o=n(102),i=n(400),u=n(401);r.prototype.add=r.prototype.push=i,r.prototype.has=u,t.exports=r},function(t,e){function n(t){return this.__data__.set(t,r),this}var r="__lodash_hash_undefined__";t.exports=n},function(t,e){function n(t){return this.__data__.has(t)}t.exports=n},function(t,e){function n(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}t.exports=n},function(t,e){function n(t,e){return t.has(e)}t.exports=n},function(t,e,n){function r(t,e,n,r,o,j,k){switch(n){case w:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case x:return!(t.byteLength!=e.byteLength||!j(new i(t),new i(e)));case p:case d:case v:return u(+t,+e);case h:return t.name==e.name&&t.message==e.message;case g:case _:return t==e+"";case y:var P=c;case b:var A=r&s;if(P||(P=f),t.size!=e.size&&!A)return!1;var S=k.get(t);if(S)return S==e;r|=l,k.set(t,e);var T=a(P(t),P(e),r,o,j,k);return k.delete(t),T;case m:if(O)return O.call(t)==O.call(e)}return!1}var o=n(27),i=n(175),u=n(93),a=n(178),c=n(405),f=n(406),s=1,l=2,p="[object Boolean]",d="[object Date]",h="[object Error]",y="[object Map]",v="[object Number]",g="[object RegExp]",b="[object Set]",_="[object String]",m="[object Symbol]",x="[object ArrayBuffer]",w="[object DataView]",j=o?o.prototype:void 0,O=j?j.valueOf:void 0;t.exports=r},function(t,e){function n(t){var e=-1,n=Array(t.size);return t.forEach(function(t,r){n[++e]=[r,t]}),n}t.exports=n},function(t,e){function n(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}t.exports=n},function(t,e,n){function r(t,e,n,r,u,c){var f=n&i,s=o(t),l=s.length;if(l!=o(e).length&&!f)return!1;for(var p=l;p--;){var d=s[p];if(!(f?d in e:a.call(e,d)))return!1}var h=c.get(t);if(h&&c.get(e))return h==e;var y=!0;c.set(t,e),c.set(e,t);for(var v=f;++p<l;){d=s[p];var g=t[d],b=e[d];if(r)var _=f?r(b,g,d,e,t,c):r(g,b,d,t,e,c);if(!(void 0===_?g===b||u(g,b,n,r,c):_)){y=!1;break}v||(v="constructor"==d)}if(y&&!v){var m=t.constructor,x=e.constructor;m!=x&&"constructor"in t&&"constructor"in e&&!("function"==typeof m&&m instanceof m&&"function"==typeof x&&x instanceof x)&&(y=!1)}return c.delete(t),c.delete(e),y}var o=n(173),i=1,u=Object.prototype,a=u.hasOwnProperty;t.exports=r},function(t,e,n){function r(t){for(var e=i(t),n=e.length;n--;){var r=e[n],u=t[r];e[n]=[r,u,o(u)]}return e}var o=n(179),i=n(34);t.exports=r},function(t,e,n){function r(t,e){return a(t)&&c(e)?f(s(t),e):function(n){var r=i(n,t);return void 0===r&&r===e?u(n,t):o(e,r,l|p)}}var o=n(177),i=n(410),u=n(414),a=n(107),c=n(179),f=n(180),s=n(37),l=1,p=2;t.exports=r},function(t,e,n){function r(t,e,n){var r=null==t?void 0:o(t,e);return void 0===r?n:r}var o=n(181);t.exports=r},function(t,e,n){function r(t){var e=o(t,function(t){return n.size===i&&n.clear(),t}),n=e.cache;return e}var o=n(412),i=500;t.exports=r},function(t,e,n){function r(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(i);var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var u=t.apply(this,r);return n.cache=i.set(o,u)||i,u};return n.cache=new(r.Cache||o),n}var o=n(102),i="Expected a function";r.Cache=o,t.exports=r},function(t,e,n){function r(t){if("string"==typeof t)return t;if(u(t))return i(t,r)+"";if(a(t))return s?s.call(t):"";var e=t+"";return"0"==e&&1/t==-c?"-0":e}var o=n(27),i=n(184),u=n(2),a=n(33),c=1/0,f=o?o.prototype:void 0,s=f?f.toString:void 0;t.exports=r},function(t,e,n){function r(t,e){return null!=t&&i(t,e,o)}var o=n(415),i=n(416);t.exports=r},function(t,e){function n(t,e){return null!=t&&e in Object(t)}t.exports=n},function(t,e,n){function r(t,e,n){e=o(e,t);for(var r=-1,s=e.length,l=!1;++r<s;){var p=f(e[r]);if(!(l=null!=t&&n(t,p)))break;t=t[p]}return l||++r!=s?l:!!(s=null==t?0:t.length)&&c(s)&&a(p,s)&&(u(t)||i(t))}var o=n(182),i=n(94),u=n(2),a=n(90),c=n(96),f=n(37);t.exports=r},function(t,e,n){function r(t){return u(t)?o(a(t)):i(t)}var o=n(418),i=n(419),u=n(107),a=n(37);t.exports=r},function(t,e){function n(t){return function(e){return null==e?void 0:e[t]}}t.exports=n},function(t,e,n){function r(t){return function(e){return o(e,t)}}var o=n(181);t.exports=r},function(t,e,n){var r=n(81),o=n(185),i=o(function(t,e){return r(t,256,void 0,void 0,void 0,e)});t.exports=i},function(t,e,n){function r(t){return(null==t?0:t.length)?o(t,1):[]}var o=n(422);t.exports=r},function(t,e,n){function r(t,e,n,u,a){var c=-1,f=t.length;for(n||(n=i),a||(a=[]);++c<f;){var s=t[c];e>0&&n(s)?e>1?r(s,e-1,n,u,a):o(a,s):u||(a[a.length]=s)}return a}var o=n(104),i=n(423);t.exports=r},function(t,e,n){function r(t){return u(t)||i(t)||!!(a&&t&&t[a])}var o=n(27),i=n(94),u=n(2),a=o?o.isConcatSpreadable:void 0;t.exports=r},function(t,e,n){function r(t,e,n){return e=i(void 0===e?t.length-1:e,0),function(){for(var r=arguments,u=-1,a=i(r.length-e,0),c=Array(a);++u<a;)c[u]=r[e+u];u=-1;for(var f=Array(e+1);++u<e;)f[u]=r[u];return f[e]=n(c),o(t,this,f)}}var o=n(84),i=Math.max;t.exports=r},function(t,e,n){function r(t){return u(t)?o(t,f):a(t)?[t]:i(c(s(t)))}var o=n(184),i=n(61),u=n(2),a=n(33),c=n(183),f=n(37),s=n(36);t.exports=r},function(t,e,n){function r(t,e){var n={};return e=u(e,3),i(t,function(t,r,i){o(n,r,e(t,r,i))}),n}var o=n(92),i=n(427),u=n(176);t.exports=r},function(t,e,n){function r(t,e){return t&&o(t,e,i)}var o=n(428),i=n(34);t.exports=r},function(t,e,n){var r=n(429),o=r();t.exports=o},function(t,e){function n(t){return function(e,n,r){for(var o=-1,i=Object(e),u=r(e),a=u.length;a--;){var c=u[t?a:++o];if(!1===n(i[c],c,i))break}return e}}t.exports=n},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(431)),i=r(n(433)),u=r(n(437)),a=r(n(440)),c=(0,u.default)([i.default,(0,o.default)(/,|\(|\)/g,""),(0,o.default)(/\s+/g,"_"),(0,o.default)(/'|’/g,"_039_"),(0,o.default)("–","-")]),f=(0,u.default)([a.default,c]),s={formatIStatsValueKeepCase:c,formatIStatsValue:f};e.default=s,t.exports=e.default},function(t,e,n){var r=n(32),o=r("replace",n(432));o.placeholder=n(26),t.exports=o},function(t,e,n){function r(){var t=arguments,e=o(t[0]);return t.length<3?e:e.replace(t[1],t[2])}var o=n(36);t.exports=r},function(t,e,n){var r=n(32),o=r("deburr",n(434),n(186));o.placeholder=n(26),t.exports=o},function(t,e,n){function r(t){return(t=i(t))&&t.replace(u,o).replace(a,"")}var o=n(435),i=n(36),u=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,a=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");t.exports=r},function(t,e,n){var r=n(436),o={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},i=r(o);t.exports=i},function(t,e){function n(t){return function(e){return null==t?void 0:t[e]}}t.exports=n},function(t,e,n){var r=n(32),o=r("flow",n(438));o.placeholder=n(26),t.exports=o},function(t,e,n){var r=n(439),o=r();t.exports=o},function(t,e,n){function r(t){return i(function(e){var n=e.length,r=n,i=o.prototype.thru;for(t&&e.reverse();r--;){var y=e[r];if("function"!=typeof y)throw new TypeError(s);if(i&&!v&&"wrapper"==a(y))var v=new o([],!0)}for(r=v?r:n;++r<n;){y=e[r];var g=a(y),b="wrapper"==g?u(y):void 0;v=b&&f(b[0])&&b[1]==(d|l|p|h)&&!b[4].length&&1==b[9]?v[a(b[0])].apply(v,b[3]):1==y.length&&f(y)?v[g]():v.thru(y)}return function(){var t=arguments,r=t[0];if(v&&1==t.length&&c(r))return v.plant(r).value();for(var o=0,i=n?e[o].apply(this,t):r;++o<n;)i=e[o].call(this,i);return i}})}var o=n(88),i=n(185),u=n(87),a=n(154),c=n(2),f=n(153),s="Expected a function",l=8,p=32,d=128,h=256;t.exports=r},function(t,e,n){var r=n(32),o=r("toLower",n(441),n(186));o.placeholder=n(26),t.exports=o},function(t,e,n){function r(t){return o(t).toLowerCase()}var o=n(36);t.exports=r},function(t,e,n){"use strict";var r=n(108);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(187)),i=r(n(67)),u=r(n(188)),a=function(){return window.Promise||(window.Promise=o.default),new o.default(function(t,e){requirejs(["idcta-v2/idcta-1","orb/cookies"],function(e,n){t({idcta:e,cookiesLib:n})},function(t){i.default.track("requirejs","error",{error_message:t.toString()}),e(t)})})},c={isSignedIn:!1},f=function(){return a().then(function(t){var e=t.idcta,n=t.cookiesLib,r=n.readPolicy();return e.hasCookie()?u.default.checkFlagpole().then(function(){return e.initiateTokenRefresh().then(function(){var t=e.getUserDetailsFromCookie();return{isSignedIn:!0,isUnderThirteen:"u13"===t.ab,hasPersonalisationEnabled:t.ep,displayName:t.dn,personalisationCookiesEnabled:r.personalisation}}).catch(function(t){return i.default.track("id_token_refresh_error","error",{error_code:t.code,error_message:t.message}),c})}):c})},s={getDetails:f};e.default=s,t.exports=e.default},function(t,e,n){"use strict";var r=n(108);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(444));n(189);var i=n(445),u=n(190),a="urn:bbc:isite2:file_id:",c={origin:"web"},f={"programme-of-study":"biteprogrammestudy",exam:"biteexamspecification","study-guide":"bitestudyguide",article:"article"},s=function(t){return f[t]},l=function(t){return"article"===t?"blocks-bitesize":"education"},p=function(t){return t.map(function(t){var e=t.id,n=t.type,r=t.action;return{resourceId:e,resourceDomain:"learning",resourceType:s(n),action:r}})},d=function(t){return{resourceId:"".concat(a).concat(l(t.type),":").concat(t.id),resourceDomain:"learning",resourceType:s(t.type),action:t.action}},h=function(t){var e={resourceId:"".concat(a).concat(l(t.type),":").concat(t.id),resourceDomain:"learning",resourceType:s(t.type),metaData:c};return e.metaData.levelId=t.keyStageId,t.examspecId&&(e.metaData.examspecId=t.examspecId),t.posId&&(e.metaData.posId=t.posId),e},y=function(t,e){return{resourceId:"".concat(a,"blocks-bitesize:").concat(t),resourceDomain:"learning",resourceType:f.article,metaData:(0,o.default)(c,e)}},v=function(t,e){return"".concat(a).concat(l(e),":").concat(t)},g=function(t){return"urn:bbc:learning:article:isite2:file_id:blocks-bitesize:".concat(t)},b=function(t,e){return fetch("".concat((0,u.getUASHost)()).concat(t),{method:"POST",headers:new Headers({"Content-Type":"application/json",Accept:"application/json","X-Authentication-Provider":"idv5","X-Api-Key":(0,u.getUASApiKey)()}),credentials:"include",body:JSON.stringify(e)}).then(function(t){return 202!==t.status?t.json():void 0}).then(function(e){if(e)throw new Error("Error posting resource(s) to '".concat(t,"': ").concat(JSON.stringify(e,null,2)))})},_=b,m=function(t,e){var n=(0,i.chunk)(50,e).map(function(e){return b(t,e)});return Promise.all(n).then(function(){})},x=function(t){var e="";return t&&(Object.keys(t).forEach(function(n){e+="&".concat(n,"=").concat(t[n])}),e="?".concat(e.substr(1))),e},w=function(t){return fetch("".concat((0,u.getUASHost)()).concat(t),{method:"GET",headers:new Headers({"Content-Type":"application/json",Accept:"application/json","X-Authentication-Provider":"idv5","X-Api-Key":(0,u.getUASApiKey)()}),credentials:"include"}).then(function(e){if(200!==e.status)throw new Error("Error getting '".concat(t,"': ").concat(JSON.stringify(e.json(),null,2)));return e.json()})},j=function(t){return fetch("".concat((0,u.getUASHost)()).concat(t),{method:"GET",headers:new Headers({"Content-Type":"application/json",Accept:"application/json","X-Authentication-Provider":"idv5","X-Api-Key":(0,u.getUASApiKey)()}),credentials:"include"}).then(function(e){if(200!==e.status)throw new Error("Error getting '".concat(t,"': ").concat(JSON.stringify(e.json(),null,2)));return e.json()}).then(function(t){return t.items})},O=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return j("/my/favourites/unlimited?resourceDomain=learning&action=favourited").then(function(t){return t.filter(function(t){return t.resourceType===f["study-guide"]||t.resourceType===f.article})}).then(function(e){return t>0?(0,i.take)(t,e):e})},k=function(t){return m("/my/batch/follows",p(t))},P=function(t){return _("/my/follows",t)},A=function(t){return w("/my/follows/".concat(t))},S=function(t){return j("/my/follows".concat(x(t)))},T=function(t){return _("/my/reads",h(t))},E=function(t){return j("/my/reads".concat(x(t)))},I=function(t,e){return _("/my/reads",y(t,e))},z=function(t){return _("/my/favourites",d(t))},R=function(t,e){return j("/my/favourites/unlimited?resourceDomain=learning&action=favourited&resourceType=".concat(s(e))).then(function(n){return(0,i.some)({resourceId:v(t,e)},n)})},C=function(t){return j("/my/reads/".concat(g(t))).then(function(){return!0}).catch(function(){return!1})},M={getFollow:A,getFollows:S,getSavedForLater:O,postFollow:P,postFollows:k,getReads:E,postRead:T,postReadForAnArticle:I,postFavourite:z,isFavourited:R,isArticleRead:C};e.default=M,t.exports=e.default},function(t,e){function n(){return t.exports=n=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},n.apply(this,arguments)}t.exports=n},function(t,e,n){var r=n(446).runInContext();t.exports=n(447)(r,r)},function(t,e,n){(function(t,r){var o;(function(){function i(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function u(t,e,n,r){for(var o=-1,i=null==t?0:t.length;++o<i;){var u=t[o];e(r,u,n(u),t)}return r}function a(t,e){for(var n=-1,r=null==t?0:t.length;++n<r&&!1!==e(t[n],n,t););return t}function c(t,e){for(var n=null==t?0:t.length;n--&&!1!==e(t[n],n,t););return t}function f(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(!e(t[n],n,t))return!1;return!0}function s(t,e){for(var n=-1,r=null==t?0:t.length,o=0,i=[];++n<r;){var u=t[n];e(u,n,t)&&(i[o++]=u)}return i}function l(t,e){return!(null==t||!t.length)&&-1<m(t,e,0)}function p(t,e,n){for(var r=-1,o=null==t?0:t.length;++r<o;)if(n(e,t[r]))return!0;return!1}function d(t,e){for(var n=-1,r=null==t?0:t.length,o=Array(r);++n<r;)o[n]=e(t[n],n,t);return o}function h(t,e){for(var n=-1,r=e.length,o=t.length;++n<r;)t[o+n]=e[n];return t}function y(t,e,n,r){var o=-1,i=null==t?0:t.length;for(r&&i&&(n=t[++o]);++o<i;)n=e(n,t[o],o,t);return n}function v(t,e,n,r){var o=null==t?0:t.length;for(r&&o&&(n=t[--o]);o--;)n=e(n,t[o],o,t);return n}function g(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}function b(t,e,n){var r;return n(t,function(t,n,o){if(e(t,n,o))return r=n,!1}),r}function _(t,e,n,r){var o=t.length;for(n+=r?1:-1;r?n--:++n<o;)if(e(t[n],n,t))return n;return-1}function m(t,e,n){if(e===e)t:{--n;for(var r=t.length;++n<r;)if(t[n]===e){t=n;break t}t=-1}else t=_(t,w,n);return t}function x(t,e,n,r){--n;for(var o=t.length;++n<o;)if(r(t[n],e))return n;return-1}function w(t){return t!==t}function j(t,e){var n=null==t?0:t.length;return n?S(t,e)/n:V}function O(t){return function(e){return null==e?$:e[t]}}function k(t){return function(e){return null==t?$:t[e]}}function P(t,e,n,r,o){return o(t,function(t,o,i){n=r?(r=!1,t):e(n,t,o,i)}),n}function A(t,e){var n=t.length;for(t.sort(e);n--;)t[n]=t[n].c;return t}function S(t,e){for(var n,r=-1,o=t.length;++r<o;){var i=e(t[r]);i!==$&&(n=n===$?i:n+i)}return n}function T(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}function E(t,e){return d(e,function(e){return[e,t[e]]})}function I(t){return function(e){return t(e)}}function z(t,e){return d(e,function(e){return t[e]})}function R(t,e){return t.has(e)}function C(t,e){for(var n=-1,r=t.length;++n<r&&-1<m(e,t[n],0););return n}function M(t,e){for(var n=t.length;n--&&-1<m(e,t[n],0););return n}function W(t){return"\\"+Lt[t]}function L(t){var e=-1,n=Array(t.size);return t.forEach(function(t,r){n[++e]=[r,t]}),n}function D(t,e){return function(n){return t(e(n))}}function B(t,e){for(var n=-1,r=t.length,o=0,i=[];++n<r;){var u=t[n];u!==e&&"__lodash_placeholder__"!==u||(t[n]="__lodash_placeholder__",i[o++]=n)}return i}function N(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}function F(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=[t,t]}),n}function q(t){if(zt.test(t)){for(var e=Et.lastIndex=0;Et.test(t);)++e;t=e}else t=te(t);return t}function U(t){return zt.test(t)?t.match(Et)||[]:t.split("")}var $,G=1/0,V=NaN,K=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],H=/\b__p\+='';/g,Z=/\b(__p\+=)''\+/g,Y=/(__e\(.*?\)|\b__t\))\+'';/g,J=/&(?:amp|lt|gt|quot|#39);/g,X=/[&<>"']/g,Q=RegExp(J.source),tt=RegExp(X.source),et=/<%-([\s\S]+?)%>/g,nt=/<%([\s\S]+?)%>/g,rt=/<%=([\s\S]+?)%>/g,ot=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,it=/^\w*$/,ut=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,at=/[\\^$.*+?()[\]{}|]/g,ct=RegExp(at.source),ft=/^\s+|\s+$/g,st=/^\s+/,lt=/\s+$/,pt=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,dt=/\{\n\/\* \[wrapped with (.+)\] \*/,ht=/,? & /,yt=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,vt=/\\(\\)?/g,gt=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,bt=/\w*$/,_t=/^[-+]0x[0-9a-f]+$/i,mt=/^0b[01]+$/i,xt=/^\[object .+?Constructor\]$/,wt=/^0o[0-7]+$/i,jt=/^(?:0|[1-9]\d*)$/,Ot=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,kt=/($^)/,Pt=/['\n\r\u2028\u2029\\]/g,At="[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?(?:\\u200d(?:[^\\ud800-\\udfff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?)*",St=RegExp("['’]","g"),Tt=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g"),Et=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|(?:[^\\ud800-\\udfff][\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]?|[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff])"+At,"g"),It=RegExp(["[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+(?:['’](?:d|ll|m|re|s|t|ve))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde]|$)|(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde](?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])|$)|[A-Z\\xc0-\\xd6\\xd8-\\xde]?(?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:d|ll|m|re|s|t|ve))?|[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?:['’](?:D|LL|M|RE|S|T|VE))?|\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])|\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])|\\d+","(?:[\\u2700-\\u27bf]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?(?:\\u200d(?:[^\\ud800-\\udfff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?)*"].join("|"),"g"),zt=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]"),Rt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ct="Array Buffer DataView Date Error Float32Array Float64Array Function Int8Array Int16Array Int32Array Map Math Object Promise RegExp Set String Symbol TypeError Uint8Array Uint8ClampedArray Uint16Array Uint32Array WeakMap _ clearTimeout isFinite parseInt setTimeout".split(" "),Mt={};Mt["[object Float32Array]"]=Mt["[object Float64Array]"]=Mt["[object Int8Array]"]=Mt["[object Int16Array]"]=Mt["[object Int32Array]"]=Mt["[object Uint8Array]"]=Mt["[object Uint8ClampedArray]"]=Mt["[object Uint16Array]"]=Mt["[object Uint32Array]"]=!0,Mt["[object Arguments]"]=Mt["[object Array]"]=Mt["[object ArrayBuffer]"]=Mt["[object Boolean]"]=Mt["[object DataView]"]=Mt["[object Date]"]=Mt["[object Error]"]=Mt["[object Function]"]=Mt["[object Map]"]=Mt["[object Number]"]=Mt["[object Object]"]=Mt["[object RegExp]"]=Mt["[object Set]"]=Mt["[object String]"]=Mt["[object WeakMap]"]=!1;var Wt={};Wt["[object Arguments]"]=Wt["[object Array]"]=Wt["[object ArrayBuffer]"]=Wt["[object DataView]"]=Wt["[object Boolean]"]=Wt["[object Date]"]=Wt["[object Float32Array]"]=Wt["[object Float64Array]"]=Wt["[object Int8Array]"]=Wt["[object Int16Array]"]=Wt["[object Int32Array]"]=Wt["[object Map]"]=Wt["[object Number]"]=Wt["[object Object]"]=Wt["[object RegExp]"]=Wt["[object Set]"]=Wt["[object String]"]=Wt["[object Symbol]"]=Wt["[object Uint8Array]"]=Wt["[object Uint8ClampedArray]"]=Wt["[object Uint16Array]"]=Wt["[object Uint32Array]"]=!0,Wt["[object Error]"]=Wt["[object Function]"]=Wt["[object WeakMap]"]=!1;var Lt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Dt=parseFloat,Bt=parseInt,Nt="object"==typeof t&&t&&t.Object===Object&&t,Ft="object"==typeof self&&self&&self.Object===Object&&self,qt=Nt||Ft||Function("return this")(),Ut="object"==typeof e&&e&&!e.nodeType&&e,$t=Ut&&"object"==typeof r&&r&&!r.nodeType&&r,Gt=$t&&$t.exports===Ut,Vt=Gt&&Nt.process,Kt=function(){try{var t=$t&&$t.f&&$t.f("util").types;return t||Vt&&Vt.binding&&Vt.binding("util")}catch(t){}}(),Ht=Kt&&Kt.isArrayBuffer,Zt=Kt&&Kt.isDate,Yt=Kt&&Kt.isMap,Jt=Kt&&Kt.isRegExp,Xt=Kt&&Kt.isSet,Qt=Kt&&Kt.isTypedArray,te=O("length"),ee=k({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),ne=k({"&":"&","<":"<",">":">",'"':""","'":"'"}),re=k({"&":"&","<":"<",">":">",""":'"',"'":"'"}),oe=function t(e){function n(t){if(_o(t)&&!ua(t)&&!(t instanceof k)){if(t instanceof o)return t;if(ai.call(t,"__wrapped__"))return Fr(t)}return new o(t)}function r(){}function o(t,e){this.__wrapped__=t,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=$}function k(t){this.__wrapped__=t,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function At(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Lt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Nt(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new Lt;++e<n;)this.add(t[e])}function Ft(t){this.size=(this.__data__=new Et(t)).size}function Ut(t,e){var n,r=ua(t),o=!r&&ia(t),i=!r&&!o&&ca(t),u=!r&&!o&&!i&&da(t),o=(r=r||o||i||u)?T(t.length,ei):[],a=o.length;for(n in t)!e&&!ai.call(t,n)||r&&("length"==n||i&&("offset"==n||"parent"==n)||u&&("buffer"==n||"byteLength"==n||"byteOffset"==n)||Ar(n,a))||o.push(n);return o}function $t(t){var e=t.length;return e?t[on(0,e-1)]:$}function Vt(t,e){return Lr(Mn(t),pe(e,0,t.length))}function Kt(t){return Lr(Mn(t))}function te(t,e,n){(n===$||so(t[e],n))&&(n!==$||e in t)||se(t,e,n)}function ie(t,e,n){var r=t[e];ai.call(t,e)&&so(r,n)&&(n!==$||e in t)||se(t,e,n)}function ue(t,e){for(var n=t.length;n--;)if(so(t[n][0],e))return n;return-1}function ae(t,e,n,r){return iu(t,function(t,o,i){e(r,t,n(t),i)}),r}function ce(t,e){return t&&Wn(e,Ro(e),t)}function fe(t,e){return t&&Wn(e,Co(e),t)}function se(t,e,n){"__proto__"==e&&ki?ki(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}function le(t,e){for(var n=-1,r=e.length,o=Ho(r),i=null==t;++n<r;)o[n]=i?$:Io(t,e[n]);return o}function pe(t,e,n){return t===t&&(n!==$&&(t=t<=n?t:n),e!==$&&(t=t>=e?t:e)),t}function de(t,e,n,r,o,i){var u,c=1&e,f=2&e,s=4&e;if(n&&(u=o?n(t,r,o,i):n(t)),u!==$)return u;if(!bo(t))return t;if(r=ua(t)){if(u=jr(t),!c)return Mn(t,u)}else{var l=vu(t),p="[object Function]"==l||"[object GeneratorFunction]"==l;if(ca(t))return Tn(t,c);if("[object Object]"==l||"[object Arguments]"==l||p&&!o){if(u=f||p?{}:Or(t),!c)return f?Dn(t,fe(u,t)):Ln(t,ce(u,t))}else{if(!Wt[l])return o?t:{};u=kr(t,l,c)}}if(i||(i=new Ft),o=i.get(t))return o;i.set(t,u),pa(t)?t.forEach(function(r){u.add(de(r,e,n,r,t,i))}):sa(t)&&t.forEach(function(r,o){u.set(o,de(r,e,n,o,t,i))});var f=s?f?yr:hr:f?Co:Ro,d=r?$:f(t);return a(d||t,function(r,o){d&&(o=r,r=t[o]),ie(u,o,de(r,e,n,o,t,i))}),u}function he(t){var e=Ro(t);return function(n){return ye(n,t,e)}}function ye(t,e,n){var r=n.length;if(null==t)return!r;for(t=Qo(t);r--;){var o=n[r],i=e[o],u=t[o];if(u===$&&!(o in t)||!i(u))return!1}return!0}function ve(t,e,n){if("function"!=typeof t)throw new ni("Expected a function");return _u(function(){t.apply($,n)},e)}function ge(t,e,n,r){var o=-1,i=l,u=!0,a=t.length,c=[],f=e.length;if(!a)return c;n&&(e=d(e,I(n))),r?(i=p,u=!1):200<=e.length&&(i=R,u=!1,e=new Nt(e));t:for(;++o<a;){var s=t[o],h=null==n?s:n(s),s=r||0!==s?s:0;if(u&&h===h){for(var y=f;y--;)if(e[y]===h)continue t;c.push(s)}else i(e,h,r)||c.push(s)}return c}function be(t,e){var n=!0;return iu(t,function(t,r,o){return n=!!e(t,r,o)}),n}function _e(t,e,n){for(var r=-1,o=t.length;++r<o;){var i=t[r],u=e(i);if(null!=u&&(a===$?u===u&&!jo(u):n(u,a)))var a=u,c=i}return c}function me(t,e){var n=[];return iu(t,function(t,r,o){e(t,r,o)&&n.push(t)}),n}function xe(t,e,n,r,o){var i=-1,u=t.length;for(n||(n=Pr),o||(o=[]);++i<u;){var a=t[i];0<e&&n(a)?1<e?xe(a,e-1,n,r,o):h(o,a):r||(o[o.length]=a)}return o}function we(t,e){return t&&au(t,e,Ro)}function je(t,e){return t&&cu(t,e,Ro)}function Oe(t,e){return s(e,function(e){return yo(t[e])})}function ke(t,e){e=An(e,t);for(var n=0,r=e.length;null!=t&&n<r;)t=t[Dr(e[n++])];return n&&n==r?t:$}function Pe(t,e,n){return e=e(t),ua(t)?e:h(e,n(t))}function Ae(t){if(null==t)t=t===$?"[object Undefined]":"[object Null]";else if(Oi&&Oi in Qo(t)){var e=ai.call(t,Oi),n=t[Oi];try{t[Oi]=$;var r=!0}catch(t){}var o=si.call(t);r&&(e?t[Oi]=n:delete t[Oi]),t=o}else t=si.call(t);return t}function Se(t,e){return t>e}function Te(t,e){return null!=t&&ai.call(t,e)}function Ee(t,e){return null!=t&&e in Qo(t)}function Ie(t,e,n){for(var r=n?p:l,o=t[0].length,i=t.length,u=i,a=Ho(i),c=1/0,f=[];u--;){var s=t[u];u&&e&&(s=d(s,I(e))),c=Li(s.length,c),a[u]=!n&&(e||120<=o&&120<=s.length)?new Nt(u&&s):$}var s=t[0],h=-1,y=a[0];t:for(;++h<o&&f.length<c;){var v=s[h],g=e?e(v):v,v=n||0!==v?v:0;if(y?!R(y,g):!r(f,g,n)){for(u=i;--u;){var b=a[u];if(b?!R(b,g):!r(t[u],g,n))continue t}y&&y.push(g),f.push(v)}}return f}function ze(t,e,n){var r={};return we(t,function(t,o,i){e(r,n(t),o,i)}),r}function Re(t,e,n){return e=An(e,t),t=2>e.length?t:ke(t,pn(e,0,-1)),e=null==t?t:t[Dr(Vr(e))],null==e?$:i(e,t,n)}function Ce(t){return _o(t)&&"[object Arguments]"==Ae(t)}function Me(t){return _o(t)&&"[object ArrayBuffer]"==Ae(t)}function We(t){return _o(t)&&"[object Date]"==Ae(t)}function Le(t,e,n,r,o){if(t===e)e=!0;else if(null==t||null==e||!_o(t)&&!_o(e))e=t!==t&&e!==e;else t:{var i=ua(t),u=ua(e),a=i?"[object Array]":vu(t),c=u?"[object Array]":vu(e),a="[object Arguments]"==a?"[object Object]":a,c="[object Arguments]"==c?"[object Object]":c,f="[object Object]"==a,u="[object Object]"==c;if((c=a==c)&&ca(t)){if(!ca(e)){e=!1;break t}i=!0,f=!1}if(c&&!f)o||(o=new Ft),e=i||da(t)?lr(t,e,n,r,Le,o):pr(t,e,a,n,r,Le,o);else{if(!(1&n)&&(i=f&&ai.call(t,"__wrapped__"),a=u&&ai.call(e,"__wrapped__"),i||a)){t=i?t.value():t,e=a?e.value():e,o||(o=new Ft),e=Le(t,e,n,r,o);break t}if(c)e:if(o||(o=new Ft),i=1&n,a=hr(t),u=a.length,c=hr(e).length,u==c||i){for(f=u;f--;){var s=a[f];if(!(i?s in e:ai.call(e,s))){e=!1;break e}}if((c=o.get(t))&&o.get(e))e=c==e;else{c=!0,o.set(t,e),o.set(e,t);for(var l=i;++f<u;){var s=a[f],p=t[s],d=e[s];if(r)var h=i?r(d,p,s,e,t,o):r(p,d,s,t,e,o);if(h===$?p!==d&&!Le(p,d,n,r,o):!h){c=!1;break}l||(l="constructor"==s)}c&&!l&&(n=t.constructor,r=e.constructor,n!=r&&"constructor"in t&&"constructor"in e&&!("function"==typeof n&&n instanceof n&&"function"==typeof r&&r instanceof r)&&(c=!1)),o.delete(t),o.delete(e),e=c}}else e=!1;else e=!1}}return e}function De(t){return _o(t)&&"[object Map]"==vu(t)}function Be(t,e,n,r){var o=n.length,i=o,u=!r;if(null==t)return!i;for(t=Qo(t);o--;){var a=n[o];if(u&&a[2]?a[1]!==t[a[0]]:!(a[0]in t))return!1}for(;++o<i;){var a=n[o],c=a[0],f=t[c],s=a[1];if(u&&a[2]){if(f===$&&!(c in t))return!1}else{if(a=new Ft,r)var l=r(f,s,c,t,e,a);if(l===$?!Le(s,f,3,r,a):!l)return!1}}return!0}function Ne(t){return!(!bo(t)||fi&&fi in t)&&(yo(t)?di:xt).test(Br(t))}function Fe(t){return _o(t)&&"[object RegExp]"==Ae(t)}function qe(t){return _o(t)&&"[object Set]"==vu(t)}function Ue(t){return _o(t)&&go(t.length)&&!!Mt[Ae(t)]}function $e(t){return"function"==typeof t?t:null==t?Fo:"object"==typeof t?ua(t)?Ze(t[0],t[1]):He(t):Go(t)}function Ge(t){if(!Ir(t))return Mi(t);var e,n=[];for(e in Qo(t))ai.call(t,e)&&"constructor"!=e&&n.push(e);return n}function Ve(t,e){return t<e}function Ke(t,e){var n=-1,r=lo(t)?Ho(t.length):[];return iu(t,function(t,o,i){r[++n]=e(t,o,i)}),r}function He(t){var e=mr(t);return 1==e.length&&e[0][2]?zr(e[0][0],e[0][1]):function(n){return n===t||Be(n,t,e)}}function Ze(t,e){return Tr(t)&&e===e&&!bo(e)?zr(Dr(t),e):function(n){var r=Io(n,t);return r===$&&r===e?zo(n,t):Le(e,r,3)}}function Ye(t,e,n,r,o){t!==e&&au(e,function(i,u){if(o||(o=new Ft),bo(i)){var a=o,c=Cr(t,u),f=Cr(e,u),s=a.get(f);if(s)te(t,u,s);else{var s=r?r(c,f,u+"",t,e,a):$,l=s===$;if(l){var p=ua(f),d=!p&&ca(f),h=!p&&!d&&da(f),s=f;p||d||h?ua(c)?s=c:po(c)?s=Mn(c):d?(l=!1,s=Tn(f,!0)):h?(l=!1,s=In(f,!0)):s=[]:xo(f)||ia(f)?(s=c,ia(c)?s=To(c):bo(c)&&!yo(c)||(s=Or(f))):l=!1}l&&(a.set(f,s),Ye(s,f,n,r,a),a.delete(f)),te(t,u,s)}}else a=r?r(Cr(t,u),i,u+"",t,e,o):$,a===$&&(a=i),te(t,u,a)},Co)}function Je(t,e){var n=t.length;if(n)return e+=0>e?n:0,Ar(e,n)?t[e]:$}function Xe(t,e,n){var r=-1;return e=d(e.length?e:[Fo],I(br())),t=Ke(t,function(t){return{a:d(e,function(e){return e(t)}),b:++r,c:t}}),A(t,function(t,e){var r;t:{r=-1;for(var o=t.a,i=e.a,u=o.length,a=n.length;++r<u;){var c=zn(o[r],i[r]);if(c){r=r>=a?c:c*("desc"==n[r]?-1:1);break t}}r=t.b-e.b}return r})}function Qe(t,e){return tn(t,e,function(e,n){return zo(t,n)})}function tn(t,e,n){for(var r=-1,o=e.length,i={};++r<o;){var u=e[r],a=ke(t,u);n(a,u)&&sn(i,An(u,t),a)}return i}function en(t){return function(e){return ke(e,t)}}function nn(t,e,n,r){var o=r?x:m,i=-1,u=e.length,a=t;for(t===e&&(e=Mn(e)),n&&(a=d(t,I(n)));++i<u;)for(var c=0,f=e[i],f=n?n(f):f;-1<(c=o(a,f,c,r));)a!==t&&xi.call(a,c,1),xi.call(t,c,1);return t}function rn(t,e){for(var n=t?e.length:0,r=n-1;n--;){var o=e[n];if(n==r||o!==i){var i=o;Ar(o)?xi.call(t,o,1):mn(t,o)}}}function on(t,e){return t+Ei(Ni()*(e-t+1))}function un(t,e){var n="";if(!t||1>e||9007199254740991<e)return n;do{e%2&&(n+=t),(e=Ei(e/2))&&(t+=t)}while(e);return n}function an(t,e){return mu(Rr(t,e,Fo),t+"")}function cn(t){return $t(Wo(t))}function fn(t,e){var n=Wo(t);return Lr(n,pe(e,0,n.length))}function sn(t,e,n,r){if(!bo(t))return t;e=An(e,t);for(var o=-1,i=e.length,u=i-1,a=t;null!=a&&++o<i;){var c=Dr(e[o]),f=n;if(o!=u){var s=a[c],f=r?r(s,c,a):$;f===$&&(f=bo(s)?s:Ar(e[o+1])?[]:{})}ie(a,c,f),a=a[c]}return t}function ln(t){return Lr(Wo(t))}function pn(t,e,n){var r=-1,o=t.length;for(0>e&&(e=-e>o?0:o+e),n=n>o?o:n,0>n&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0,n=Ho(o);++r<o;)n[r]=t[r+e];return n}function dn(t,e){var n;return iu(t,function(t,r,o){return!(n=e(t,r,o))}),!!n}function hn(t,e,n){var r=0,o=null==t?r:t.length;if("number"==typeof e&&e===e&&2147483647>=o){for(;r<o;){var i=r+o>>>1,u=t[i];null!==u&&!jo(u)&&(n?u<=e:u<e)?r=i+1:o=i}return o}return yn(t,e,Fo,n)}function yn(t,e,n,r){e=n(e);for(var o=0,i=null==t?0:t.length,u=e!==e,a=null===e,c=jo(e),f=e===$;o<i;){var s=Ei((o+i)/2),l=n(t[s]),p=l!==$,d=null===l,h=l===l,y=jo(l);(u?r||h:f?h&&(r||p):a?h&&p&&(r||!d):c?h&&p&&!d&&(r||!y):d||y?0:r?l<=e:l<e)?o=s+1:i=s}return Li(i,4294967294)}function vn(t,e){for(var n=-1,r=t.length,o=0,i=[];++n<r;){var u=t[n],a=e?e(u):u;if(!n||!so(a,c)){var c=a;i[o++]=0===u?0:u}}return i}function gn(t){return"number"==typeof t?t:jo(t)?V:+t}function bn(t){if("string"==typeof t)return t;if(ua(t))return d(t,bn)+"";if(jo(t))return ru?ru.call(t):"";var e=t+"";return"0"==e&&1/t==-G?"-0":e}function _n(t,e,n){var r=-1,o=l,i=t.length,u=!0,a=[],c=a;if(n)u=!1,o=p;else if(200<=i){if(o=e?null:pu(t))return N(o);u=!1,o=R,c=new Nt}else c=e?[]:a;t:for(;++r<i;){var f=t[r],s=e?e(f):f,f=n||0!==f?f:0;if(u&&s===s){for(var d=c.length;d--;)if(c[d]===s)continue t;e&&c.push(s),a.push(f)}else o(c,s,n)||(c!==a&&c.push(s),a.push(f))}return a}function mn(t,e){return e=An(e,t),null==(t=2>e.length?t:ke(t,pn(e,0,-1)))||delete t[Dr(Vr(e))]}function xn(t,e,n,r){for(var o=t.length,i=r?o:-1;(r?i--:++i<o)&&e(t[i],i,t););return n?pn(t,r?0:i,r?i+1:o):pn(t,r?i+1:0,r?o:i)}function wn(t,e){var n=t;return n instanceof k&&(n=n.value()),y(e,function(t,e){return e.func.apply(e.thisArg,h([t],e.args))},n)}function jn(t,e,n){var r=t.length;if(2>r)return r?_n(t[0]):[];for(var o=-1,i=Ho(r);++o<r;)for(var u=t[o],a=-1;++a<r;)a!=o&&(i[o]=ge(i[o]||u,t[a],e,n));return _n(xe(i,1),e,n)}function On(t,e,n){for(var r=-1,o=t.length,i=e.length,u={};++r<o;)n(u,t[r],r<i?e[r]:$);return u}function kn(t){return po(t)?t:[]}function Pn(t){return"function"==typeof t?t:Fo}function An(t,e){return ua(t)?t:Tr(t,e)?[t]:xu(Eo(t))}function Sn(t,e,n){var r=t.length;return n=n===$?r:n,!e&&n>=r?t:pn(t,e,n)}function Tn(t,e){if(e)return t.slice();var n=t.length,n=gi?gi(n):new t.constructor(n);return t.copy(n),n}function En(t){var e=new t.constructor(t.byteLength);return new vi(e).set(new vi(t)),e}function In(t,e){return new t.constructor(e?En(t.buffer):t.buffer,t.byteOffset,t.length)}function zn(t,e){if(t!==e){var n=t!==$,r=null===t,o=t===t,i=jo(t),u=e!==$,a=null===e,c=e===e,f=jo(e);if(!a&&!f&&!i&&t>e||i&&u&&c&&!a&&!f||r&&u&&c||!n&&c||!o)return 1;if(!r&&!i&&!f&&t<e||f&&n&&o&&!r&&!i||a&&n&&o||!u&&o||!c)return-1}return 0}function Rn(t,e,n,r){var o=-1,i=t.length,u=n.length,a=-1,c=e.length,f=Wi(i-u,0),s=Ho(c+f);for(r=!r;++a<c;)s[a]=e[a];for(;++o<u;)(r||o<i)&&(s[n[o]]=t[o]);for(;f--;)s[a++]=t[o++];return s}function Cn(t,e,n,r){var o=-1,i=t.length,u=-1,a=n.length,c=-1,f=e.length,s=Wi(i-a,0),l=Ho(s+f);for(r=!r;++o<s;)l[o]=t[o];for(s=o;++c<f;)l[s+c]=e[c];for(;++u<a;)(r||o<i)&&(l[s+n[u]]=t[o++]);return l}function Mn(t,e){var n=-1,r=t.length;for(e||(e=Ho(r));++n<r;)e[n]=t[n];return e}function Wn(t,e,n,r){var o=!n;n||(n={});for(var i=-1,u=e.length;++i<u;){var a=e[i],c=r?r(n[a],t[a],a,n,t):$;c===$&&(c=t[a]),o?se(n,a,c):ie(n,a,c)}return n}function Ln(t,e){return Wn(t,hu(t),e)}function Dn(t,e){return Wn(t,yu(t),e)}function Bn(t,e){return function(n,r){var o=ua(n)?u:ae,i=e?e():{};return o(n,t,br(r,2),i)}}function Nn(t){return an(function(e,n){var r=-1,o=n.length,i=1<o?n[o-1]:$,u=2<o?n[2]:$,i=3<t.length&&"function"==typeof i?(o--,i):$;for(u&&Sr(n[0],n[1],u)&&(i=3>o?$:i,o=1),e=Qo(e);++r<o;)(u=n[r])&&t(e,u,r,i);return e})}function Fn(t,e){return function(n,r){if(null==n)return n;if(!lo(n))return t(n,r);for(var o=n.length,i=e?o:-1,u=Qo(n);(e?i--:++i<o)&&!1!==r(u[i],i,u););return n}}function qn(t){return function(e,n,r){var o=-1,i=Qo(e);r=r(e);for(var u=r.length;u--;){var a=r[t?u:++o];if(!1===n(i[a],a,i))break}return e}}function Un(t,e,n){function r(){return(this&&this!==qt&&this instanceof r?i:t).apply(o?n:this,arguments)}var o=1&e,i=Vn(t);return r}function $n(t){return function(e){e=Eo(e);var n=zt.test(e)?U(e):$,r=n?n[0]:e.charAt(0);return e=n?Sn(n,1).join(""):e.slice(1),r[t]()+e}}function Gn(t){return function(e){return y(Bo(Do(e).replace(St,"")),t,"")}}function Vn(t){return function(){var e=arguments;switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3]);case 5:return new t(e[0],e[1],e[2],e[3],e[4]);case 6:return new t(e[0],e[1],e[2],e[3],e[4],e[5]);case 7:return new t(e[0],e[1],e[2],e[3],e[4],e[5],e[6])}var n=ou(t.prototype),e=t.apply(n,e);return bo(e)?e:n}}function Kn(t,e,n){function r(){for(var u=arguments.length,a=Ho(u),c=u,f=gr(r);c--;)a[c]=arguments[c];return c=3>u&&a[0]!==f&&a[u-1]!==f?[]:B(a,f),u-=c.length,u<n?or(t,e,Yn,r.placeholder,$,a,c,$,$,n-u):i(this&&this!==qt&&this instanceof r?o:t,this,a)}var o=Vn(t);return r}function Hn(t){return function(e,n,r){var o=Qo(e);if(!lo(e)){var i=br(n,3);e=Ro(e),n=function(t){return i(o[t],t,o)}}return n=t(e,n,r),-1<n?o[i?e[n]:n]:$}}function Zn(t){return dr(function(e){var n=e.length,r=n,i=o.prototype.thru;for(t&&e.reverse();r--;){var u=e[r];if("function"!=typeof u)throw new ni("Expected a function");if(i&&!a&&"wrapper"==vr(u))var a=new o([],!0)}for(r=a?r:n;++r<n;)var u=e[r],i=vr(u),c="wrapper"==i?du(u):$,a=c&&Er(c[0])&&424==c[1]&&!c[4].length&&1==c[9]?a[vr(c[0])].apply(a,c[3]):1==u.length&&Er(u)?a[i]():a.thru(u);return function(){var t=arguments,r=t[0];if(a&&1==t.length&&ua(r))return a.plant(r).value();for(var o=0,t=n?e[o].apply(this,t):r;++o<n;)t=e[o].call(this,t);return t}})}function Yn(t,e,n,r,o,i,u,a,c,f){function s(){for(var g=arguments.length,b=Ho(g),_=g;_--;)b[_]=arguments[_];if(h){var m,x=gr(s),_=b.length;for(m=0;_--;)b[_]===x&&++m}if(r&&(b=Rn(b,r,o,h)),i&&(b=Cn(b,i,u,h)),g-=m,h&&g<f)return x=B(b,x),or(t,e,Yn,s.placeholder,n,b,x,a,c,f-g);if(x=p?n:this,_=d?x[t]:t,g=b.length,a){m=b.length;for(var w=Li(a.length,m),j=Mn(b);w--;){var O=a[w];b[w]=Ar(O,m)?j[O]:$}}else y&&1<g&&b.reverse();return l&&c<g&&(b.length=c),this&&this!==qt&&this instanceof s&&(_=v||Vn(_)),_.apply(x,b)}var l=128&e,p=1&e,d=2&e,h=24&e,y=512&e,v=d?$:Vn(t);return s}function Jn(t,e){return function(n,r){return ze(n,t,e(r))}}function Xn(t,e){return function(n,r){var o;if(n===$&&r===$)return e;if(n!==$&&(o=n),r!==$){if(o===$)return r;"string"==typeof n||"string"==typeof r?(n=bn(n),r=bn(r)):(n=gn(n),r=gn(r)),o=t(n,r)}return o}}function Qn(t){return dr(function(e){return e=d(e,I(br())),an(function(n){var r=this;return t(e,function(t){return i(t,r,n)})})})}function tr(t,e){e=e===$?" ":bn(e);var n=e.length;return 2>n?n?un(e,t):e:(n=un(e,Ti(t/q(e))),zt.test(e)?Sn(U(n),0,t).join(""):n.slice(0,t))}function er(t,e,n,r){function o(){for(var e=-1,c=arguments.length,f=-1,s=r.length,l=Ho(s+c),p=this&&this!==qt&&this instanceof o?a:t;++f<s;)l[f]=r[f];for(;c--;)l[f++]=arguments[++e];return i(p,u?n:this,l)}var u=1&e,a=Vn(t);return o}function nr(t){return function(e,n,r){r&&"number"!=typeof r&&Sr(e,n,r)&&(n=r=$),e=ko(e),n===$?(n=e,e=0):n=ko(n),r=r===$?e<n?1:-1:ko(r);var o=-1;n=Wi(Ti((n-e)/(r||1)),0);for(var i=Ho(n);n--;)i[t?n:++o]=e,e+=r;return i}}function rr(t){return function(e,n){return"string"==typeof e&&"string"==typeof n||(e=So(e),n=So(n)),t(e,n)}}function or(t,e,n,r,o,i,u,a,c,f){var s=8&e,l=s?u:$;u=s?$:u;var p=s?i:$;return i=s?$:i,e=(e|(s?32:64))&~(s?64:32),4&e||(e&=-4),o=[t,e,o,p,l,i,u,a,c,f],n=n.apply($,o),Er(t)&&bu(n,o),n.placeholder=r,Mr(n,t,e)}function ir(t){var e=Xo[t];return function(t,n){if(t=So(t),(n=null==n?0:Li(Po(n),292))&&Ri(t)){var r=(Eo(t)+"e").split("e"),r=e(r[0]+"e"+(+r[1]+n)),r=(Eo(r)+"e").split("e");return+(r[0]+"e"+(+r[1]-n))}return e(t)}}function ur(t){return function(e){var n=vu(e);return"[object Map]"==n?L(e):"[object Set]"==n?F(e):E(e,t(e))}}function ar(t,e,n,r,o,i,u,a){var c=2&e;if(!c&&"function"!=typeof t)throw new ni("Expected a function");var f=r?r.length:0;if(f||(e&=-97,r=o=$),u=u===$?u:Wi(Po(u),0),a=a===$?a:Po(a),f-=o?o.length:0,64&e){var s=r,l=o;r=o=$}var p=c?$:du(t);return i=[t,e,n,r,o,s,l,i,u,a],p&&(n=i[1],t=p[1],e=n|t,r=128==t&&8==n||128==t&&256==n&&i[7].length<=p[8]||384==t&&p[7].length<=p[8]&&8==n,131>e||r)&&(1&t&&(i[2]=p[2],e|=1&n?0:4),(n=p[3])&&(r=i[3],i[3]=r?Rn(r,n,p[4]):n,i[4]=r?B(i[3],"__lodash_placeholder__"):p[4]),(n=p[5])&&(r=i[5],i[5]=r?Cn(r,n,p[6]):n,i[6]=r?B(i[5],"__lodash_placeholder__"):p[6]),(n=p[7])&&(i[7]=n),128&t&&(i[8]=null==i[8]?p[8]:Li(i[8],p[8])),null==i[9]&&(i[9]=p[9]),i[0]=p[0],i[1]=e),t=i[0],e=i[1],n=i[2],r=i[3],o=i[4],a=i[9]=i[9]===$?c?0:t.length:Wi(i[9]-f,0),!a&&24&e&&(e&=-25),Mr((p?fu:bu)(e&&1!=e?8==e||16==e?Kn(t,e,a):32!=e&&33!=e||o.length?Yn.apply($,i):er(t,e,n,r):Un(t,e,n),i),t,e)}function cr(t,e,n,r){return t===$||so(t,oi[n])&&!ai.call(r,n)?e:t}function fr(t,e,n,r,o,i){return bo(t)&&bo(e)&&(i.set(e,t),Ye(t,e,$,fr,i),i.delete(e)),t}function sr(t){return xo(t)?$:t}function lr(t,e,n,r,o,i){var u=1&n,a=t.length,c=e.length;if(a!=c&&!(u&&c>a))return!1;if((c=i.get(t))&&i.get(e))return c==e;var c=-1,f=!0,s=2&n?new Nt:$;for(i.set(t,e),i.set(e,t);++c<a;){var l=t[c],p=e[c];if(r)var d=u?r(p,l,c,e,t,i):r(l,p,c,t,e,i);if(d!==$){if(d)continue;f=!1;break}if(s){if(!g(e,function(t,e){if(!R(s,e)&&(l===t||o(l,t,n,r,i)))return s.push(e)})){f=!1;break}}else if(l!==p&&!o(l,p,n,r,i)){f=!1;break}}return i.delete(t),i.delete(e),f}function pr(t,e,n,r,o,i,u){switch(n){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)break;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":if(t.byteLength!=e.byteLength||!i(new vi(t),new vi(e)))break;return!0;case"[object Boolean]":case"[object Date]":case"[object Number]":return so(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var a=L;case"[object Set]":if(a||(a=N),t.size!=e.size&&!(1&r))break;return(n=u.get(t))?n==e:(r|=2,u.set(t,e),e=lr(a(t),a(e),r,o,i,u),u.delete(t),e);case"[object Symbol]":if(nu)return nu.call(t)==nu.call(e)}return!1}function dr(t){return mu(Rr(t,$,$r),t+"")}function hr(t){return Pe(t,Ro,hu)}function yr(t){return Pe(t,Co,yu)}function vr(t){for(var e=t.name+"",n=Zi[e],r=ai.call(Zi,e)?n.length:0;r--;){var o=n[r],i=o.func;if(null==i||i==t)return o.name}return e}function gr(t){return(ai.call(n,"placeholder")?n:t).placeholder}function br(){var t=n.iteratee||qo,t=t===qo?$e:t;return arguments.length?t(arguments[0],arguments[1]):t}function _r(t,e){var n=t.__data__,r=typeof e;return("string"==r||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==e:null===e)?n["string"==typeof e?"string":"hash"]:n.map}function mr(t){for(var e=Ro(t),n=e.length;n--;){var r=e[n],o=t[r];e[n]=[r,o,o===o&&!bo(o)]}return e}function xr(t,e){var n=null==t?$:t[e];return Ne(n)?n:$}function wr(t,e,n){e=An(e,t);for(var r=-1,o=e.length,i=!1;++r<o;){var u=Dr(e[r]);if(!(i=null!=t&&n(t,u)))break;t=t[u]}return i||++r!=o?i:!!(o=null==t?0:t.length)&&go(o)&&Ar(u,o)&&(ua(t)||ia(t))}function jr(t){var e=t.length,n=new t.constructor(e);return e&&"string"==typeof t[0]&&ai.call(t,"index")&&(n.index=t.index,n.input=t.input),n}function Or(t){return"function"!=typeof t.constructor||Ir(t)?{}:ou(bi(t))}function kr(t,e,n){var r=t.constructor;switch(e){case"[object ArrayBuffer]":return En(t);case"[object Boolean]":case"[object Date]":return new r(+t);case"[object DataView]":return e=n?En(t.buffer):t.buffer,new t.constructor(e,t.byteOffset,t.byteLength);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return In(t,n);case"[object Map]":return new r;case"[object Number]":case"[object String]":return new r(t);case"[object RegExp]":return e=new t.constructor(t.source,bt.exec(t)),e.lastIndex=t.lastIndex,e;case"[object Set]":return new r;case"[object Symbol]":return nu?Qo(nu.call(t)):{}}}function Pr(t){return ua(t)||ia(t)||!!(wi&&t&&t[wi])}function Ar(t,e){var n=typeof t;return!!(e=null==e?9007199254740991:e)&&("number"==n||"symbol"!=n&&jt.test(t))&&-1<t&&0==t%1&&t<e}function Sr(t,e,n){if(!bo(n))return!1;var r=typeof e;return!!("number"==r?lo(n)&&Ar(e,n.length):"string"==r&&e in n)&&so(n[e],t)}function Tr(t,e){if(ua(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!jo(t))||it.test(t)||!ot.test(t)||null!=e&&t in Qo(e)}function Er(t){var e=vr(t),r=n[e];return"function"==typeof r&&e in k.prototype&&(t===r||!!(e=du(r))&&t===e[0])}function Ir(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||oi)}function zr(t,e){return function(n){return null!=n&&n[t]===e&&(e!==$||t in Qo(n))}}function Rr(t,e,n){return e=Wi(e===$?t.length-1:e,0),function(){for(var r=arguments,o=-1,u=Wi(r.length-e,0),a=Ho(u);++o<u;)a[o]=r[e+o];for(o=-1,u=Ho(e+1);++o<e;)u[o]=r[o];return u[e]=n(a),i(t,this,u)}}function Cr(t,e){if(("constructor"!==e||"function"!=typeof t[e])&&"__proto__"!=e)return t[e]}function Mr(t,e,n){var r=e+"";e=mu;var o,i=Nr;return o=(o=r.match(dt))?o[1].split(ht):[],n=i(o,n),(i=n.length)&&(o=i-1,n[o]=(1<i?"& ":"")+n[o],n=n.join(2<i?", ":" "),r=r.replace(pt,"{\n/* [wrapped with "+n+"] */\n")),e(t,r)}function Wr(t){var e=0,n=0;return function(){var r=Di(),o=16-(r-n);if(n=r,0<o){if(800<=++e)return arguments[0]}else e=0;return t.apply($,arguments)}}function Lr(t,e){var n=-1,r=t.length,o=r-1;for(e=e===$?r:e;++n<e;){var r=on(n,o),i=t[r];t[r]=t[n],t[n]=i}return t.length=e,t}function Dr(t){if("string"==typeof t||jo(t))return t;var e=t+"";return"0"==e&&1/t==-G?"-0":e}function Br(t){if(null!=t){try{return ui.call(t)}catch(t){}return t+""}return""}function Nr(t,e){return a(K,function(n){var r="_."+n[0];e&n[1]&&!l(t,r)&&t.push(r)}),t.sort()}function Fr(t){if(t instanceof k)return t.clone();var e=new o(t.__wrapped__,t.__chain__);return e.__actions__=Mn(t.__actions__),e.__index__=t.__index__,e.__values__=t.__values__,e}function qr(t,e,n){var r=null==t?0:t.length;return r?(n=null==n?0:Po(n),0>n&&(n=Wi(r+n,0)),_(t,br(e,3),n)):-1}function Ur(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=r-1;return n!==$&&(o=Po(n),o=0>n?Wi(r+o,0):Li(o,r-1)),_(t,br(e,3),o,!0)}function $r(t){return(null==t?0:t.length)?xe(t,1):[]}function Gr(t){return t&&t.length?t[0]:$}function Vr(t){var e=null==t?0:t.length;return e?t[e-1]:$}function Kr(t,e){return t&&t.length&&e&&e.length?nn(t,e):t}function Hr(t){return null==t?t:Fi.call(t)}function Zr(t){if(!t||!t.length)return[];var e=0;return t=s(t,function(t){if(po(t))return e=Wi(t.length,e),!0}),T(e,function(e){return d(t,O(e))})}function Yr(t,e){if(!t||!t.length)return[];var n=Zr(t);return null==e?n:d(n,function(t){return i(e,$,t)})}function Jr(t){return t=n(t),t.__chain__=!0,t}function Xr(t,e){return e(t)}function Qr(){return this}function to(t,e){return(ua(t)?a:iu)(t,br(e,3))}function eo(t,e){return(ua(t)?c:uu)(t,br(e,3))}function no(t,e){return(ua(t)?d:Ke)(t,br(e,3))}function ro(t,e,n){return e=n?$:e,e=t&&null==e?t.length:e,ar(t,128,$,$,$,$,e)}function oo(t,e){var n;if("function"!=typeof e)throw new ni("Expected a function");return t=Po(t),function(){return 0<--t&&(n=e.apply(this,arguments)),1>=t&&(e=$),n}}function io(t,e,n){return e=n?$:e,t=ar(t,8,$,$,$,$,$,e),t.placeholder=io.placeholder,t}function uo(t,e,n){return e=n?$:e,t=ar(t,16,$,$,$,$,$,e),t.placeholder=uo.placeholder,t}function ao(t,e,n){function r(e){var n=c,r=f;return c=f=$,h=e,l=t.apply(r,n)}function o(t){var n=t-d;return t-=h,d===$||n>=e||0>n||v&&t>=s}function i(){var t=Hu();if(o(t))return u(t);var n,r=_u;n=t-h,t=e-(t-d),n=v?Li(t,s-n):t,p=r(i,n)}function u(t){return p=$,g&&c?r(t):(c=f=$,l)}function a(){var t=Hu(),n=o(t);if(c=arguments,f=this,d=t,n){if(p===$)return h=t=d,p=_u(i,e),y?r(t):l;if(v)return lu(p),p=_u(i,e),r(d)}return p===$&&(p=_u(i,e)),l}var c,f,s,l,p,d,h=0,y=!1,v=!1,g=!0;if("function"!=typeof t)throw new ni("Expected a function");return e=So(e)||0,bo(n)&&(y=!!n.leading,s=(v="maxWait"in n)?Wi(So(n.maxWait)||0,e):s,g="trailing"in n?!!n.trailing:g),a.cancel=function(){p!==$&&lu(p),h=0,c=d=f=p=$},a.flush=function(){return p===$?l:u(Hu())},a}function co(t,e){function n(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;return i.has(o)?i.get(o):(r=t.apply(this,r),n.cache=i.set(o,r)||i,r)}if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new ni("Expected a function");return n.cache=new(co.Cache||Lt),n}function fo(t){if("function"!=typeof t)throw new ni("Expected a function");return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}function so(t,e){return t===e||t!==t&&e!==e}function lo(t){return null!=t&&go(t.length)&&!yo(t)}function po(t){return _o(t)&&lo(t)}function ho(t){if(!_o(t))return!1;var e=Ae(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!xo(t)}function yo(t){return!!bo(t)&&("[object Function]"==(t=Ae(t))||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t)}function vo(t){return"number"==typeof t&&t==Po(t)}function go(t){return"number"==typeof t&&-1<t&&0==t%1&&9007199254740991>=t}function bo(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function _o(t){return null!=t&&"object"==typeof t}function mo(t){return"number"==typeof t||_o(t)&&"[object Number]"==Ae(t)}function xo(t){return!(!_o(t)||"[object Object]"!=Ae(t))&&(null===(t=bi(t))||"function"==typeof(t=ai.call(t,"constructor")&&t.constructor)&&t instanceof t&&ui.call(t)==li)}function wo(t){return"string"==typeof t||!ua(t)&&_o(t)&&"[object String]"==Ae(t)}function jo(t){return"symbol"==typeof t||_o(t)&&"[object Symbol]"==Ae(t)}function Oo(t){if(!t)return[];if(lo(t))return wo(t)?U(t):Mn(t);if(ji&&t[ji]){t=t[ji]();for(var e,n=[];!(e=t.next()).done;)n.push(e.value);return n}return e=vu(t),("[object Map]"==e?L:"[object Set]"==e?N:Wo)(t)}function ko(t){return t?(t=So(t),t===G||t===-G?1.7976931348623157e308*(0>t?-1:1):t===t?t:0):0===t?t:0}function Po(t){t=ko(t);var e=t%1;return t===t?e?t-e:t:0}function Ao(t){return t?pe(Po(t),0,4294967295):0}function So(t){if("number"==typeof t)return t;if(jo(t))return V;if(bo(t)&&(t="function"==typeof t.valueOf?t.valueOf():t,t=bo(t)?t+"":t),"string"!=typeof t)return 0===t?t:+t;t=t.replace(ft,"");var e=mt.test(t);return e||wt.test(t)?Bt(t.slice(2),e?2:8):_t.test(t)?V:+t}function To(t){return Wn(t,Co(t))}function Eo(t){return null==t?"":bn(t)}function Io(t,e,n){return t=null==t?$:ke(t,e),t===$?n:t}function zo(t,e){return null!=t&&wr(t,e,Ee)}function Ro(t){return lo(t)?Ut(t):Ge(t)}function Co(t){if(lo(t))t=Ut(t,!0);else if(bo(t)){var e,n=Ir(t),r=[];for(e in t)("constructor"!=e||!n&&ai.call(t,e))&&r.push(e);t=r}else{if(e=[],null!=t)for(n in Qo(t))e.push(n);t=e}return t}function Mo(t,e){if(null==t)return{};var n=d(yr(t),function(t){return[t]});return e=br(e),tn(t,n,function(t,n){return e(t,n[0])})}function Wo(t){return null==t?[]:z(t,Ro(t))}function Lo(t){return Ba(Eo(t).toLowerCase())}function Do(t){return(t=Eo(t))&&t.replace(Ot,ee).replace(Tt,"")}function Bo(t,e,n){return t=Eo(t),e=n?$:e,e===$?Rt.test(t)?t.match(It)||[]:t.match(yt)||[]:t.match(e)||[]}function No(t){return function(){return t}}function Fo(t){return t}function qo(t){return $e("function"==typeof t?t:de(t,1))}function Uo(t,e,n){var r=Ro(e),o=Oe(e,r);null!=n||bo(e)&&(o.length||!r.length)||(n=e,e=t,t=this,o=Oe(e,Ro(e)));var i=!(bo(n)&&"chain"in n&&!n.chain),u=yo(t);return a(o,function(n){var r=e[n];t[n]=r,u&&(t.prototype[n]=function(){var e=this.__chain__;if(i||e){var n=t(this.__wrapped__);return(n.__actions__=Mn(this.__actions__)).push({func:r,args:arguments,thisArg:t}),n.__chain__=e,n}return r.apply(t,h([this.value()],arguments))})}),t}function $o(){}function Go(t){return Tr(t)?O(Dr(t)):en(t)}function Vo(){return[]}function Ko(){return!1}e=null==e?qt:oe.defaults(qt.Object(),e,oe.pick(qt,Ct));var Ho=e.Array,Zo=e.Date,Yo=e.Error,Jo=e.Function,Xo=e.Math,Qo=e.Object,ti=e.RegExp,ei=e.String,ni=e.TypeError,ri=Ho.prototype,oi=Qo.prototype,ii=e["__core-js_shared__"],ui=Jo.prototype.toString,ai=oi.hasOwnProperty,ci=0,fi=function(){var t=/[^.]+$/.exec(ii&&ii.keys&&ii.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),si=oi.toString,li=ui.call(Qo),pi=qt._,di=ti("^"+ui.call(ai).replace(at,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),hi=Gt?e.Buffer:$,yi=e.Symbol,vi=e.Uint8Array,gi=hi?hi.g:$,bi=D(Qo.getPrototypeOf,Qo),_i=Qo.create,mi=oi.propertyIsEnumerable,xi=ri.splice,wi=yi?yi.isConcatSpreadable:$,ji=yi?yi.iterator:$,Oi=yi?yi.toStringTag:$,ki=function(){try{var t=xr(Qo,"defineProperty");return t({},"",{}),t}catch(t){}}(),Pi=e.clearTimeout!==qt.clearTimeout&&e.clearTimeout,Ai=Zo&&Zo.now!==qt.Date.now&&Zo.now,Si=e.setTimeout!==qt.setTimeout&&e.setTimeout,Ti=Xo.ceil,Ei=Xo.floor,Ii=Qo.getOwnPropertySymbols,zi=hi?hi.isBuffer:$,Ri=e.isFinite,Ci=ri.join,Mi=D(Qo.keys,Qo),Wi=Xo.max,Li=Xo.min,Di=Zo.now,Bi=e.parseInt,Ni=Xo.random,Fi=ri.reverse,qi=xr(e,"DataView"),Ui=xr(e,"Map"),$i=xr(e,"Promise"),Gi=xr(e,"Set"),Vi=xr(e,"WeakMap"),Ki=xr(Qo,"create"),Hi=Vi&&new Vi,Zi={},Yi=Br(qi),Ji=Br(Ui),Xi=Br($i),Qi=Br(Gi),tu=Br(Vi),eu=yi?yi.prototype:$,nu=eu?eu.valueOf:$,ru=eu?eu.toString:$,ou=function(){function t(){}return function(e){return bo(e)?_i?_i(e):(t.prototype=e,e=new t,t.prototype=$,e):{}}}();n.templateSettings={escape:et,evaluate:nt,interpolate:rt,variable:"",imports:{_:n}},n.prototype=r.prototype,n.prototype.constructor=n,o.prototype=ou(r.prototype),o.prototype.constructor=o,k.prototype=ou(r.prototype),k.prototype.constructor=k,At.prototype.clear=function(){this.__data__=Ki?Ki(null):{},this.size=0},At.prototype.delete=function(t){return t=this.has(t)&&delete this.__data__[t],this.size-=t?1:0,t},At.prototype.get=function(t){var e=this.__data__;return Ki?(t=e[t],"__lodash_hash_undefined__"===t?$:t):ai.call(e,t)?e[t]:$},At.prototype.has=function(t){var e=this.__data__;return Ki?e[t]!==$:ai.call(e,t)},At.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=Ki&&e===$?"__lodash_hash_undefined__":e,this},Et.prototype.clear=function(){this.__data__=[],this.size=0},Et.prototype.delete=function(t){var e=this.__data__;return!(0>(t=ue(e,t))||(t==e.length-1?e.pop():xi.call(e,t,1),--this.size,0))},Et.prototype.get=function(t){var e=this.__data__;return t=ue(e,t),0>t?$:e[t][1]},Et.prototype.has=function(t){return-1<ue(this.__data__,t)},Et.prototype.set=function(t,e){var n=this.__data__,r=ue(n,t);return 0>r?(++this.size,n.push([t,e])):n[r][1]=e,this},Lt.prototype.clear=function(){this.size=0,this.__data__={hash:new At,map:new(Ui||Et),string:new At}},Lt.prototype.delete=function(t){return t=_r(this,t).delete(t),this.size-=t?1:0,t},Lt.prototype.get=function(t){return _r(this,t).get(t)},Lt.prototype.has=function(t){return _r(this,t).has(t)},Lt.prototype.set=function(t,e){var n=_r(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},Nt.prototype.add=Nt.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},Nt.prototype.has=function(t){return this.__data__.has(t)},Ft.prototype.clear=function(){this.__data__=new Et,this.size=0},Ft.prototype.delete=function(t){var e=this.__data__;return t=e.delete(t),this.size=e.size,t},Ft.prototype.get=function(t){return this.__data__.get(t)},Ft.prototype.has=function(t){return this.__data__.has(t)},Ft.prototype.set=function(t,e){var n=this.__data__;if(n instanceof Et){var r=n.__data__;if(!Ui||199>r.length)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new Lt(r)}return n.set(t,e),this.size=n.size,this};var iu=Fn(we),uu=Fn(je,!0),au=qn(),cu=qn(!0),fu=Hi?function(t,e){return Hi.set(t,e),t}:Fo,su=ki?function(t,e){return ki(t,"toString",{configurable:!0,enumerable:!1,value:No(e),writable:!0})}:Fo,lu=Pi||function(t){return qt.clearTimeout(t)},pu=Gi&&1/N(new Gi([,-0]))[1]==G?function(t){return new Gi(t)}:$o,du=Hi?function(t){return Hi.get(t)}:$o,hu=Ii?function(t){return null==t?[]:(t=Qo(t),s(Ii(t),function(e){return mi.call(t,e)}))}:Vo,yu=Ii?function(t){for(var e=[];t;)h(e,hu(t)),t=bi(t);return e}:Vo,vu=Ae;(qi&&"[object DataView]"!=vu(new qi(new ArrayBuffer(1)))||Ui&&"[object Map]"!=vu(new Ui)||$i&&"[object Promise]"!=vu($i.resolve())||Gi&&"[object Set]"!=vu(new Gi)||Vi&&"[object WeakMap]"!=vu(new Vi))&&(vu=function(t){var e=Ae(t);if(t=(t="[object Object]"==e?t.constructor:$)?Br(t):"")switch(t){case Yi:return"[object DataView]";case Ji:return"[object Map]";case Xi:return"[object Promise]";case Qi:return"[object Set]";case tu:return"[object WeakMap]"}return e});var gu=ii?yo:Ko,bu=Wr(fu),_u=Si||function(t,e){return qt.setTimeout(t,e)},mu=Wr(su),xu=function(t){t=co(t,function(t){return 500===e.size&&e.clear(),t});var e=t.cache;return t}(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(ut,function(t,n,r,o){e.push(r?o.replace(vt,"$1"):n||t)}),e}),wu=an(function(t,e){return po(t)?ge(t,xe(e,1,po,!0)):[]}),ju=an(function(t,e){var n=Vr(e);return po(n)&&(n=$),po(t)?ge(t,xe(e,1,po,!0),br(n,2)):[]}),Ou=an(function(t,e){var n=Vr(e);return po(n)&&(n=$),po(t)?ge(t,xe(e,1,po,!0),$,n):[]}),ku=an(function(t){var e=d(t,kn);return e.length&&e[0]===t[0]?Ie(e):[]}),Pu=an(function(t){var e=Vr(t),n=d(t,kn);return e===Vr(n)?e=$:n.pop(),n.length&&n[0]===t[0]?Ie(n,br(e,2)):[]}),Au=an(function(t){var e=Vr(t),n=d(t,kn);return(e="function"==typeof e?e:$)&&n.pop(),n.length&&n[0]===t[0]?Ie(n,$,e):[]}),Su=an(Kr),Tu=dr(function(t,e){var n=null==t?0:t.length,r=le(t,e);return rn(t,d(e,function(t){return Ar(t,n)?+t:t}).sort(zn)),r}),Eu=an(function(t){return _n(xe(t,1,po,!0))}),Iu=an(function(t){var e=Vr(t);return po(e)&&(e=$),_n(xe(t,1,po,!0),br(e,2))}),zu=an(function(t){var e=Vr(t),e="function"==typeof e?e:$;return _n(xe(t,1,po,!0),$,e)}),Ru=an(function(t,e){return po(t)?ge(t,e):[]}),Cu=an(function(t){return jn(s(t,po))}),Mu=an(function(t){var e=Vr(t);return po(e)&&(e=$),jn(s(t,po),br(e,2))}),Wu=an(function(t){var e=Vr(t),e="function"==typeof e?e:$;return jn(s(t,po),$,e)}),Lu=an(Zr),Du=an(function(t){var e=t.length,e=1<e?t[e-1]:$,e="function"==typeof e?(t.pop(),e):$;return Yr(t,e)}),Bu=dr(function(t){function e(e){return le(e,t)}var n=t.length,r=n?t[0]:0,i=this.__wrapped__;return!(1<n||this.__actions__.length)&&i instanceof k&&Ar(r)?(i=i.slice(r,+r+(n?1:0)),i.__actions__.push({func:Xr,args:[e],thisArg:$}),new o(i,this.__chain__).thru(function(t){return n&&!t.length&&t.push($),t})):this.thru(e)}),Nu=Bn(function(t,e,n){ai.call(t,n)?++t[n]:se(t,n,1)}),Fu=Hn(qr),qu=Hn(Ur),Uu=Bn(function(t,e,n){ai.call(t,n)?t[n].push(e):se(t,n,[e])}),$u=an(function(t,e,n){var r=-1,o="function"==typeof e,u=lo(t)?Ho(t.length):[];return iu(t,function(t){u[++r]=o?i(e,t,n):Re(t,e,n)}),u}),Gu=Bn(function(t,e,n){se(t,n,e)}),Vu=Bn(function(t,e,n){t[n?0:1].push(e)},function(){return[[],[]]}),Ku=an(function(t,e){if(null==t)return[];var n=e.length;return 1<n&&Sr(t,e[0],e[1])?e=[]:2<n&&Sr(e[0],e[1],e[2])&&(e=[e[0]]),Xe(t,xe(e,1),[])}),Hu=Ai||function(){return qt.Date.now()},Zu=an(function(t,e,n){var r=1;if(n.length)var o=B(n,gr(Zu)),r=32|r;return ar(t,r,e,n,o)}),Yu=an(function(t,e,n){var r=3;if(n.length)var o=B(n,gr(Yu)),r=32|r;return ar(e,r,t,n,o)}),Ju=an(function(t,e){return ve(t,1,e)}),Xu=an(function(t,e,n){return ve(t,So(e)||0,n)});co.Cache=Lt;var Qu=an(function(t,e){e=1==e.length&&ua(e[0])?d(e[0],I(br())):d(xe(e,1),I(br()));var n=e.length;return an(function(r){for(var o=-1,u=Li(r.length,n);++o<u;)r[o]=e[o].call(this,r[o]);return i(t,this,r)})}),ta=an(function(t,e){return ar(t,32,$,e,B(e,gr(ta)))}),ea=an(function(t,e){return ar(t,64,$,e,B(e,gr(ea)))}),na=dr(function(t,e){return ar(t,256,$,$,$,e)}),ra=rr(Se),oa=rr(function(t,e){return t>=e}),ia=Ce(function(){return arguments}())?Ce:function(t){return _o(t)&&ai.call(t,"callee")&&!mi.call(t,"callee")},ua=Ho.isArray,aa=Ht?I(Ht):Me,ca=zi||Ko,fa=Zt?I(Zt):We,sa=Yt?I(Yt):De,la=Jt?I(Jt):Fe,pa=Xt?I(Xt):qe,da=Qt?I(Qt):Ue,ha=rr(Ve),ya=rr(function(t,e){return t<=e}),va=Nn(function(t,e){if(Ir(e)||lo(e))Wn(e,Ro(e),t);else for(var n in e)ai.call(e,n)&&ie(t,n,e[n])}),ga=Nn(function(t,e){Wn(e,Co(e),t)}),ba=Nn(function(t,e,n,r){Wn(e,Co(e),t,r)}),_a=Nn(function(t,e,n,r){Wn(e,Ro(e),t,r)}),ma=dr(le),xa=an(function(t,e){t=Qo(t);var n=-1,r=e.length,o=2<r?e[2]:$;for(o&&Sr(e[0],e[1],o)&&(r=1);++n<r;)for(var o=e[n],i=Co(o),u=-1,a=i.length;++u<a;){var c=i[u],f=t[c];(f===$||so(f,oi[c])&&!ai.call(t,c))&&(t[c]=o[c])}return t}),wa=an(function(t){return t.push($,fr),i(Aa,$,t)}),ja=Jn(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=si.call(e)),t[e]=n},No(Fo)),Oa=Jn(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=si.call(e)),ai.call(t,e)?t[e].push(n):t[e]=[n]},br),ka=an(Re),Pa=Nn(function(t,e,n){Ye(t,e,n)}),Aa=Nn(function(t,e,n,r){Ye(t,e,n,r)}),Sa=dr(function(t,e){var n={};if(null==t)return n;var r=!1;e=d(e,function(e){return e=An(e,t),r||(r=1<e.length),e}),Wn(t,yr(t),n),r&&(n=de(n,7,sr));for(var o=e.length;o--;)mn(n,e[o]);return n}),Ta=dr(function(t,e){return null==t?{}:Qe(t,e)}),Ea=ur(Ro),Ia=ur(Co),za=Gn(function(t,e,n){return e=e.toLowerCase(),t+(n?Lo(e):e)}),Ra=Gn(function(t,e,n){return t+(n?"-":"")+e.toLowerCase()}),Ca=Gn(function(t,e,n){return t+(n?" ":"")+e.toLowerCase()}),Ma=$n("toLowerCase"),Wa=Gn(function(t,e,n){return t+(n?"_":"")+e.toLowerCase()}),La=Gn(function(t,e,n){return t+(n?" ":"")+Ba(e)}),Da=Gn(function(t,e,n){return t+(n?" ":"")+e.toUpperCase()}),Ba=$n("toUpperCase"),Na=an(function(t,e){try{return i(t,$,e)}catch(t){return ho(t)?t:new Yo(t)}}),Fa=dr(function(t,e){return a(e,function(e){e=Dr(e),se(t,e,Zu(t[e],t))}),t}),qa=Zn(),Ua=Zn(!0),$a=an(function(t,e){return function(n){return Re(n,t,e)}}),Ga=an(function(t,e){return function(n){return Re(t,n,e)}}),Va=Qn(d),Ka=Qn(f),Ha=Qn(g),Za=nr(),Ya=nr(!0),Ja=Xn(function(t,e){return t+e},0),Xa=ir("ceil"),Qa=Xn(function(t,e){return t/e},1),tc=ir("floor"),ec=Xn(function(t,e){return t*e},1),nc=ir("round"),rc=Xn(function(t,e){return t-e},0);return n.after=function(t,e){if("function"!=typeof e)throw new ni("Expected a function");return t=Po(t),function(){if(1>--t)return e.apply(this,arguments)}},n.ary=ro,n.assign=va,n.assignIn=ga,n.assignInWith=ba,n.assignWith=_a,n.at=ma,n.before=oo,n.bind=Zu,n.bindAll=Fa,n.bindKey=Yu,n.castArray=function(){if(!arguments.length)return[];var t=arguments[0];return ua(t)?t:[t]},n.chain=Jr,n.chunk=function(t,e,n){if(e=(n?Sr(t,e,n):e===$)?1:Wi(Po(e),0),!(n=null==t?0:t.length)||1>e)return[];for(var r=0,o=0,i=Ho(Ti(n/e));r<n;)i[o++]=pn(t,r,r+=e);return i},n.compact=function(t){for(var e=-1,n=null==t?0:t.length,r=0,o=[];++e<n;){var i=t[e];i&&(o[r++]=i)}return o},n.concat=function(){var t=arguments.length;if(!t)return[];for(var e=Ho(t-1),n=arguments[0];t--;)e[t-1]=arguments[t];return h(ua(n)?Mn(n):[n],xe(e,1))},n.cond=function(t){var e=null==t?0:t.length,n=br();return t=e?d(t,function(t){if("function"!=typeof t[1])throw new ni("Expected a function");return[n(t[0]),t[1]]}):[],an(function(n){for(var r=-1;++r<e;){var o=t[r];if(i(o[0],this,n))return i(o[1],this,n)}})},n.conforms=function(t){return he(de(t,1))},n.constant=No,n.countBy=Nu,n.create=function(t,e){var n=ou(t);return null==e?n:ce(n,e)},n.curry=io,n.curryRight=uo,n.debounce=ao,n.defaults=xa,n.defaultsDeep=wa,n.defer=Ju,n.delay=Xu,n.difference=wu,n.differenceBy=ju,n.differenceWith=Ou,n.drop=function(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===$?1:Po(e),pn(t,0>e?0:e,r)):[]},n.dropRight=function(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===$?1:Po(e),e=r-e,pn(t,0,0>e?0:e)):[]},n.dropRightWhile=function(t,e){return t&&t.length?xn(t,br(e,3),!0,!0):[]},n.dropWhile=function(t,e){return t&&t.length?xn(t,br(e,3),!0):[]},n.fill=function(t,e,n,r){var o=null==t?0:t.length;if(!o)return[];for(n&&"number"!=typeof n&&Sr(t,e,n)&&(n=0,r=o),o=t.length,n=Po(n),0>n&&(n=-n>o?0:o+n),r=r===$||r>o?o:Po(r),0>r&&(r+=o),r=n>r?0:Ao(r);n<r;)t[n++]=e;return t},n.filter=function(t,e){return(ua(t)?s:me)(t,br(e,3))},n.flatMap=function(t,e){return xe(no(t,e),1)},n.flatMapDeep=function(t,e){return xe(no(t,e),G)},n.flatMapDepth=function(t,e,n){return n=n===$?1:Po(n),xe(no(t,e),n)},n.flatten=$r,n.flattenDeep=function(t){return(null==t?0:t.length)?xe(t,G):[]},n.flattenDepth=function(t,e){return null!=t&&t.length?(e=e===$?1:Po(e),xe(t,e)):[]},n.flip=function(t){return ar(t,512)},n.flow=qa,n.flowRight=Ua,n.fromPairs=function(t){for(var e=-1,n=null==t?0:t.length,r={};++e<n;){var o=t[e];r[o[0]]=o[1]}return r},n.functions=function(t){return null==t?[]:Oe(t,Ro(t))},n.functionsIn=function(t){return null==t?[]:Oe(t,Co(t))},n.groupBy=Uu,n.initial=function(t){return(null==t?0:t.length)?pn(t,0,-1):[]},n.intersection=ku,n.intersectionBy=Pu,n.intersectionWith=Au,n.invert=ja,n.invertBy=Oa,n.invokeMap=$u,n.iteratee=qo,n.keyBy=Gu,n.keys=Ro,n.keysIn=Co,n.map=no,n.mapKeys=function(t,e){var n={};return e=br(e,3),we(t,function(t,r,o){se(n,e(t,r,o),t)}),n},n.mapValues=function(t,e){var n={};return e=br(e,3),we(t,function(t,r,o){se(n,r,e(t,r,o))}),n},n.matches=function(t){return He(de(t,1))},n.matchesProperty=function(t,e){return Ze(t,de(e,1))},n.memoize=co,n.merge=Pa,n.mergeWith=Aa,n.method=$a,n.methodOf=Ga,n.mixin=Uo,n.negate=fo,n.nthArg=function(t){return t=Po(t),an(function(e){return Je(e,t)})},n.omit=Sa,n.omitBy=function(t,e){return Mo(t,fo(br(e)))},n.once=function(t){return oo(2,t)},n.orderBy=function(t,e,n,r){return null==t?[]:(ua(e)||(e=null==e?[]:[e]),n=r?$:n,ua(n)||(n=null==n?[]:[n]),Xe(t,e,n))},n.over=Va,n.overArgs=Qu,n.overEvery=Ka,n.overSome=Ha,n.partial=ta,n.partialRight=ea,n.partition=Vu,n.pick=Ta,n.pickBy=Mo,n.property=Go,n.propertyOf=function(t){return function(e){return null==t?$:ke(t,e)}},n.pull=Su,n.pullAll=Kr,n.pullAllBy=function(t,e,n){return t&&t.length&&e&&e.length?nn(t,e,br(n,2)):t},n.pullAllWith=function(t,e,n){return t&&t.length&&e&&e.length?nn(t,e,$,n):t},n.pullAt=Tu,n.range=Za,n.rangeRight=Ya,n.rearg=na,n.reject=function(t,e){return(ua(t)?s:me)(t,fo(br(e,3)))},n.remove=function(t,e){var n=[];if(!t||!t.length)return n;var r=-1,o=[],i=t.length;for(e=br(e,3);++r<i;){var u=t[r];e(u,r,t)&&(n.push(u),o.push(r))}return rn(t,o),n},n.rest=function(t,e){if("function"!=typeof t)throw new ni("Expected a function");return e=e===$?e:Po(e),an(t,e)},n.reverse=Hr,n.sampleSize=function(t,e,n){return e=(n?Sr(t,e,n):e===$)?1:Po(e),(ua(t)?Vt:fn)(t,e)},n.set=function(t,e,n){return null==t?t:sn(t,e,n)},n.setWith=function(t,e,n,r){return r="function"==typeof r?r:$,null==t?t:sn(t,e,n,r)},n.shuffle=function(t){return(ua(t)?Kt:ln)(t)},n.slice=function(t,e,n){var r=null==t?0:t.length;return r?(n&&"number"!=typeof n&&Sr(t,e,n)?(e=0,n=r):(e=null==e?0:Po(e),n=n===$?r:Po(n)),pn(t,e,n)):[]},n.sortBy=Ku,n.sortedUniq=function(t){return t&&t.length?vn(t):[]},n.sortedUniqBy=function(t,e){return t&&t.length?vn(t,br(e,2)):[]},n.split=function(t,e,n){return n&&"number"!=typeof n&&Sr(t,e,n)&&(e=n=$),n=n===$?4294967295:n>>>0,n?(t=Eo(t))&&("string"==typeof e||null!=e&&!la(e))&&!(e=bn(e))&&zt.test(t)?Sn(U(t),0,n):t.split(e,n):[]},n.spread=function(t,e){if("function"!=typeof t)throw new ni("Expected a function");return e=null==e?0:Wi(Po(e),0),an(function(n){var r=n[e];return n=Sn(n,0,e),r&&h(n,r),i(t,this,n)})},n.tail=function(t){var e=null==t?0:t.length;return e?pn(t,1,e):[]},n.take=function(t,e,n){return t&&t.length?(e=n||e===$?1:Po(e),pn(t,0,0>e?0:e)):[]},n.takeRight=function(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===$?1:Po(e),e=r-e,pn(t,0>e?0:e,r)):[]},n.takeRightWhile=function(t,e){return t&&t.length?xn(t,br(e,3),!1,!0):[]},n.takeWhile=function(t,e){return t&&t.length?xn(t,br(e,3)):[]},n.tap=function(t,e){return e(t),t},n.throttle=function(t,e,n){var r=!0,o=!0;if("function"!=typeof t)throw new ni("Expected a function");return bo(n)&&(r="leading"in n?!!n.leading:r,o="trailing"in n?!!n.trailing:o),ao(t,e,{leading:r,maxWait:e,trailing:o})},n.thru=Xr,n.toArray=Oo,n.toPairs=Ea,n.toPairsIn=Ia,n.toPath=function(t){return ua(t)?d(t,Dr):jo(t)?[t]:Mn(xu(Eo(t)))},n.toPlainObject=To,n.transform=function(t,e,n){var r=ua(t),o=r||ca(t)||da(t);if(e=br(e,4),null==n){var i=t&&t.constructor;n=o?r?new i:[]:bo(t)&&yo(i)?ou(bi(t)):{}}return(o?a:we)(t,function(t,r,o){return e(n,t,r,o)}),n},n.unary=function(t){return ro(t,1)},n.union=Eu,n.unionBy=Iu,n.unionWith=zu,n.uniq=function(t){return t&&t.length?_n(t):[]},n.uniqBy=function(t,e){return t&&t.length?_n(t,br(e,2)):[]},n.uniqWith=function(t,e){return e="function"==typeof e?e:$,t&&t.length?_n(t,$,e):[]},n.unset=function(t,e){return null==t||mn(t,e)},n.unzip=Zr,n.unzipWith=Yr,n.update=function(t,e,n){return null==t?t:sn(t,e,Pn(n)(ke(t,e)),void 0)},n.updateWith=function(t,e,n,r){return r="function"==typeof r?r:$,null!=t&&(t=sn(t,e,Pn(n)(ke(t,e)),r)),t},n.values=Wo,n.valuesIn=function(t){return null==t?[]:z(t,Co(t))},n.without=Ru,n.words=Bo,n.wrap=function(t,e){return ta(Pn(e),t)},n.xor=Cu,n.xorBy=Mu,n.xorWith=Wu,n.zip=Lu,n.zipObject=function(t,e){return On(t||[],e||[],ie)},n.zipObjectDeep=function(t,e){return On(t||[],e||[],sn)},n.zipWith=Du,n.entries=Ea,n.entriesIn=Ia,n.extend=ga,n.extendWith=ba,Uo(n,n),n.add=Ja,n.attempt=Na,n.camelCase=za,n.capitalize=Lo,n.ceil=Xa,n.clamp=function(t,e,n){return n===$&&(n=e,e=$),n!==$&&(n=So(n),n=n===n?n:0),e!==$&&(e=So(e),e=e===e?e:0),pe(So(t),e,n)},n.clone=function(t){return de(t,4)},n.cloneDeep=function(t){return de(t,5)},n.cloneDeepWith=function(t,e){return e="function"==typeof e?e:$,de(t,5,e)},n.cloneWith=function(t,e){return e="function"==typeof e?e:$,de(t,4,e)},n.conformsTo=function(t,e){return null==e||ye(t,e,Ro(e))},n.deburr=Do,n.defaultTo=function(t,e){return null==t||t!==t?e:t},n.divide=Qa,n.endsWith=function(t,e,n){t=Eo(t),e=bn(e);var r=t.length,r=n=n===$?r:pe(Po(n),0,r);return 0<=(n-=e.length)&&t.slice(n,r)==e},n.eq=so,n.escape=function(t){return(t=Eo(t))&&tt.test(t)?t.replace(X,ne):t},n.escapeRegExp=function(t){return(t=Eo(t))&&ct.test(t)?t.replace(at,"\\$&"):t},n.every=function(t,e,n){var r=ua(t)?f:be;return n&&Sr(t,e,n)&&(e=$),r(t,br(e,3))},n.find=Fu,n.findIndex=qr,n.findKey=function(t,e){return b(t,br(e,3),we)},n.findLast=qu,n.findLastIndex=Ur,n.findLastKey=function(t,e){return b(t,br(e,3),je)},n.floor=tc,n.forEach=to,n.forEachRight=eo,n.forIn=function(t,e){return null==t?t:au(t,br(e,3),Co)},n.forInRight=function(t,e){return null==t?t:cu(t,br(e,3),Co)},n.forOwn=function(t,e){return t&&we(t,br(e,3))},n.forOwnRight=function(t,e){return t&&je(t,br(e,3))},n.get=Io,n.gt=ra,n.gte=oa,n.has=function(t,e){return null!=t&&wr(t,e,Te)},n.hasIn=zo,n.head=Gr,n.identity=Fo,n.includes=function(t,e,n,r){return t=lo(t)?t:Wo(t),n=n&&!r?Po(n):0,r=t.length,0>n&&(n=Wi(r+n,0)),wo(t)?n<=r&&-1<t.indexOf(e,n):!!r&&-1<m(t,e,n)},n.indexOf=function(t,e,n){var r=null==t?0:t.length;return r?(n=null==n?0:Po(n),0>n&&(n=Wi(r+n,0)),m(t,e,n)):-1},n.inRange=function(t,e,n){return e=ko(e),n===$?(n=e,e=0):n=ko(n),(t=So(t))>=Li(e,n)&&t<Wi(e,n)},n.invoke=ka,n.isArguments=ia,n.isArray=ua,n.isArrayBuffer=aa,n.isArrayLike=lo,n.isArrayLikeObject=po,n.isBoolean=function(t){return!0===t||!1===t||_o(t)&&"[object Boolean]"==Ae(t)},n.isBuffer=ca,n.isDate=fa,n.isElement=function(t){return _o(t)&&1===t.nodeType&&!xo(t)},n.isEmpty=function(t){if(null==t)return!0;if(lo(t)&&(ua(t)||"string"==typeof t||"function"==typeof t.splice||ca(t)||da(t)||ia(t)))return!t.length;var e=vu(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Ir(t))return!Ge(t).length;for(var n in t)if(ai.call(t,n))return!1;return!0},n.isEqual=function(t,e){return Le(t,e)},n.isEqualWith=function(t,e,n){var r=(n="function"==typeof n?n:$)?n(t,e):$;return r===$?Le(t,e,$,n):!!r},n.isError=ho,n.isFinite=function(t){return"number"==typeof t&&Ri(t)},n.isFunction=yo,n.isInteger=vo,n.isLength=go,n.isMap=sa,n.isMatch=function(t,e){return t===e||Be(t,e,mr(e))},n.isMatchWith=function(t,e,n){return n="function"==typeof n?n:$,Be(t,e,mr(e),n)},n.isNaN=function(t){return mo(t)&&t!=+t},n.isNative=function(t){if(gu(t))throw new Yo("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return Ne(t)},n.isNil=function(t){return null==t},n.isNull=function(t){return null===t},n.isNumber=mo,n.isObject=bo,n.isObjectLike=_o,n.isPlainObject=xo,n.isRegExp=la,n.isSafeInteger=function(t){return vo(t)&&-9007199254740991<=t&&9007199254740991>=t},n.isSet=pa,n.isString=wo,n.isSymbol=jo,n.isTypedArray=da,n.isUndefined=function(t){return t===$},n.isWeakMap=function(t){return _o(t)&&"[object WeakMap]"==vu(t)},n.isWeakSet=function(t){return _o(t)&&"[object WeakSet]"==Ae(t)},n.join=function(t,e){return null==t?"":Ci.call(t,e)},n.kebabCase=Ra,n.last=Vr,n.lastIndexOf=function(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=r;if(n!==$&&(o=Po(n),o=0>o?Wi(r+o,0):Li(o,r-1)),e===e){for(n=o+1;n--&&t[n]!==e;);t=n}else t=_(t,w,o,!0);return t},n.lowerCase=Ca,n.lowerFirst=Ma,n.lt=ha,n.lte=ya,n.max=function(t){return t&&t.length?_e(t,Fo,Se):$},n.maxBy=function(t,e){return t&&t.length?_e(t,br(e,2),Se):$},n.mean=function(t){return j(t,Fo)},n.meanBy=function(t,e){return j(t,br(e,2))},n.min=function(t){return t&&t.length?_e(t,Fo,Ve):$},n.minBy=function(t,e){return t&&t.length?_e(t,br(e,2),Ve):$},n.stubArray=Vo,n.stubFalse=Ko,n.stubObject=function(){return{}},n.stubString=function(){return""},n.stubTrue=function(){return!0},n.multiply=ec,n.nth=function(t,e){return t&&t.length?Je(t,Po(e)):$},n.noConflict=function(){return qt._===this&&(qt._=pi),this},n.noop=$o,n.now=Hu,n.pad=function(t,e,n){t=Eo(t);var r=(e=Po(e))?q(t):0;return!e||r>=e?t:(e=(e-r)/2,tr(Ei(e),n)+t+tr(Ti(e),n))},n.padEnd=function(t,e,n){t=Eo(t);var r=(e=Po(e))?q(t):0;return e&&r<e?t+tr(e-r,n):t},n.padStart=function(t,e,n){t=Eo(t);var r=(e=Po(e))?q(t):0;return e&&r<e?tr(e-r,n)+t:t},n.parseInt=function(t,e,n){return n||null==e?e=0:e&&(e=+e),Bi(Eo(t).replace(st,""),e||0)},n.random=function(t,e,n){if(n&&"boolean"!=typeof n&&Sr(t,e,n)&&(e=n=$),n===$&&("boolean"==typeof e?(n=e,e=$):"boolean"==typeof t&&(n=t,t=$)),t===$&&e===$?(t=0,e=1):(t=ko(t),e===$?(e=t,t=0):e=ko(e)),t>e){var r=t;t=e,e=r}return n||t%1||e%1?(n=Ni(),Li(t+n*(e-t+Dt("1e-"+((n+"").length-1))),e)):on(t,e)},n.reduce=function(t,e,n){var r=ua(t)?y:P,o=3>arguments.length;return r(t,br(e,4),n,o,iu)},n.reduceRight=function(t,e,n){var r=ua(t)?v:P,o=3>arguments.length;return r(t,br(e,4),n,o,uu)},n.repeat=function(t,e,n){return e=(n?Sr(t,e,n):e===$)?1:Po(e),un(Eo(t),e)},n.replace=function(){var t=arguments,e=Eo(t[0]);return 3>t.length?e:e.replace(t[1],t[2])},n.result=function(t,e,n){e=An(e,t);var r=-1,o=e.length;for(o||(o=1,t=$);++r<o;){var i=null==t?$:t[Dr(e[r])];i===$&&(r=o,i=n),t=yo(i)?i.call(t):i}return t},n.round=nc,n.runInContext=t,n.sample=function(t){return(ua(t)?$t:cn)(t)},n.size=function(t){if(null==t)return 0;if(lo(t))return wo(t)?q(t):t.length;var e=vu(t);return"[object Map]"==e||"[object Set]"==e?t.size:Ge(t).length},n.snakeCase=Wa,n.some=function(t,e,n){var r=ua(t)?g:dn;return n&&Sr(t,e,n)&&(e=$),r(t,br(e,3))},n.sortedIndex=function(t,e){return hn(t,e)},n.sortedIndexBy=function(t,e,n){return yn(t,e,br(n,2))},n.sortedIndexOf=function(t,e){var n=null==t?0:t.length;if(n){var r=hn(t,e);if(r<n&&so(t[r],e))return r}return-1},n.sortedLastIndex=function(t,e){return hn(t,e,!0)},n.sortedLastIndexBy=function(t,e,n){return yn(t,e,br(n,2),!0)},n.sortedLastIndexOf=function(t,e){if(null==t?0:t.length){var n=hn(t,e,!0)-1;if(so(t[n],e))return n}return-1},n.startCase=La,n.startsWith=function(t,e,n){return t=Eo(t),n=null==n?0:pe(Po(n),0,t.length),e=bn(e),t.slice(n,n+e.length)==e},n.subtract=rc,n.sum=function(t){return t&&t.length?S(t,Fo):0},n.sumBy=function(t,e){return t&&t.length?S(t,br(e,2)):0},n.template=function(t,e,r){var o=n.templateSettings;r&&Sr(t,e,r)&&(e=$),t=Eo(t),e=ba({},e,o,cr),r=ba({},e.imports,o.imports,cr);var i,u,a=Ro(r),c=z(r,a),f=0;r=e.interpolate||kt;var s="__p+='";r=ti((e.escape||kt).source+"|"+r.source+"|"+(r===rt?gt:kt).source+"|"+(e.evaluate||kt).source+"|$","g");var l=ai.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/[\r\n]/g," ")+"\n":"";if(t.replace(r,function(e,n,r,o,a,c){return r||(r=o),s+=t.slice(f,c).replace(Pt,W),n&&(i=!0,s+="'+__e("+n+")+'"),a&&(u=!0,s+="';"+a+";\n__p+='"),r&&(s+="'+((__t=("+r+"))==null?'':__t)+'"),f=c+e.length,e}),s+="';",(e=ai.call(e,"variable")&&e.variable)||(s="with(obj){"+s+"}"),s=(u?s.replace(H,""):s).replace(Z,"$1").replace(Y,"$1;"),s="function("+(e||"obj")+"){"+(e?"":"obj||(obj={});")+"var __t,__p=''"+(i?",__e=_.escape":"")+(u?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+s+"return __p}",e=Na(function(){return Jo(a,l+"return "+s).apply($,c)}),e.source=s,ho(e))throw e;return e},n.times=function(t,e){if(1>(t=Po(t))||9007199254740991<t)return[];var n=4294967295,r=Li(t,4294967295);for(e=br(e),t-=4294967295,r=T(r,e);++n<t;)e(n);return r},n.toFinite=ko,n.toInteger=Po,n.toLength=Ao,n.toLower=function(t){return Eo(t).toLowerCase()},n.toNumber=So,n.toSafeInteger=function(t){return t?pe(Po(t),-9007199254740991,9007199254740991):0===t?t:0},n.toString=Eo,n.toUpper=function(t){return Eo(t).toUpperCase()},n.trim=function(t,e,n){return(t=Eo(t))&&(n||e===$)?t.replace(ft,""):t&&(e=bn(e))?(t=U(t),n=U(e),e=C(t,n),n=M(t,n)+1,Sn(t,e,n).join("")):t},n.trimEnd=function(t,e,n){return(t=Eo(t))&&(n||e===$)?t.replace(lt,""):t&&(e=bn(e))?(t=U(t),e=M(t,U(e))+1,Sn(t,0,e).join("")):t},n.trimStart=function(t,e,n){return(t=Eo(t))&&(n||e===$)?t.replace(st,""):t&&(e=bn(e))?(t=U(t),e=C(t,U(e)),Sn(t,e).join("")):t},n.truncate=function(t,e){var n=30,r="...";if(bo(e))var o="separator"in e?e.separator:o,n="length"in e?Po(e.length):n,r="omission"in e?bn(e.omission):r;t=Eo(t);var i=t.length;if(zt.test(t))var u=U(t),i=u.length;if(n>=i)return t;if(1>(i=n-q(r)))return r;if(n=u?Sn(u,0,i).join(""):t.slice(0,i),o===$)return n+r;if(u&&(i+=n.length-i),la(o)){if(t.slice(i).search(o)){var a=n;for(o.global||(o=ti(o.source,Eo(bt.exec(o))+"g")),o.lastIndex=0;u=o.exec(a);)var c=u.index;n=n.slice(0,c===$?i:c)}}else t.indexOf(bn(o),i)!=i&&-1<(o=n.lastIndexOf(o))&&(n=n.slice(0,o));return n+r},n.unescape=function(t){return(t=Eo(t))&&Q.test(t)?t.replace(J,re):t},n.uniqueId=function(t){var e=++ci;return Eo(t)+e},n.upperCase=Da,n.upperFirst=Ba,n.each=to,n.eachRight=eo,n.first=Gr,Uo(n,function(){var t={};return we(n,function(e,r){ai.call(n.prototype,r)||(t[r]=e)}),t}(),{chain:!1}),n.VERSION="4.17.15",a("bind bindKey curry curryRight partial partialRight".split(" "),function(t){n[t].placeholder=n}),a(["drop","take"],function(t,e){k.prototype[t]=function(n){n=n===$?1:Wi(Po(n),0);var r=this.__filtered__&&!e?new k(this):this.clone();return r.__filtered__?r.__takeCount__=Li(n,r.__takeCount__):r.__views__.push({size:Li(n,4294967295),type:t+(0>r.__dir__?"Right":"")}),r},k.prototype[t+"Right"]=function(e){return this.reverse()[t](e).reverse()}}),a(["filter","map","takeWhile"],function(t,e){var n=e+1,r=1==n||3==n;k.prototype[t]=function(t){var e=this.clone();return e.__iteratees__.push({iteratee:br(t,3),type:n}),e.__filtered__=e.__filtered__||r,e}}),a(["head","last"],function(t,e){var n="take"+(e?"Right":"");k.prototype[t]=function(){return this[n](1).value()[0]}}),a(["initial","tail"],function(t,e){var n="drop"+(e?"":"Right");k.prototype[t]=function(){return this.__filtered__?new k(this):this[n](1)}}),k.prototype.compact=function(){return this.filter(Fo)},k.prototype.find=function(t){return this.filter(t).head()},k.prototype.findLast=function(t){return this.reverse().find(t)},k.prototype.invokeMap=an(function(t,e){return"function"==typeof t?new k(this):this.map(function(n){return Re(n,t,e)})}),k.prototype.reject=function(t){return this.filter(fo(br(t)))},k.prototype.slice=function(t,e){t=Po(t);var n=this;return n.__filtered__&&(0<t||0>e)?new k(n):(0>t?n=n.takeRight(-t):t&&(n=n.drop(t)),e!==$&&(e=Po(e),n=0>e?n.dropRight(-e):n.take(e-t)),n)},k.prototype.takeRightWhile=function(t){return this.reverse().takeWhile(t).reverse()},k.prototype.toArray=function(){return this.take(4294967295)},we(k.prototype,function(t,e){var r=/^(?:filter|find|map|reject)|While$/.test(e),i=/^(?:head|last)$/.test(e),u=n[i?"take"+("last"==e?"Right":""):e],a=i||/^find/.test(e);u&&(n.prototype[e]=function(){function e(t){return t=u.apply(n,h([t],f)),i&&d?t[0]:t}var c=this.__wrapped__,f=i?[1]:arguments,s=c instanceof k,l=f[0],p=s||ua(c);p&&r&&"function"==typeof l&&1!=l.length&&(s=p=!1);var d=this.__chain__,y=!!this.__actions__.length,l=a&&!d,s=s&&!y;return!a&&p?(c=s?c:new k(this),c=t.apply(c,f),c.__actions__.push({func:Xr,args:[e],thisArg:$}),new o(c,d)):l&&s?t.apply(this,f):(c=this.thru(e),l?i?c.value()[0]:c.value():c)})}),a("pop push shift sort splice unshift".split(" "),function(t){var e=ri[t],r=/^(?:push|sort|unshift)$/.test(t)?"tap":"thru",o=/^(?:pop|shift)$/.test(t);n.prototype[t]=function(){var t=arguments;if(o&&!this.__chain__){var n=this.value();return e.apply(ua(n)?n:[],t)}return this[r](function(n){return e.apply(ua(n)?n:[],t)})}}),we(k.prototype,function(t,e){var r=n[e];if(r){var o=r.name+"";ai.call(Zi,o)||(Zi[o]=[]),Zi[o].push({name:e,func:r})}}),Zi[Yn($,2).name]=[{name:"wrapper",func:$}],k.prototype.clone=function(){var t=new k(this.__wrapped__);return t.__actions__=Mn(this.__actions__),t.__dir__=this.__dir__,t.__filtered__=this.__filtered__,t.__iteratees__=Mn(this.__iteratees__),t.__takeCount__=this.__takeCount__,t.__views__=Mn(this.__views__),t},k.prototype.reverse=function(){if(this.__filtered__){var t=new k(this);t.__dir__=-1,t.__filtered__=!0}else t=this.clone(),t.__dir__*=-1;return t},k.prototype.value=function(){var t,e=this.__wrapped__.value(),n=this.__dir__,r=ua(e),o=0>n,i=r?e.length:0;t=i;for(var u=this.__views__,a=0,c=-1,f=u.length;++c<f;){var s=u[c],l=s.size;switch(s.type){case"drop":a+=l;break;case"dropRight":t-=l;break;case"take":t=Li(t,a+l);break;case"takeRight":a=Wi(a,t-l)}}if(t={start:a,end:t},u=t.start,a=t.end,t=a-u,u=o?a:u-1,a=this.__iteratees__,c=a.length,f=0,s=Li(t,this.__takeCount__),!r||!o&&i==t&&s==t)return wn(e,this.__actions__);r=[];t:for(;t--&&f<s;){for(u+=n,o=-1,i=e[u];++o<c;){var p=a[o],l=p.type,p=(0,p.iteratee)(i);if(2==l)i=p;else if(!p){if(1==l)continue t;break t}}r[f++]=i}return r},n.prototype.at=Bu,n.prototype.chain=function(){return Jr(this)},n.prototype.commit=function(){return new o(this.value(),this.__chain__)},n.prototype.next=function(){this.__values__===$&&(this.__values__=Oo(this.value()));var t=this.__index__>=this.__values__.length;return{done:t,value:t?$:this.__values__[this.__index__++]}},n.prototype.plant=function(t){for(var e,n=this;n instanceof r;){var o=Fr(n);o.__index__=0,o.__values__=$,e?i.__wrapped__=o:e=o;var i=o,n=n.__wrapped__}return i.__wrapped__=t,e},n.prototype.reverse=function(){var t=this.__wrapped__;return t instanceof k?(this.__actions__.length&&(t=new k(this)),t=t.reverse(),t.__actions__.push({func:Xr,args:[Hr],thisArg:$}),new o(t,this.__chain__)):this.thru(Hr)},n.prototype.toJSON=n.prototype.valueOf=n.prototype.value=function(){return wn(this.__wrapped__,this.__actions__)},n.prototype.first=n.prototype.head,ji&&(n.prototype[ji]=Qr),n}();qt._=oe,void 0!==(o=function(){return oe}.call(e,n,e,r))&&(r.exports=o)}).call(this)}).call(e,n(43),n(12)(t))},function(t,e,n){function r(t,e){return 2==e?function(e,n){return t.apply(void 0,arguments)}:function(e){return t.apply(void 0,arguments)}}function o(t,e){return 2==e?function(e,n){return t(e,n)}:function(e){return t(e)}}function i(t){for(var e=t?t.length:0,n=Array(e);e--;)n[e]=t[e];return n}function u(t){return function(e){return t({},e)}}function a(t,e){return function(){for(var n=arguments.length,r=n-1,o=Array(n);n--;)o[n]=arguments[n];var i=o[e],u=o.slice(0,e);return i&&p.apply(u,i),e!=r&&p.apply(u,o.slice(e+1)),t.apply(this,u)}}function c(t,e){return function(){var n=arguments.length;if(n){for(var r=Array(n);n--;)r[n]=arguments[n];var o=r[0]=e.apply(void 0,r);return t.apply(void 0,r),o}}}function f(t,e,n,p){function d(t,e){if(P.cap){var n=s.iterateeRearg[t];if(n)return x(e,n);var r=!O&&s.iterateeAry[t];if(r)return m(e,r)}return e}function h(t,e,n){return S||P.curry&&n>1?W(e,n):e}function y(t,e,n){if(P.fixed&&(T||!s.skipFixed[t])){var r=s.methodSpread[t],o=r&&r.start;return void 0===o?R(e,n):a(e,o)}return e}function v(t,e,n){return P.rearg&&n>1&&(E||!s.skipRearg[t])?U(e,s.methodRearg[t]||s.aryRearg[n]):e}function g(t,e){e=G(e);for(var n=-1,r=e.length,o=r-1,i=M(Object(t)),u=i;null!=u&&++n<r;){var a=e[n],c=u[a];null==c||N(c)||B(c)||F(c)||(u[a]=M(n==o?c:Object(c))),u=u[a]}return i}function b(t){return H.runInContext.convert(t)(void 0)}function _(t,e){var n=s.aliasToReal[t]||t,r=s.remap[n]||n,o=p;return function(t){var i=O?I:z,u=O?I[r]:e,a=C(C({},o),t);return f(i,n,u,a)}}function m(t,e){return w(t,function(t){return"function"==typeof t?o(t,e):t})}function x(t,e){return w(t,function(t){var n=e.length;return r(U(o(t,n),e),n)})}function w(t,e){return function(){var n=arguments.length;if(!n)return t();for(var r=Array(n);n--;)r[n]=arguments[n];var o=P.rearg?0:n-1;return r[o]=e(r[o]),t.apply(void 0,r)}}function j(t,e,n){var r,o=s.aliasToReal[t]||t,a=e,f=K[o];return f?a=f(e):P.immutable&&(s.mutate.array[o]?a=c(e,i):s.mutate.object[o]?a=c(e,u(e)):s.mutate.set[o]&&(a=c(e,g))),L(V,function(t){return L(s.aryMethod[t],function(e){if(o==e){var n=s.methodSpread[o],i=n&&n.afterRearg;return r=i?y(o,v(o,a,t),t):v(o,y(o,a,t),t),r=d(o,r),r=h(o,r,t),!1}}),!r}),r||(r=a),r==e&&(r=S?W(r,1):function(){return e.apply(this,arguments)}),r.convert=_(o,e),r.placeholder=e.placeholder=n,r}var O="function"==typeof e,k=e===Object(e);if(k&&(p=n,n=e,e=void 0),null==n)throw new TypeError;p||(p={});var P={cap:!("cap"in p)||p.cap,curry:!("curry"in p)||p.curry,fixed:!("fixed"in p)||p.fixed,immutable:!("immutable"in p)||p.immutable,rearg:!("rearg"in p)||p.rearg},A=O?n:l,S="curry"in p&&p.curry,T="fixed"in p&&p.fixed,E="rearg"in p&&p.rearg,I=O?n.runInContext():void 0,z=O?n:{ary:t.ary,assign:t.assign,clone:t.clone,curry:t.curry,forEach:t.forEach,isArray:t.isArray,isError:t.isError,isFunction:t.isFunction,isWeakMap:t.isWeakMap,iteratee:t.iteratee,keys:t.keys,rearg:t.rearg,toInteger:t.toInteger,toPath:t.toPath},R=z.ary,C=z.assign,M=z.clone,W=z.curry,L=z.forEach,D=z.isArray,B=z.isError,N=z.isFunction,F=z.isWeakMap,q=z.keys,U=z.rearg,$=z.toInteger,G=z.toPath,V=q(s.aryMethod),K={castArray:function(t){return function(){var e=arguments[0];return D(e)?t(i(e)):t.apply(void 0,arguments)}},iteratee:function(t){return function(){var e=arguments[0],n=arguments[1],r=t(e,n),i=r.length;return P.cap&&"number"==typeof n?(n=n>2?n-2:1,i&&i<=n?r:o(r,n)):r}},mixin:function(t){return function(e){var n=this;if(!N(n))return t(n,Object(e));var r=[];return L(q(e),function(t){N(e[t])&&r.push([t,n.prototype[t]])}),t(n,Object(e)),L(r,function(t){var e=t[1];N(e)?n.prototype[t[0]]=e:delete n.prototype[t[0]]}),n}},nthArg:function(t){return function(e){var n=e<0?1:$(e)+1;return W(t(e),n)}},rearg:function(t){return function(e,n){var r=n?n.length:0;return W(t(e,n),r)}},runInContext:function(e){return function(n){return f(t,e(n),p)}}};if(!k)return j(e,n,A);var H=n,Z=[];return L(V,function(t){L(s.aryMethod[t],function(t){var e=H[s.remap[t]||t];e&&Z.push([t,j(t,e,H)])})}),L(q(H),function(t){var e=H[t];if("function"==typeof e){for(var n=Z.length;n--;)if(Z[n][0]==t)return;e.convert=_(t,e),Z.push([t,e])}}),L(Z,function(t){H[t[0]]=t[1]}),H.convert=b,H.placeholder=H,L(q(H),function(t){L(s.realToAlias[t]||[],function(e){H[e]=H[t]})}),H}var s=n(448),l=n(449),p=Array.prototype.push;t.exports=f},function(t,e){e.aliasToReal={each:"forEach",eachRight:"forEachRight",entries:"toPairs",entriesIn:"toPairsIn",extend:"assignIn",extendAll:"assignInAll",extendAllWith:"assignInAllWith",extendWith:"assignInWith",first:"head",conforms:"conformsTo",matches:"isMatch",property:"get",__:"placeholder",F:"stubFalse",T:"stubTrue",all:"every",allPass:"overEvery",always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",complement:"negate",compose:"flowRight",contains:"includes",dissoc:"unset",dissocPath:"unset",dropLast:"dropRight",dropLastWhile:"dropRightWhile",equals:"isEqual",identical:"eq",indexBy:"keyBy",init:"initial",invertObj:"invert",juxt:"over",omitAll:"omit",nAry:"ary",path:"get",pathEq:"matchesProperty",pathOr:"getOr",paths:"at",pickAll:"pick",pipe:"flow",pluck:"map",prop:"get",propEq:"matchesProperty",propOr:"getOr",props:"at",symmetricDifference:"xor",symmetricDifferenceBy:"xorBy",symmetricDifferenceWith:"xorWith",takeLast:"takeRight",takeLastWhile:"takeRightWhile",unapply:"rest",unnest:"flatten",useWith:"overArgs",where:"conformsTo",whereEq:"isMatch",zipObj:"zipObject"},e.aryMethod={1:["assignAll","assignInAll","attempt","castArray","ceil","create","curry","curryRight","defaultsAll","defaultsDeepAll","floor","flow","flowRight","fromPairs","invert","iteratee","memoize","method","mergeAll","methodOf","mixin","nthArg","over","overEvery","overSome","rest","reverse","round","runInContext","spread","template","trim","trimEnd","trimStart","uniqueId","words","zipAll"],2:["add","after","ary","assign","assignAllWith","assignIn","assignInAllWith","at","before","bind","bindAll","bindKey","chunk","cloneDeepWith","cloneWith","concat","conformsTo","countBy","curryN","curryRightN","debounce","defaults","defaultsDeep","defaultTo","delay","difference","divide","drop","dropRight","dropRightWhile","dropWhile","endsWith","eq","every","filter","find","findIndex","findKey","findLast","findLastIndex","findLastKey","flatMap","flatMapDeep","flattenDepth","forEach","forEachRight","forIn","forInRight","forOwn","forOwnRight","get","groupBy","gt","gte","has","hasIn","includes","indexOf","intersection","invertBy","invoke","invokeMap","isEqual","isMatch","join","keyBy","lastIndexOf","lt","lte","map","mapKeys","mapValues","matchesProperty","maxBy","meanBy","merge","mergeAllWith","minBy","multiply","nth","omit","omitBy","overArgs","pad","padEnd","padStart","parseInt","partial","partialRight","partition","pick","pickBy","propertyOf","pull","pullAll","pullAt","random","range","rangeRight","rearg","reject","remove","repeat","restFrom","result","sampleSize","some","sortBy","sortedIndex","sortedIndexOf","sortedLastIndex","sortedLastIndexOf","sortedUniqBy","split","spreadFrom","startsWith","subtract","sumBy","take","takeRight","takeRightWhile","takeWhile","tap","throttle","thru","times","trimChars","trimCharsEnd","trimCharsStart","truncate","union","uniqBy","uniqWith","unset","unzipWith","without","wrap","xor","zip","zipObject","zipObjectDeep"],3:["assignInWith","assignWith","clamp","differenceBy","differenceWith","findFrom","findIndexFrom","findLastFrom","findLastIndexFrom","getOr","includesFrom","indexOfFrom","inRange","intersectionBy","intersectionWith","invokeArgs","invokeArgsMap","isEqualWith","isMatchWith","flatMapDepth","lastIndexOfFrom","mergeWith","orderBy","padChars","padCharsEnd","padCharsStart","pullAllBy","pullAllWith","rangeStep","rangeStepRight","reduce","reduceRight","replace","set","slice","sortedIndexBy","sortedLastIndexBy","transform","unionBy","unionWith","update","xorBy","xorWith","zipWith"],4:["fill","setWith","updateWith"]},e.aryRearg={2:[1,0],3:[2,0,1],4:[3,2,0,1]},e.iterateeAry={dropRightWhile:1,dropWhile:1,every:1,filter:1,find:1,findFrom:1,findIndex:1,findIndexFrom:1,findKey:1,findLast:1,findLastFrom:1,findLastIndex:1,findLastIndexFrom:1,findLastKey:1,flatMap:1,flatMapDeep:1,flatMapDepth:1,forEach:1,forEachRight:1,forIn:1,forInRight:1,forOwn:1,forOwnRight:1,map:1,mapKeys:1,mapValues:1,partition:1,reduce:2,reduceRight:2,reject:1,remove:1,some:1,takeRightWhile:1,takeWhile:1,times:1,transform:2},e.iterateeRearg={mapKeys:[1],reduceRight:[1,0]},e.methodRearg={assignInAllWith:[1,0],assignInWith:[1,2,0],assignAllWith:[1,0],assignWith:[1,2,0],differenceBy:[1,2,0],differenceWith:[1,2,0],getOr:[2,1,0],intersectionBy:[1,2,0],intersectionWith:[1,2,0],isEqualWith:[1,2,0],isMatchWith:[2,1,0],mergeAllWith:[1,0],mergeWith:[1,2,0],padChars:[2,1,0],padCharsEnd:[2,1,0],padCharsStart:[2,1,0],pullAllBy:[2,1,0],pullAllWith:[2,1,0],rangeStep:[1,2,0],rangeStepRight:[1,2,0],setWith:[3,1,2,0],sortedIndexBy:[2,1,0],sortedLastIndexBy:[2,1,0],unionBy:[1,2,0],unionWith:[1,2,0],updateWith:[3,1,2,0],xorBy:[1,2,0],xorWith:[1,2,0],zipWith:[1,2,0]},e.methodSpread={assignAll:{start:0},assignAllWith:{start:0},assignInAll:{start:0},assignInAllWith:{start:0},defaultsAll:{start:0},defaultsDeepAll:{start:0},invokeArgs:{start:2},invokeArgsMap:{start:2},mergeAll:{start:0},mergeAllWith:{start:0},partial:{start:1},partialRight:{start:1},without:{start:1},zipAll:{start:0}},e.mutate={array:{fill:!0,pull:!0,pullAll:!0,pullAllBy:!0,pullAllWith:!0,pullAt:!0,remove:!0,reverse:!0},object:{assign:!0,assignAll:!0,assignAllWith:!0,assignIn:!0,assignInAll:!0,assignInAllWith:!0,assignInWith:!0,assignWith:!0,defaults:!0,defaultsAll:!0,defaultsDeep:!0,defaultsDeepAll:!0,merge:!0,mergeAll:!0,mergeAllWith:!0,mergeWith:!0},set:{set:!0,setWith:!0,unset:!0,update:!0,updateWith:!0}},e.realToAlias=function(){var t=Object.prototype.hasOwnProperty,n=e.aliasToReal,r={};for(var o in n){var i=n[o];t.call(r,i)?r[i].push(o):r[i]=[o]}return r}(),e.remap={assignAll:"assign",assignAllWith:"assignWith",assignInAll:"assignIn",assignInAllWith:"assignInWith",curryN:"curry",curryRightN:"curryRight",defaultsAll:"defaults",defaultsDeepAll:"defaultsDeep",findFrom:"find",findIndexFrom:"findIndex",findLastFrom:"findLast",findLastIndexFrom:"findLastIndex",getOr:"get",includesFrom:"includes",indexOfFrom:"indexOf",invokeArgs:"invoke",invokeArgsMap:"invokeMap",lastIndexOfFrom:"lastIndexOf",mergeAll:"merge",mergeAllWith:"mergeWith",padChars:"pad",padCharsEnd:"padEnd",padCharsStart:"padStart",propertyOf:"get",rangeStep:"range",rangeStepRight:"rangeRight",restFrom:"rest",spreadFrom:"spread",trimChars:"trim",trimCharsEnd:"trimEnd",trimCharsStart:"trimStart",zipAll:"zip"},e.skipFixed={castArray:!0,flow:!0,flowRight:!0,iteratee:!0,mixin:!0,rearg:!0,runInContext:!0},e.skipRearg={add:!0,assign:!0,assignIn:!0,bind:!0,bindKey:!0,concat:!0,difference:!0,divide:!0,eq:!0,gt:!0,gte:!0,isEqual:!0,lt:!0,lte:!0,matchesProperty:!0,merge:!0,multiply:!0,overArgs:!0,partial:!0,partialRight:!0,propertyOf:!0,random:!0,range:!0,rangeRight:!0,subtract:!0,zip:!0,zipObject:!0,zipObjectDeep:!0}},function(t,e){t.exports={}},function(t,e){t.exports={create:function(t,e){return Morph.createContainerWithCaller("bbc-morph-bitesize-header-view@8.73.0",t,e)}}},function(t,e,n){var r=n(452).runInContext();t.exports=n(453)(r,r)},function(t,e,n){(function(t,r){var o;(function(){function i(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}function u(t,e,n,r){for(var o=-1,i=null==t?0:t.length;++o<i;){var u=t[o];e(r,u,n(u),t)}return r}function a(t,e){for(var n=-1,r=null==t?0:t.length;++n<r&&!1!==e(t[n],n,t););return t}function c(t,e){for(var n=null==t?0:t.length;n--&&!1!==e(t[n],n,t););return t}function f(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(!e(t[n],n,t))return!1;return!0}function s(t,e){for(var n=-1,r=null==t?0:t.length,o=0,i=[];++n<r;){var u=t[n];e(u,n,t)&&(i[o++]=u)}return i}function l(t,e){return!!(null==t?0:t.length)&&w(t,e,0)>-1}function p(t,e,n){for(var r=-1,o=null==t?0:t.length;++r<o;)if(n(e,t[r]))return!0;return!1}function d(t,e){for(var n=-1,r=null==t?0:t.length,o=Array(r);++n<r;)o[n]=e(t[n],n,t);return o}function h(t,e){for(var n=-1,r=e.length,o=t.length;++n<r;)t[o+n]=e[n];return t}function y(t,e,n,r){var o=-1,i=null==t?0:t.length;for(r&&i&&(n=t[++o]);++o<i;)n=e(n,t[o],o,t);return n}function v(t,e,n,r){var o=null==t?0:t.length;for(r&&o&&(n=t[--o]);o--;)n=e(n,t[o],o,t);return n}function g(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}function b(t){return t.split("")}function _(t){return t.match(De)||[]}function m(t,e,n){var r;return n(t,function(t,n,o){if(e(t,n,o))return r=n,!1}),r}function x(t,e,n,r){for(var o=t.length,i=n+(r?1:-1);r?i--:++i<o;)if(e(t[i],i,t))return i;return-1}function w(t,e,n){return e===e?Z(t,e,n):x(t,O,n)}function j(t,e,n,r){for(var o=n-1,i=t.length;++o<i;)if(r(t[o],e))return o;return-1}function O(t){return t!==t}function k(t,e){var n=null==t?0:t.length;return n?E(t,e)/n:Rt}function P(t){return function(e){return null==e?nt:e[t]}}function A(t){return function(e){return null==t?nt:t[e]}}function S(t,e,n,r,o){return o(t,function(t,o,i){n=r?(r=!1,t):e(n,t,o,i)}),n}function T(t,e){var n=t.length;for(t.sort(e);n--;)t[n]=t[n].value;return t}function E(t,e){for(var n,r=-1,o=t.length;++r<o;){var i=e(t[r]);i!==nt&&(n=n===nt?i:n+i)}return n}function I(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}function z(t,e){return d(e,function(e){return[e,t[e]]})}function R(t){return function(e){return t(e)}}function C(t,e){return d(e,function(e){return t[e]})}function M(t,e){return t.has(e)}function W(t,e){for(var n=-1,r=t.length;++n<r&&w(e,t[n],0)>-1;);return n}function L(t,e){for(var n=t.length;n--&&w(e,t[n],0)>-1;);return n}function D(t,e){for(var n=t.length,r=0;n--;)t[n]===e&&++r;return r}function B(t){return"\\"+Ln[t]}function N(t,e){return null==t?nt:t[e]}function F(t){return Sn.test(t)}function q(t){return Tn.test(t)}function U(t){for(var e,n=[];!(e=t.next()).done;)n.push(e.value);return n}function $(t){var e=-1,n=Array(t.size);return t.forEach(function(t,r){n[++e]=[r,t]}),n}function G(t,e){return function(n){return t(e(n))}}function V(t,e){for(var n=-1,r=t.length,o=0,i=[];++n<r;){var u=t[n];u!==e&&u!==ct||(t[n]=ct,i[o++]=n)}return i}function K(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}function H(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=[t,t]}),n}function Z(t,e,n){for(var r=n-1,o=t.length;++r<o;)if(t[r]===e)return r;return-1}function Y(t,e,n){for(var r=n+1;r--;)if(t[r]===e)return r;return r}function J(t){return F(t)?Q(t):tr(t)}function X(t){return F(t)?tt(t):b(t)}function Q(t){for(var e=Pn.lastIndex=0;Pn.test(t);)++e;return e}function tt(t){return t.match(Pn)||[]}function et(t){return t.match(An)||[]}var nt,rt=200,ot="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",it="Expected a function",ut="__lodash_hash_undefined__",at=500,ct="__lodash_placeholder__",ft=1,st=2,lt=4,pt=1,dt=2,ht=1,yt=2,vt=4,gt=8,bt=16,_t=32,mt=64,xt=128,wt=256,jt=512,Ot=30,kt="...",Pt=800,At=16,St=1,Tt=2,Et=1/0,It=9007199254740991,zt=1.7976931348623157e308,Rt=NaN,Ct=4294967295,Mt=Ct-1,Wt=Ct>>>1,Lt=[["ary",xt],["bind",ht],["bindKey",yt],["curry",gt],["curryRight",bt],["flip",jt],["partial",_t],["partialRight",mt],["rearg",wt]],Dt="[object Arguments]",Bt="[object Array]",Nt="[object AsyncFunction]",Ft="[object Boolean]",qt="[object Date]",Ut="[object DOMException]",$t="[object Error]",Gt="[object Function]",Vt="[object GeneratorFunction]",Kt="[object Map]",Ht="[object Number]",Zt="[object Null]",Yt="[object Object]",Jt="[object Promise]",Xt="[object Proxy]",Qt="[object RegExp]",te="[object Set]",ee="[object String]",ne="[object Symbol]",re="[object Undefined]",oe="[object WeakMap]",ie="[object WeakSet]",ue="[object ArrayBuffer]",ae="[object DataView]",ce="[object Float32Array]",fe="[object Float64Array]",se="[object Int8Array]",le="[object Int16Array]",pe="[object Int32Array]",de="[object Uint8Array]",he="[object Uint8ClampedArray]",ye="[object Uint16Array]",ve="[object Uint32Array]",ge=/\b__p \+= '';/g,be=/\b(__p \+=) '' \+/g,_e=/(__e\(.*?\)|\b__t\)) \+\n'';/g,me=/&(?:amp|lt|gt|quot|#39);/g,xe=/[&<>"']/g,we=RegExp(me.source),je=RegExp(xe.source),Oe=/<%-([\s\S]+?)%>/g,ke=/<%([\s\S]+?)%>/g,Pe=/<%=([\s\S]+?)%>/g,Ae=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Se=/^\w*$/,Te=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Ee=/[\\^$.*+?()[\]{}|]/g,Ie=RegExp(Ee.source),ze=/^\s+|\s+$/g,Re=/^\s+/,Ce=/\s+$/,Me=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,We=/\{\n\/\* \[wrapped with (.+)\] \*/,Le=/,? & /,De=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Be=/\\(\\)?/g,Ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Fe=/\w*$/,qe=/^[-+]0x[0-9a-f]+$/i,Ue=/^0b[01]+$/i,$e=/^\[object .+?Constructor\]$/,Ge=/^0o[0-7]+$/i,Ve=/^(?:0|[1-9]\d*)$/,Ke=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,He=/($^)/,Ze=/['\n\r\u2028\u2029\\]/g,Ye="\\ud800-\\udfff",Je="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Xe="\\u2700-\\u27bf",Qe="a-z\\xdf-\\xf6\\xf8-\\xff",tn="A-Z\\xc0-\\xd6\\xd8-\\xde",en="\\ufe0e\\ufe0f",nn="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",rn="['’]",on="["+nn+"]",un="["+Je+"]",an="["+Qe+"]",cn="[^"+Ye+nn+"\\d+"+Xe+Qe+tn+"]",fn="\\ud83c[\\udffb-\\udfff]",sn="[^"+Ye+"]",ln="(?:\\ud83c[\\udde6-\\uddff]){2}",pn="[\\ud800-\\udbff][\\udc00-\\udfff]",dn="["+tn+"]",hn="\\u200d",yn="(?:"+an+"|"+cn+")",vn="(?:['’](?:d|ll|m|re|s|t|ve))?",gn="(?:['’](?:D|LL|M|RE|S|T|VE))?",bn="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",_n="["+en+"]?",mn="(?:"+hn+"(?:"+[sn,ln,pn].join("|")+")"+_n+bn+")*",xn=_n+bn+mn,wn="(?:"+["[\\u2700-\\u27bf]",ln,pn].join("|")+")"+xn,jn="(?:"+[sn+un+"?",un,ln,pn,"[\\ud800-\\udfff]"].join("|")+")",On=RegExp(rn,"g"),kn=RegExp(un,"g"),Pn=RegExp(fn+"(?="+fn+")|"+jn+xn,"g"),An=RegExp([dn+"?"+an+"+"+vn+"(?="+[on,dn,"$"].join("|")+")","(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+"+gn+"(?="+[on,dn+yn,"$"].join("|")+")",dn+"?"+yn+"+"+vn,dn+"+"+gn,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])","\\d+",wn].join("|"),"g"),Sn=RegExp("["+hn+Ye+Je+en+"]"),Tn=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,En=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],In=-1,zn={};zn[ce]=zn[fe]=zn[se]=zn[le]=zn[pe]=zn[de]=zn[he]=zn[ye]=zn[ve]=!0,zn[Dt]=zn[Bt]=zn[ue]=zn[Ft]=zn[ae]=zn[qt]=zn[$t]=zn[Gt]=zn[Kt]=zn[Ht]=zn[Yt]=zn[Qt]=zn[te]=zn[ee]=zn[oe]=!1;var Rn={};Rn[Dt]=Rn[Bt]=Rn[ue]=Rn[ae]=Rn[Ft]=Rn[qt]=Rn[ce]=Rn[fe]=Rn[se]=Rn[le]=Rn[pe]=Rn[Kt]=Rn[Ht]=Rn[Yt]=Rn[Qt]=Rn[te]=Rn[ee]=Rn[ne]=Rn[de]=Rn[he]=Rn[ye]=Rn[ve]=!0,Rn[$t]=Rn[Gt]=Rn[oe]=!1;var Cn={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},Mn={"&":"&","<":"<",">":">",'"':""","'":"'"},Wn={"&":"&","<":"<",">":">",""":'"',"'":"'"},Ln={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Dn=parseFloat,Bn=parseInt,Nn="object"==typeof t&&t&&t.Object===Object&&t,Fn="object"==typeof self&&self&&self.Object===Object&&self,qn=Nn||Fn||Function("return this")(),Un="object"==typeof e&&e&&!e.nodeType&&e,$n=Un&&"object"==typeof r&&r&&!r.nodeType&&r,Gn=$n&&$n.exports===Un,Vn=Gn&&Nn.process,Kn=function(){try{var t=$n&&$n.require&&$n.require("util").types;return t||Vn&&Vn.binding&&Vn.binding("util")}catch(t){}}(),Hn=Kn&&Kn.isArrayBuffer,Zn=Kn&&Kn.isDate,Yn=Kn&&Kn.isMap,Jn=Kn&&Kn.isRegExp,Xn=Kn&&Kn.isSet,Qn=Kn&&Kn.isTypedArray,tr=P("length"),er=A(Cn),nr=A(Mn),rr=A(Wn),or=function t(e){function n(t){if(nc(t)&&!hp(t)&&!(t instanceof b)){if(t instanceof o)return t;if(hs.call(t,"__wrapped__"))return Qi(t)}return new o(t)}function r(){}function o(t,e){this.__wrapped__=t,this.__actions__=[],this.__chain__=!!e,this.__index__=0,this.__values__=nt}function b(t){this.__wrapped__=t,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=Ct,this.__views__=[]}function A(){var t=new b(this.__wrapped__);return t.__actions__=Co(this.__actions__),t.__dir__=this.__dir__,t.__filtered__=this.__filtered__,t.__iteratees__=Co(this.__iteratees__),t.__takeCount__=this.__takeCount__,t.__views__=Co(this.__views__),t}function Z(){if(this.__filtered__){var t=new b(this);t.__dir__=-1,t.__filtered__=!0}else t=this.clone(),t.__dir__*=-1;return t}function Q(){var t=this.__wrapped__.value(),e=this.__dir__,n=hp(t),r=e<0,o=n?t.length:0,i=ji(0,o,this.__views__),u=i.start,a=i.end,c=a-u,f=r?a:u-1,s=this.__iteratees__,l=s.length,p=0,d=$s(c,this.__takeCount__);if(!n||!r&&o==c&&d==c)return go(t,this.__actions__);var h=[];t:for(;c--&&p<d;){f+=e;for(var y=-1,v=t[f];++y<l;){var g=s[y],b=g.iteratee,_=g.type,m=b(v);if(_==Tt)v=m;else if(!m){if(_==St)continue t;break t}}h[p++]=v}return h}function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function De(){this.__data__=tl?tl(null):{},this.size=0}function Ye(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}function Je(t){var e=this.__data__;if(tl){var n=e[t];return n===ut?nt:n}return hs.call(e,t)?e[t]:nt}function Xe(t){var e=this.__data__;return tl?e[t]!==nt:hs.call(e,t)}function Qe(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=tl&&e===nt?ut:e,this}function tn(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function en(){this.__data__=[],this.size=0}function nn(t){var e=this.__data__,n=Cn(e,t);return!(n<0||(n==e.length-1?e.pop():Ss.call(e,n,1),--this.size,0))}function rn(t){var e=this.__data__,n=Cn(e,t);return n<0?nt:e[n][1]}function on(t){return Cn(this.__data__,t)>-1}function un(t,e){var n=this.__data__,r=Cn(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this}function an(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function cn(){this.size=0,this.__data__={hash:new tt,map:new(Ys||tn),string:new tt}}function fn(t){var e=_i(this,t).delete(t);return this.size-=e?1:0,e}function sn(t){return _i(this,t).get(t)}function ln(t){return _i(this,t).has(t)}function pn(t,e){var n=_i(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this}function dn(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new an;++e<n;)this.add(t[e])}function hn(t){return this.__data__.set(t,ut),this}function yn(t){return this.__data__.has(t)}function vn(t){this.size=(this.__data__=new tn(t)).size}function gn(){this.__data__=new tn,this.size=0}function bn(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}function _n(t){return this.__data__.get(t)}function mn(t){return this.__data__.has(t)}function xn(t,e){var n=this.__data__;if(n instanceof tn){var r=n.__data__;if(!Ys||r.length<rt-1)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new an(r)}return n.set(t,e),this.size=n.size,this}function wn(t,e){var n=hp(t),r=!n&&dp(t),o=!n&&!r&&vp(t),i=!n&&!r&&!o&&xp(t),u=n||r||o||i,a=u?I(t.length,as):[],c=a.length;for(var f in t)!e&&!hs.call(t,f)||u&&("length"==f||o&&("offset"==f||"parent"==f)||i&&("buffer"==f||"byteLength"==f||"byteOffset"==f)||Ii(f,c))||a.push(f);return a}function jn(t){var e=t.length;return e?t[Jr(0,e-1)]:nt}function Pn(t,e){return Zi(Co(t),Un(e,0,t.length))}function An(t){return Zi(Co(t))}function Sn(t,e,n){(n===nt||qa(t[e],n))&&(n!==nt||e in t)||Nn(t,e,n)}function Tn(t,e,n){var r=t[e];hs.call(t,e)&&qa(r,n)&&(n!==nt||e in t)||Nn(t,e,n)}function Cn(t,e){for(var n=t.length;n--;)if(qa(t[n][0],e))return n;return-1}function Mn(t,e,n,r){return pl(t,function(t,o,i){e(r,t,n(t),i)}),r}function Wn(t,e){return t&&Mo(e,Lc(e),t)}function Ln(t,e){return t&&Mo(e,Dc(e),t)}function Nn(t,e,n){"__proto__"==e&&zs?zs(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}function Fn(t,e){for(var n=-1,r=e.length,o=ts(r),i=null==t;++n<r;)o[n]=i?nt:Cc(t,e[n]);return o}function Un(t,e,n){return t===t&&(n!==nt&&(t=t<=n?t:n),e!==nt&&(t=t>=e?t:e)),t}function $n(t,e,n,r,o,i){var u,c=e&ft,f=e&st,s=e<if(n&&(u=o?n(t,r,o,i):n(t)),u!==nt)return u;if(!ec(t))return t;var l=hp(t);if(l){if(u=Pi(t),!c)return Co(t,u)}else{var p=Ol(t),d=p==Gt||p==Vt;if(vp(t))return Oo(t,c);if(p==Yt||p==Dt||d&&!o){if(u=f||d?{}:Ai(t),!c)return f?Lo(t,Ln(u,t)):Wo(t,Wn(u,t))}else{if(!Rn[p])return o?t:{};u=Si(t,p,c)}}i||(i=new vn);var h=i.get(t);if(h)return h;i.set(t,u),mp(t)?t.forEach(function(r){u.add($n(r,e,n,r,t,i))}):bp(t)&&t.forEach(function(r,o){u.set(o,$n(r,e,n,o,t,i))});var y=s?f?yi:hi:f?Dc:Lc,v=l?nt:y(t);return a(v||t,function(r,o){v&&(o=r,r=t[o]),Tn(u,o,$n(r,e,n,o,t,i))}),u}function Vn(t){var e=Lc(t);return function(n){return Kn(n,t,e)}}function Kn(t,e,n){var r=n.length;if(null==t)return!r;for(t=is(t);r--;){var o=n[r],i=e[o],u=t[o];if(u===nt&&!(o in t)||!i(u))return!1}return!0}function tr(t,e,n){if("function"!=typeof t)throw new cs(it);return Al(function(){t.apply(nt,n)},e)}function ir(t,e,n,r){var o=-1,i=l,u=!0,a=t.length,c=[],f=e.length;if(!a)return c;n&&(e=d(e,R(n))),r?(i=p,u=!1):e.length>=rt&&(i=M,u=!1,e=new dn(e));t:for(;++o<a;){var s=t[o],h=null==n?s:n(s);if(s=r||0!==s?s:0,u&&h===h){for(var y=f;y--;)if(e[y]===h)continue t;c.push(s)}else i(e,h,r)||c.push(s)}return c}function ur(t,e){var n=!0;return pl(t,function(t,r,o){return n=!!e(t,r,o)}),n}function ar(t,e,n){for(var r=-1,o=t.length;++r<o;){var i=t[r],u=e(i);if(null!=u&&(a===nt?u===u&&!dc(u):n(u,a)))var a=u,c=i}return c}function cr(t,e,n,r){var o=t.length;for(n=_c(n),n<0&&(n=-n>o?0:o+n),r=r===nt||r>o?o:_c(r),r<0&&(r+=o),r=n>r?0:mc(r);n<r;)t[n++]=e;return t}function fr(t,e){var n=[];return pl(t,function(t,r,o){e(t,r,o)&&n.push(t)}),n}function sr(t,e,n,r,o){var i=-1,u=t.length;for(n||(n=Ei),o||(o=[]);++i<u;){var a=t[i];e>0&&n(a)?e>1?sr(a,e-1,n,r,o):h(o,a):r||(o[o.length]=a)}return o}function lr(t,e){return t&&hl(t,e,Lc)}function pr(t,e){return t&&yl(t,e,Lc)}function dr(t,e){return s(e,function(e){return Xa(t[e])})}function hr(t,e){e=wo(e,t);for(var n=0,r=e.length;null!=t&&n<r;)t=t[Yi(e[n++])];return n&&n==r?t:nt}function yr(t,e,n){var r=e(t);return hp(t)?r:h(r,n(t))}function vr(t){return null==t?t===nt?re:Zt:Is&&Is in is(t)?wi(t):qi(t)}function gr(t,e){return t>e}function br(t,e){return null!=t&&hs.call(t,e)}function _r(t,e){return null!=t&&e in is(t)}function mr(t,e,n){return t>=$s(e,n)&&t<Us(e,n)}function xr(t,e,n){for(var r=n?p:l,o=t[0].length,i=t.length,u=i,a=ts(i),c=1/0,f=[];u--;){var s=t[u];u&&e&&(s=d(s,R(e))),c=$s(s.length,c),a[u]=!n&&(e||o>=120&&s.length>=120)?new dn(u&&s):nt}s=t[0];var h=-1,y=a[0];t:for(;++h<o&&f.length<c;){var v=s[h],g=e?e(v):v;if(v=n||0!==v?v:0,!(y?M(y,g):r(f,g,n))){for(u=i;--u;){var b=a[u];if(!(b?M(b,g):r(t[u],g,n)))continue t}y&&y.push(g),f.push(v)}}return f}function wr(t,e,n,r){return lr(t,function(t,o,i){e(r,n(t),o,i)}),r}function jr(t,e,n){e=wo(e,t),t=$i(t,e);var r=null==t?t:t[Yi(bu(e))];return null==r?nt:i(r,t,n)}function Or(t){return nc(t)&&vr(t)==Dt}function kr(t){return nc(t)&&vr(t)==ue}function Pr(t){return nc(t)&&vr(t)==qt}function Ar(t,e,n,r,o){return t===e||(null==t||null==e||!nc(t)&&!nc(e)?t!==t&&e!==e:Sr(t,e,n,r,Ar,o))}function Sr(t,e,n,r,o,i){var u=hp(t),a=hp(e),c=u?Bt:Ol(t),f=a?Bt:Ol(e);c=c==Dt?Yt:c,f=f==Dt?Yt:f;var s=c==Yt,l=f==Yt,p=c==f;if(p&&vp(t)){if(!vp(e))return!1;u=!0,s=!1}if(p&&!s)return i||(i=new vn),u||xp(t)?si(t,e,n,r,o,i):li(t,e,c,n,r,o,i);if(!(n&pt)){var d=s&&hs.call(t,"__wrapped__"),h=l&&hs.call(e,"__wrapped__");if(d||h){var y=d?t.value():t,v=h?e.value():e;return i||(i=new vn),o(y,v,n,r,i)}}return!!p&&(i||(i=new vn),pi(t,e,n,r,o,i))}function Tr(t){return nc(t)&&Ol(t)==Kt}function Er(t,e,n,r){var o=n.length,i=o,u=!r;if(null==t)return!i;for(t=is(t);o--;){var a=n[o];if(u&&a[2]?a[1]!==t[a[0]]:!(a[0]in t))return!1}for(;++o<i;){a=n[o];var c=a[0],f=t[c],s=a[1];if(u&&a[2]){if(f===nt&&!(c in t))return!1}else{var l=new vn;if(r)var p=r(f,s,c,t,e,l);if(!(p===nt?Ar(s,f,pt|dt,r,l):p))return!1}}return!0}function Ir(t){return!(!ec(t)||Wi(t))&&(Xa(t)?ms:$e).test(Ji(t))}function zr(t){return nc(t)&&vr(t)==Qt}function Rr(t){return nc(t)&&Ol(t)==te}function Cr(t){return nc(t)&&tc(t.length)&&!!zn[vr(t)]}function Mr(t){return"function"==typeof t?t:null==t?Sf:"object"==typeof t?hp(t)?Fr(t[0],t[1]):Nr(t):Wf(t)}function Wr(t){if(!Li(t))return qs(t);var e=[];for(var n in is(t))hs.call(t,n)&&"constructor"!=n&&e.push(n);return e}function Lr(t){if(!ec(t))return Fi(t);var e=Li(t),n=[];for(var r in t)("constructor"!=r||!e&&hs.call(t,r))&&n.push(r);return n}function Dr(t,e){return t<e}function Br(t,e){var n=-1,r=Ua(t)?ts(t.length):[];return pl(t,function(t,o,i){r[++n]=e(t,o,i)}),r}function Nr(t){var e=mi(t);return 1==e.length&&e[0][2]?Bi(e[0][0],e[0][1]):function(n){return n===t||Er(n,t,e)}}function Fr(t,e){return Ri(t)&&Di(e)?Bi(Yi(t),e):function(n){var r=Cc(n,t);return r===nt&&r===e?Wc(n,t):Ar(e,r,pt|dt)}}function qr(t,e,n,r,o){t!==e&&hl(e,function(i,u){if(o||(o=new vn),ec(i))Ur(t,e,u,n,qr,r,o);else{var a=r?r(Vi(t,u),i,u+"",t,e,o):nt;a===nt&&(a=i),Sn(t,u,a)}},Dc)}function Ur(t,e,n,r,o,i,u){var a=Vi(t,n),c=Vi(e,n),f=u.get(c);if(f)return Sn(t,n,f),nt;var s=i?i(a,c,n+"",t,e,u):nt,l=s===nt;if(l){var p=hp(c),d=!p&&vp(c),h=!p&&!d&&xp(c);s=c,p||d||h?hp(a)?s=a:$a(a)?s=Co(a):d?(l=!1,s=Oo(c,!0)):h?(l=!1,s=To(c,!0)):s=[]:sc(c)||dp(c)?(s=a,dp(a)?s=wc(a):ec(a)&&!Xa(a)||(s=Ai(c))):l=!1}l&&(u.set(c,s),o(s,c,r,i,u),u.delete(c)),Sn(t,n,s)}function $r(t,e){var n=t.length;if(n)return e+=e<0?n:0,Ii(e,n)?t[e]:nt}function Gr(t,e,n){e=e.length?d(e,function(t){return hp(t)?function(e){return hr(e,1===t.length?t[0]:t)}:t}):[Sf];var r=-1;return e=d(e,R(bi())),T(Br(t,function(t,n,o){return{criteria:d(e,function(e){return e(t)}),index:++r,value:t}}),function(t,e){return Io(t,e,n)})}function Vr(t,e){return Kr(t,e,function(e,n){return Wc(t,n)})}function Kr(t,e,n){for(var r=-1,o=e.length,i={};++r<o;){var u=e[r],a=hr(t,u);n(a,u)&&ro(i,wo(u,t),a)}return i}function Hr(t){return function(e){return hr(e,t)}}function Zr(t,e,n,r){var o=r?j:w,i=-1,u=e.length,a=t;for(t===e&&(e=Co(e)),n&&(a=d(t,R(n)));++i<u;)for(var c=0,f=e[i],s=n?n(f):f;(c=o(a,s,c,r))>-1;)a!==t&&Ss.call(a,c,1),Ss.call(t,c,1);return t}function Yr(t,e){for(var n=t?e.length:0,r=n-1;n--;){var o=e[n];if(n==r||o!==i){var i=o;Ii(o)?Ss.call(t,o,1):ho(t,o)}}return t}function Jr(t,e){return t+Ls(Ks()*(e-t+1))}function Xr(t,e,n,r){for(var o=-1,i=Us(Ws((e-t)/(n||1)),0),u=ts(i);i--;)u[r?i:++o]=t,t+=n;return u}function Qr(t,e){var n="";if(!t||e<1||e>It)return n;do{e%2&&(n+=t),(e=Ls(e/2))&&(t+=t)}while(e);return n}function to(t,e){return Sl(Ui(t,e,Sf),t+"")}function eo(t){return jn(Yc(t))}function no(t,e){var n=Yc(t);return Zi(n,Un(e,0,n.length))}function ro(t,e,n,r){if(!ec(t))return t;e=wo(e,t);for(var o=-1,i=e.length,u=i-1,a=t;null!=a&&++o<i;){var c=Yi(e[o]),f=n;if("__proto__"===c||"constructor"===c||"prototype"===c)return t;if(o!=u){var s=a[c];(f=r?r(s,c,a):nt)===nt&&(f=ec(s)?s:Ii(e[o+1])?[]:{})}Tn(a,c,f),a=a[c]}return t}function oo(t){return Zi(Yc(t))}function io(t,e,n){var r=-1,o=t.length;e<0&&(e=-e>o?0:o+e),n=n>o?o:n,n<0&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0;for(var i=ts(o);++r<o;)i[r]=t[r+e];return i}function uo(t,e){var n;return pl(t,function(t,r,o){return!(n=e(t,r,o))}),!!n}function ao(t,e,n){var r=0,o=null==t?r:t.length;if("number"==typeof e&&e===e&&o<=Wt){for(;r<o;){var i=r+o>>>1,u=t[i];null!==u&&!dc(u)&&(n?u<=e:u<e)?r=i+1:o=i}return o}return co(t,e,Sf,n)}function co(t,e,n,r){var o=0,i=null==t?0:t.length;if(0===i)return 0;e=n(e);for(var u=e!==e,a=null===e,c=dc(e),f=e===nt;o<i;){var s=Ls((o+i)/2),l=n(t[s]),p=l!==nt,d=null===l,h=l===l,y=dc(l);if(u)var v=r||h;else v=f?h&&(r||p):a?h&&p&&(r||!d):c?h&&p&&!d&&(r||!y):!d&&!y&&(r?l<=e:l<e);v?o=s+1:i=s}return $s(i,Mt)}function fo(t,e){for(var n=-1,r=t.length,o=0,i=[];++n<r;){var u=t[n],a=e?e(u):u;if(!n||!qa(a,c)){var c=a;i[o++]=0===u?0:u}}return i}function so(t){return"number"==typeof t?t:dc(t)?Rt:+t}function lo(t){if("string"==typeof t)return t;if(hp(t))return d(t,lo)+"";if(dc(t))return sl?sl.call(t):"";var e=t+"";return"0"==e&&1/t==-Et?"-0":e}function po(t,e,n){var r=-1,o=l,i=t.length,u=!0,a=[],c=a;if(n)u=!1,o=p;else if(i>=rt){var f=e?null:ml(t);if(f)return K(f);u=!1,o=M,c=new dn}else c=e?[]:a;t:for(;++r<i;){var s=t[r],d=e?e(s):s;if(s=n||0!==s?s:0,u&&d===d){for(var h=c.length;h--;)if(c[h]===d)continue t;e&&c.push(d),a.push(s)}else o(c,d,n)||(c!==a&&c.push(d),a.push(s))}return a}function ho(t,e){return e=wo(e,t),null==(t=$i(t,e))||delete t[Yi(bu(e))]}function yo(t,e,n,r){return ro(t,e,n(hr(t,e)),r)}function vo(t,e,n,r){for(var o=t.length,i=r?o:-1;(r?i--:++i<o)&&e(t[i],i,t););return n?io(t,r?0:i,r?i+1:o):io(t,r?i+1:0,r?o:i)}function go(t,e){var n=t;return n instanceof b&&(n=n.value()),y(e,function(t,e){return e.func.apply(e.thisArg,h([t],e.args))},n)}function bo(t,e,n){var r=t.length;if(r<2)return r?po(t[0]):[];for(var o=-1,i=ts(r);++o<r;)for(var u=t[o],a=-1;++a<r;)a!=o&&(i[o]=ir(i[o]||u,t[a],e,n));return po(sr(i,1),e,n)}function _o(t,e,n){for(var r=-1,o=t.length,i=e.length,u={};++r<o;)n(u,t[r],r<i?e[r]:nt);return u}function mo(t){return $a(t)?t:[]}function xo(t){return"function"==typeof t?t:Sf}function wo(t,e){return hp(t)?t:Ri(t,e)?[t]:Tl(Oc(t))}function jo(t,e,n){var r=t.length;return n=n===nt?r:n,!e&&n>=r?t:io(t,e,n)}function Oo(t,e){if(e)return t.slice();var n=t.length,r=Os?Os(n):new t.constructor(n);return t.copy(r),r}function ko(t){var e=new t.constructor(t.byteLength);return new js(e).set(new js(t)),e}function Po(t,e){return new t.constructor(e?ko(t.buffer):t.buffer,t.byteOffset,t.byteLength)}function Ao(t){var e=new t.constructor(t.source,Fe.exec(t));return e.lastIndex=t.lastIndex,e}function So(t){return fl?is(fl.call(t)):{}}function To(t,e){return new t.constructor(e?ko(t.buffer):t.buffer,t.byteOffset,t.length)}function Eo(t,e){if(t!==e){var n=t!==nt,r=null===t,o=t===t,i=dc(t),u=e!==nt,a=null===e,c=e===e,f=dc(e);if(!a&&!f&&!i&&t>e||i&&u&&c&&!a&&!f||r&&u&&c||!n&&c||!o)return 1;if(!r&&!i&&!f&&t<e||f&&n&&o&&!r&&!i||a&&n&&o||!u&&o||!c)return-1}return 0}function Io(t,e,n){for(var r=-1,o=t.criteria,i=e.criteria,u=o.length,a=n.length;++r<u;){var c=Eo(o[r],i[r]);if(c)return r>=a?c:c*("desc"==n[r]?-1:1)}return t.index-e.index}function zo(t,e,n,r){for(var o=-1,i=t.length,u=n.length,a=-1,c=e.length,f=Us(i-u,0),s=ts(c+f),l=!r;++a<c;)s[a]=e[a];for(;++o<u;)(l||o<i)&&(s[n[o]]=t[o]);for(;f--;)s[a++]=t[o++];return s}function Ro(t,e,n,r){for(var o=-1,i=t.length,u=-1,a=n.length,c=-1,f=e.length,s=Us(i-a,0),l=ts(s+f),p=!r;++o<s;)l[o]=t[o];for(var d=o;++c<f;)l[d+c]=e[c];for(;++u<a;)(p||o<i)&&(l[d+n[u]]=t[o++]);return l}function Co(t,e){var n=-1,r=t.length;for(e||(e=ts(r));++n<r;)e[n]=t[n];return e}function Mo(t,e,n,r){var o=!n;n||(n={});for(var i=-1,u=e.length;++i<u;){var a=e[i],c=r?r(n[a],t[a],a,n,t):nt;c===nt&&(c=t[a]),o?Nn(n,a,c):Tn(n,a,c)}return n}function Wo(t,e){return Mo(t,wl(t),e)}function Lo(t,e){return Mo(t,jl(t),e)}function Do(t,e){return function(n,r){var o=hp(n)?u:Mn,i=e?e():{};return o(n,t,bi(r,2),i)}}function Bo(t){return to(function(e,n){var r=-1,o=n.length,i=o>1?n[o-1]:nt,u=o>2?n[2]:nt;for(i=t.length>3&&"function"==typeof i?(o--,i):nt,u&&zi(n[0],n[1],u)&&(i=o<3?nt:i,o=1),e=is(e);++r<o;){var a=n[r];a&&t(e,a,r,i)}return e})}function No(t,e){return function(n,r){if(null==n)return n;if(!Ua(n))return t(n,r);for(var o=n.length,i=e?o:-1,u=is(n);(e?i--:++i<o)&&!1!==r(u[i],i,u););return n}}function Fo(t){return function(e,n,r){for(var o=-1,i=is(e),u=r(e),a=u.length;a--;){var c=u[t?a:++o];if(!1===n(i[c],c,i))break}return e}}function qo(t,e,n){function r(){return(this&&this!==qn&&this instanceof r?i:t).apply(o?n:this,arguments)}var o=e&ht,i=Go(t);return r}function Uo(t){return function(e){e=Oc(e);var n=F(e)?X(e):nt,r=n?n[0]:e.charAt(0),o=n?jo(n,1).join(""):e.slice(1);return r[t]()+o}}function $o(t){return function(e){return y(jf(nf(e).replace(On,"")),t,"")}}function Go(t){return function(){var e=arguments;switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3]);case 5:return new t(e[0],e[1],e[2],e[3],e[4]);case 6:return new t(e[0],e[1],e[2],e[3],e[4],e[5]);case 7:return new t(e[0],e[1],e[2],e[3],e[4],e[5],e[6])}var n=ll(t.prototype),r=t.apply(n,e);return ec(r)?r:n}}function Vo(t,e,n){function r(){for(var u=arguments.length,a=ts(u),c=u,f=gi(r);c--;)a[c]=arguments[c];var s=u<3&&a[0]!==f&&a[u-1]!==f?[]:V(a,f);return u-=s.length,u<n?ri(t,e,Zo,r.placeholder,nt,a,s,nt,nt,n-u):i(this&&this!==qn&&this instanceof r?o:t,this,a)}var o=Go(t);return r}function Ko(t){return function(e,n,r){var o=is(e);if(!Ua(e)){var i=bi(n,3);e=Lc(e),n=function(t){return i(o[t],t,o)}}var u=t(e,n,r);return u>-1?o[i?e[u]:u]:nt}}function Ho(t){return di(function(e){var n=e.length,r=n,i=o.prototype.thru;for(t&&e.reverse();r--;){var u=e[r];if("function"!=typeof u)throw new cs(it);if(i&&!a&&"wrapper"==vi(u))var a=new o([],!0)}for(r=a?r:n;++r<n;){u=e[r];var c=vi(u),f="wrapper"==c?xl(u):nt;a=f&&Mi(f[0])&&f[1]==(xt|gt|_t|wt)&&!f[4].length&&1==f[9]?a[vi(f[0])].apply(a,f[3]):1==u.length&&Mi(u)?a[c]():a.thru(u)}return function(){var t=arguments,r=t[0];if(a&&1==t.length&&hp(r))return a.plant(r).value();for(var o=0,i=n?e[o].apply(this,t):r;++o<n;)i=e[o].call(this,i);return i}})}function Zo(t,e,n,r,o,i,u,a,c,f){function s(){for(var g=arguments.length,b=ts(g),_=g;_--;)b[_]=arguments[_];if(h)var m=gi(s),x=D(b,m);if(r&&(b=zo(b,r,o,h)),i&&(b=Ro(b,i,u,h)),g-=x,h&&g<f)return ri(t,e,Zo,s.placeholder,n,b,V(b,m),a,c,f-g);var w=p?n:this,j=d?w[t]:t;return g=b.length,a?b=Gi(b,a):y&&g>1&&b.reverse(),l&&c<g&&(b.length=c),this&&this!==qn&&this instanceof s&&(j=v||Go(j)),j.apply(w,b)}var l=e&xt,p=e&ht,d=e&yt,h=e&(gt|bt),y=e&jt,v=d?nt:Go(t);return s}function Yo(t,e){return function(n,r){return wr(n,t,e(r),{})}}function Jo(t,e){return function(n,r){var o;if(n===nt&&r===nt)return e;if(n!==nt&&(o=n),r!==nt){if(o===nt)return r;"string"==typeof n||"string"==typeof r?(n=lo(n),r=lo(r)):(n=so(n),r=so(r)),o=t(n,r)}return o}}function Xo(t){return di(function(e){return e=d(e,R(bi())),to(function(n){var r=this;return t(e,function(t){return i(t,r,n)})})})}function Qo(t,e){e=e===nt?" ":lo(e);var n=e.length;if(n<2)return n?Qr(e,t):e;var r=Qr(e,Ws(t/J(e)));return F(e)?jo(X(r),0,t).join(""):r.slice(0,t)}function ti(t,e,n,r){function o(){for(var e=-1,c=arguments.length,f=-1,s=r.length,l=ts(s+c),p=this&&this!==qn&&this instanceof o?a:t;++f<s;)l[f]=r[f];for(;c--;)l[f++]=arguments[++e];return i(p,u?n:this,l)}var u=e&ht,a=Go(t);return o}function ei(t){return function(e,n,r){return r&&"number"!=typeof r&&zi(e,n,r)&&(n=r=nt),e=bc(e),n===nt?(n=e,e=0):n=bc(n),r=r===nt?e<n?1:-1:bc(r),Xr(e,n,r,t)}}function ni(t){return function(e,n){return"string"==typeof e&&"string"==typeof n||(e=xc(e),n=xc(n)),t(e,n)}}function ri(t,e,n,r,o,i,u,a,c,f){var s=e>,l=s?u:nt,p=s?nt:u,d=s?i:nt,h=s?nt:i;e|=s?_t:mt,(e&=~(s?mt:_t))&vt||(e&=~(ht|yt));var y=[t,e,o,d,l,h,p,a,c,f],v=n.apply(nt,y);return Mi(t)&&Pl(v,y),v.placeholder=r,Ki(v,t,e)}function oi(t){var e=os[t];return function(t,n){if(t=xc(t),(n=null==n?0:$s(_c(n),292))&&Ns(t)){var r=(Oc(t)+"e").split("e");return r=(Oc(e(r[0]+"e"+(+r[1]+n)))+"e").split("e"),+(r[0]+"e"+(+r[1]-n))}return e(t)}}function ii(t){return function(e){var n=Ol(e);return n==Kt?$(e):n==te?H(e):z(e,t(e))}}function ui(t,e,n,r,o,i,u,a){var c=e&yt;if(!c&&"function"!=typeof t)throw new cs(it);var f=r?r.length:0;if(f||(e&=~(_t|mt),r=o=nt),u=u===nt?u:Us(_c(u),0),a=a===nt?a:_c(a),f-=o?o.length:0,e&mt){var s=r,l=o;r=o=nt}var p=c?nt:xl(t),d=[t,e,n,r,o,s,l,i,u,a];if(p&&Ni(d,p),t=d[0],e=d[1],n=d[2],r=d[3],o=d[4],a=d[9]=d[9]===nt?c?0:t.length:Us(d[9]-f,0),!a&&e&(gt|bt)&&(e&=~(gt|bt)),e&&e!=ht)h=e==gt||e==bt?Vo(t,e,a):e!=_t&&e!=(ht|_t)||o.length?Zo.apply(nt,d):ti(t,e,n,r);else var h=qo(t,e,n);return Ki((p?vl:Pl)(h,d),t,e)}function ai(t,e,n,r){return t===nt||qa(t,ls[n])&&!hs.call(r,n)?e:t}function ci(t,e,n,r,o,i){return ec(t)&&ec(e)&&(i.set(e,t),qr(t,e,nt,ci,i),i.delete(e)),t}function fi(t){return sc(t)?nt:t}function si(t,e,n,r,o,i){var u=n&pt,a=t.length,c=e.length;if(a!=c&&!(u&&c>a))return!1;var f=i.get(t),s=i.get(e);if(f&&s)return f==e&&s==t;var l=-1,p=!0,d=n&dt?new dn:nt;for(i.set(t,e),i.set(e,t);++l<a;){var h=t[l],y=e[l];if(r)var v=u?r(y,h,l,e,t,i):r(h,y,l,t,e,i);if(v!==nt){if(v)continue;p=!1;break}if(d){if(!g(e,function(t,e){if(!M(d,e)&&(h===t||o(h,t,n,r,i)))return d.push(e)})){p=!1;break}}else if(h!==y&&!o(h,y,n,r,i)){p=!1;break}}return i.delete(t),i.delete(e),p}function li(t,e,n,r,o,i,u){switch(n){case ae:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case ue:return!(t.byteLength!=e.byteLength||!i(new js(t),new js(e)));case Ft:case qt:case Ht:return qa(+t,+e);case $t:return t.name==e.name&&t.message==e.message;case Qt:case ee:return t==e+"";case Kt:var a=$;case te:var c=r&pt;if(a||(a=K),t.size!=e.size&&!c)return!1;var f=u.get(t);if(f)return f==e;r|=dt,u.set(t,e);var s=si(a(t),a(e),r,o,i,u);return u.delete(t),s;case ne:if(fl)return fl.call(t)==fl.call(e)}return!1}function pi(t,e,n,r,o,i){var u=n&pt,a=hi(t),c=a.length;if(c!=hi(e).length&&!u)return!1;for(var f=c;f--;){var s=a[f];if(!(u?s in e:hs.call(e,s)))return!1}var l=i.get(t),p=i.get(e);if(l&&p)return l==e&&p==t;var d=!0;i.set(t,e),i.set(e,t);for(var h=u;++f<c;){s=a[f];var y=t[s],v=e[s];if(r)var g=u?r(v,y,s,e,t,i):r(y,v,s,t,e,i);if(!(g===nt?y===v||o(y,v,n,r,i):g)){d=!1;break}h||(h="constructor"==s)}if(d&&!h){var b=t.constructor,_=e.constructor;b!=_&&"constructor"in t&&"constructor"in e&&!("function"==typeof b&&b instanceof b&&"function"==typeof _&&_ instanceof _)&&(d=!1)}return i.delete(t),i.delete(e),d}function di(t){return Sl(Ui(t,nt,su),t+"")}function hi(t){return yr(t,Lc,wl)}function yi(t){return yr(t,Dc,jl)}function vi(t){for(var e=t.name+"",n=nl[e],r=hs.call(nl,e)?n.length:0;r--;){var o=n[r],i=o.func;if(null==i||i==t)return o.name}return e}function gi(t){return(hs.call(n,"placeholder")?n:t).placeholder}function bi(){var t=n.iteratee||Tf;return t=t===Tf?Mr:t,arguments.length?t(arguments[0],arguments[1]):t}function _i(t,e){var n=t.__data__;return Ci(e)?n["string"==typeof e?"string":"hash"]:n.map}function mi(t){for(var e=Lc(t),n=e.length;n--;){var r=e[n],o=t[r];e[n]=[r,o,Di(o)]}return e}function xi(t,e){var n=N(t,e);return Ir(n)?n:nt}function wi(t){var e=hs.call(t,Is),n=t[Is];try{t[Is]=nt;var r=!0}catch(t){}var o=gs.call(t);return r&&(e?t[Is]=n:delete t[Is]),o}function ji(t,e,n){for(var r=-1,o=n.length;++r<o;){var i=n[r],u=i.size;switch(i.type){case"drop":t+=u;break;case"dropRight":e-=u;break;case"take":e=$s(e,t+u);break;case"takeRight":t=Us(t,e-u)}}return{start:t,end:e}}function Oi(t){var e=t.match(We);return e?e[1].split(Le):[]}function ki(t,e,n){e=wo(e,t);for(var r=-1,o=e.length,i=!1;++r<o;){var u=Yi(e[r]);if(!(i=null!=t&&n(t,u)))break;t=t[u]}return i||++r!=o?i:!!(o=null==t?0:t.length)&&tc(o)&&Ii(u,o)&&(hp(t)||dp(t))}function Pi(t){var e=t.length,n=new t.constructor(e);return e&&"string"==typeof t[0]&&hs.call(t,"index")&&(n.index=t.index,n.input=t.input),n}function Ai(t){return"function"!=typeof t.constructor||Li(t)?{}:ll(ks(t))}function Si(t,e,n){var r=t.constructor;switch(e){case ue:return ko(t);case Ft:case qt:return new r(+t);case ae:return Po(t,n);case ce:case fe:case se:case le:case pe:case de:case he:case ye:case ve:return To(t,n);case Kt:return new r;case Ht:case ee:return new r(t);case Qt:return Ao(t);case te:return new r;case ne:return So(t)}}function Ti(t,e){var n=e.length;if(!n)return t;var r=n-1;return e[r]=(n>1?"& ":"")+e[r],e=e.join(n>2?", ":" "),t.replace(Me,"{\n/* [wrapped with "+e+"] */\n")}function Ei(t){return hp(t)||dp(t)||!!(Ts&&t&&t[Ts])}function Ii(t,e){var n=typeof t;return!!(e=null==e?It:e)&&("number"==n||"symbol"!=n&&Ve.test(t))&&t>-1&&t%1==0&&t<e}function zi(t,e,n){if(!ec(n))return!1;var r=typeof e;return!!("number"==r?Ua(n)&&Ii(e,n.length):"string"==r&&e in n)&&qa(n[e],t)}function Ri(t,e){if(hp(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!dc(t))||Se.test(t)||!Ae.test(t)||null!=e&&t in is(e)}function Ci(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}function Mi(t){var e=vi(t),r=n[e];if("function"!=typeof r||!(e in b.prototype))return!1;if(t===r)return!0;var o=xl(r);return!!o&&t===o[0]}function Wi(t){return!!vs&&vs in t}function Li(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||ls)}function Di(t){return t===t&&!ec(t)}function Bi(t,e){return function(n){return null!=n&&n[t]===e&&(e!==nt||t in is(n))}}function Ni(t,e){var n=t[1],r=e[1],o=n|r,i=o<(ht|yt|xt),u=r==xt&&n==gt||r==xt&&n==wt&&t[7].length<=e[8]||r==(xt|wt)&&e[7].length<=e[8]&&n==gt;if(!i&&!u)return t;r&ht&&(t[2]=e[2],o|=n&ht?0:vt);var a=e[3];if(a){var c=t[3];t[3]=c?zo(c,a,e[4]):a,t[4]=c?V(t[3],ct):e[4]}return a=e[5],a&&(c=t[5],t[5]=c?Ro(c,a,e[6]):a,t[6]=c?V(t[5],ct):e[6]),a=e[7],a&&(t[7]=a),r&xt&&(t[8]=null==t[8]?e[8]:$s(t[8],e[8])),null==t[9]&&(t[9]=e[9]),t[0]=e[0],t[1]=o,t}function Fi(t){var e=[];if(null!=t)for(var n in is(t))e.push(n);return e}function qi(t){return gs.call(t)}function Ui(t,e,n){return e=Us(e===nt?t.length-1:e,0),function(){for(var r=arguments,o=-1,u=Us(r.length-e,0),a=ts(u);++o<u;)a[o]=r[e+o];o=-1;for(var c=ts(e+1);++o<e;)c[o]=r[o];return c[e]=n(a),i(t,this,c)}}function $i(t,e){return e.length<2?t:hr(t,io(e,0,-1))}function Gi(t,e){for(var n=t.length,r=$s(e.length,n),o=Co(t);r--;){var i=e[r];t[r]=Ii(i,n)?o[i]:nt}return t}function Vi(t,e){if(("constructor"!==e||"function"!=typeof t[e])&&"__proto__"!=e)return t[e]}function Ki(t,e,n){var r=e+"";return Sl(t,Ti(r,Xi(Oi(r),n)))}function Hi(t){var e=0,n=0;return function(){var r=Gs(),o=At-(r-n);if(n=r,o>0){if(++e>=Pt)return arguments[0]}else e=0;return t.apply(nt,arguments)}}function Zi(t,e){var n=-1,r=t.length,o=r-1;for(e=e===nt?r:e;++n<e;){var i=Jr(n,o),u=t[i];t[i]=t[n],t[n]=u}return t.length=e,t}function Yi(t){if("string"==typeof t||dc(t))return t;var e=t+"";return"0"==e&&1/t==-Et?"-0":e}function Ji(t){if(null!=t){try{return ds.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function Xi(t,e){return a(Lt,function(n){var r="_."+n[0];e&n[1]&&!l(t,r)&&t.push(r)}),t.sort()}function Qi(t){if(t instanceof b)return t.clone();var e=new o(t.__wrapped__,t.__chain__);return e.__actions__=Co(t.__actions__),e.__index__=t.__index__,e.__values__=t.__values__,e}function tu(t,e,n){e=(n?zi(t,e,n):e===nt)?1:Us(_c(e),0);var r=null==t?0:t.length;if(!r||e<1)return[];for(var o=0,i=0,u=ts(Ws(r/e));o<r;)u[i++]=io(t,o,o+=e);return u}function eu(t){for(var e=-1,n=null==t?0:t.length,r=0,o=[];++e<n;){var i=t[e];i&&(o[r++]=i)}return o}function nu(){var t=arguments.length;if(!t)return[];for(var e=ts(t-1),n=arguments[0],r=t;r--;)e[r-1]=arguments[r];return h(hp(n)?Co(n):[n],sr(e,1))}function ru(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:_c(e),io(t,e<0?0:e,r)):[]}function ou(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:_c(e),e=r-e,io(t,0,e<0?0:e)):[]}function iu(t,e){return t&&t.length?vo(t,bi(e,3),!0,!0):[]}function uu(t,e){return t&&t.length?vo(t,bi(e,3),!0):[]}function au(t,e,n,r){var o=null==t?0:t.length;return o?(n&&"number"!=typeof n&&zi(t,e,n)&&(n=0,r=o),cr(t,e,n,r)):[]}function cu(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=null==n?0:_c(n);return o<0&&(o=Us(r+o,0)),x(t,bi(e,3),o)}function fu(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=r-1;return n!==nt&&(o=_c(n),o=n<0?Us(r+o,0):$s(o,r-1)),x(t,bi(e,3),o,!0)}function su(t){return(null==t?0:t.length)?sr(t,1):[]}function lu(t){return(null==t?0:t.length)?sr(t,Et):[]}function pu(t,e){return(null==t?0:t.length)?(e=e===nt?1:_c(e),sr(t,e)):[]}function du(t){for(var e=-1,n=null==t?0:t.length,r={};++e<n;){var o=t[e];r[o[0]]=o[1]}return r}function hu(t){return t&&t.length?t[0]:nt}function yu(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=null==n?0:_c(n);return o<0&&(o=Us(r+o,0)),w(t,e,o)}function vu(t){return(null==t?0:t.length)?io(t,0,-1):[]}function gu(t,e){return null==t?"":Fs.call(t,e)}function bu(t){var e=null==t?0:t.length;return e?t[e-1]:nt}function _u(t,e,n){var r=null==t?0:t.length;if(!r)return-1;var o=r;return n!==nt&&(o=_c(n),o=o<0?Us(r+o,0):$s(o,r-1)),e===e?Y(t,e,o):x(t,O,o,!0)}function mu(t,e){return t&&t.length?$r(t,_c(e)):nt}function xu(t,e){return t&&t.length&&e&&e.length?Zr(t,e):t}function wu(t,e,n){return t&&t.length&&e&&e.length?Zr(t,e,bi(n,2)):t}function ju(t,e,n){return t&&t.length&&e&&e.length?Zr(t,e,nt,n):t}function Ou(t,e){var n=[];if(!t||!t.length)return n;var r=-1,o=[],i=t.length;for(e=bi(e,3);++r<i;){var u=t[r];e(u,r,t)&&(n.push(u),o.push(r))}return Yr(t,o),n}function ku(t){return null==t?t:Hs.call(t)}function Pu(t,e,n){var r=null==t?0:t.length;return r?(n&&"number"!=typeof n&&zi(t,e,n)?(e=0,n=r):(e=null==e?0:_c(e),n=n===nt?r:_c(n)),io(t,e,n)):[]}function Au(t,e){return ao(t,e)}function Su(t,e,n){return co(t,e,bi(n,2))}function Tu(t,e){var n=null==t?0:t.length;if(n){var r=ao(t,e);if(r<n&&qa(t[r],e))return r}return-1}function Eu(t,e){return ao(t,e,!0)}function Iu(t,e,n){return co(t,e,bi(n,2),!0)}function zu(t,e){if(null==t?0:t.length){var n=ao(t,e,!0)-1;if(qa(t[n],e))return n}return-1}function Ru(t){return t&&t.length?fo(t):[]}function Cu(t,e){return t&&t.length?fo(t,bi(e,2)):[]}function Mu(t){var e=null==t?0:t.length;return e?io(t,1,e):[]}function Wu(t,e,n){return t&&t.length?(e=n||e===nt?1:_c(e),io(t,0,e<0?0:e)):[]}function Lu(t,e,n){var r=null==t?0:t.length;return r?(e=n||e===nt?1:_c(e),e=r-e,io(t,e<0?0:e,r)):[]}function Du(t,e){return t&&t.length?vo(t,bi(e,3),!1,!0):[]}function Bu(t,e){return t&&t.length?vo(t,bi(e,3)):[]}function Nu(t){return t&&t.length?po(t):[]}function Fu(t,e){return t&&t.length?po(t,bi(e,2)):[]}function qu(t,e){return e="function"==typeof e?e:nt,t&&t.length?po(t,nt,e):[]}function Uu(t){if(!t||!t.length)return[];var e=0;return t=s(t,function(t){if($a(t))return e=Us(t.length,e),!0}),I(e,function(e){return d(t,P(e))})}function $u(t,e){if(!t||!t.length)return[];var n=Uu(t);return null==e?n:d(n,function(t){return i(e,nt,t)})}function Gu(t,e){return _o(t||[],e||[],Tn)}function Vu(t,e){return _o(t||[],e||[],ro)}function Ku(t){var e=n(t);return e.__chain__=!0,e}function Hu(t,e){return e(t),t}function Zu(t,e){return e(t)}function Yu(){return Ku(this)}function Ju(){return new o(this.value(),this.__chain__)}function Xu(){this.__values__===nt&&(this.__values__=gc(this.value()));var t=this.__index__>=this.__values__.length;return{done:t,value:t?nt:this.__values__[this.__index__++]}}function Qu(){return this}function ta(t){for(var e,n=this;n instanceof r;){var o=Qi(n);o.__index__=0,o.__values__=nt,e?i.__wrapped__=o:e=o;var i=o;n=n.__wrapped__}return i.__wrapped__=t,e}function ea(){var t=this.__wrapped__;if(t instanceof b){var e=t;return this.__actions__.length&&(e=new b(this)),e=e.reverse(),e.__actions__.push({func:Zu,args:[ku],thisArg:nt}),new o(e,this.__chain__)}return this.thru(ku)}function na(){return go(this.__wrapped__,this.__actions__)}function ra(t,e,n){var r=hp(t)?f:ur;return n&&zi(t,e,n)&&(e=nt),r(t,bi(e,3))}function oa(t,e){return(hp(t)?s:fr)(t,bi(e,3))}function ia(t,e){return sr(la(t,e),1)}function ua(t,e){return sr(la(t,e),Et)}function aa(t,e,n){return n=n===nt?1:_c(n),sr(la(t,e),n)}function ca(t,e){return(hp(t)?a:pl)(t,bi(e,3))}function fa(t,e){return(hp(t)?c:dl)(t,bi(e,3))}function sa(t,e,n,r){t=Ua(t)?t:Yc(t),n=n&&!r?_c(n):0;var o=t.length;return n<0&&(n=Us(o+n,0)),pc(t)?n<=o&&t.indexOf(e,n)>-1:!!o&&w(t,e,n)>-1}function la(t,e){return(hp(t)?d:Br)(t,bi(e,3))}function pa(t,e,n,r){return null==t?[]:(hp(e)||(e=null==e?[]:[e]),n=r?nt:n,hp(n)||(n=null==n?[]:[n]),Gr(t,e,n))}function da(t,e,n){var r=hp(t)?y:S,o=arguments.length<3;return r(t,bi(e,4),n,o,pl)}function ha(t,e,n){var r=hp(t)?v:S,o=arguments.length<3;return r(t,bi(e,4),n,o,dl)}function ya(t,e){return(hp(t)?s:fr)(t,Ta(bi(e,3)))}function va(t){return(hp(t)?jn:eo)(t)}function ga(t,e,n){return e=(n?zi(t,e,n):e===nt)?1:_c(e),(hp(t)?Pn:no)(t,e)}function ba(t){return(hp(t)?An:oo)(t)}function _a(t){if(null==t)return 0;if(Ua(t))return pc(t)?J(t):t.length;var e=Ol(t);return e==Kt||e==te?t.size:Wr(t).length}function ma(t,e,n){var r=hp(t)?g:uo;return n&&zi(t,e,n)&&(e=nt),r(t,bi(e,3))}function xa(t,e){if("function"!=typeof e)throw new cs(it);return t=_c(t),function(){if(--t<1)return e.apply(this,arguments)}}function wa(t,e,n){return e=n?nt:e,e=t&&null==e?t.length:e,ui(t,xt,nt,nt,nt,nt,e)}function ja(t,e){var n;if("function"!=typeof e)throw new cs(it);return t=_c(t),function(){return--t>0&&(n=e.apply(this,arguments)),t<=1&&(e=nt),n}}function Oa(t,e,n){e=n?nt:e;var r=ui(t,gt,nt,nt,nt,nt,nt,e);return r.placeholder=Oa.placeholder,r}function ka(t,e,n){e=n?nt:e;var r=ui(t,bt,nt,nt,nt,nt,nt,e);return r.placeholder=ka.placeholder,r}function Pa(t,e,n){function r(e){var n=p,r=d;return p=d=nt,b=e,y=t.apply(r,n)}function o(t){return b=t,v=Al(a,e),_?r(t):y}function i(t){var n=t-g,r=t-b,o=e-n;return m?$s(o,h-r):o}function u(t){var n=t-g,r=t-b;return g===nt||n>=e||n<0||m&&r>=h}function a(){var t=np();return u(t)?c(t):(v=Al(a,i(t)),nt)}function c(t){return v=nt,x&&p?r(t):(p=d=nt,y)}function f(){v!==nt&&_l(v),b=0,p=g=d=v=nt}function s(){return v===nt?y:c(np())}function l(){var t=np(),n=u(t);if(p=arguments,d=this,g=t,n){if(v===nt)return o(g);if(m)return _l(v),v=Al(a,e),r(g)}return v===nt&&(v=Al(a,e)),y}var p,d,h,y,v,g,b=0,_=!1,m=!1,x=!0;if("function"!=typeof t)throw new cs(it);return e=xc(e)||0,ec(n)&&(_=!!n.leading,m="maxWait"in n,h=m?Us(xc(n.maxWait)||0,e):h,x="trailing"in n?!!n.trailing:x),l.cancel=f,l.flush=s,l}function Aa(t){return ui(t,jt)}function Sa(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new cs(it);var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var u=t.apply(this,r);return n.cache=i.set(o,u)||i,u};return n.cache=new(Sa.Cache||an),n}function Ta(t){if("function"!=typeof t)throw new cs(it);return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}function Ea(t){return ja(2,t)}function Ia(t,e){if("function"!=typeof t)throw new cs(it);return e=e===nt?e:_c(e),to(t,e)}function za(t,e){if("function"!=typeof t)throw new cs(it);return e=null==e?0:Us(_c(e),0),to(function(n){var r=n[e],o=jo(n,0,e);return r&&h(o,r),i(t,this,o)})}function Ra(t,e,n){var r=!0,o=!0;if("function"!=typeof t)throw new cs(it);return ec(n)&&(r="leading"in n?!!n.leading:r,o="trailing"in n?!!n.trailing:o),Pa(t,e,{leading:r,maxWait:e,trailing:o})}function Ca(t){return wa(t,1)}function Ma(t,e){return cp(xo(e),t)}function Wa(){if(!arguments.length)return[];var t=arguments[0];return hp(t)?t:[t]}function La(t){return $n(t,lt)}function Da(t,e){return e="function"==typeof e?e:nt,$n(t,lt,e)}function Ba(t){return $n(t,ft|lt)}function Na(t,e){return e="function"==typeof e?e:nt,$n(t,ft|lt,e)}function Fa(t,e){return null==e||Kn(t,e,Lc(e))}function qa(t,e){return t===e||t!==t&&e!==e}function Ua(t){return null!=t&&tc(t.length)&&!Xa(t)}function $a(t){return nc(t)&&Ua(t)}function Ga(t){return!0===t||!1===t||nc(t)&&vr(t)==Ft}function Va(t){return nc(t)&&1===t.nodeType&&!sc(t)}function Ka(t){if(null==t)return!0;if(Ua(t)&&(hp(t)||"string"==typeof t||"function"==typeof t.splice||vp(t)||xp(t)||dp(t)))return!t.length;var e=Ol(t);if(e==Kt||e==te)return!t.size;if(Li(t))return!Wr(t).length;for(var n in t)if(hs.call(t,n))return!1;return!0}function Ha(t,e){return Ar(t,e)}function Za(t,e,n){n="function"==typeof n?n:nt;var r=n?n(t,e):nt;return r===nt?Ar(t,e,nt,n):!!r}function Ya(t){if(!nc(t))return!1;var e=vr(t);return e==$t||e==Ut||"string"==typeof t.message&&"string"==typeof t.name&&!sc(t)}function Ja(t){return"number"==typeof t&&Ns(t)}function Xa(t){if(!ec(t))return!1;var e=vr(t);return e==Gt||e==Vt||e==Nt||e==Xt}function Qa(t){return"number"==typeof t&&t==_c(t)}function tc(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=It}function ec(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function nc(t){return null!=t&&"object"==typeof t}function rc(t,e){return t===e||Er(t,e,mi(e))}function oc(t,e,n){return n="function"==typeof n?n:nt,Er(t,e,mi(e),n)}function ic(t){return fc(t)&&t!=+t}function uc(t){if(kl(t))throw new ns(ot);return Ir(t)}function ac(t){return null===t}function cc(t){return null==t}function fc(t){return"number"==typeof t||nc(t)&&vr(t)==Ht}function sc(t){if(!nc(t)||vr(t)!=Yt)return!1;var e=ks(t);if(null===e)return!0;var n=hs.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&ds.call(n)==bs}function lc(t){return Qa(t)&&t>=-It&&t<=It}function pc(t){return"string"==typeof t||!hp(t)&&nc(t)&&vr(t)==ee}function dc(t){return"symbol"==typeof t||nc(t)&&vr(t)==ne}function hc(t){return t===nt}function yc(t){return nc(t)&&Ol(t)==oe}function vc(t){return nc(t)&&vr(t)==ie}function gc(t){if(!t)return[];if(Ua(t))return pc(t)?X(t):Co(t);if(Es&&t[Es])return U(t[Es]());var e=Ol(t);return(e==Kt?$:e==te?K:Yc)(t)}function bc(t){return t?(t=xc(t))===Et||t===-Et?(t<0?-1:1)*zt:t===t?t:0:0===t?t:0}function _c(t){var e=bc(t),n=e%1;return e===e?n?e-n:e:0}function mc(t){return t?Un(_c(t),0,Ct):0}function xc(t){if("number"==typeof t)return t;if(dc(t))return Rt;if(ec(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=ec(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(ze,"");var n=Ue.test(t);return n||Ge.test(t)?Bn(t.slice(2),n?2:8):qe.test(t)?Rt:+t}function wc(t){return Mo(t,Dc(t))}function jc(t){return t?Un(_c(t),-It,It):0===t?t:0}function Oc(t){return null==t?"":lo(t)}function kc(t,e){var n=ll(t);return null==e?n:Wn(n,e)}function Pc(t,e){return m(t,bi(e,3),lr)}function Ac(t,e){return m(t,bi(e,3),pr)}function Sc(t,e){return null==t?t:hl(t,bi(e,3),Dc)}function Tc(t,e){return null==t?t:yl(t,bi(e,3),Dc)}function Ec(t,e){return t&&lr(t,bi(e,3))}function Ic(t,e){return t&&pr(t,bi(e,3))}function zc(t){return null==t?[]:dr(t,Lc(t))}function Rc(t){return null==t?[]:dr(t,Dc(t))}function Cc(t,e,n){var r=null==t?nt:hr(t,e);return r===nt?n:r}function Mc(t,e){return null!=t&&ki(t,e,br)}function Wc(t,e){return null!=t&&ki(t,e,_r)}function Lc(t){return Ua(t)?wn(t):Wr(t)}function Dc(t){return Ua(t)?wn(t,!0):Lr(t)}function Bc(t,e){var n={};return e=bi(e,3),lr(t,function(t,r,o){Nn(n,e(t,r,o),t)}),n}function Nc(t,e){var n={};return e=bi(e,3),lr(t,function(t,r,o){Nn(n,r,e(t,r,o))}),n}function Fc(t,e){return qc(t,Ta(bi(e)))}function qc(t,e){if(null==t)return{};var n=d(yi(t),function(t){return[t]});return e=bi(e),Kr(t,n,function(t,n){return e(t,n[0])})}function Uc(t,e,n){e=wo(e,t);var r=-1,o=e.length;for(o||(o=1,t=nt);++r<o;){var i=null==t?nt:t[Yi(e[r])];i===nt&&(r=o,i=n),t=Xa(i)?i.call(t):i}return t}function $c(t,e,n){return null==t?t:ro(t,e,n)}function Gc(t,e,n,r){return r="function"==typeof r?r:nt,null==t?t:ro(t,e,n,r)}function Vc(t,e,n){var r=hp(t),o=r||vp(t)||xp(t);if(e=bi(e,4),null==n){var i=t&&t.constructor;n=o?r?new i:[]:ec(t)&&Xa(i)?ll(ks(t)):{}}return(o?a:lr)(t,function(t,r,o){return e(n,t,r,o)}),n}function Kc(t,e){return null==t||ho(t,e)}function Hc(t,e,n){return null==t?t:yo(t,e,xo(n))}function Zc(t,e,n,r){return r="function"==typeof r?r:nt,null==t?t:yo(t,e,xo(n),r)}function Yc(t){return null==t?[]:C(t,Lc(t))}function Jc(t){return null==t?[]:C(t,Dc(t))}function Xc(t,e,n){return n===nt&&(n=e,e=nt),n!==nt&&(n=xc(n),n=n===n?n:0),e!==nt&&(e=xc(e),e=e===e?e:0),Un(xc(t),e,n)}function Qc(t,e,n){return e=bc(e),n===nt?(n=e,e=0):n=bc(n),t=xc(t),mr(t,e,n)}function tf(t,e,n){if(n&&"boolean"!=typeof n&&zi(t,e,n)&&(e=n=nt),n===nt&&("boolean"==typeof e?(n=e,e=nt):"boolean"==typeof t&&(n=t,t=nt)),t===nt&&e===nt?(t=0,e=1):(t=bc(t),e===nt?(e=t,t=0):e=bc(e)),t>e){var r=t;t=e,e=r}if(n||t%1||e%1){var o=Ks();return $s(t+o*(e-t+Dn("1e-"+((o+"").length-1))),e)}return Jr(t,e)}function ef(t){return Kp(Oc(t).toLowerCase())}function nf(t){return(t=Oc(t))&&t.replace(Ke,er).replace(kn,"")}function rf(t,e,n){t=Oc(t),e=lo(e);var r=t.length;n=n===nt?r:Un(_c(n),0,r);var o=n;return(n-=e.length)>=0&&t.slice(n,o)==e}function of(t){return t=Oc(t),t&&je.test(t)?t.replace(xe,nr):t}function uf(t){return t=Oc(t),t&&Ie.test(t)?t.replace(Ee,"\\$&"):t}function af(t,e,n){t=Oc(t),e=_c(e);var r=e?J(t):0;if(!e||r>=e)return t;var o=(e-r)/2;return Qo(Ls(o),n)+t+Qo(Ws(o),n)}function cf(t,e,n){t=Oc(t),e=_c(e);var r=e?J(t):0;return e&&r<e?t+Qo(e-r,n):t}function ff(t,e,n){t=Oc(t),e=_c(e);var r=e?J(t):0;return e&&r<e?Qo(e-r,n)+t:t}function sf(t,e,n){return n||null==e?e=0:e&&(e=+e),Vs(Oc(t).replace(Re,""),e||0)}function lf(t,e,n){return e=(n?zi(t,e,n):e===nt)?1:_c(e),Qr(Oc(t),e)}function pf(){var t=arguments,e=Oc(t[0]);return t.length<3?e:e.replace(t[1],t[2])}function df(t,e,n){return n&&"number"!=typeof n&&zi(t,e,n)&&(e=n=nt),(n=n===nt?Ct:n>>>0)?(t=Oc(t),t&&("string"==typeof e||null!=e&&!_p(e))&&!(e=lo(e))&&F(t)?jo(X(t),0,n):t.split(e,n)):[]}function hf(t,e,n){return t=Oc(t),n=null==n?0:Un(_c(n),0,t.length),e=lo(e),t.slice(n,n+e.length)==e}function yf(t,e,r){var o=n.templateSettings;r&&zi(t,e,r)&&(e=nt),t=Oc(t),e=Pp({},e,o,ai);var i,u,a=Pp({},e.imports,o.imports,ai),c=Lc(a),f=C(a,c),s=0,l=e.interpolate||He,p="__p += '",d=us((e.escape||He).source+"|"+l.source+"|"+(l===Pe?Ne:He).source+"|"+(e.evaluate||He).source+"|$","g"),h="//# sourceURL="+(hs.call(e,"sourceURL")?(e.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++In+"]")+"\n";t.replace(d,function(e,n,r,o,a,c){return r||(r=o),p+=t.slice(s,c).replace(Ze,B),n&&(i=!0,p+="' +\n__e("+n+") +\n'"),a&&(u=!0,p+="';\n"+a+";\n__p += '"),r&&(p+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"),s=c+e.length,e}),p+="';\n";var y=hs.call(e,"variable")&&e.variable;y||(p="with (obj) {\n"+p+"\n}\n"),p=(u?p.replace(ge,""):p).replace(be,"$1").replace(_e,"$1;"),p="function("+(y||"obj")+") {\n"+(y?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(u?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}";var v=Hp(function(){return rs(c,h+"return "+p).apply(nt,f)});if(v.source=p,Ya(v))throw v;return v}function vf(t){return Oc(t).toLowerCase()}function gf(t){return Oc(t).toUpperCase()}function bf(t,e,n){if((t=Oc(t))&&(n||e===nt))return t.replace(ze,"");if(!t||!(e=lo(e)))return t;var r=X(t),o=X(e);return jo(r,W(r,o),L(r,o)+1).join("")}function _f(t,e,n){if((t=Oc(t))&&(n||e===nt))return t.replace(Ce,"");if(!t||!(e=lo(e)))return t;var r=X(t);return jo(r,0,L(r,X(e))+1).join("")}function mf(t,e,n){if((t=Oc(t))&&(n||e===nt))return t.replace(Re,"");if(!t||!(e=lo(e)))return t;var r=X(t);return jo(r,W(r,X(e))).join("")}function xf(t,e){var n=Ot,r=kt;if(ec(e)){var o="separator"in e?e.separator:o;n="length"in e?_c(e.length):n,r="omission"in e?lo(e.omission):r}t=Oc(t);var i=t.length;if(F(t)){var u=X(t);i=u.length}if(n>=i)return t;var a=n-J(r);if(a<1)return r;var c=u?jo(u,0,a).join(""):t.slice(0,a);if(o===nt)return c+r;if(u&&(a+=c.length-a),_p(o)){if(t.slice(a).search(o)){var f,s=c;for(o.global||(o=us(o.source,Oc(Fe.exec(o))+"g")),o.lastIndex=0;f=o.exec(s);)var l=f.index;c=c.slice(0,l===nt?a:l)}}else if(t.indexOf(lo(o),a)!=a){var p=c.lastIndexOf(o);p>-1&&(c=c.slice(0,p))}return c+r}function wf(t){return t=Oc(t),t&&we.test(t)?t.replace(me,rr):t}function jf(t,e,n){return t=Oc(t),e=n?nt:e,e===nt?q(t)?et(t):_(t):t.match(e)||[]}function Of(t){var e=null==t?0:t.length,n=bi();return t=e?d(t,function(t){if("function"!=typeof t[1])throw new cs(it);return[n(t[0]),t[1]]}):[],to(function(n){for(var r=-1;++r<e;){var o=t[r];if(i(o[0],this,n))return i(o[1],this,n)}})}function kf(t){return Vn($n(t,ft))}function Pf(t){return function(){return t}}function Af(t,e){return null==t||t!==t?e:t}function Sf(t){return t}function Tf(t){return Mr("function"==typeof t?t:$n(t,ft))}function Ef(t){return Nr($n(t,ft))}function If(t,e){return Fr(t,$n(e,ft))}function zf(t,e,n){var r=Lc(e),o=dr(e,r);null!=n||ec(e)&&(o.length||!r.length)||(n=e,e=t,t=this,o=dr(e,Lc(e)));var i=!(ec(n)&&"chain"in n&&!n.chain),u=Xa(t);return a(o,function(n){var r=e[n];t[n]=r,u&&(t.prototype[n]=function(){var e=this.__chain__;if(i||e){var n=t(this.__wrapped__);return(n.__actions__=Co(this.__actions__)).push({func:r,args:arguments,thisArg:t}),n.__chain__=e,n}return r.apply(t,h([this.value()],arguments))})}),t}function Rf(){return qn._===this&&(qn._=_s),this}function Cf(){}function Mf(t){return t=_c(t),to(function(e){return $r(e,t)})}function Wf(t){return Ri(t)?P(Yi(t)):Hr(t)}function Lf(t){return function(e){return null==t?nt:hr(t,e)}}function Df(){return[]}function Bf(){return!1}function Nf(){return{}}function Ff(){return""}function qf(){return!0}function Uf(t,e){if((t=_c(t))<1||t>It)return[];var n=Ct,r=$s(t,Ct);e=bi(e),t-=Ct;for(var o=I(r,e);++n<t;)e(n);return o}function $f(t){return hp(t)?d(t,Yi):dc(t)?[t]:Co(Tl(Oc(t)))}function Gf(t){var e=++ys;return Oc(t)+e}function Vf(t){return t&&t.length?ar(t,Sf,gr):nt}function Kf(t,e){return t&&t.length?ar(t,bi(e,2),gr):nt}function Hf(t){return k(t,Sf)}function Zf(t,e){return k(t,bi(e,2))}function Yf(t){return t&&t.length?ar(t,Sf,Dr):nt}function Jf(t,e){return t&&t.length?ar(t,bi(e,2),Dr):nt}function Xf(t){return t&&t.length?E(t,Sf):0}function Qf(t,e){return t&&t.length?E(t,bi(e,2)):0}e=null==e?qn:or.defaults(qn.Object(),e,or.pick(qn,En));var ts=e.Array,es=e.Date,ns=e.Error,rs=e.Function,os=e.Math,is=e.Object,us=e.RegExp,as=e.String,cs=e.TypeError,fs=ts.prototype,ss=rs.prototype,ls=is.prototype,ps=e["__core-js_shared__"],ds=ss.toString,hs=ls.hasOwnProperty,ys=0,vs=function(){var t=/[^.]+$/.exec(ps&&ps.keys&&ps.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),gs=ls.toString,bs=ds.call(is),_s=qn._,ms=us("^"+ds.call(hs).replace(Ee,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),xs=Gn?e.Buffer:nt,ws=e.Symbol,js=e.Uint8Array,Os=xs?xs.allocUnsafe:nt,ks=G(is.getPrototypeOf,is),Ps=is.create,As=ls.propertyIsEnumerable,Ss=fs.splice,Ts=ws?ws.isConcatSpreadable:nt,Es=ws?ws.iterator:nt,Is=ws?ws.toStringTag:nt,zs=function(){try{var t=xi(is,"defineProperty");return t({},"",{}),t}catch(t){}}(),Rs=e.clearTimeout!==qn.clearTimeout&&e.clearTimeout,Cs=es&&es.now!==qn.Date.now&&es.now,Ms=e.setTimeout!==qn.setTimeout&&e.setTimeout,Ws=os.ceil,Ls=os.floor,Ds=is.getOwnPropertySymbols,Bs=xs?xs.isBuffer:nt,Ns=e.isFinite,Fs=fs.join,qs=G(is.keys,is),Us=os.max,$s=os.min,Gs=es.now,Vs=e.parseInt,Ks=os.random,Hs=fs.reverse,Zs=xi(e,"DataView"),Ys=xi(e,"Map"),Js=xi(e,"Promise"),Xs=xi(e,"Set"),Qs=xi(e,"WeakMap"),tl=xi(is,"create"),el=Qs&&new Qs,nl={},rl=Ji(Zs),ol=Ji(Ys),il=Ji(Js),ul=Ji(Xs),al=Ji(Qs),cl=ws?ws.prototype:nt,fl=cl?cl.valueOf:nt,sl=cl?cl.toString:nt,ll=function(){function t(){}return function(e){if(!ec(e))return{};if(Ps)return Ps(e);t.prototype=e;var n=new t;return t.prototype=nt,n}}();n.templateSettings={escape:Oe,evaluate:ke,interpolate:Pe,variable:"",imports:{_:n}},n.prototype=r.prototype,n.prototype.constructor=n,o.prototype=ll(r.prototype),o.prototype.constructor=o,b.prototype=ll(r.prototype),b.prototype.constructor=b,tt.prototype.clear=De,tt.prototype.delete=Ye,tt.prototype.get=Je,tt.prototype.has=Xe,tt.prototype.set=Qe,tn.prototype.clear=en,tn.prototype.delete=nn,tn.prototype.get=rn,tn.prototype.has=on,tn.prototype.set=un,an.prototype.clear=cn,an.prototype.delete=fn,an.prototype.get=sn,an.prototype.has=ln,an.prototype.set=pn,dn.prototype.add=dn.prototype.push=hn,dn.prototype.has=yn,vn.prototype.clear=gn,vn.prototype.delete=bn,vn.prototype.get=_n,vn.prototype.has=mn,vn.prototype.set=xn;var pl=No(lr),dl=No(pr,!0),hl=Fo(),yl=Fo(!0),vl=el?function(t,e){return el.set(t,e),t}:Sf,gl=zs?function(t,e){return zs(t,"toString",{configurable:!0,enumerable:!1,value:Pf(e),writable:!0})}:Sf,bl=to,_l=Rs||function(t){return qn.clearTimeout(t)},ml=Xs&&1/K(new Xs([,-0]))[1]==Et?function(t){return new Xs(t)}:Cf,xl=el?function(t){return el.get(t)}:Cf,wl=Ds?function(t){return null==t?[]:(t=is(t),s(Ds(t),function(e){return As.call(t,e)}))}:Df,jl=Ds?function(t){for(var e=[];t;)h(e,wl(t)),t=ks(t);return e}:Df,Ol=vr;(Zs&&Ol(new Zs(new ArrayBuffer(1)))!=ae||Ys&&Ol(new Ys)!=Kt||Js&&Ol(Js.resolve())!=Jt||Xs&&Ol(new Xs)!=te||Qs&&Ol(new Qs)!=oe)&&(Ol=function(t){var e=vr(t),n=e==Yt?t.constructor:nt,r=n?Ji(n):"";if(r)switch(r){case rl:return ae;case ol:return Kt;case il:return Jt;case ul:return te;case al:return oe}return e});var kl=ps?Xa:Bf,Pl=Hi(vl),Al=Ms||function(t,e){return qn.setTimeout(t,e)},Sl=Hi(gl),Tl=function(t){var e=Sa(t,function(t){return n.size===at&&n.clear(),t}),n=e.cache;return e}(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(Te,function(t,n,r,o){e.push(r?o.replace(Be,"$1"):n||t)}),e}),El=to(function(t,e){return $a(t)?ir(t,sr(e,1,$a,!0)):[]}),Il=to(function(t,e){var n=bu(e);return $a(n)&&(n=nt),$a(t)?ir(t,sr(e,1,$a,!0),bi(n,2)):[]}),zl=to(function(t,e){var n=bu(e);return $a(n)&&(n=nt),$a(t)?ir(t,sr(e,1,$a,!0),nt,n):[]}),Rl=to(function(t){var e=d(t,mo);return e.length&&e[0]===t[0]?xr(e):[]}),Cl=to(function(t){var e=bu(t),n=d(t,mo);return e===bu(n)?e=nt:n.pop(),n.length&&n[0]===t[0]?xr(n,bi(e,2)):[]}),Ml=to(function(t){var e=bu(t),n=d(t,mo);return e="function"==typeof e?e:nt,e&&n.pop(),n.length&&n[0]===t[0]?xr(n,nt,e):[]}),Wl=to(xu),Ll=di(function(t,e){var n=null==t?0:t.length,r=Fn(t,e);return Yr(t,d(e,function(t){return Ii(t,n)?+t:t}).sort(Eo)),r}),Dl=to(function(t){return po(sr(t,1,$a,!0))}),Bl=to(function(t){var e=bu(t);return $a(e)&&(e=nt),po(sr(t,1,$a,!0),bi(e,2))}),Nl=to(function(t){var e=bu(t);return e="function"==typeof e?e:nt,po(sr(t,1,$a,!0),nt,e)}),Fl=to(function(t,e){return $a(t)?ir(t,e):[]}),ql=to(function(t){return bo(s(t,$a))}),Ul=to(function(t){var e=bu(t);return $a(e)&&(e=nt),bo(s(t,$a),bi(e,2))}),$l=to(function(t){var e=bu(t);return e="function"==typeof e?e:nt,bo(s(t,$a),nt,e)}),Gl=to(Uu),Vl=to(function(t){var e=t.length,n=e>1?t[e-1]:nt;return n="function"==typeof n?(t.pop(),n):nt,$u(t,n)}),Kl=di(function(t){var e=t.length,n=e?t[0]:0,r=this.__wrapped__,i=function(e){return Fn(e,t)};return!(e>1||this.__actions__.length)&&r instanceof b&&Ii(n)?(r=r.slice(n,+n+(e?1:0)),r.__actions__.push({func:Zu,args:[i],thisArg:nt}),new o(r,this.__chain__).thru(function(t){return e&&!t.length&&t.push(nt),t})):this.thru(i)}),Hl=Do(function(t,e,n){hs.call(t,n)?++t[n]:Nn(t,n,1)}),Zl=Ko(cu),Yl=Ko(fu),Jl=Do(function(t,e,n){hs.call(t,n)?t[n].push(e):Nn(t,n,[e])}),Xl=to(function(t,e,n){var r=-1,o="function"==typeof e,u=Ua(t)?ts(t.length):[];return pl(t,function(t){u[++r]=o?i(e,t,n):jr(t,e,n)}),u}),Ql=Do(function(t,e,n){Nn(t,n,e)}),tp=Do(function(t,e,n){t[n?0:1].push(e)},function(){return[[],[]]}),ep=to(function(t,e){if(null==t)return[];var n=e.length;return n>1&&zi(t,e[0],e[1])?e=[]:n>2&&zi(e[0],e[1],e[2])&&(e=[e[0]]),Gr(t,sr(e,1),[])}),np=Cs||function(){return qn.Date.now()},rp=to(function(t,e,n){var r=ht;if(n.length){var o=V(n,gi(rp));r|=_t}return ui(t,r,e,n,o)}),op=to(function(t,e,n){var r=ht|yt;if(n.length){var o=V(n,gi(op));r|=_t}return ui(e,r,t,n,o)}),ip=to(function(t,e){return tr(t,1,e)}),up=to(function(t,e,n){return tr(t,xc(e)||0,n)});Sa.Cache=an;var ap=bl(function(t,e){e=1==e.length&&hp(e[0])?d(e[0],R(bi())):d(sr(e,1),R(bi()));var n=e.length;return to(function(r){for(var o=-1,u=$s(r.length,n);++o<u;)r[o]=e[o].call(this,r[o]);return i(t,this,r)})}),cp=to(function(t,e){return ui(t,_t,nt,e,V(e,gi(cp)))}),fp=to(function(t,e){return ui(t,mt,nt,e,V(e,gi(fp)))}),sp=di(function(t,e){return ui(t,wt,nt,nt,nt,e)}),lp=ni(gr),pp=ni(function(t,e){return t>=e}),dp=Or(function(){return arguments}())?Or:function(t){return nc(t)&&hs.call(t,"callee")&&!As.call(t,"callee")},hp=ts.isArray,yp=Hn?R(Hn):kr,vp=Bs||Bf,gp=Zn?R(Zn):Pr,bp=Yn?R(Yn):Tr,_p=Jn?R(Jn):zr,mp=Xn?R(Xn):Rr,xp=Qn?R(Qn):Cr,wp=ni(Dr),jp=ni(function(t,e){return t<=e}),Op=Bo(function(t,e){if(Li(e)||Ua(e))return Mo(e,Lc(e),t),nt;for(var n in e)hs.call(e,n)&&Tn(t,n,e[n])}),kp=Bo(function(t,e){Mo(e,Dc(e),t)}),Pp=Bo(function(t,e,n,r){Mo(e,Dc(e),t,r)}),Ap=Bo(function(t,e,n,r){Mo(e,Lc(e),t,r)}),Sp=di(Fn),Tp=to(function(t,e){t=is(t);var n=-1,r=e.length,o=r>2?e[2]:nt;for(o&&zi(e[0],e[1],o)&&(r=1);++n<r;)for(var i=e[n],u=Dc(i),a=-1,c=u.length;++a<c;){var f=u[a],s=t[f];(s===nt||qa(s,ls[f])&&!hs.call(t,f))&&(t[f]=i[f])}return t}),Ep=to(function(t){return t.push(nt,ci),i(Mp,nt,t)}),Ip=Yo(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=gs.call(e)),t[e]=n},Pf(Sf)),zp=Yo(function(t,e,n){null!=e&&"function"!=typeof e.toString&&(e=gs.call(e)),hs.call(t,e)?t[e].push(n):t[e]=[n]},bi),Rp=to(jr),Cp=Bo(function(t,e,n){qr(t,e,n)}),Mp=Bo(function(t,e,n,r){qr(t,e,n,r)}),Wp=di(function(t,e){var n={};if(null==t)return n;var r=!1;e=d(e,function(e){return e=wo(e,t),r||(r=e.length>1),e}),Mo(t,yi(t),n),r&&(n=$n(n,ft|st|lt,fi));for(var o=e.length;o--;)ho(n,e[o]);return n}),Lp=di(function(t,e){return null==t?{}:Vr(t,e)}),Dp=ii(Lc),Bp=ii(Dc),Np=$o(function(t,e,n){return e=e.toLowerCase(),t+(n?ef(e):e)}),Fp=$o(function(t,e,n){return t+(n?"-":"")+e.toLowerCase()}),qp=$o(function(t,e,n){return t+(n?" ":"")+e.toLowerCase()}),Up=Uo("toLowerCase"),$p=$o(function(t,e,n){return t+(n?"_":"")+e.toLowerCase()}),Gp=$o(function(t,e,n){return t+(n?" ":"")+Kp(e)}),Vp=$o(function(t,e,n){return t+(n?" ":"")+e.toUpperCase()}),Kp=Uo("toUpperCase"),Hp=to(function(t,e){try{return i(t,nt,e)}catch(t){return Ya(t)?t:new ns(t)}}),Zp=di(function(t,e){return a(e,function(e){e=Yi(e),Nn(t,e,rp(t[e],t))}),t}),Yp=Ho(),Jp=Ho(!0),Xp=to(function(t,e){return function(n){return jr(n,t,e)}}),Qp=to(function(t,e){return function(n){return jr(t,n,e)}}),td=Xo(d),ed=Xo(f),nd=Xo(g),rd=ei(),od=ei(!0),id=Jo(function(t,e){return t+e},0),ud=oi("ceil"),ad=Jo(function(t,e){return t/e},1),cd=oi("floor"),fd=Jo(function(t,e){return t*e},1),sd=oi("round"),ld=Jo(function(t,e){return t-e},0);return n.after=xa,n.ary=wa,n.assign=Op,n.assignIn=kp,n.assignInWith=Pp,n.assignWith=Ap,n.at=Sp,n.before=ja,n.bind=rp,n.bindAll=Zp,n.bindKey=op,n.castArray=Wa,n.chain=Ku,n.chunk=tu,n.compact=eu,n.concat=nu,n.cond=Of,n.conforms=kf,n.constant=Pf,n.countBy=Hl,n.create=kc,n.curry=Oa,n.curryRight=ka,n.debounce=Pa,n.defaults=Tp,n.defaultsDeep=Ep,n.defer=ip,n.delay=up,n.difference=El,n.differenceBy=Il,n.differenceWith=zl,n.drop=ru,n.dropRight=ou,n.dropRightWhile=iu,n.dropWhile=uu,n.fill=au,n.filter=oa,n.flatMap=ia,n.flatMapDeep=ua,n.flatMapDepth=aa,n.flatten=su,n.flattenDeep=lu,n.flattenDepth=pu,n.flip=Aa,n.flow=Yp,n.flowRight=Jp,n.fromPairs=du,n.functions=zc,n.functionsIn=Rc,n.groupBy=Jl,n.initial=vu,n.intersection=Rl,n.intersectionBy=Cl,n.intersectionWith=Ml,n.invert=Ip,n.invertBy=zp,n.invokeMap=Xl,n.iteratee=Tf,n.keyBy=Ql,n.keys=Lc,n.keysIn=Dc,n.map=la,n.mapKeys=Bc,n.mapValues=Nc,n.matches=Ef,n.matchesProperty=If,n.memoize=Sa,n.merge=Cp,n.mergeWith=Mp,n.method=Xp,n.methodOf=Qp,n.mixin=zf,n.negate=Ta,n.nthArg=Mf,n.omit=Wp,n.omitBy=Fc,n.once=Ea,n.orderBy=pa,n.over=td,n.overArgs=ap,n.overEvery=ed,n.overSome=nd,n.partial=cp,n.partialRight=fp,n.partition=tp,n.pick=Lp,n.pickBy=qc,n.property=Wf,n.propertyOf=Lf,n.pull=Wl,n.pullAll=xu,n.pullAllBy=wu,n.pullAllWith=ju,n.pullAt=Ll,n.range=rd,n.rangeRight=od,n.rearg=sp,n.reject=ya,n.remove=Ou,n.rest=Ia,n.reverse=ku,n.sampleSize=ga,n.set=$c,n.setWith=Gc,n.shuffle=ba,n.slice=Pu,n.sortBy=ep,n.sortedUniq=Ru,n.sortedUniqBy=Cu,n.split=df,n.spread=za,n.tail=Mu,n.take=Wu,n.takeRight=Lu,n.takeRightWhile=Du,n.takeWhile=Bu,n.tap=Hu,n.throttle=Ra,n.thru=Zu,n.toArray=gc,n.toPairs=Dp,n.toPairsIn=Bp,n.toPath=$f,n.toPlainObject=wc,n.transform=Vc,n.unary=Ca,n.union=Dl,n.unionBy=Bl,n.unionWith=Nl,n.uniq=Nu,n.uniqBy=Fu,n.uniqWith=qu,n.unset=Kc,n.unzip=Uu,n.unzipWith=$u,n.update=Hc,n.updateWith=Zc,n.values=Yc,n.valuesIn=Jc,n.without=Fl,n.words=jf,n.wrap=Ma,n.xor=ql,n.xorBy=Ul,n.xorWith=$l,n.zip=Gl,n.zipObject=Gu,n.zipObjectDeep=Vu,n.zipWith=Vl,n.entries=Dp,n.entriesIn=Bp,n.extend=kp,n.extendWith=Pp,zf(n,n),n.add=id,n.attempt=Hp,n.camelCase=Np,n.capitalize=ef,n.ceil=ud,n.clamp=Xc,n.clone=La,n.cloneDeep=Ba,n.cloneDeepWith=Na,n.cloneWith=Da,n.conformsTo=Fa,n.deburr=nf,n.defaultTo=Af,n.divide=ad,n.endsWith=rf,n.eq=qa,n.escape=of,n.escapeRegExp=uf,n.every=ra,n.find=Zl,n.findIndex=cu,n.findKey=Pc,n.findLast=Yl,n.findLastIndex=fu,n.findLastKey=Ac,n.floor=cd,n.forEach=ca,n.forEachRight=fa,n.forIn=Sc,n.forInRight=Tc,n.forOwn=Ec,n.forOwnRight=Ic,n.get=Cc,n.gt=lp,n.gte=pp,n.has=Mc,n.hasIn=Wc,n.head=hu,n.identity=Sf,n.includes=sa,n.indexOf=yu,n.inRange=Qc,n.invoke=Rp,n.isArguments=dp,n.isArray=hp,n.isArrayBuffer=yp,n.isArrayLike=Ua,n.isArrayLikeObject=$a,n.isBoolean=Ga,n.isBuffer=vp,n.isDate=gp,n.isElement=Va,n.isEmpty=Ka,n.isEqual=Ha,n.isEqualWith=Za,n.isError=Ya,n.isFinite=Ja,n.isFunction=Xa,n.isInteger=Qa,n.isLength=tc,n.isMap=bp,n.isMatch=rc,n.isMatchWith=oc,n.isNaN=ic,n.isNative=uc,n.isNil=cc,n.isNull=ac,n.isNumber=fc,n.isObject=ec,n.isObjectLike=nc,n.isPlainObject=sc,n.isRegExp=_p,n.isSafeInteger=lc,n.isSet=mp,n.isString=pc,n.isSymbol=dc,n.isTypedArray=xp,n.isUndefined=hc,n.isWeakMap=yc,n.isWeakSet=vc,n.join=gu,n.kebabCase=Fp,n.last=bu,n.lastIndexOf=_u,n.lowerCase=qp,n.lowerFirst=Up,n.lt=wp,n.lte=jp,n.max=Vf,n.maxBy=Kf,n.mean=Hf,n.meanBy=Zf,n.min=Yf,n.minBy=Jf,n.stubArray=Df,n.stubFalse=Bf,n.stubObject=Nf,n.stubString=Ff,n.stubTrue=qf,n.multiply=fd,n.nth=mu,n.noConflict=Rf,n.noop=Cf,n.now=np,n.pad=af,n.padEnd=cf,n.padStart=ff,n.parseInt=sf,n.random=tf,n.reduce=da,n.reduceRight=ha,n.repeat=lf,n.replace=pf,n.result=Uc,n.round=sd,n.runInContext=t,n.sample=va,n.size=_a,n.snakeCase=$p,n.some=ma,n.sortedIndex=Au,n.sortedIndexBy=Su,n.sortedIndexOf=Tu,n.sortedLastIndex=Eu,n.sortedLastIndexBy=Iu,n.sortedLastIndexOf=zu,n.startCase=Gp,n.startsWith=hf,n.subtract=ld,n.sum=Xf,n.sumBy=Qf,n.template=yf,n.times=Uf,n.toFinite=bc,n.toInteger=_c,n.toLength=mc,n.toLower=vf,n.toNumber=xc,n.toSafeInteger=jc,n.toString=Oc,n.toUpper=gf,n.trim=bf,n.trimEnd=_f,n.trimStart=mf,n.truncate=xf,n.unescape=wf,n.uniqueId=Gf,n.upperCase=Vp,n.upperFirst=Kp,n.each=ca,n.eachRight=fa,n.first=hu,zf(n,function(){var t={};return lr(n,function(e,r){hs.call(n.prototype,r)||(t[r]=e)}),t}(),{chain:!1}),n.VERSION="4.17.19",a(["bind","bindKey","curry","curryRight","partial","partialRight"],function(t){n[t].placeholder=n}),a(["drop","take"],function(t,e){b.prototype[t]=function(n){n=n===nt?1:Us(_c(n),0);var r=this.__filtered__&&!e?new b(this):this.clone();return r.__filtered__?r.__takeCount__=$s(n,r.__takeCount__):r.__views__.push({size:$s(n,Ct),type:t+(r.__dir__<0?"Right":"")}),r},b.prototype[t+"Right"]=function(e){return this.reverse()[t](e).reverse()}}),a(["filter","map","takeWhile"],function(t,e){var n=e+1,r=n==St||3==n;b.prototype[t]=function(t){var e=this.clone();return e.__iteratees__.push({iteratee:bi(t,3),type:n}),e.__filtered__=e.__filtered__||r,e}}),a(["head","last"],function(t,e){var n="take"+(e?"Right":"");b.prototype[t]=function(){return this[n](1).value()[0]}}),a(["initial","tail"],function(t,e){var n="drop"+(e?"":"Right");b.prototype[t]=function(){return this.__filtered__?new b(this):this[n](1)}}),b.prototype.compact=function(){return this.filter(Sf)},b.prototype.find=function(t){return this.filter(t).head()},b.prototype.findLast=function(t){return this.reverse().find(t)},b.prototype.invokeMap=to(function(t,e){return"function"==typeof t?new b(this):this.map(function(n){return jr(n,t,e)})}),b.prototype.reject=function(t){return this.filter(Ta(bi(t)))},b.prototype.slice=function(t,e){t=_c(t);var n=this;return n.__filtered__&&(t>0||e<0)?new b(n):(t<0?n=n.takeRight(-t):t&&(n=n.drop(t)),e!==nt&&(e=_c(e),n=e<0?n.dropRight(-e):n.take(e-t)),n)},b.prototype.takeRightWhile=function(t){return this.reverse().takeWhile(t).reverse()},b.prototype.toArray=function(){return this.take(Ct)},lr(b.prototype,function(t,e){var r=/^(?:filter|find|map|reject)|While$/.test(e),i=/^(?:head|last)$/.test(e),u=n[i?"take"+("last"==e?"Right":""):e],a=i||/^find/.test(e);u&&(n.prototype[e]=function(){var e=this.__wrapped__,c=i?[1]:arguments,f=e instanceof b,s=c[0],l=f||hp(e),p=function(t){var e=u.apply(n,h([t],c));return i&&d?e[0]:e};l&&r&&"function"==typeof s&&1!=s.length&&(f=l=!1);var d=this.__chain__,y=!!this.__actions__.length,v=a&&!d,g=f&&!y;if(!a&&l){e=g?e:new b(this);var _=t.apply(e,c);return _.__actions__.push({func:Zu,args:[p],thisArg:nt}),new o(_,d)}return v&&g?t.apply(this,c):(_=this.thru(p),v?i?_.value()[0]:_.value():_)})}),a(["pop","push","shift","sort","splice","unshift"],function(t){var e=fs[t],r=/^(?:push|sort|unshift)$/.test(t)?"tap":"thru",o=/^(?:pop|shift)$/.test(t);n.prototype[t]=function(){var t=arguments;if(o&&!this.__chain__){var n=this.value();return e.apply(hp(n)?n:[],t)}return this[r](function(n){return e.apply(hp(n)?n:[],t)})}}),lr(b.prototype,function(t,e){var r=n[e];if(r){var o=r.name+"";hs.call(nl,o)||(nl[o]=[]),nl[o].push({name:e,func:r})}}),nl[Zo(nt,yt).name]=[{name:"wrapper",func:nt}],b.prototype.clone=A,b.prototype.reverse=Z,b.prototype.value=Q,n.prototype.at=Kl,n.prototype.chain=Yu,n.prototype.commit=Ju,n.prototype.next=Xu,n.prototype.plant=ta,n.prototype.reverse=ea,n.prototype.toJSON=n.prototype.valueOf=n.prototype.value=na,n.prototype.first=n.prototype.head,Es&&(n.prototype[Es]=Qu),n}();qn._=or,void 0!==(o=function(){return or}.call(e,n,e,r))&&(r.exports=o)}).call(this)}).call(e,n(43),n(12)(t))},function(t,e,n){function r(t,e){return 2==e?function(e,n){return t.apply(void 0,arguments)}:function(e){return t.apply(void 0,arguments)}}function o(t,e){return 2==e?function(e,n){return t(e,n)}:function(e){return t(e)}}function i(t){for(var e=t?t.length:0,n=Array(e);e--;)n[e]=t[e];return n}function u(t){return function(e){return t({},e)}}function a(t,e){return function(){for(var n=arguments.length,r=n-1,o=Array(n);n--;)o[n]=arguments[n];var i=o[e],u=o.slice(0,e);return i&&p.apply(u,i),e!=r&&p.apply(u,o.slice(e+1)),t.apply(this,u)}}function c(t,e){return function(){var n=arguments.length;if(n){for(var r=Array(n);n--;)r[n]=arguments[n];var o=r[0]=e.apply(void 0,r);return t.apply(void 0,r),o}}}function f(t,e,n,p){function d(t,e){if(P.cap){var n=s.iterateeRearg[t];if(n)return x(e,n);var r=!O&&s.iterateeAry[t];if(r)return m(e,r)}return e}function h(t,e,n){return S||P.curry&&n>1?W(e,n):e}function y(t,e,n){if(P.fixed&&(T||!s.skipFixed[t])){var r=s.methodSpread[t],o=r&&r.start;return void 0===o?R(e,n):a(e,o)}return e}function v(t,e,n){return P.rearg&&n>1&&(E||!s.skipRearg[t])?U(e,s.methodRearg[t]||s.aryRearg[n]):e}function g(t,e){e=G(e);for(var n=-1,r=e.length,o=r-1,i=M(Object(t)),u=i;null!=u&&++n<r;){var a=e[n],c=u[a];null==c||N(c)||B(c)||F(c)||(u[a]=M(n==o?c:Object(c))),u=u[a]}return i}function b(t){return H.runInContext.convert(t)(void 0)}function _(t,e){var n=s.aliasToReal[t]||t,r=s.remap[n]||n,o=p;return function(t){var i=O?I:z,u=O?I[r]:e,a=C(C({},o),t);return f(i,n,u,a)}}function m(t,e){return w(t,function(t){return"function"==typeof t?o(t,e):t})}function x(t,e){return w(t,function(t){var n=e.length;return r(U(o(t,n),e),n)})}function w(t,e){return function(){var n=arguments.length;if(!n)return t();for(var r=Array(n);n--;)r[n]=arguments[n];var o=P.rearg?0:n-1;return r[o]=e(r[o]),t.apply(void 0,r)}}function j(t,e,n){var r,o=s.aliasToReal[t]||t,a=e,f=K[o];return f?a=f(e):P.immutable&&(s.mutate.array[o]?a=c(e,i):s.mutate.object[o]?a=c(e,u(e)):s.mutate.set[o]&&(a=c(e,g))),L(V,function(t){return L(s.aryMethod[t],function(e){if(o==e){var n=s.methodSpread[o],i=n&&n.afterRearg;return r=i?y(o,v(o,a,t),t):v(o,y(o,a,t),t),r=d(o,r),r=h(o,r,t),!1}}),!r}),r||(r=a),r==e&&(r=S?W(r,1):function(){return e.apply(this,arguments)}),r.convert=_(o,e),r.placeholder=e.placeholder=n,r}var O="function"==typeof e,k=e===Object(e);if(k&&(p=n,n=e,e=void 0),null==n)throw new TypeError;p||(p={});var P={cap:!("cap"in p)||p.cap,curry:!("curry"in p)||p.curry,fixed:!("fixed"in p)||p.fixed,immutable:!("immutable"in p)||p.immutable,rearg:!("rearg"in p)||p.rearg},A=O?n:l,S="curry"in p&&p.curry,T="fixed"in p&&p.fixed,E="rearg"in p&&p.rearg,I=O?n.runInContext():void 0,z=O?n:{ary:t.ary,assign:t.assign,clone:t.clone,curry:t.curry,forEach:t.forEach,isArray:t.isArray,isError:t.isError,isFunction:t.isFunction,isWeakMap:t.isWeakMap,iteratee:t.iteratee,keys:t.keys,rearg:t.rearg,toInteger:t.toInteger,toPath:t.toPath},R=z.ary,C=z.assign,M=z.clone,W=z.curry,L=z.forEach,D=z.isArray,B=z.isError,N=z.isFunction,F=z.isWeakMap,q=z.keys,U=z.rearg,$=z.toInteger,G=z.toPath,V=q(s.aryMethod),K={castArray:function(t){return function(){var e=arguments[0];return D(e)?t(i(e)):t.apply(void 0,arguments)}},iteratee:function(t){return function(){var e=arguments[0],n=arguments[1],r=t(e,n),i=r.length;return P.cap&&"number"==typeof n?(n=n>2?n-2:1,i&&i<=n?r:o(r,n)):r}},mixin:function(t){return function(e){var n=this;if(!N(n))return t(n,Object(e));var r=[];return L(q(e),function(t){N(e[t])&&r.push([t,n.prototype[t]])}),t(n,Object(e)),L(r,function(t){var e=t[1];N(e)?n.prototype[t[0]]=e:delete n.prototype[t[0]]}),n}},nthArg:function(t){return function(e){var n=e<0?1:$(e)+1;return W(t(e),n)}},rearg:function(t){return function(e,n){var r=n?n.length:0;return W(t(e,n),r)}},runInContext:function(e){return function(n){return f(t,e(n),p)}}};if(!k)return j(e,n,A);var H=n,Z=[];return L(V,function(t){L(s.aryMethod[t],function(t){var e=H[s.remap[t]||t];e&&Z.push([t,j(t,e,H)])})}),L(q(H),function(t){var e=H[t];if("function"==typeof e){for(var n=Z.length;n--;)if(Z[n][0]==t)return;e.convert=_(t,e),Z.push([t,e])}}),L(Z,function(t){H[t[0]]=t[1]}),H.convert=b,H.placeholder=H,L(q(H),function(t){L(s.realToAlias[t]||[],function(e){H[e]=H[t]})}),H}var s=n(454),l=n(455),p=Array.prototype.push;t.exports=f},function(t,e){e.aliasToReal={each:"forEach",eachRight:"forEachRight",entries:"toPairs",entriesIn:"toPairsIn",extend:"assignIn",extendAll:"assignInAll",extendAllWith:"assignInAllWith",extendWith:"assignInWith",first:"head",conforms:"conformsTo",matches:"isMatch",property:"get",__:"placeholder",F:"stubFalse",T:"stubTrue",all:"every",allPass:"overEvery",always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",complement:"negate",compose:"flowRight",contains:"includes",dissoc:"unset",dissocPath:"unset",dropLast:"dropRight",dropLastWhile:"dropRightWhile",equals:"isEqual",identical:"eq",indexBy:"keyBy",init:"initial",invertObj:"invert",juxt:"over",omitAll:"omit",nAry:"ary",path:"get",pathEq:"matchesProperty",pathOr:"getOr",paths:"at",pickAll:"pick",pipe:"flow",pluck:"map",prop:"get",propEq:"matchesProperty",propOr:"getOr",props:"at",symmetricDifference:"xor",symmetricDifferenceBy:"xorBy",symmetricDifferenceWith:"xorWith",takeLast:"takeRight",takeLastWhile:"takeRightWhile",unapply:"rest",unnest:"flatten",useWith:"overArgs",where:"conformsTo",whereEq:"isMatch",zipObj:"zipObject"},e.aryMethod={1:["assignAll","assignInAll","attempt","castArray","ceil","create","curry","curryRight","defaultsAll","defaultsDeepAll","floor","flow","flowRight","fromPairs","invert","iteratee","memoize","method","mergeAll","methodOf","mixin","nthArg","over","overEvery","overSome","rest","reverse","round","runInContext","spread","template","trim","trimEnd","trimStart","uniqueId","words","zipAll"],2:["add","after","ary","assign","assignAllWith","assignIn","assignInAllWith","at","before","bind","bindAll","bindKey","chunk","cloneDeepWith","cloneWith","concat","conformsTo","countBy","curryN","curryRightN","debounce","defaults","defaultsDeep","defaultTo","delay","difference","divide","drop","dropRight","dropRightWhile","dropWhile","endsWith","eq","every","filter","find","findIndex","findKey","findLast","findLastIndex","findLastKey","flatMap","flatMapDeep","flattenDepth","forEach","forEachRight","forIn","forInRight","forOwn","forOwnRight","get","groupBy","gt","gte","has","hasIn","includes","indexOf","intersection","invertBy","invoke","invokeMap","isEqual","isMatch","join","keyBy","lastIndexOf","lt","lte","map","mapKeys","mapValues","matchesProperty","maxBy","meanBy","merge","mergeAllWith","minBy","multiply","nth","omit","omitBy","overArgs","pad","padEnd","padStart","parseInt","partial","partialRight","partition","pick","pickBy","propertyOf","pull","pullAll","pullAt","random","range","rangeRight","rearg","reject","remove","repeat","restFrom","result","sampleSize","some","sortBy","sortedIndex","sortedIndexOf","sortedLastIndex","sortedLastIndexOf","sortedUniqBy","split","spreadFrom","startsWith","subtract","sumBy","take","takeRight","takeRightWhile","takeWhile","tap","throttle","thru","times","trimChars","trimCharsEnd","trimCharsStart","truncate","union","uniqBy","uniqWith","unset","unzipWith","without","wrap","xor","zip","zipObject","zipObjectDeep"],3:["assignInWith","assignWith","clamp","differenceBy","differenceWith","findFrom","findIndexFrom","findLastFrom","findLastIndexFrom","getOr","includesFrom","indexOfFrom","inRange","intersectionBy","intersectionWith","invokeArgs","invokeArgsMap","isEqualWith","isMatchWith","flatMapDepth","lastIndexOfFrom","mergeWith","orderBy","padChars","padCharsEnd","padCharsStart","pullAllBy","pullAllWith","rangeStep","rangeStepRight","reduce","reduceRight","replace","set","slice","sortedIndexBy","sortedLastIndexBy","transform","unionBy","unionWith","update","xorBy","xorWith","zipWith"],4:["fill","setWith","updateWith"]},e.aryRearg={2:[1,0],3:[2,0,1],4:[3,2,0,1]},e.iterateeAry={dropRightWhile:1,dropWhile:1,every:1,filter:1,find:1,findFrom:1,findIndex:1,findIndexFrom:1,findKey:1,findLast:1,findLastFrom:1,findLastIndex:1,findLastIndexFrom:1,findLastKey:1,flatMap:1,flatMapDeep:1,flatMapDepth:1,forEach:1,forEachRight:1,forIn:1,forInRight:1,forOwn:1,forOwnRight:1,map:1,mapKeys:1,mapValues:1,partition:1,reduce:2,reduceRight:2,reject:1,remove:1,some:1,takeRightWhile:1,takeWhile:1,times:1,transform:2},e.iterateeRearg={mapKeys:[1],reduceRight:[1,0]},e.methodRearg={assignInAllWith:[1,0],assignInWith:[1,2,0],assignAllWith:[1,0],assignWith:[1,2,0],differenceBy:[1,2,0],differenceWith:[1,2,0],getOr:[2,1,0],intersectionBy:[1,2,0],intersectionWith:[1,2,0],isEqualWith:[1,2,0],isMatchWith:[2,1,0],mergeAllWith:[1,0],mergeWith:[1,2,0],padChars:[2,1,0],padCharsEnd:[2,1,0],padCharsStart:[2,1,0],pullAllBy:[2,1,0],pullAllWith:[2,1,0],rangeStep:[1,2,0],rangeStepRight:[1,2,0],setWith:[3,1,2,0],sortedIndexBy:[2,1,0],sortedLastIndexBy:[2,1,0],unionBy:[1,2,0],unionWith:[1,2,0],updateWith:[3,1,2,0],xorBy:[1,2,0],xorWith:[1,2,0],zipWith:[1,2,0]},e.methodSpread={assignAll:{start:0},assignAllWith:{start:0},assignInAll:{start:0},assignInAllWith:{start:0},defaultsAll:{start:0},defaultsDeepAll:{start:0},invokeArgs:{start:2},invokeArgsMap:{start:2},mergeAll:{start:0},mergeAllWith:{start:0},partial:{start:1},partialRight:{start:1},without:{start:1},zipAll:{start:0}},e.mutate={array:{fill:!0,pull:!0,pullAll:!0,pullAllBy:!0,pullAllWith:!0,pullAt:!0,remove:!0,reverse:!0},object:{assign:!0,assignAll:!0,assignAllWith:!0,assignIn:!0,assignInAll:!0,assignInAllWith:!0,assignInWith:!0,assignWith:!0,defaults:!0,defaultsAll:!0,defaultsDeep:!0,defaultsDeepAll:!0,merge:!0,mergeAll:!0,mergeAllWith:!0,mergeWith:!0},set:{set:!0,setWith:!0,unset:!0,update:!0,updateWith:!0}},e.realToAlias=function(){var t=Object.prototype.hasOwnProperty,n=e.aliasToReal,r={};for(var o in n){var i=n[o];t.call(r,i)?r[i].push(o):r[i]=[o]}return r}(),e.remap={assignAll:"assign",assignAllWith:"assignWith",assignInAll:"assignIn",assignInAllWith:"assignInWith",curryN:"curry",curryRightN:"curryRight",defaultsAll:"defaults",defaultsDeepAll:"defaultsDeep",findFrom:"find",findIndexFrom:"findIndex",findLastFrom:"findLast",findLastIndexFrom:"findLastIndex",getOr:"get",includesFrom:"includes",indexOfFrom:"indexOf",invokeArgs:"invoke",invokeArgsMap:"invokeMap",lastIndexOfFrom:"lastIndexOf",mergeAll:"merge",mergeAllWith:"mergeWith",padChars:"pad",padCharsEnd:"padEnd",padCharsStart:"padStart",propertyOf:"get",rangeStep:"range",rangeStepRight:"rangeRight",restFrom:"rest",spreadFrom:"spread",trimChars:"trim",trimCharsEnd:"trimEnd",trimCharsStart:"trimStart",zipAll:"zip"},e.skipFixed={castArray:!0,flow:!0,flowRight:!0,iteratee:!0,mixin:!0,rearg:!0,runInContext:!0},e.skipRearg={add:!0,assign:!0,assignIn:!0,bind:!0,bindKey:!0,concat:!0,difference:!0,divide:!0,eq:!0,gt:!0,gte:!0,isEqual:!0,lt:!0,lte:!0,matchesProperty:!0,merge:!0,multiply:!0,overArgs:!0,partial:!0,partialRight:!0,propertyOf:!0,random:!0,range:!0,rangeRight:!0,subtract:!0,zip:!0,zipObject:!0,zipObjectDeep:!0}},function(t,e){t.exports={}},function(t,e){t.exports=Morph.modules["bbc-morph-bitesize-global-navigation-view@1.46.0"]},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.HeaderImageContainer=void 0;var o=r(n(0)),i=(r(n(38)),r(n(458))),u=function(t){var e=t.children,n=t.fosZid,r=t.className,u=t.ariaHidden;return o.default.createElement("div",{className:(0,i.default)("header-image-container","header-image-container--".concat(n||"homepage"),r),"aria-hidden":u},o.default.createElement("div",{className:"header-image-container__wrap"},e))};e.HeaderImageContainer=u,u.defaultProps={className:"",fosZid:"",ariaHidden:!1};var a=u;e.default=a},function(t,e,n){var r,o;!function(){"use strict";function n(){for(var t=[],e=0;e<arguments.length;e++){var r=arguments[e];if(r){var o=typeof r;if("string"===o||"number"===o)t.push(r);else if(Array.isArray(r)&&r.length){var u=n.apply(null,r);u&&t.push(u)}else if("object"===o)for(var a in r)i.call(r,a)&&r[a]&&t.push(a)}}return t.join(" ")}var i={}.hasOwnProperty;void 0!==t&&t.exports?(n.default=n,t.exports=n):(r=[],void 0!==(o=function(){return n}.apply(e,r))&&(t.exports=o))}()},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function c(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?s(t):e}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function p(t,e){return(p=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var d=r(n(0)),h=(r(n(38)),r(n(194))),y=r(n(195)),v=r(n(465)),g={height:{desktop:40,mobile:32},width:{desktop:600}},b=function(t){function e(t){var n;return i(this,e),n=c(this,f(e).call(this,t)),n.state={isOrbVisible:!0,windowWidth:0,message:null},n.currentTimer=null,n.setOrbVisibilityState=n.setOrbVisibilityState.bind(s(n)),n.handleResize=n.handleResize.bind(s(n)),n.setMessage=n.setMessage.bind(s(n)),n.clearMessage=n.clearMessage.bind(s(n)),n}return l(e,t),a(e,[{key:"componentDidMount",value:function(){var t=this;this.handleResize(),this.setState({message:""}),window.addEventListener?(window.addEventListener("resize",this.handleResize),window.addEventListener("scroll",this.setOrbVisibilityState)):(window.attachEvent("scroll",this.setOrbVisibilityState),document.body.onresize=function(){return t.handleResize()})}},{key:"componentWillReceiveProps",value:function(t){this.setMessage(t.message,t.isError)}},{key:"componentWillUnmount",value:function(){window.removeEventListener?(window.removeEventListener("resize",this.handleResize),window.removeEventListener("scroll",this.setOrbVisibilityState)):(window.detachEvent("scroll",this.setOrbVisibilityState),document.body.onresize=function(){})}},{key:"setMessage",value:function(t,e){var n=this;this.setState({message:t,isError:e}),""!==t&&(window.clearTimeout(this.currentTimer),this.currentTimer=setTimeout(function(){n.clearMessage()},5e3))}},{key:"setOrbVisibilityState",value:function(){var t=this.state.windowWidth<g.width.desktop?g.height.mobile:g.height.desktop,e=window.scrollY||window.pageYOffset||document.documentElement.scrollTop,n=e<t;n!==this.state.isOrbVisible&&this.setState({isOrbVisible:n})}},{key:"clearMessage",value:function(){this.currentTimer&&(window.clearTimeout(this.currentTimer),this.currentTimer=null,this.setState({message:""}),this.props.notificationClearedAction())}},{key:"handleResize",value:function(){this.state.windowWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,this.setOrbVisibilityState()}},{key:"render",value:function(){if(!this.state.message)return null;var t=["bitesize__notification-bar"];return this.state.isOrbVisible&&t.push("bitesize__notification-orb-visible"),this.state.message&&t.push("bitesize__notification-active"),this.state.isError&&t.push("bitesize__notification-error"),d.default.createElement("div",{className:t.join(" ")},d.default.createElement("div",{className:"bitesize__notification-wrap"},d.default.createElement("div",{className:"bitesize__notification-bar__inner"},d.default.createElement("span",{className:"bitesize__notification-icon--error"},d.default.createElement(v.default,null)),d.default.createElement("p",{role:"alert","aria-live":"assertive",className:"bitesize__notification-text"},this.state.message),d.default.createElement("button",{className:"bitesize__notification-dismiss-button",type:"button",onClick:this.clearMessage},d.default.createElement("span",{className:"bitesize__notification-icon"},d.default.createElement(h.default,null)),d.default.createElement("span",{className:"bitesize__notification-icon--hover"},d.default.createElement(y.default,null))))))}}]),e}(d.default.Component);b.defaultProps={isError:null};var _=b;e.default=_,t.exports=e.default},function(t,e,n){var r=n(31)("meta"),o=n(30),i=n(17),u=n(15).f,a=0,c=Object.isExtensible||function(){return!0},f=!n(23)(function(){return c(Object.preventExtensions({}))}),s=function(t){u(t,r,{value:{i:"O"+ ++a,w:{}}})},l=function(t,e){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,r)){if(!c(t))return"F";if(!e)return"E";s(t)}return t[r].i},p=function(t,e){if(!i(t,r)){if(!c(t))return!0;if(!e)return!1;s(t)}return t[r].w},d=function(t){return f&&h.NEED&&c(t)&&!i(t,r)&&s(t),t},h=t.exports={KEY:r,NEED:!1,fastKey:l,getWeak:p,onFreeze:d}},function(t,e,n){var r=n(24),o=n(77),i=n(58);t.exports=function(t){var e=r(t),n=o.f;if(n)for(var u,a=n(t),c=i.f,f=0;a.length>f;)c.call(t,u=a[f++])&&e.push(u);return e}},function(t,e,n){var r=n(139);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(25),o=n(193).f,i={}.toString,u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(t){try{return o(t)}catch(t){return u.slice()}};t.exports.f=function(t){return u&&"[object Window]"==i.call(t)?a(t):o(r(t))}},function(t,e,n){var r=n(58),o=n(54),i=n(25),u=n(74),a=n(17),c=n(135),f=Object.getOwnPropertyDescriptor;e.f=n(16)?f:function(t,e){if(t=i(t),e=u(e,!0),c)try{return f(t,e)}catch(t){}if(a(t,e))return o(!r.f.call(t,e),t[e])}},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){return t&&t.__esModule?t:{default:t}}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"32px",height:"32px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(e){t.node=e}},p.default.createElement("g",{id:"Grid"}),p.default.createElement("g",{id:"Layer_2"},p.default.createElement("g",null,p.default.createElement("path",{d:"M16,2L0,30h32L16,2z M18,27h-4v-4h4V27z M14,21V11h4v10H14z"}))))}}]),e}(p.default.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){var r=n(467),o=n(469),i=o(function(t,e,n){r(t,n,e)});t.exports=i},function(t,e,n){function r(t,e,n){"__proto__"==e&&o?o(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}var o=n(468);t.exports=r},function(t,e,n){var r=n(13),o=function(){try{var t=r(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=o},function(t,e,n){function r(t,e){return function(n,r){var c=a(n)?o:i,f=e?e():{};return c(n,t,u(r,2),f)}}var o=n(470),i=n(471),u=n(70),a=n(5);t.exports=r},function(t,e){function n(t,e,n,r){for(var o=-1,i=null==t?0:t.length;++o<i;){var u=t[o];e(r,u,n(u),t)}return r}t.exports=n},function(t,e,n){function r(t,e,n,r){return o(t,function(t,o,i){e(r,t,n(t),i)}),r}var o=n(472);t.exports=r},function(t,e,n){var r=n(473),o=n(476),i=o(r);t.exports=i},function(t,e,n){function r(t,e){return t&&o(t,e,i)}var o=n(474),i=n(28);t.exports=r},function(t,e,n){var r=n(475),o=r();t.exports=o},function(t,e){function n(t){return function(e,n,r){for(var o=-1,i=Object(e),u=r(e),a=u.length;a--;){var c=u[t?a:++o];if(!1===n(i[c],c,i))break}return e}}t.exports=n},function(t,e,n){function r(t,e){return function(n,r){if(null==n)return n;if(!o(n))return t(n,r);for(var i=n.length,u=e?i:-1,a=Object(n);(e?u--:++u<i)&&!1!==r(a[u],u,a););return n}}var o=n(41);t.exports=r},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){return t&&t.__esModule?t:{default:t}}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{className:"bitesize-add-svg",xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(e){t.node=e}},p.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))}}]),e}(p.default.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{className:"bitesize-yes-svg",version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"31.8px",height:"32px",viewBox:"0 0 31.8 32",enableBackground:"new 0 0 31.8 32",ref:function(e){t.svg=e}},p.default.createElement("polygon",{points:"12.8,28.9 31.8,6.3 28,3.1 12.2,21.9 3.2,14.4 0,18.2 \t"}))}}]),e}(p.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(e){t.svg=e}},p.default.createElement("path",{d:"M32 3.5L28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32l3.5-3.5L19.5 16z"}))}}]),e}(p.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function u(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function a(t,e,n){return e&&u(t.prototype,e),n&&u(t,n),t}function c(t,e){return!e||"object"!==o(e)&&"function"!=typeof e?s(t):e}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function p(t,e){return(p=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var d=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(0)),h=(r(n(38)),r(n(194))),y=r(n(195)),v=r(n(196)),g=function(t){function e(t){var n;return i(this,e),n=c(this,f(e).call(this,t)),n.state={visible:!1},n.closeToolTip=n.closeToolTip.bind(s(n)),n.handleKeyPress=n.handleKeyPress.bind(s(n)),n.toggleToolTip=n.toggleToolTip.bind(s(n)),n}return l(e,t),a(e,[{key:"componentWillUnmount",value:function(){this.removeCloseEventListeners()}},{key:"setupCloseEventListeners",value:function(){document.addEventListener("keydown",this.handleKeyPress)}},{key:"removeCloseEventListeners",value:function(){document.removeEventListener("keydown",this.handleKeyPress)}},{key:"closeToolTip",value:function(){this.removeCloseEventListeners(),this.setState({visible:!1})}},{key:"handleKeyPress",value:function(t){"Escape"===t.key&&(this.removeCloseEventListeners(),this.setState({visible:!1}))}},{key:"toggleToolTip",value:function(){this.removeCloseEventListeners(),this.setupCloseEventListeners(),this.setState(function(t){return{visible:!t.visible}})}},{key:"render",value:function(){var t=this.state.visible,e=this.props.buttonContent;return d.default.createElement("div",null,t&&d.default.createElement("div",{className:"bitesize-tooltip-popup__background",onClick:this.closeToolTip,"aria-hidden":"true"}),d.default.createElement("div",{className:"bitesize-tooltip-popup__container"},d.default.createElement(v.default,{onClick:this.toggleToolTip},e),t&&d.default.createElement("div",{className:"bitesize-tooltip-popup__popup-box"},d.default.createElement("p",{className:"bitesize-tooltip-popup__title",aria:"assertive"},this.props.title),d.default.createElement("p",{className:"bitesize-tooltip-popup__text",aria:"assertive"},this.props.text),d.default.createElement("div",{className:"bitesize-tooltip-popup__cta-container"},this.props.body),d.default.createElement("button",{type:"button",className:"bitesize-tooltip-popup__closebutton",onClick:this.closeToolTip},d.default.createElement("span",{className:"bitesize-tooltip-popup__close-icon"},d.default.createElement(h.default,null)),d.default.createElement("span",{className:"bitesize-tooltip-popup__close-icon--hover"},d.default.createElement(y.default,null))))))}}]),e}(d.Component),b=g;e.default=b,t.exports=e.default},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(189);var r=n(190),o=function(t,e,n){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"blue",i="".concat((0,r.getIdHost)(),"/idcta/init?ptrt=").concat(n,"&lang=").concat(t,"&purpose=").concat(e,"&context=").concat("bitesize","&pathway=").concat("bitesize","&buttonSize=").concat("small","&buttonColour=").concat(o);return fetch(i).then(function(t){return t.json()})};e.default=o,t.exports=e.default},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function u(t,e,n){return e&&i(t.prototype,e),n&&i(t,n),t}function a(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?c(t):e}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t){return(f=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&l(t,e)}function l(t,e){return(l=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n(9),n(10);var p=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(0)),d=function(t){function e(){return o(this,e),a(this,f(e).apply(this,arguments))}return s(e,t),u(e,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var t=this;return p.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(e){t.svg=e}},p.default.createElement("path",{d:"M29.8 8l-3.5 2c1 1.8 1.6 3.8 1.6 6 0 6.6-5.4 12-12 12S4 22.6 4 16 9.4 4 16 4V0C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16c0-2.9-.8-5.6-2.2-8z"}))}}]),e}(p.Component),h=d;e.default=h,t.exports=e.default},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"CopyLinkBox",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(e,"Facebook",{enumerable:!0,get:function(){return i.default}}),Object.defineProperty(e,"Pinterest",{enumerable:!0,get:function(){return u.default}}),Object.defineProperty(e,"SharePanel",{enumerable:!0,get:function(){return a.default}}),Object.defineProperty(e,"Twitter",{enumerable:!0,get:function(){return c.default}}),Object.defineProperty(e,"WhatsApp",{enumerable:!0,get:function(){return f.default}}),Object.defineProperty(e,"Yummly",{enumerable:!0,get:function(){return s.default}});var o=r(n(484)),i=r(n(488)),u=r(n(490)),a=r(n(491)),c=r(n(494)),f=r(n(495)),s=r(n(496))},function(t,e,n){"use strict";var r=n(109),o=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=o(n(110)),u=o(n(111)),a=o(n(112)),c=o(n(113)),f=o(n(114)),s=r(n(0)),l=n(0).PropTypes||n(6),p=function(t){function e(t){var n;return(0,i.default)(this,e),n=(0,a.default)(this,(0,c.default)(e).call(this,t)),n.state={copied:!1},n}return(0,f.default)(e,t),(0,u.default)(e,[{key:"handleCopyUrl",value:function(){try{this.inputElement.select(),document.execCommand("copy"),this.setState({copied:!0})}catch(t){}}},{key:"render",value:function(){var t=this,e=this.props,n=e.copiedText,r=e.shareText,o=e.onClickCallback,i=e.link,u=e.position,a=this.state.copied;return s.default.createElement("div",{className:"ec-share-copy-link","data-bbc-container":"Share Tools","data-bbc-title":"Copy Link","data-bbc-metadata":JSON.stringify({CHD:"copy-link:: ".concat(u)})},s.default.createElement("label",{className:"ec-share-copy-link__text"},a?n:r),s.default.createElement("input",{className:"ec-share-copy-link__input",onClick:function(){o&&o(),t.handleCopyUrl()},readOnly:!0,ref:function(e){t.inputElement=e},type:"text",value:i}))}}]),e}(s.Component);p.defaultProps={shareText:"Copy and share link",copiedText:"Copied!"},p.propTypes={link:l.string.isRequired,copiedText:l.string,shareText:l.string,onClickCallback:l.func,position:l.number.isRequired};var d=p;e.default=d},function(t,e){function n(e,r){return t.exports=n=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},n(e,r)}t.exports=n},function(t,e,n){"use strict";function r(){}function o(){}var i=n(487);o.resetWarningCache=r,t.exports=function(){function t(t,e,n,r,o,u){if(u!==i){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function e(){return t}t.isRequired=t;var n={array:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:o,resetWarningCache:r};return n.PropTypes=n,n}},function(t,e,n){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(39),u=r(n(40)),a=n(0).PropTypes||n(6),c=o.default.createElement("svg",{focusable:"false",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M12.1 32V17H8v-5.4h4.1V7c0-3.6 2.4-7 8-7 2.2 0 3.9.2 3.9.2l-.1 5.1h-3.6c-2 0-2.3.9-2.3 2.4v3.9h6l-.3 5.4H18v15h-5.9z"})),f=function(t){var e=t.caption,n=t.description,r=t.link,a=t.name,f=t.picture,s=t.standalone,l=t.onClickCallback,p=t.position;return o.default.createElement(u.default,{icon:c,name:"Facebook",standalone:s,onClick:function(){l&&l();var t="https://web.archive.org/web/20200820050938/https://www.facebook.com/dialog/feed?app_id=58567469885&redirect_uri=http%3A%2F%2Fwww.bbc.co.uk%2Fmodules%2Fshare%2Fclose&display=popup";n&&(t+="&description=".concat(encodeURIComponent(n))),e&&(t+="&caption=".concat(encodeURIComponent(e))),f&&(t+="&picture=".concat(encodeURIComponent(f))),a&&(t+="&name=".concat(encodeURIComponent(a))),t+="&link=".concat(encodeURIComponent(r)),(0,i.openWindow)(t)},position:p})};f.propTypes={link:a.string.isRequired,description:a.string,picture:a.string,name:a.string,caption:a.string,standalone:a.bool,onClickCallback:a.func,position:a.number.isRequired},f.defaultProps={standalone:!1};var s=f;e.default=s},function(t,e){function n(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}t.exports=n},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(39),u=r(n(40)),a=n(0).PropTypes||n(6),c=o.default.createElement("svg",{focusable:"false",viewBox:"-3 -3 82 82"},o.default.createElement("path",{d:"M27.5 71c3.3 1 6.7 1.6 10.3 1.6C57 72.6 72.6 57 72.6 37.8 72.6 18.6 57 3 37.8 3 18.6 3 3 18.6 3 37.8c0 14.8 9.3 27.5 22.4 32.5-.3-2.7-.6-7.2 0-10.3l4-17.2s-1-2-1-5.2c0-4.8 3-8.4 6.4-8.4 3 0 4.4 2.2 4.4 5 0 3-2 7.3-3 11.4C35.6 49 38 52 41.5 52c6.2 0 11-6.6 11-16 0-8.3-6-14-14.6-14-9.8 0-15.6 7.3-15.6 15 0 3 1 6 2.6 8 .3.2.3.5.2 1l-1 3.8c0 .6-.4.8-1 .4-4.4-2-7-8.3-7-13.4 0-11 7.8-21 22.8-21 12 0 21.3 8.6 21.3 20 0 12-7.4 21.6-18 21.6-3.4 0-6.7-1.8-7.8-4L32 61.7c-.8 3-3 7-4.5 9.4z"})),f=function(t){var e=t.link,n=t.media,r=t.standalone,a=t.onClickCallback,f=t.position;return o.default.createElement(u.default,{icon:c,name:"Pinterest",standalone:r,onClick:function(){a&&a(),(0,i.openWindow)("".concat("https://web.archive.org/web/20200820050938/https://www.pinterest.com/pin/create/button","?url=").concat(e).concat(n?"&media=".concat(encodeURIComponent(n)):""))},position:f})};f.propTypes={link:a.string.isRequired,media:a.string,standalone:a.bool,onClickCallback:a.func,position:a.number.isRequired},f.defaultProps={standalone:!1};var s=f;e.default=s},function(t,e,n){"use strict";var r=n(109),o=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=o(n(110)),u=o(n(111)),a=o(n(112)),c=o(n(113)),f=o(n(198)),s=o(n(114)),l=r(n(0)),p=o(n(51)),d=o(n(492)),h=o(n(493)),y=n(0).PropTypes||n(6),v=function(t){return[].concat(t)},g=function(t){function e(t){var n;return(0,i.default)(this,e),n=(0,a.default)(this,(0,c.default)(e).call(this,t)),n.closeSharePanel=n.closeSharePanel.bind((0,f.default)(n)),n.handleFocusOut=n.handleFocusOut.bind((0,f.default)(n)),n.state={isOpen:!1},n}return(0,s.default)(e,t),(0,u.default)(e,[{key:"toggleSharePanel",value:function(t){this.setState({isOpen:!this.state.isOpen}),t.stopPropagation(),t.preventDefault()}},{key:"closeSharePanel",value:function(t){this.state.isOpen&&!this.sharePanel.contains(t.target)&&this.setState({isOpen:!1})}},{key:"handleFocusOut",value:function(t){this.closeSharePanel({target:t.relatedTarget||t.target})}},{key:"componentDidMount",value:function(){document.addEventListener("mousedown",this.closeSharePanel),document.addEventListener("touchstart",this.closeSharePanel),document.addEventListener("focusout",this.handleFocusOut)}},{key:"componentWillUnmount",value:function(){document.removeEventListener("mousedown",this.closeSharePanel),document.removeEventListener("touchstart",this.closeSharePanel),document.removeEventListener("focusout",this.handleFocusOut)}},{key:"render",value:function(){var t=this,e=this.props,n=e.className,r=e.children,o=e.ctaText,i=e.headerText,u=e.readMoreText,a=e.shareButtonComponent,c=e.onClickCallback;return l.default.createElement("div",{className:(0,p.default)("ec-share-tools",n),ref:function(e){t.sharePanel=e}},l.default.createElement(a,{className:"ec-share-tools__open-button",active:this.state.isOpen,onButtonClick:function(e){c&&c(),t.toggleSharePanel(e)},ctaText:o}),l.default.createElement("div",{className:(0,p.default)({"ec-share-panel":!0,"ec-share-panel--open":this.state.isOpen})},l.default.createElement("div",{className:"ec-share-panel__header"},l.default.createElement("span",{className:"ec-share-panel__header-text"},i),l.default.createElement(d.default,{onClick:function(e){return t.toggleSharePanel(e)}})),l.default.createElement("div",{className:"ec-share-panel__body"},l.default.createElement("ul",{className:"ec-share-panel__items"},v(r).map(function(t,e){return l.default.createElement("li",{key:e,className:"ec-share-panel__item"},t)}),l.default.createElement("li",{className:"ec-share-panel__item"},l.default.createElement("a",{className:"ec-share-panel__read-more-link",href:"https://web.archive.org/web/20200820050938/http://www.bbc.co.uk/faqs/questions/bbc_online/sharing"},u))))))}}]),e}(l.Component);g.defaultProps={children:[],ctaText:"Share",direction:"up",headerText:"Share this with",isOpen:!1,readMoreText:"Read more about sharing.",shareButtonComponent:h.default},g.propTypes={direction:y.string,children:y.node,className:y.string,ctaText:y.string,headerText:y.string,isOpen:y.bool,readMoreText:y.string,shareButtonComponent:y.func,onClickCallback:y.func};var b=g;e.default=b},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(0).PropTypes||n(6),u=function(t){var e=t.onClick;return o.default.createElement("button",{className:"ec-share-panel__close-button",onClick:e},o.default.createElement("span",{className:"ec-share-panel__close-button-icon"},o.default.createElement("svg",{focusable:"false",viewBox:"0 0 32 32",width:"16",height:"16"},o.default.createElement("path",{d:"M32 3.5L28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32l3.5-3.5L19.5 16"}))))};u.propTypes={onClick:i.func.isRequired};var a=u;e.default=a},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=r(n(51)),u=n(0).PropTypes||n(6),a=function(t){var e=t.children;return o.default.createElement("span",null,o.default.createElement("span",{className:"ec-share-icon__svg"},o.default.createElement("svg",{focusable:"false",xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M6.8 22.2c1.6 0 3-.7 4-1.8l9 4.8c-.1.4-.2.8-.2 1.3 0 3 2.5 5.5 5.5 5.5s5.5-2.4 5.5-5.5-2.5-5.5-5.5-5.5c-1.6 0-3 .7-4 1.8l-9.5-5.2-.1-2.8 9.7-5.5c1 1 2.3 1.5 3.8 1.5 3 0 5.5-2.5 5.5-5.5S28.2 0 25.2 0s-5.5 2.4-5.5 5.5c0 .6.1 1.1.2 1.6l-9.3 5.7c-1-.9-2.3-1.5-3.8-1.5-3 0-5.5 2.4-5.5 5.5.1 2.9 2.5 5.4 5.5 5.4z"}))),o.default.createElement("span",{className:"ec-share-cta-text"},e))};a.propTypes={children:u.node.isRequired};var c=function(t){var e=t.active,n=t.ctaText,r=t.onButtonClick;return o.default.createElement("button",{className:(0,i.default)({"ec-share-button":!0,"ec-share-button__share":!0,"ec-share-button__share--open":e}),onClick:r,"data-bbc-container":"Share Tools","data-bbc-title":"Share Icon"},o.default.createElement(a,null,n))};c.defaultProps={active:!1},c.propTypes={active:u.bool,ctaText:u.string.isRequired,onButtonClick:u.func.isRequired};var f=c;e.default=f},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(39),u=r(n(40)),a=n(0).PropTypes||n(6),c=o.default.createElement("svg",{focusable:"false",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M32 6.1c-1.2.5-2.4.9-3.8 1 1.4-.8 2.4-2.1 2.9-3.6-1.3.8-2.7 1.3-4.2 1.6C25.7 3.8 24 3 22.2 3c-3.6 0-6.6 2.9-6.6 6.6 0 .5.1 1 .2 1.5-5.5-.3-10.3-2.9-13.6-6.9-.6 1-.9 2.1-.9 3.3 0 2.3 1.2 4.3 2.9 5.5-1.1 0-2.1-.3-3-.8v.1c0 3.2 2.3 5.8 5.3 6.4-.6.1-1.1.2-1.7.2-.4 0-.8 0-1.2-.1.8 2.6 3.3 4.5 6.1 4.6-2.2 1.8-5.1 2.8-8.2 2.8-.5 0-1.1 0-1.6-.1 3 1.8 6.5 2.9 10.2 2.9 12.1 0 18.7-10 18.7-18.7v-.9c1.2-.9 2.3-2 3.2-3.3z"})),f=function(t){var e=t.text,n=t.hashTags,r=t.link,a=t.via,f=t.standalone,s=t.onClickCallback,l=t.position;return o.default.createElement(u.default,{icon:c,name:"Twitter",standalone:f,onClick:function(){s&&s();var t="".concat("https://web.archive.org/web/20200820050938/https://twitter.com/intent/tweet","?url=").concat(r);e&&(t+="&text=".concat(encodeURIComponent(e))),n&&(t+="&hashtags=".concat(n.join(","))),a&&(t+="&via=".concat(a)),(0,i.openWindow)(t)},position:l})};f.propTypes={text:a.string,hashTags:a.arrayOf(a.string),link:a.string.isRequired,via:a.string,standalone:a.bool,onClickCallback:a.func,position:a.number.isRequired},f.defaultProps={standalone:!1};var s=f;e.default=s},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(39),u=r(n(40)),a=n(0).PropTypes||n(6),c=o.default.createElement("svg",{focusable:"false",viewBox:"0 0 24 24"},o.default.createElement("path",{d:"M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z"})),f=function(t){var e=t.link,n=t.via,r=t.standalone,a=t.onClickCallback,f=t.position;return o.default.createElement(u.default,{icon:c,name:"WhatsApp",standalone:r,onClick:function(){a&&a();var t="".concat(window.innerWidth<=600?"https://web.archive.org/web/20200820050938/https://api.whatsapp.com/send":"https://web.archive.org/web/20200820050938/https://web.whatsapp.com/send","?text=").concat(encodeURIComponent(e));n&&(t+="&via=".concat(encodeURIComponent("".concat(n)))),(0,i.openWindow)(t)},position:f})};f.propTypes={link:a.string.isRequired,via:a.string,standalone:a.bool,onClickCallback:a.func,position:a.number.isRequired},f.defaultProps={standalone:!1};var s=f;e.default=s},function(t,e,n){"use strict";var r=n(4);Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n(0)),i=n(39),u=r(n(40)),a=n(0).PropTypes||n(6),c=o.default.createElement("svg",{focusable:"false",viewBox:"-3 0 29 29"},o.default.createElement("path",{d:"m23.55,22c0,-0.2 -0.2,-0.3 -0.3,-0.3c-0.3,-0.1 -0.5,0 -1.3,-0.4c-0.6,-0.3 -3.5,-1.7 -7.5,-2.1l2.9,-16.4c0.1,-0.7 0.1,-1.3 -0.1,-1.7c-0.3,-0.6 -1.1,-0.7 -1.9,-0.6c-0.7,0.1 -1.2,0.3 -1.3,0.4s-0.2,0.2 -0.2,0.4c0,0.3 0.3,0.6 0.1,1.7c0,0.3 -1,5.5 -1.8,10c-2.1,1.3 -4.9,1.9 -5.5,1.1c-0.3,-0.4 -0.2,-1.1 0.1,-2.2c0.1,-0.2 1.3,-4.9 1.6,-6.3c0.7,-2.6 0.2,-4.9 -2.5,-5.2c-2.3,-0.2 -4.5,1.1 -5.2,1.9c-0.5,0.5 -0.3,1.1 0.1,1.9c0.3,0.6 0.8,1 0.9,1c0.1,0.1 0.3,0.1 0.4,0c0.8,-0.9 2.2,-1.5 2.7,-1.1c0.4,0.4 0.3,1 0.1,1.7c0,0 -1.5,5.6 -2.1,8c-0.4,1.7 0,3.3 1.3,4.1c0.9,0.6 2.3,0.5 3.4,0.4c2.4,-0.3 3.8,-1.3 4,-1.5c-0.3,1.5 -0.4,2.5 -0.4,2.5s-2.7,0.2 -4.9,1.6c-2.9,1.7 -4.1,5.7 -2.2,7.8c1.9,2.1 5.1,1.3 6.5,0.4c1.3,-0.9 2.9,-2.7 3.7,-6.8c4.4,0.2 5.5,2.5 7.4,2.6c1.2,-0.2 2.1,-1.5 2,-2.9zm-15,4c-0.6,0.4 -1.3,0.4 -1.7,0c-0.4,-0.5 -0.5,-3.1 3.6,-3.8c0,-0.1 -0.7,3 -1.9,3.8z",id:"svg_8"})),f=function(t){var e=t.link,n=t.title,r=t.image,a=t.standalone,f=t.onClickCallback,s=t.position;return o.default.createElement(u.default,{icon:c,name:"Yummly",standalone:a,onClick:function(){f&&f();var t="".concat("https://web.archive.org/web/20200820050938/http://www.yummly.com/urb/verify","?url=").concat(encodeURIComponent(e));n&&(t+="&title=".concat(encodeURIComponent("".concat(n)))),r&&(t+="&image=".concat(encodeURIComponent("".concat(r)))),(0,i.openWindow)(t)},position:s})};f.propTypes={link:a.string.isRequired,title:a.string,image:a.string,standalone:a.bool,onClickCallback:a.func,position:a.number.isRequired},f.defaultProps={standalone:!1};var s=f;e.default=s},function(t,e,n){"use strict";function r(t,e){return u(t)||i(t,e)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function i(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var u,a=t[Symbol.iterator]();!(r=(u=a.next()).done)&&(n.push(u.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==a.return||a.return()}finally{if(o)throw i}}return n}function u(t){if(Array.isArray(t))return t}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),r.forEach(function(e){c(t,e,n[e])})}return t}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function f(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function l(t,e,n){return e&&s(t.prototype,e),n&&s(t,n),t}var p={primary:{universal:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-universal-primary.js",geography:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-geography.js","english-lit":"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-english-lit.js","english-lang":"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-english-lang.js",language:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-language.js",maths:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-maths.js",science:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-primary-science.js"},secondary:{universal:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-universal-secondary.js",geography:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-geography.js","english-lit":"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-english-lit.js","english-lang":"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-english-lang.js",language:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-language.js",maths:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-maths.js",science:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/scripts/sparks/v2/sparks-secondary-science.js"}},d={zt3rkqt:"english-lang",z2f3cdm:"geography",zkxhfg8:"language",z426n39:"language",zc7xpv4:"language",z86pyrd:"language",zrqmhyc:"language",z9mtsbk:"language",zjpfb9q:"language",z9frq6f:"language",z3cr9j6:"language",zqnygk7:"language",z8rdtfr:"english-lit",zhbc87h:"english-lit",zy9d7ty:"english-lit",z6vg9j6:"maths",z37qtfr:"maths",z7nygk7:"science",z2svr82:"science",zmf3cdm:"science",zxyb4wx:"science"},h=function(t){return d[t]?d[t]:null},y=function(){function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};f(this,t);var o={opacity:1,opacityTransition:.5,scale:1};this.config=a({},o,n),this.svg=e.cloneNode(!0);var i=this.svg.getAttribute("viewBox").split(" "),u=r(i,4),c=u[2],s=u[3];this.baseWidth=c,this.baseHeight=s,this.opacity=this.config.opacity,this.opacityTransition=this.config.opacityTransition,this.scale=this.config.scale,this.svg.setAttribute("focusable","false"),this.hide()}return l(t,[{key:"hasPosition",value:function(){return!!this.config.position}},{key:"show",value:function(){this.svg.style.display="block",this.svg.style.opacity=this.opacity}},{key:"fadeIn",value:function(){var t=this;requestAnimationFrame(function(){t.svg.style.display="block",requestAnimationFrame(function(){t.svg.style.opacity=t.opacity})})}},{key:"hide",value:function(){this.svg.style.display="none",this.svg.style.opacity=0}},{key:"opacity",get:function(){return this.config.opacity},set:function(t){this.config.opacity=t,this.svg.style.opacity=t}},{key:"opacityTransition",get:function(){return this.config.opacityTransition},set:function(t){this.config.opacityTransition=t,this.svg.style.transitionDuration="".concat(t,"s")}},{key:"position",get:function(){return this.config.position},set:function(t){var e=r(t,2),n=e[0],o=e[1],i="string"==typeof n?n:"".concat(n.toString(),"px"),u="string"==typeof o?o:"".concat(o.toString(),"px");this.config.position=[i,u],this.svg.style.left="".concat(n,"px"),this.svg.style.top="".concat(o,"px")}},{key:"scale",get:function(){return this.config.scale},set:function(t){this.config.scale=t,this.svg.style.width="".concat(this.baseWidth*t,"px"),this.svg.style.height="".concat(this.baseHeight*t,"px")}}]),t}(),v=function(t){return t%2==0},g=function(t,e){return Math.floor(Math.random()*(e-t+1))+t},b=function(){for(var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=[],n=0;n<t;n++)e.push(n);return e},_=function(){function t(e,n){f(this,t),this.parentElement=e,this.sparkSource=n,this.sparks=[]}return l(t,[{key:"getRandomSpark",value:function(){return this.sparkSource[g(0,this.sparkSource.length-1)]}},{key:"addSparkStylesheet",value:function(){if(!document.getElementById("spark-styles")){var t=document.createElement("style");t.id="spark-styles",t.textContent="\n .bitesize-spark-background {\n z-index: -1;\n overflow: hidden;\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n\n .bitesize-spark {\n display: none;\n opacity: 0;\n position: absolute;\n transition-property: opacity;\n transition-timing-function: ease-in;\n }\n ",document.head.appendChild(t)}}},{key:"initialize",value:function(){var t=document.createElement("div");t.classList.add("bitesize-spark-background");for(var e=0;e<100;e++){var n=this.getRandomSpark(),r=new y(n,{opacityTransition:g(200,500)/1e3,scale:g(25,75)/100});this.sparks[e]=r}this.sparks.forEach(function(e){return t.appendChild(e.svg)});var o=window.getComputedStyle(this.parentElement),i=o.backgroundColor,u=o.backgroundImage,a=o.backgroundPosition,c=o.backgroundSize,f=o.backgroundRepeat;t.style.backgroundColor=i,t.style.backgroundImage=u,t.style.backgroundPosition=a,t.style.backgroundSize=c,t.style.backgroundRepeat=f,this.addSparkStylesheet(),this.parentElement.appendChild(t),this.parentElement.style.background="none"}},{key:"distribute",value:function(){var t=this;if(window.matchMedia("(max-width: 600px)").matches)return void this.hideAllSparks();var e={horizontalSlots:Math.floor(this.parentElement.clientWidth/128),verticalSlots:Math.floor(this.parentElement.clientHeight/64)},n=b(e.horizontalSlots),r=b(e.verticalSlots);n.map(function(t){return r}).map(function(t,e){return t.filter(function(t){return v(t)===v(e)})}).map(function(t,e){return t.map(function(t){return{xCoordinate:e,yCoordinate:t}})}).reduce(function(t,e){return t.concat(e)},[]).forEach(function(e,n){var r=e.xCoordinate,o=e.yCoordinate,i=t.sparks[n];if(!i.hasPosition()){var u=128*r+g(-32,32)+64+16,a=64*o+g(-32,32)+32;i.position=[u,a]}i.fadeIn()})}},{key:"hideAllSparks",value:function(){this.sparks.forEach(function(t){return t.hide()})}}]),t}(),m=function(t){return"secondary"===t||"post-16"===t?"secondary":"primary"},x=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"primary",e=arguments.length>1?arguments[1]:void 0,n=e?"".concat(t,"-").concat(e):t,r="#bitesize-sparks-".concat(n," > svg");return document.querySelectorAll(r)},w=function(t){t.initialize(),t.distribute(),window.addEventListener("resize",function(){t.distribute()})};window.mrSparkle=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.zid?h(t.zid):null,n=document.querySelector(t.selector);if(null!==n){var r=m(t.phase),o=x(r,e);if(o.length){var i=new _(n,o);w(i)}else{var u=p[r][e||"universal"];window.require([u],function(){o=x(r,e);var t=new _(n,o);w(t)})}}}},function(t,e,n){"use strict";var r={"en-GB":{label:"All levels",description:"Learning resources for adults, children, parents and teachers organised by level, subject and topic."},"cy-GB":{label:"Pob lefel",description:"Adnoddau Dysgu ar gyfer oedolion, plant, rhieni ac athrawon yn ol lefel, pwnc ac is-bynciau."},"ga-GB":{label:"Gach leibhéil",description:"Acmhainní foghlama do dhaoine fásta, páistí, tuismitheoirí agus múinteoirí eagraithe de réir leibhéil, ábhair agus topaice."},"gd-GB":{label:"Na h-ìrean air fad",description:"Goireasan foghlaim dha inbhich, clann, pàrantan is tidsearan le fiosrachadh mu ìre, cuspair agus fo-chuspair."}};t.exports=function(t){var e=r[t]||r["en-GB"];return{label:e.label,fosZid:"",description:e.description}}},function(t,e,n){function r(t,e,n){t=a(t),e=i(e);var r=t.length;n=void 0===n?r:o(u(n),0,r);var c=n;return(n-=e.length)>=0&&t.slice(n,c)==e}var o=n(500),i=n(134),u=n(69),a=n(133);t.exports=r},function(t,e){function n(t,e,n){return t===t&&(void 0!==n&&(t=t<=n?t:n),void 0!==e&&(t=t>=e?t:e)),t}t.exports=n}]); //# sourceMappingURL=bundle.js.map; });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-bitesize-header-view","pageType":"primary-index","globalNav":"true","subdirectory":"bitesize","branding":"phase2","language":"en-GB","version":"8.73.0","_mrrVersion":"2.0.18"},'u2949953754942365'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u2949953754942365 */</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-bitesize-messaging-view@1.42.0"]={"@bbc/education-button":"0.4.0","@bbc/education-gel-icons":"0.10.0","@bbc/education-link-button":"0.1.3","morph-container":"4.0.0",react:"0.14.7","react-dom":"0.14.7"},function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={exports:{},id:r,loaded:!1};return e[r].call(a.exports,a,a.exports,t),a.loaded=!0,a.exports}var n={};t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){Morph.modules["bbc-morph-bitesize-messaging-view@1.42.0"]=n(1)},function(e,t,n){e.exports=n(2)},function(e,t,n){e.exports=function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=4)}([function(e,t){e.exports=n(3)},function(e,t){e.exports=n(4)},function(e,t){e.exports=n(6)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=["default","primary","primaryIndex","secondaryIndex","secondary","planning","ks1level","ks2level","ks3level"],a={z3g4d2p:"ks1level",zbr9wmn:"ks2level",z4kw2hv:"ks3level"},o={getAllowedBanner:function(e,t){var n=a[t]?a[t]:e;return r.indexOf(n)>-1?n:"default"}};t.default=o,e.exports=t.default},function(e,t,n){"use strict";var r=n(0);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(5)),o=r(n(6)),i=n(3),s=a.default.create(o.default,{data:function(e){var t=e.bannerType,n=e.zid;return{messageData:{uri:{service:"bitesize-files",path:"/messaging/bannerType/".concat((0,i.getAllowedBanner)(t,n),".json")},updates:!1,requireSuccess:!1}}}});t.default=s,e.exports=t.default},function(e,t){e.exports=n(7)},function(e,t,n){"use strict";var r=n(0),a=n(1);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(2)),i=r(n(7)),s=r(n(17)),l=n(3),u=function(e){var t=e.language,n=e.bannerType,r=e.messageData,a=e.zid,u=r.meta.responseCode,c=r.body,f=(0,l.getAllowedBanner)(n,a),d=200===u?function(e){return"string"==typeof e?JSON.parse(e):Object(e)}(c):s.default[f],p=d[t];p||(p=s.default[f][t]);var y={url:p.linkUrl,text:p.linkText,ariaLabel:p.linkAriaLabel};return o.default.createElement("div",{className:"messaging-banner-container messaging-banner-container-".concat(f)},o.default.createElement(i.default,{title:p.title,subtitle:p.subtitle,link:y,bannerType:f}))};u.propTypes={language:o.PropTypes.string,bannerType:o.PropTypes.string,zid:o.PropTypes.string,messageData:o.PropTypes.shape({meta:o.PropTypes.shape({responseCode:o.PropTypes.number}).isRequired,body:o.PropTypes.oneOfType([o.PropTypes.string,o.PropTypes.shape({})]).isRequired}).isRequired},u.defaultProps={language:"en-GB",bannerType:"default",zid:null};var c=u;t.default=c,e.exports=t.default},function(e,t,n){"use strict";function r(e){var t=a();return function(){var n,r=(0,d.default)(e);if(t){var a=(0,d.default)(this).constructor;n=Reflect.construct(r,arguments,a)}else n=r.apply(this,arguments);return(0,f.default)(this,n)}}function a(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}var o=n(1),i=n(0);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=i(n(8)),l=i(n(9)),u=i(n(10)),c=i(n(11)),f=i(n(12)),d=i(n(13)),p=o(n(2)),y=n(14),h=i(n(15)),b=i(n(16)),m=function(e){function t(e){var r;return(0,s.default)(this,t),r=n.call(this,e),r.state={showBanner:!0},r.closeBanner=r.closeBanner.bind((0,u.default)(r)),r}(0,c.default)(t,e);var n=r(t);return(0,l.default)(t,[{key:"getSubtitle",value:function(){var e=this.props,t=e.subtitle;return"planning"===e.bannerType?"".concat(t," "):t}},{key:"getLinkButton",value:function(){var e=this.props,t=e.link;return"planning"!==e.bannerType?p.default.createElement(h.default,{onClick:function(){},href:t.url,disabled:!1,dataATIProps:{"data-bbc-container":"global-banner"},theme:"bitesize-banner",ariaLabel:t.ariaLabel||t.text},p.default.createElement("span",{className:"messaging-banner-content__link-text"},t.text)):p.default.createElement("a",{href:t.url,className:"messaging-banner-content__link","data-bbc-container":"global-banner"},t.text)}},{key:"closeBanner",value:function(){this.setState(function(){return{showBanner:!1}})}},{key:"render",value:function(){var e=this.props,t=e.link,n=e.title,r=e.bannerType,a=this.state.showBanner;return p.default.createElement("div",null,!0===a?p.default.createElement("div",{className:"messaging-banner__container messaging-banner__container-".concat(r)},p.default.createElement("div",{className:"messaging-banner messaging-banner-".concat(r)},p.default.createElement("div",{className:"messaging-banner-close"},p.default.createElement(b.default,{ariaLabel:"Close",buttonClass:"messaging-banner-close__button",dataAtiProps:{"data-bbc-container":"global-banner","data-bbc-title":"close"},onClick:this.closeBanner,theme:"bitesize-banner"},p.default.createElement("div",{className:"messaging-banner-close__button-icon"},p.default.createElement(y.GelCloseIcon,null)))),p.default.createElement("div",{className:"messaging-banner-image-".concat(r)}),p.default.createElement("div",{className:"messaging-banner-content"},p.default.createElement("div",{className:"messaging-banner-content__title"},p.default.createElement("p",{className:"messaging-banner-content__title-text"},n)),p.default.createElement("div",{className:"messaging-banner-content__subtitle"},p.default.createElement("p",{className:"messaging-banner-content__subtitle-text"},this.getSubtitle())),t?p.default.createElement("div",{className:"messaging-banner-content__link-container"},this.getLinkButton()):null))):null)}}]),t}(p.default.Component);m.propTypes={link:p.PropTypes.shape({url:p.PropTypes.string,text:p.PropTypes.string,ariaLabel:p.PropTypes.string}),title:p.PropTypes.string.isRequired,subtitle:p.PropTypes.string.isRequired,bannerType:p.PropTypes.string},m.defaultProps={link:null,bannerType:"default"};var g=m;t.default=g,e.exports=t.default},function(e,t){e.exports=n(8)},function(e,t){e.exports=n(9)},function(e,t){e.exports=n(10)},function(e,t){e.exports=n(11)},function(e,t){e.exports=n(13)},function(e,t){e.exports=n(14)},function(e,t){e.exports=n(15)},function(e,t){e.exports=n(42)},function(e,t){e.exports=n(45)},function(e,t,n){"use strict";var r=n(0),a=r(n(18)),o=r(n(19)),i=r(n(20)),s=r(n(21)),l=r(n(22)),u=r(n(23)),c=r(n(24)),f=r(n(25));e.exports={planning:l.default,primary:o.default,primaryIndex:i.default,secondaryIndex:s.default,secondary:a.default,default:a.default,ks1level:u.default,ks2level:c.default,ks3level:f.default}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Daily Lessons are available all summer!",subtitle:"Our lessons have ended for the summer, but you can still use them throughout the holidays. We'll be back in the new school year with new lessons.",linkText:"Start a lesson",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"ga-GB":{title:"Tá Ceachtanna Laethúla ar fáil an samhradh ar fad!",subtitle:"Tá ár gceachtanna thart don samhradh, ach is féidir go fóill iad a úsáid i rith na laethanta saoire. Beimid ar ais sa scoilbhliain úr le ceachtanna úra.",linkText:"Tosaigh ceacht",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"cy-GB":{title:"Gwersi Dyddiol ar gael drwy’r haf!",subtitle:"Ni fyddwn yn ychwanegu unrhyw wersi newydd dros yr haf ond mae llwyth o wersi yma y galli di eu defnyddio. Byddwn nol yn y tymor newydd gyda gwersi newydd.",linkText:"Dewis gwers",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"gd-GB":{title:"Tha Leasanan Làitheil rim faotainn tron t-samhradh!",subtitle:"Tha leasanan air sguir an-dràsta, ach faodaidh tu fhathast an cleachdadh tro na saor-làithean. Bidh leasanan ùra ann as t-foghar.",linkText:"Tòisich leasan",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Daily Lessons are available all summer!",subtitle:"Our lessons have ended for the summer, but you can still use them throughout the holidays. We'll be back in the new school year with new lessons.",linkText:"Start a lesson",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"ga-GB":{title:"Tá Ceachtanna Laethúla ar fáil an samhradh ar fad!",subtitle:"Tá ár gceachtanna thart don samhradh, ach is féidir go fóill iad a úsáid i rith na laethanta saoire. Beimid ar ais sa scoilbhliain úr le ceachtanna úra.",linkText:"Tosaigh ceacht",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"cy-GB":{title:"Gwersi Dyddiol ar gael drwy’r haf!",subtitle:"Ni fyddwn yn ychwanegu unrhyw wersi newydd dros yr haf ond mae llwyth o wersi yma y galli di eu defnyddio. Byddwn nol yn y tymor newydd gyda gwersi newydd.",linkText:"Dewis gwers",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"gd-GB":{title:"Tha Leasanan Làitheil rim faotainn tron t-samhradh!",subtitle:"Tha leasanan air sguir an-dràsta, ach faodaidh tu fhathast an cleachdadh tro na saor-làithean. Bidh leasanan ùra ann as t-foghar.",linkText:"Tòisich leasan",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"ga-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"cy-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"gd-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Daily Lessons are available all summer!",subtitle:"Our lessons have ended for the summer, but you can still use them throughout the holidays. We'll be back in the new school year with new lessons.",linkText:"Start a lesson",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"ga-GB":{title:"Tá Ceachtanna Laethúla ar fáil an samhradh ar fad!",subtitle:"Tá ár gceachtanna thart don samhradh, ach is féidir go fóill iad a úsáid i rith na laethanta saoire. Beimid ar ais sa scoilbhliain úr le ceachtanna úra.",linkText:"Tosaigh ceacht",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"cy-GB":{title:"Gwersi Dyddiol ar gael drwy’r haf!",subtitle:"Ni fyddwn yn ychwanegu unrhyw wersi newydd dros yr haf ond mae llwyth o wersi yma y galli di eu defnyddio. Byddwn nol yn y tymor newydd gyda gwersi newydd.",linkText:"Dewis gwers",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"},"gd-GB":{title:"Tha Leasanan Làitheil rim faotainn tron t-samhradh!",subtitle:"Tha leasanan air sguir an-dràsta, ach faodaidh tu fhathast an cleachdadh tro na saor-làithean. Bidh leasanan ùra ann as t-foghar.",linkText:"Tòisich leasan",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/dailylessons"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"",subtitle:"Planning ahead? Take a look at our upcoming daily lessons on",linkText:"BBC Teach",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/teach/bitesize-daily-lessons-upcoming-lessons-preview-for-teachers/zkfr92p"},"gd-GB":{title:"",subtitle:"A' planadh air thoiseach? Seall ri leasanan làitheil a tha ri thighinn air",linkText:"BBC Teach",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/teach/bitesize-daily-lessons-upcoming-lessons-preview-for-teachers/zkfr92p"},"ga-GB":{title:"",subtitle:"Ag pleanáil chun cinn? Caith súil ar na ceachtanna laethúla a bheidh ar",linkText:"BBC Teach",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/teach/bitesize-daily-lessons-upcoming-lessons-preview-for-teachers/zkfr92p"},"cy-GB":{title:"",subtitle:"Planning ahead? Take a look at our upcoming daily lessons on",linkText:"BBC Teach",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/teach/bitesize-daily-lessons-upcoming-lessons-preview-for-teachers/zkfr92p"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"ga-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"cy-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"},"gd-GB":{title:"Starting primary school?",subtitle:"We’ve got games, activities and tips to help you feel ready for your first term.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting primary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/collections/starting-primary-school/1"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"ga-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"cy-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"gd-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"}}},function(e,t,n){"use strict";e.exports={"en-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"ga-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"cy-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"},"gd-GB":{title:"Starting secondary school?",subtitle:"It can be fun, exciting and scary all at the same time. We talked to students and teachers to get the best tips for your new adventure.",linkText:"Let’s go!",linkAriaLabel:"Let's go to starting secondary!",linkUrl:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zh4wy9q/starting-secondary-school/1"}}}])},function(e,t){function n(e){return e&&e.__esModule?e:{default:e}}e.exports=n},function(e,t,n){function r(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return r=function(){return e},e}function a(e){if(e&&e.__esModule)return e;if(null===e||"object"!==o(e)&&"function"!=typeof e)return{default:e};var t=r();if(t&&t.has(e))return t.get(e);var n={},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var s=a?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(n,i,s):n[i]=e[i]}return n.default=e,t&&t.set(e,n),n}var o=n(5);e.exports=a},function(e,t){function n(t){"@babel/helpers - typeof";return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t){e.exports=React},function(e,t){e.exports={create:function(e,t){return Morph.createContainerWithCaller("bbc-morph-bitesize-messaging-view@1.42.0",e,t)}}},function(e,t){function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}e.exports=n},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function r(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}e.exports=r},function(e,t){function n(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}e.exports=n},function(e,t,n){function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}var a=n(12);e.exports=r},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t,n){function r(e,t){return!t||"object"!==a(t)&&"function"!=typeof t?o(e):t}var a=n(5),o=n(10);e.exports=r},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t,n){"use strict";var r=n(3),a=r(n(16)),o=r(n(27)),i=r(n(28)),s=r(n(29)),l=r(n(30)),u=r(n(31)),c=r(n(32)),f=r(n(33)),d=r(n(34)),p=r(n(35)),y=r(n(36)),h=r(n(37)),b=r(n(38)),m=r(n(39)),g=r(n(40)),v=r(n(41));e.exports={GelAddIcon:a.default,GelChevronRightIcon:o.default,GelCloseIcon:i.default,GelDownIcon:s.default,GelIconDuration:l.default,GelListenIcon:u.default,GelNextIcon:c.default,GelNoIcon:f.default,GelPlayIcon:d.default,GelPreviousIcon:p.default,GelRecentActivityIcon:y.default,GelStopIcon:h.default,GelSearchIcon:b.default,GelYesIcon:m.default,GelLoadingIcon:g.default,GelAlertIcon:v.default}},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=n(6).PropTypes||n(17),i=function(e){var t=e.className;return a.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},a.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};i.propTypes={className:o.string},i.defaultProps={className:""};var s=i;t.default=s},function(e,t,n){(function(t){if("production"!==t.env.NODE_ENV){var r=n(19);e.exports=n(22)(r.isElement,!0)}else e.exports=n(26)()}).call(t,n(18))},function(e,t){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function a(e){if(c===setTimeout)return setTimeout(e,0);if((c===n||!c)&&setTimeout)return c=setTimeout,setTimeout(e,0);try{return c(e,0)}catch(t){try{return c.call(null,e,0)}catch(t){return c.call(this,e,0)}}}function o(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function i(){h&&p&&(h=!1,p.length?y=p.concat(y):b=-1,y.length&&s())}function s(){if(!h){var e=a(i);h=!0;for(var t=y.length;t;){for(p=y,y=[];++b<t;)p&&p[b].run();b=-1,t=y.length}p=null,h=!1,o(e)}}function l(e,t){this.fun=e,this.array=t}function u(){}var c,f,d=e.exports={};!function(){try{c="function"==typeof setTimeout?setTimeout:n}catch(e){c=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(e){f=r}}();var p,y=[],h=!1,b=-1;d.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];y.push(new l(e,t)),1!==y.length||h||a(s)},l.prototype.run=function(){this.fun.apply(null,this.array)},d.title="browser",d.browser=!0,d.env={},d.argv=[],d.version="",d.versions={},d.on=u,d.addListener=u,d.once=u,d.off=u,d.removeListener=u,d.removeAllListeners=u,d.emit=u,d.prependListener=u,d.prependOnceListener=u,d.listeners=function(e){return[]},d.binding=function(e){throw new Error("process.binding is not supported")},d.cwd=function(){return"/"},d.chdir=function(e){throw new Error("process.chdir is not supported")},d.umask=function(){return 0}},function(e,t,n){(function(t){"use strict";"production"===t.env.NODE_ENV?e.exports=n(20):e.exports=n(21)}).call(t,n(18))},function(e,t){"use strict";function n(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case d:case p:case s:case u:case l:case h:return e;default:switch(e=e&&e.$$typeof){case f:case y:case g:case m:case c:return e;default:return t}}case i:return t}}}function r(e){return n(e)===p}var a="function"==typeof Symbol&&Symbol.for,o=a?Symbol.for("react.element"):60103,i=a?Symbol.for("react.portal"):60106,s=a?Symbol.for("react.fragment"):60107,l=a?Symbol.for("react.strict_mode"):60108,u=a?Symbol.for("react.profiler"):60114,c=a?Symbol.for("react.provider"):60109,f=a?Symbol.for("react.context"):60110,d=a?Symbol.for("react.async_mode"):60111,p=a?Symbol.for("react.concurrent_mode"):60111,y=a?Symbol.for("react.forward_ref"):60112,h=a?Symbol.for("react.suspense"):60113,b=a?Symbol.for("react.suspense_list"):60120,m=a?Symbol.for("react.memo"):60115,g=a?Symbol.for("react.lazy"):60116,v=a?Symbol.for("react.block"):60121,w=a?Symbol.for("react.fundamental"):60117,x=a?Symbol.for("react.responder"):60118,k=a?Symbol.for("react.scope"):60119;t.AsyncMode=d,t.ConcurrentMode=p,t.ContextConsumer=f,t.ContextProvider=c,t.Element=o,t.ForwardRef=y,t.Fragment=s,t.Lazy=g,t.Memo=m,t.Portal=i,t.Profiler=u,t.StrictMode=l,t.Suspense=h,t.isAsyncMode=function(e){return r(e)||n(e)===d},t.isConcurrentMode=r,t.isContextConsumer=function(e){return n(e)===f},t.isContextProvider=function(e){return n(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return n(e)===y},t.isFragment=function(e){return n(e)===s},t.isLazy=function(e){return n(e)===g},t.isMemo=function(e){return n(e)===m},t.isPortal=function(e){return n(e)===i},t.isProfiler=function(e){return n(e)===u},t.isStrictMode=function(e){return n(e)===l},t.isSuspense=function(e){return n(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===s||e===p||e===u||e===l||e===h||e===b||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===m||e.$$typeof===c||e.$$typeof===f||e.$$typeof===y||e.$$typeof===w||e.$$typeof===x||e.$$typeof===k||e.$$typeof===v)},t.typeOf=n},function(e,t,n){(function(e){"use strict";"production"!==e.env.NODE_ENV&&function(){function e(e){return"string"==typeof e||"function"==typeof e||e===v||e===_||e===x||e===w||e===O||e===S||"object"==typeof e&&null!==e&&(e.$$typeof===j||e.$$typeof===L||e.$$typeof===k||e.$$typeof===T||e.$$typeof===P||e.$$typeof===N||e.$$typeof===z||e.$$typeof===M||e.$$typeof===B)}function n(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case m:var n=e.type;switch(n){case E:case _:case v:case x:case w:case O:return n;default:var r=n&&n.$$typeof;switch(r){case T:case P:case j:case L:case k:return r;default:return t}}case g:return t}}}function r(e){return Z||(Z=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),a(e)||n(e)===E}function a(e){return n(e)===_}function o(e){return n(e)===T}function i(e){return n(e)===k}function s(e){return"object"==typeof e&&null!==e&&e.$$typeof===m}function l(e){return n(e)===P}function u(e){return n(e)===v}function c(e){return n(e)===j}function f(e){return n(e)===L}function d(e){return n(e)===g}function p(e){return n(e)===x}function y(e){return n(e)===w}function h(e){return n(e)===O}var b="function"==typeof Symbol&&Symbol.for,m=b?Symbol.for("react.element"):60103,g=b?Symbol.for("react.portal"):60106,v=b?Symbol.for("react.fragment"):60107,w=b?Symbol.for("react.strict_mode"):60108,x=b?Symbol.for("react.profiler"):60114,k=b?Symbol.for("react.provider"):60109,T=b?Symbol.for("react.context"):60110,E=b?Symbol.for("react.async_mode"):60111,_=b?Symbol.for("react.concurrent_mode"):60111,P=b?Symbol.for("react.forward_ref"):60112,O=b?Symbol.for("react.suspense"):60113,S=b?Symbol.for("react.suspense_list"):60120,L=b?Symbol.for("react.memo"):60115,j=b?Symbol.for("react.lazy"):60116,B=b?Symbol.for("react.block"):60121,N=b?Symbol.for("react.fundamental"):60117,z=b?Symbol.for("react.responder"):60118,M=b?Symbol.for("react.scope"):60119,C=E,A=_,I=T,G=k,$=m,R=P,D=v,U=j,W=L,q=g,V=x,F=w,Y=O,Z=!1;t.AsyncMode=C,t.ConcurrentMode=A,t.ContextConsumer=I,t.ContextProvider=G,t.Element=$,t.ForwardRef=R,t.Fragment=D,t.Lazy=U,t.Memo=W,t.Portal=q,t.Profiler=V,t.StrictMode=F,t.Suspense=Y,t.isAsyncMode=r,t.isConcurrentMode=a,t.isContextConsumer=o,t.isContextProvider=i,t.isElement=s,t.isForwardRef=l,t.isFragment=u,t.isLazy=c,t.isMemo=f,t.isPortal=d,t.isProfiler=p,t.isStrictMode=y,t.isSuspense=h,t.isValidElementType=e,t.typeOf=n}()}).call(t,n(18))},function(e,t,n){(function(t){"use strict";function r(){return null}var a=n(19),o=n(23),i=n(24),s=n(25),l=Function.call.bind(Object.prototype.hasOwnProperty),u=function(){};"production"!==t.env.NODE_ENV&&(u=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}),e.exports=function(e,n){function c(e){var t=e&&(S&&e[S]||e[L]);if("function"==typeof t)return t}function f(e,t){return e===t?0!==e||1/e==1/t:e!==e&&t!==t}function d(e){this.message=e,this.stack=""}function p(e){function r(r,s,l,c,f,p,y){if(c=c||j,p=p||l,y!==i){if(n){var h=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw h.name="Invariant Violation",h}if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var b=c+":"+l;!a[b]&&o<3&&(u("You are manually calling a React.PropTypes validation function for the `"+p+"` prop on `"+c+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),a[b]=!0,o++)}}return null==s[l]?r?new d(null===s[l]?"The "+f+" `"+p+"` is marked as required in `"+c+"`, but its value is `null`.":"The "+f+" `"+p+"` is marked as required in `"+c+"`, but its value is `undefined`."):null:e(s,l,c,f,p)}if("production"!==t.env.NODE_ENV)var a={},o=0;var s=r.bind(null,!1);return s.isRequired=r.bind(null,!0),s}function y(e){function t(t,n,r,a,o,i){var s=t[n];if(E(s)!==e)return new d("Invalid "+a+" `"+o+"` of type `"+_(s)+"` supplied to `"+r+"`, expected `"+e+"`.");return null}return p(t)}function h(e){function t(t,n,r,a,o){if("function"!=typeof e)return new d("Property `"+o+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var s=t[n];if(!Array.isArray(s)){return new d("Invalid "+a+" `"+o+"` of type `"+E(s)+"` supplied to `"+r+"`, expected an array.")}for(var l=0;l<s.length;l++){var u=e(s,l,r,a,o+"["+l+"]",i);if(u instanceof Error)return u}return null}return p(t)}function b(e){function t(t,n,r,a,o){if(!(t[n]instanceof e)){var i=e.name||j;return new d("Invalid "+a+" `"+o+"` of type `"+O(t[n])+"` supplied to `"+r+"`, expected instance of `"+i+"`.")}return null}return p(t)}function m(e){function n(t,n,r,a,o){for(var i=t[n],s=0;s<e.length;s++)if(f(i,e[s]))return null;var l=JSON.stringify(e,function(e,t){return"symbol"===_(t)?String(t):t});return new d("Invalid "+a+" `"+o+"` of value `"+String(i)+"` supplied to `"+r+"`, expected one of "+l+".")}return Array.isArray(e)?p(n):("production"!==t.env.NODE_ENV&&u(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),r)}function g(e){function t(t,n,r,a,o){if("function"!=typeof e)return new d("Property `"+o+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var s=t[n],u=E(s);if("object"!==u)return new d("Invalid "+a+" `"+o+"` of type `"+u+"` supplied to `"+r+"`, expected an object.");for(var c in s)if(l(s,c)){var f=e(s,c,r,a,o+"."+c,i);if(f instanceof Error)return f}return null}return p(t)}function v(e){function n(t,n,r,a,o){for(var s=0;s<e.length;s++){if(null==(0,e[s])(t,n,r,a,o,i))return null}return new d("Invalid "+a+" `"+o+"` supplied to `"+r+"`.")}if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&u("Invalid argument supplied to oneOfType, expected an instance of array."),r;for(var a=0;a<e.length;a++){var o=e[a];if("function"!=typeof o)return u("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+P(o)+" at index "+a+"."),r}return p(n)}function w(e){function t(t,n,r,a,o){var s=t[n],l=E(s);if("object"!==l)return new d("Invalid "+a+" `"+o+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");for(var u in e){var c=e[u];if(c){var f=c(s,u,r,a,o+"."+u,i);if(f)return f}}return null}return p(t)}function x(e){function t(t,n,r,a,s){var l=t[n],u=E(l);if("object"!==u)return new d("Invalid "+a+" `"+s+"` of type `"+u+"` supplied to `"+r+"`, expected `object`.");var c=o({},t[n],e);for(var f in c){var p=e[f];if(!p)return new d("Invalid "+a+" `"+s+"` key `"+f+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var y=p(l,f,r,a,s+"."+f,i);if(y)return y}return null}return p(t)}function k(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(k);if(null===t||e(t))return!0;var n=c(t);if(!n)return!1;var r,a=n.call(t);if(n!==t.entries){for(;!(r=a.next()).done;)if(!k(r.value))return!1}else for(;!(r=a.next()).done;){var o=r.value;if(o&&!k(o[1]))return!1}return!0;default:return!1}}function T(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}function E(e){var t=typeof e ;return Array.isArray(e)?"array":e instanceof RegExp?"object":T(t,e)?"symbol":t}function _(e){if(void 0===e||null===e)return""+e;var t=E(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function P(e){var t=_(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}function O(e){return e.constructor&&e.constructor.name?e.constructor.name:j}var S="function"==typeof Symbol&&Symbol.iterator,L="@@iterator",j="<<anonymous>>",B={array:y("array"),bool:y("boolean"),func:y("function"),number:y("number"),object:y("object"),string:y("string"),symbol:y("symbol"),any:function(){return p(r)}(),arrayOf:h,element:function(){function t(t,n,r,a,o){var i=t[n];if(!e(i)){return new d("Invalid "+a+" `"+o+"` of type `"+E(i)+"` supplied to `"+r+"`, expected a single ReactElement.")}return null}return p(t)}(),elementType:function(){function e(e,t,n,r,o){var i=e[t];if(!a.isValidElementType(i)){return new d("Invalid "+r+" `"+o+"` of type `"+E(i)+"` supplied to `"+n+"`, expected a single ReactElement type.")}return null}return p(e)}(),instanceOf:b,node:function(){function e(e,t,n,r,a){return k(e[t])?null:new d("Invalid "+r+" `"+a+"` supplied to `"+n+"`, expected a ReactNode.")}return p(e)}(),objectOf:g,oneOf:m,oneOfType:v,shape:w,exact:x};return d.prototype=Error.prototype,B.checkPropTypes=s,B.resetWarningCache=s.resetWarningCache,B.PropTypes=B,B}}).call(t,n(18))},function(e,t){"use strict";function n(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}var r=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var i,s,l=n(e),u=1;u<arguments.length;u++){i=Object(arguments[u]);for(var c in i)a.call(i,c)&&(l[c]=i[c]);if(r){s=r(i);for(var f=0;f<s.length;f++)o.call(i,s[f])&&(l[s[f]]=i[s[f]])}}return l}},function(e,t){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){(function(t){"use strict";function r(e,n,r,l,u){if("production"!==t.env.NODE_ENV)for(var c in e)if(s(e,c)){var f;try{if("function"!=typeof e[c]){var d=Error((l||"React class")+": "+r+" type `"+c+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[c]+"`.");throw d.name="Invariant Violation",d}f=e[c](n,c,l,r,null,o)}catch(e){f=e}if(!f||f instanceof Error||a((l||"React class")+": type specification of "+r+" `"+c+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof f+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),f instanceof Error&&!(f.message in i)){i[f.message]=!0;var p=u?u():"";a("Failed "+r+" type: "+f.message+(null!=p?p:""))}}}var a=function(){};if("production"!==t.env.NODE_ENV){var o=n(24),i={},s=Function.call.bind(Object.prototype.hasOwnProperty);a=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}}r.resetWarningCache=function(){"production"!==t.env.NODE_ENV&&(i={})},e.exports=r}).call(t,n(18))},function(e,t,n){"use strict";function r(){}function a(){}var o=n(24);a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,i){if(i!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";var r=n(4),a=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(8)),i=a(n(9)),s=a(n(13)),l=a(n(14)),u=a(n(11)),c=r(n(6)),f=n(6).PropTypes||n(17),d=function(e){function t(){return(0,o.default)(this,t),(0,s.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,u.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this,t=this.props.className;return c.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},c.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))}}]),t}(c.Component);d.propTypes={className:f.string},d.defaultProps={className:""};var p=d;t.default=p},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(8)),o=r(n(9)),i=r(n(13)),s=r(n(14)),l=r(n(11)),u=r(n(6)),c=function(e){function t(){return(0,a.default)(this,t),(0,i.default)(this,(0,s.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,o.default)(t,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(t){e.node=t}},u.default.createElement("polygon",{points:"32,3.5 28.5,0 16,12.5 3.5,0 0,3.5 12.5,16 0,28.5 3.5,32 16,19.5 28.5,32 32,28.5 19.5,16"}))}}]),t}(u.default.Component),f=c;t.default=f},function(e,t,n){"use strict";var r=n(4),a=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(8)),i=a(n(9)),s=a(n(13)),l=a(n(14)),u=a(n(11)),c=r(n(6)),f=function(e){function t(){return(0,o.default)(this,t),(0,s.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,u.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return c.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},c.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),c.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),c.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(c.Component),d=f;t.default=d},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=function(){return a.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),a.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))},i=o;t.default=i},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=n(6).PropTypes||n(17),i=function(e){var t=e.className;return a.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("title",null,"listen"),a.default.createElement("path",{d:"M21.4,4.8,20,6.2a14,14,0,0,1,0,19.6l1.4,1.4a16,16,0,0,0,0-22.4Z"}),a.default.createElement("path",{d:"M25.6.5,24.2,2a19.9,19.9,0,0,1,0,28.1l1.4,1.4A22,22,0,0,0,25.6.5Z"}),a.default.createElement("polygon",{points:"16 4 10 10 0 10 0 22 10 22 16 28 16 4"}))};i.propTypes={className:o.string},i.defaultProps={className:""};var s=i;t.default=s},function(e,t,n){"use strict";var r=n(4),a=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(8)),i=a(n(9)),s=a(n(13)),l=a(n(14)),u=a(n(11)),c=r(n(6)),f=function(e){function t(){return(0,o.default)(this,t),(0,s.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,u.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return c.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},c.default.createElement("title",{id:"next-chevron-title"},"Next"),c.default.createElement("desc",null,"Move to the next page"),c.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(c.Component),d=f;t.default=d},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=function(){return a.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("title",null,"no"),a.default.createElement("polygon",{points:"32 3.5 28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32 32 28.5 19.5 16 32 3.5"}))},i=o;t.default=i},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=n(6).PropTypes||n(17),i=function(e){var t=e.className;return a.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("title",null,"play"),a.default.createElement("polygon",{points:"3 32 29 16 3 0 3 32"}))};i.propTypes={className:o.string},i.defaultProps={className:""};var s=i;t.default=s},function(e,t,n){"use strict";var r=n(4),a=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(8)),i=a(n(9)),s=a(n(13)),l=a(n(14)),u=a(n(11)),c=r(n(6)),f=function(e){function t(){return(0,o.default)(this,t),(0,s.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,u.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return c.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},c.default.createElement("title",{id:"previous-chevron-title"},"Previous"),c.default.createElement("desc",null,"Move to the previous page"),c.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(c.Component),d=f;t.default=d},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=n(6).PropTypes||n(17),i=function(e){var t=e.className;return a.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),a.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),a.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),a.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),a.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))};i.propTypes={className:o.string},i.defaultProps={className:""};var s=i;t.default=s},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=n(6).PropTypes||n(17),i=function(e){var t=e.className,n=e.height,r=e.width;return a.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:r,height:n,viewBox:"0 0 ".concat(r," ").concat(n)},a.default.createElement("title",null,"stop"),a.default.createElement("rect",{width:r,height:n}))};i.propTypes={className:o.string,height:o.number,width:o.number},i.defaultProps={className:"",height:32,width:32};var s=i;t.default=s},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=function(){return a.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("title",null,"search"),a.default.createElement("path",{d:"M32,28.5l-8.2-8.2a13,13,0,1,0-3.5,3.5L28.5,32ZM6.6,19.4A9,9,0,1,1,13,22,8.9,8.9,0,0,1,6.6,19.4Z"}))},i=o;t.default=i},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(6)),o=function(){return a.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},a.default.createElement("title",null,"yes"),a.default.createElement("polygon",{points:"12.9 28.9 31.9 6.3 28.1 3.1 12.3 21.9 3.3 14.4 0.1 18.2 12.9 28.9"}))},i=o;t.default=i},function(e,t,n){"use strict";var r=n(4),a=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n(8)),i=a(n(9)),s=a(n(13)),l=a(n(14)),u=a(n(11)),c=r(n(6)),f=function(e){function t(){return(0,o.default)(this,t),(0,s.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,u.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return c.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.svg=t}},c.default.createElement("path",{d:"M29.8 8l-3.5 2c1 1.8 1.6 3.8 1.6 6 0 6.6-5.4 12-12 12S4 22.6 4 16 9.4 4 16 4V0C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16c0-2.9-.8-5.6-2.2-8z"}))}}]),t}(c.Component),d=f;t.default=d},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(8)),o=r(n(9)),i=r(n(13)),s=r(n(14)),l=r(n(11)),u=r(n(6)),c=function(e){function t(){return(0,a.default)(this,t),(0,i.default)(this,(0,s.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,o.default)(t,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"32px",height:"32px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(t){e.node=t}},u.default.createElement("g",{id:"Grid"}),u.default.createElement("g",{id:"Layer_2"},u.default.createElement("g",null,u.default.createElement("path",{d:"M16,2L0,30h32L16,2z M18,27h-4v-4h4V27z M14,21V11h4v10H14z"}))))}}]),t}(u.default.Component),f=c;t.default=f},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(43)),o=a.default;t.default=o},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(44)),o=r(n(6)),i=n(6).PropTypes||n(17),s=function(e){var t=e.text,n=e.onClick,r=e.disabled,i=e.theme,s=e.children,l=e.href,u=e.ariaLabel,c=e.dataATIProps;return o.default.createElement("div",{className:"ec-link-button__container"},o.default.createElement("a",(0,a.default)({tabIndex:0,href:l,className:"ec-link-button__".concat(i),disabled:r,onClick:n,"aria-label":u||t},c),t?o.default.createElement("span",{className:"ec-link-button__text"},t):s))};s.propTypes={text:i.string,onClick:i.func.isRequired,disabled:i.bool,theme:i.string.isRequired,children:i.element,href:i.string.isRequired,ariaLabel:i.string,dataATIProps:i.shape({})},s.defaultProps={text:void 0,disabled:!1,children:null,ariaLabel:void 0,dataATIProps:{}};var l=s;t.default=l},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}e.exports=n},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(46)),o=a.default;t.default=o},function(e,t,n){"use strict";var r=n(3);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(44)),o=r(n(6)),i=n(6).PropTypes||n(17),s=function(e){var t=e.text,n=e.onClick,r=e.disabled,i=e.theme,s=e.children,l=e.ariaLabel,u=e.buttonClass,c=e.dataAtiProps;return o.default.createElement("div",{className:"ec-button__container ec-button__container-".concat(u)},o.default.createElement("button",(0,a.default)({type:"button",className:"ec-button__".concat(i," ").concat(u),disabled:r,onClick:n,"aria-label":l||t},c),t?o.default.createElement("span",{className:"ec-button__text"},t):s))};s.propTypes={text:i.string,onClick:i.func.isRequired,disabled:i.bool,theme:i.string.isRequired,children:i.element,ariaLabel:i.string,buttonClass:i.string,dataAtiProps:i.shape({})},s.defaultProps={text:null,disabled:!1,children:null,ariaLabel:null,buttonClass:"ec-button__default-class",dataAtiProps:{}};var l=s;t.default=l}]);; });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/path/%2Fmessaging%2FbannerType%2FprimaryIndex.json/service/bitesize-files/version/undefined', {"body":"{\n \"en-GB\": {\n \"title\": \"Starting primary school?\",\n \"subtitle\": \"We’ve got games, activities and tips to help you feel ready for your first term.\",\n \"linkText\": \"Let’s go!\",\n \"linkAriaLabel\": \"Let's go to starting primary!\",\n \"linkUrl\": \"https:\/\/www.bbc.co.uk\/bitesize\/collections\/starting-primary-school\/1 \"\n },\n \"ga-GB\": {\n \"title\": \"Starting primary school?\",\n \"subtitle\": \"We’ve got games, activities and tips to help you feel ready for your first term.\",\n \"linkText\": \"Let’s go!\",\n \"linkAriaLabel\": \"Let's go to starting primary!\",\n \"linkUrl\": \"https:\/\/www.bbc.co.uk\/bitesize\/collections\/starting-primary-school\/1 \"\n },\n \"cy-GB\": {\n \"title\": \"Starting primary school?\",\n \"subtitle\": \"We’ve got games, activities and tips to help you feel ready for your first term.\",\n \"linkText\": \"Let’s go!\",\n \"linkAriaLabel\": \"Let's go to starting primary!\",\n \"linkUrl\": \"https:\/\/www.bbc.co.uk\/bitesize\/collections\/starting-primary-school\/1 \"\n },\n \"gd-GB\": {\n \"title\": \"Starting primary school?\",\n \"subtitle\": \"We’ve got games, activities and tips to help you feel ready for your first term.\",\n \"linkText\": \"Let’s go!\",\n \"linkAriaLabel\": \"Let's go to starting primary!\",\n \"linkUrl\": \"https:\/\/www.bbc.co.uk\/bitesize\/collections\/starting-primary-school\/1 \"\n }\n}\n","meta":{"responseCode":200,"errorMessage":null,"headers":{"x-amz-id-2":"\/X5h5hbiuN7HJjQjZ9e7iDPuvnM3qCEHDcI34WJEigcMpSEeL1HssZpGfarwRirJ8s7N0ho9itg=","x-amz-request-id":"BB9AE5F0BDB761A3","last-modified":"Mon, 13 Jul 2020 13:45:50 GMT","etag":"\"4e014623a1e7727e6181e0339f572c0e\"","cache-control":"max-age=0","x-amz-version-id":"lDerqMCfKPWXIB0ygMW2N94l8okpRkHu","accept-ranges":"bytes","content-type":"application\/json","server":"AmazonS3","vary":"Accept-Encoding","content-encoding":"gzip","content-length":"268","connection":"keep-alive","nel":"{\"report_to\":\"default\",\"max_age\": 604800,\"include_subdomains\":true,\"failure_fraction\":0.01}","report-to":"{\"group\":\"default\",\"max_age\":3600,\"endpoints\":[ {\"url\":\"https:\/\/europe-west1-bbc-otg-traf-mgr-bq-prod-4591.cloudfunctions.net\/report-endpoint\",\"priority\":1} ],\"include_subdomains\":true}","timing-allow-origin":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/www.bbc.co.uk, https:\/\/www.bbc.com","access-control-max-age":"300","access-control-allow-credentials":"false","access-control-allow-headers":"*","access-control-allow-methods":"HEAD,GET","access-control-allow-origin":"*"}}}); });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-bitesize-messaging-view","language":"en-GB","bannerType":"primaryIndex","version":"1.42.0","_mrrVersion":"2.0.18"},'u7422361455819281'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u7422361455819281 */</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-bitesize-primary-index-view@1.4.0"]={"@bbc/education-content-panel":"0.2.2","@bbc/education-grid":"0.1.0","@bbc/education-links-panel":"0.2.3","bbc-morph-bitesize-nations-levels-data":"6.5.0","morph-container":"4.0.0",react:"0.14.7"},function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={exports:{},id:n,loaded:!1};return e[n].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var r={};t.m=e,t.c=r,t.p="",t(0)}([function(e,t,r){Morph.modules["bbc-morph-bitesize-primary-index-view@1.4.0"]=r(1)},function(e,t,r){e.exports=r(2)},function(e,t,r){e.exports=function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=1)}([function(e,t){e.exports=r(3)},function(e,t,r){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(0),a=n(o),i=r(2),u=n(i),c=r(3),l=n(c),s=function(e){var t=e.nationLevels.body;return a.default.createElement(l.default,{primaryIndexContent:t})};s.displayName="PrimaryIndexContainer",s.propTypes={nationLevels:o.PropTypes.shape({body:o.PropTypes.shape({phases:o.PropTypes.arrayOf(o.PropTypes.shape({classModifier:o.PropTypes.string.isRequired,title:o.PropTypes.string.isRequired,subtitle:o.PropTypes.string.isRequired,cta:o.PropTypes.string.isRequired,nationList:o.PropTypes.arrayOf(o.PropTypes.shape({label:o.PropTypes.string.isRequired,levelList:o.PropTypes.arrayOf(o.PropTypes.shape({year:o.PropTypes.string,label:o.PropTypes.string.isRequired,url:o.PropTypes.string.isRequired}).isRequired).isRequired}).isRequired).isRequired}).isRequired).isRequired}).isRequired}).isRequired},t.default=u.default.create(s,{data:function(e){return{nationLevels:{uri:{data:"bbc-morph-bitesize-nations-levels-data",language:e.language},updates:!1}}}}),e.exports=t.default},function(e,t){e.exports=r(4)},function(e,t,r){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=r(0),a=n(o),i=r(4),u=n(i),c=r(5),l=n(c),s=r(6),f=n(s),p=function(e){var t=[];return e.primaryIndexContent.phases.filter(function(e){return"primary"===e.phase}).map(function(e){e.nationList.map(function(e){var r={text:e.label,headingLevel:3},n=e.levelList.map(function(e){return{url:e.url,title:e.label,subtitle:e.year}});t.push(a.default.createElement(u.default,{headingData:r,linkData:n,brand:"bitesize-primary"}))})}),t},d=function(e){return a.default.createElement("div",{className:"primary-index-view-wrapper"},a.default.createElement(f.default,{brand:"primary-index"},a.default.createElement(l.default,{layout:"primary-index"},p(e)),a.default.createElement("div",{className:"nations-levels-character"})))};d.displayName="IndexContainer",d.propTypes={primaryIndexContent:o.PropTypes.shape({phases:o.PropTypes.arrayOf(o.PropTypes.shape({classModifier:o.PropTypes.string.isRequired,title:o.PropTypes.string.isRequired,subtitle:o.PropTypes.string.isRequired,cta:o.PropTypes.string.isRequired,nationList:o.PropTypes.arrayOf(o.PropTypes.shape({label:o.PropTypes.string.isRequired,levelList:o.PropTypes.arrayOf(o.PropTypes.shape({year:o.PropTypes.string,label:o.PropTypes.string.isRequired,url:o.PropTypes.string.isRequired}).isRequired).isRequired}).isRequired).isRequired}).isRequired).isRequired}).isRequired},t.default=d,e.exports=t.default},function(e,t){e.exports=r(5)},function(e,t){e.exports=r(41)},function(e,t){e.exports=r(43)}])},function(e,t){e.exports=React},function(e,t){e.exports={create:function(e,t){return Morph.createContainerWithCaller("bbc-morph-bitesize-primary-index-view@1.4.0",e,t)}}},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(7)),a=o.default;t.default=a},function(e,t){function r(e){return e&&e.__esModule?e:{default:e}}e.exports=r},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=n(r(8)),i=n(r(40)),u=r(3).PropTypes||r(13),c=function(e){var t=e.headingData,r=e.linkData,n=e.brand,u=t.text.replace(/ /g,"");return o.default.createElement("div",null,o.default.createElement(i.default,{text:t.text,headingLevel:t.headingLevel,id:u,brand:n}),o.default.createElement(a.default,{data:r,brand:n,headerid:u}))};c.propTypes={headingData:u.shape({text:u.string.isRequired,headingLevel:u.number.isRequired}).isRequired,linkData:u.arrayOf(u.shape({url:u.string.isRequired,title:u.string.isRequired,subtitle:u.string})).isRequired,brand:u.string},c.defaultProps={brand:"default"};var l=c;t.default=l},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=n(r(9)),i=r(3).PropTypes||r(13),u=function(e){var t=e.data,r=e.headerid,n=e.brand,i=t.map(function(e){return o.default.createElement("li",null,o.default.createElement(a.default,{url:e.url,title:e.title,subtitle:e.subtitle,brand:n}))});return o.default.createElement("ul",{className:"education-links-panel__list--".concat(n),role:"group","aria-labelledby":r},i)};u.propTypes={data:i.arrayOf(i.shape({url:i.string.isRequired,title:i.string.isRequired,subtitle:i.string}).isRequired),headerid:i.string.isRequired,brand:i.string};var c=u;t.default=c},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(10)),a=o.default;t.default=a},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(11),i=r(3).PropTypes||r(13),u=function(e){var t=e.title,r=e.subtitle,n=e.url,i=e.brand;return o.default.createElement("a",{className:"education-link__link--".concat(i),href:n},o.default.createElement("div",{className:"education-link__link-panel--".concat(i)},o.default.createElement("div",{className:"education-link__link-text-wrapper--".concat(i)},o.default.createElement("div",{"aria-hidden":!0,className:"education-link__link-title--".concat(i)},t),o.default.createElement("span",{className:"education-link__invisible--".concat(i)},"".concat(t,":")),r?o.default.createElement("div",{className:"education-link__link-subtitle--".concat(i)},r):null),o.default.createElement("div",{focusable:!1,className:"education-link__link-icon-wrapper--".concat(i)},o.default.createElement(a.GelChevronRightIcon,{className:"education-link__link-icon--".concat(i)}))))};u.propTypes={title:i.string.isRequired,subtitle:i.string,url:i.string.isRequired,brand:i.string},u.defaultProps={subtitle:"",brand:"default"};var c=u;t.default=c},function(e,t,r){"use strict";var n=r(6),o=n(r(12)),a=n(r(23)),i=n(r(33)),u=n(r(34)),c=n(r(35)),l=n(r(36)),s=n(r(37)),f=n(r(38)),p=n(r(39));e.exports={GelAddIcon:o.default,GelChevronRightIcon:a.default,GelDownIcon:i.default,GelIconDuration:u.default,GelNextIcon:c.default,GelNoIcon:l.default,GelPreviousIcon:s.default,GelRecentActivityIcon:f.default,GelYesIcon:p.default}},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(3).PropTypes||r(13),i=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},o.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};i.propTypes={className:a.string},i.defaultProps={className:""};var u=i;t.default=u},function(e,t,r){(function(t){if("production"!==t.env.NODE_ENV){var n=r(15);e.exports=r(18)(n.isElement,!0)}else e.exports=r(22)()}).call(t,r(14))},function(e,t){function r(){throw new Error("setTimeout has not been defined")}function n(){throw new Error("clearTimeout has not been defined")}function o(e){if(s===setTimeout)return setTimeout(e,0);if((s===r||!s)&&setTimeout)return s=setTimeout,setTimeout(e,0);try{return s(e,0)}catch(t){try{return s.call(null,e,0)}catch(t){return s.call(this,e,0)}}}function a(e){if(f===clearTimeout)return clearTimeout(e);if((f===n||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function i(){v&&d&&(v=!1,d.length?y=d.concat(y):m=-1,y.length&&u())}function u(){if(!v){var e=o(i);v=!0;for(var t=y.length;t;){for(d=y,y=[];++m<t;)d&&d[m].run();m=-1,t=y.length}d=null,v=!1,a(e)}}function c(e,t){this.fun=e,this.array=t}function l(){}var s,f,p=e.exports={};!function(){try{s="function"==typeof setTimeout?setTimeout:r}catch(e){s=r}try{f="function"==typeof clearTimeout?clearTimeout:n}catch(e){f=n}}();var d,y=[],v=!1,m=-1;p.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];y.push(new c(e,t)),1!==y.length||v||o(u)},c.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=l,p.addListener=l,p.once=l,p.off=l,p.removeListener=l,p.removeAllListeners=l,p.emit=l,p.prependListener=l,p.prependOnceListener=l,p.listeners=function(e){return[]},p.binding=function(e){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(e){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},function(e,t,r){(function(t){"use strict";"production"===t.env.NODE_ENV?e.exports=r(16):e.exports=r(17)}).call(t,r(14))},function(e,t){"use strict";function r(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case a:switch(e=e.type){case p:case d:case u:case l:case c:case v:return e;default:switch(e=e&&e.$$typeof){case f:case y:case s:return e;default:return t}}case h:case b:case i:return t}}}function n(e){return r(e)===d}Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,a=o?Symbol.for("react.element"):60103,i=o?Symbol.for("react.portal"):60106,u=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,l=o?Symbol.for("react.profiler"):60114,s=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,d=o?Symbol.for("react.concurrent_mode"):60111,y=o?Symbol.for("react.forward_ref"):60112,v=o?Symbol.for("react.suspense"):60113,m=o?Symbol.for("react.suspense_list"):60120,b=o?Symbol.for("react.memo"):60115,h=o?Symbol.for("react.lazy"):60116,g=o?Symbol.for("react.fundamental"):60117,w=o?Symbol.for("react.responder"):60118,x=o?Symbol.for("react.scope"):60119;t.typeOf=r,t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=f,t.ContextProvider=s,t.Element=a,t.ForwardRef=y,t.Fragment=u,t.Lazy=h,t.Memo=b,t.Portal=i,t.Profiler=l,t.StrictMode=c,t.Suspense=v,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===u||e===d||e===l||e===c||e===v||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===b||e.$$typeof===s||e.$$typeof===f||e.$$typeof===y||e.$$typeof===g||e.$$typeof===w||e.$$typeof===x)},t.isAsyncMode=function(e){return n(e)||r(e)===p},t.isConcurrentMode=n,t.isContextConsumer=function(e){return r(e)===f},t.isContextProvider=function(e){return r(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},t.isForwardRef=function(e){return r(e)===y},t.isFragment=function(e){return r(e)===u},t.isLazy=function(e){return r(e)===h},t.isMemo=function(e){return r(e)===b},t.isPortal=function(e){return r(e)===i},t.isProfiler=function(e){return r(e)===l},t.isStrictMode=function(e){return r(e)===c},t.isSuspense=function(e){return r(e)===v}},function(e,t,r){(function(e){"use strict";"production"!==e.env.NODE_ENV&&function(){function e(e){return"string"==typeof e||"function"==typeof e||e===g||e===O||e===x||e===w||e===j||e===S||"object"==typeof e&&null!==e&&(e.$$typeof===N||e.$$typeof===R||e.$$typeof===_||e.$$typeof===P||e.$$typeof===T||e.$$typeof===M||e.$$typeof===k||e.$$typeof===q)}function r(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case b:var r=e.type;switch(r){case E:case O:case g:case x:case w:case j:return r;default:var n=r&&r.$$typeof;switch(n){case P:case T:case _:return n;default:return t}}case N:case R:case h:return t}}}function n(e){return H||(H=!0,I(!1,"The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),o(e)||r(e)===E}function o(e){return r(e)===O}function a(e){return r(e)===P}function i(e){return r(e)===_}function u(e){return"object"==typeof e&&null!==e&&e.$$typeof===b}function c(e){return r(e)===T}function l(e){return r(e)===g}function s(e){return r(e)===N}function f(e){return r(e)===R}function p(e){return r(e)===h}function d(e){return r(e)===x}function y(e){return r(e)===w}function v(e){return r(e)===j}Object.defineProperty(t,"__esModule",{value:!0});var m="function"==typeof Symbol&&Symbol.for,b=m?Symbol.for("react.element"):60103,h=m?Symbol.for("react.portal"):60106,g=m?Symbol.for("react.fragment"):60107,w=m?Symbol.for("react.strict_mode"):60108,x=m?Symbol.for("react.profiler"):60114,_=m?Symbol.for("react.provider"):60109,P=m?Symbol.for("react.context"):60110,E=m?Symbol.for("react.async_mode"):60111,O=m?Symbol.for("react.concurrent_mode"):60111,T=m?Symbol.for("react.forward_ref"):60112,j=m?Symbol.for("react.suspense"):60113,S=m?Symbol.for("react.suspense_list"):60120,R=m?Symbol.for("react.memo"):60115,N=m?Symbol.for("react.lazy"):60116,M=m?Symbol.for("react.fundamental"):60117,k=m?Symbol.for("react.responder"):60118,q=m?Symbol.for("react.scope"):60119,$=function(){},C=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];var o=0,a="Warning: "+e.replace(/%s/g,function(){return r[o++]});"undefined"!=typeof console&&console.warn(a);try{throw new Error(a)}catch(e){}};$=function(e,t){if(void 0===t)throw new Error("`lowPriorityWarningWithoutStack(condition, format, ...args)` requires a warning message argument");if(!e){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];C.apply(void 0,[t].concat(n))}};var I=$,L=E,A=O,D=P,V=_,z=b,W=T,F=g,B=N,G=R,Y=h,U=x,J=w,K=j,H=!1;t.typeOf=r,t.AsyncMode=L,t.ConcurrentMode=A,t.ContextConsumer=D,t.ContextProvider=V,t.Element=z,t.ForwardRef=W,t.Fragment=F,t.Lazy=B,t.Memo=G,t.Portal=Y,t.Profiler=U,t.StrictMode=J,t.Suspense=K,t.isValidElementType=e,t.isAsyncMode=n,t.isConcurrentMode=o,t.isContextConsumer=a,t.isContextProvider=i,t.isElement=u,t.isForwardRef=c,t.isFragment=l,t.isLazy=s,t.isMemo=f,t.isPortal=p,t.isProfiler=d,t.isStrictMode=y,t.isSuspense=v}()}).call(t,r(14))},function(e,t,r){(function(t){"use strict";function n(){return null}var o=r(15),a=r(19),i=r(20),u=r(21),c=Function.call.bind(Object.prototype.hasOwnProperty),l=function(){};"production"!==t.env.NODE_ENV&&(l=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}),e.exports=function(e,r){function s(e){var t=e&&(S&&e[S]||e[R]);if("function"==typeof t)return t}function f(e,t){return e===t?0!==e||1/e==1/t:e!==e&&t!==t}function p(e){this.message=e,this.stack=""}function d(e){function n(n,u,c,s,f,d,y){if(s=s||N,d=d||c,y!==i){if(r){var v=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw v.name="Invariant Violation",v}if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var m=s+":"+c;!o[m]&&a<3&&(l("You are manually calling a React.PropTypes validation function for the `"+d+"` prop on `"+s+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),o[m]=!0,a++)}}return null==u[c]?n?new p(null===u[c]?"The "+f+" `"+d+"` is marked as required in `"+s+"`, but its value is `null`.":"The "+f+" `"+d+"` is marked as required in `"+s+"`, but its value is `undefined`."):null:e(u,c,s,f,d)}if("production"!==t.env.NODE_ENV)var o={},a=0;var u=n.bind(null,!1);return u.isRequired=n.bind(null,!0),u}function y(e){function t(t,r,n,o,a,i){var u=t[r];if(E(u)!==e)return new p("Invalid "+o+" `"+a+"` of type `"+O(u)+"` supplied to `"+n+"`, expected `"+e+"`.");return null}return d(t)}function v(e){function t(t,r,n,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+n+"` has invalid PropType notation inside arrayOf.");var u=t[r];if(!Array.isArray(u)){return new p("Invalid "+o+" `"+a+"` of type `"+E(u)+"` supplied to `"+n+"`, expected an array.")}for(var c=0;c<u.length;c++){var l=e(u,c,n,o,a+"["+c+"]",i);if(l instanceof Error)return l}return null}return d(t)}function m(e){function t(t,r,n,o,a){if(!(t[r]instanceof e)){var i=e.name||N;return new p("Invalid "+o+" `"+a+"` of type `"+j(t[r])+"` supplied to `"+n+"`, expected instance of `"+i+"`.")}return null}return d(t)}function b(e){function r(t,r,n,o,a){for(var i=t[r],u=0;u<e.length;u++)if(f(i,e[u]))return null;var c=JSON.stringify(e,function(e,t){return"symbol"===O(t)?String(t):t});return new p("Invalid "+o+" `"+a+"` of value `"+String(i)+"` supplied to `"+n+"`, expected one of "+c+".")}return Array.isArray(e)?d(r):("production"!==t.env.NODE_ENV&&l(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),n)}function h(e){function t(t,r,n,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+n+"` has invalid PropType notation inside objectOf.");var u=t[r],l=E(u);if("object"!==l)return new p("Invalid "+o+" `"+a+"` of type `"+l+"` supplied to `"+n+"`, expected an object.");for(var s in u)if(c(u,s)){var f=e(u,s,n,o,a+"."+s,i);if(f instanceof Error)return f}return null}return d(t)}function g(e){function r(t,r,n,o,a){for(var u=0;u<e.length;u++){if(null==(0,e[u])(t,r,n,o,a,i))return null}return new p("Invalid "+o+" `"+a+"` supplied to `"+n+"`.")}if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&l("Invalid argument supplied to oneOfType, expected an instance of array."),n;for(var o=0;o<e.length;o++){var a=e[o];if("function"!=typeof a)return l("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+T(a)+" at index "+o+"."),n}return d(r)}function w(e){function t(t,r,n,o,a){var u=t[r],c=E(u);if("object"!==c)return new p("Invalid "+o+" `"+a+"` of type `"+c+"` supplied to `"+n+"`, expected `object`.");for(var l in e){var s=e[l];if(s){var f=s(u,l,n,o,a+"."+l,i);if(f)return f}}return null}return d(t)}function x(e){function t(t,r,n,o,u){var c=t[r],l=E(c);if("object"!==l)return new p("Invalid "+o+" `"+u+"` of type `"+l+"` supplied to `"+n+"`, expected `object`.");var s=a({},t[r],e);for(var f in s){var d=e[f];if(!d)return new p("Invalid "+o+" `"+u+"` key `"+f+"` supplied to `"+n+"`.\nBad object: "+JSON.stringify(t[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var y=d(c,f,n,o,u+"."+f,i);if(y)return y}return null}return d(t)}function _(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(_);if(null===t||e(t))return!0;var r=s(t);if(!r)return!1;var n,o=r.call(t);if(r!==t.entries){for(;!(n=o.next()).done;)if(!_(n.value))return!1}else for(;!(n=o.next()).done;){var a=n.value;if(a&&!_(a[1]))return!1}return!0;default:return!1}}function P(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}function E(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":P(t,e)?"symbol":t}function O(e){if(void 0===e||null===e)return""+e;var t=E(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function T(e){var t=O(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}function j(e){return e.constructor&&e.constructor.name?e.constructor.name:N}var S="function"==typeof Symbol&&Symbol.iterator,R="@@iterator",N="<<anonymous>>",M={array:y("array"),bool:y("boolean"),func:y("function"),number:y("number"),object:y("object"),string:y("string"),symbol:y("symbol"),any:function(){return d(n)}(),arrayOf:v,element:function(){function t(t,r,n,o,a){var i=t[r];if(!e(i)){return new p("Invalid "+o+" `"+a+"` of type `"+E(i)+"` supplied to `"+n+"`, expected a single ReactElement.")}return null}return d(t)}(),elementType:function(){function e(e,t,r,n,a){var i=e[t];if(!o.isValidElementType(i)){return new p("Invalid "+n+" `"+a+"` of type `"+E(i)+"` supplied to `"+r+"`, expected a single ReactElement type.")}return null}return d(e)}(),instanceOf:m,node:function(){function e(e,t,r,n,o){return _(e[t])?null:new p("Invalid "+n+" `"+o+"` supplied to `"+r+"`, expected a ReactNode.")}return d(e)}(),objectOf:h,oneOf:b,oneOfType:g,shape:w,exact:x};return p.prototype=Error.prototype,M.checkPropTypes=u,M.resetWarningCache=u.resetWarningCache,M.PropTypes=M,M}}).call(t,r(14))},function(e,t){"use strict";function r(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}var n=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var i,u,c=r(e),l=1;l<arguments.length;l++){i=Object(arguments[l]);for(var s in i)o.call(i,s)&&(c[s]=i[s]);if(n){u=n(i);for(var f=0;f<u.length;f++)a.call(i,u[f])&&(c[u[f]]=i[u[f]])}}return c}},function(e,t){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){(function(t){"use strict";function n(e,r,n,c,l){if("production"!==t.env.NODE_ENV)for(var s in e)if(u(e,s)){var f;try{if("function"!=typeof e[s]){var p=Error((c||"React class")+": "+n+" type `"+s+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[s]+"`.");throw p.name="Invariant Violation",p}f=e[s](r,s,c,n,null,a)}catch(e){f=e}if(!f||f instanceof Error||o((c||"React class")+": type specification of "+n+" `"+s+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof f+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),f instanceof Error&&!(f.message in i)){i[f.message]=!0;var d=l?l():"";o("Failed "+n+" type: "+f.message+(null!=d?d:""))}}}var o=function(){};if("production"!==t.env.NODE_ENV){var a=r(20),i={},u=Function.call.bind(Object.prototype.hasOwnProperty);o=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}}n.resetWarningCache=function(){"production"!==t.env.NODE_ENV&&(i={})},e.exports=n}).call(t,r(14))},function(e,t,r){"use strict";function n(){}function o(){}var a=r(20);o.resetWarningCache=n,e.exports=function(){function e(e,t,r,n,o,i){if(i!==a){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var r={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:n};return r.PropTypes=r,r}},function(e,t,r){"use strict";var n=r(24),o=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(r(26)),i=o(r(27)),u=o(r(28)),c=o(r(30)),l=o(r(31)),s=n(r(3)),f=r(3).PropTypes||r(13),p=function(e){function t(){return(0,a.default)(this,t),(0,u.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this,t=this.props.className;return s.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},s.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))}}]),t}(s.Component);p.propTypes={className:f.string},p.defaultProps={className:""};var d=p;t.default=d},function(e,t,r){function n(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return n=function(){return e},e}function o(e){if(e&&e.__esModule)return e;if(null===e||"object"!==a(e)&&"function"!=typeof e)return{default:e};var t=n();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var u=o?Object.getOwnPropertyDescriptor(e,i):null;u&&(u.get||u.set)?Object.defineProperty(r,i,u):r[i]=e[i]}return r.default=e,t&&t.set(e,r),r}var a=r(25);e.exports=o},function(e,t){function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function n(t){return"function"==typeof Symbol&&"symbol"===r(Symbol.iterator)?e.exports=n=function(e){return r(e)}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":r(e)},n(t)}e.exports=n},function(e,t){function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}e.exports=r},function(e,t){function r(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function n(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e}e.exports=n},function(e,t,r){function n(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?a(e):t}var o=r(25),a=r(29);e.exports=n},function(e,t){function r(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}e.exports=r},function(e,t){function r(t){return e.exports=r=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},r(t)}e.exports=r},function(e,t,r){function n(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}var o=r(32);e.exports=n},function(e,t){function r(t,n){return e.exports=r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},r(t,n)}e.exports=r},function(e,t,r){"use strict";var n=r(24),o=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(r(26)),i=o(r(27)),u=o(r(28)),c=o(r(30)),l=o(r(31)),s=n(r(3)),f=function(e){function t(){return(0,a.default)(this,t),(0,u.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},s.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),s.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),s.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),o.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))},i=a;t.default=i},function(e,t,r){"use strict";var n=r(24),o=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(r(26)),i=o(r(27)),u=o(r(28)),c=o(r(30)),l=o(r(31)),s=n(r(3)),f=function(e){function t(){return(0,a.default)(this,t),(0,u.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"next-chevron-title"},"Next"),s.default.createElement("desc",null,"Move to the next page"),s.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("title",null,"no"),o.default.createElement("polygon",{points:"32 3.5 28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32 32 28.5 19.5 16 32 3.5"}))},i=a;t.default=i},function(e,t,r){"use strict";var n=r(24),o=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(r(26)),i=o(r(27)),u=o(r(28)),c=o(r(30)),l=o(r(31)),s=n(r(3)),f=function(e){function t(){return(0,a.default)(this,t),(0,u.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"previous-chevron-title"},"Previous"),s.default.createElement("desc",null,"Move to the previous page"),s.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(3).PropTypes||r(13),i=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),o.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),o.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),o.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),o.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))} ;i.propTypes={className:a.string},i.defaultProps={className:""};var u=i;t.default=u},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("title",null,"yes"),o.default.createElement("polygon",{points:"12.9 28.9 31.9 6.3 28.1 3.1 12.3 21.9 3.3 14.4 0.1 18.2 12.9 28.9"}))},i=a;t.default=i},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(3).PropTypes||r(13),i=function(e){var t=e.text,r=e.headingLevel,n=e.id,a=e.brand,i="h".concat(r);return o.default.createElement(i,{className:"education-links-panel__heading--".concat(a),id:n},t)};i.propTypes={headingLevel:a.number.isRequired,text:a.string.isRequired,id:a.string.isRequired,brand:a.string},i.defaultProps={brand:"default"};var u=i;t.default=u},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(42)),a=o.default;t.default=a},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(3).PropTypes||r(13),i=function(e){var t=e.asList?"li":"div",r=e.asList?"ul":"div",n=o.default.Children.map(e.children,function(r){return o.default.createElement(t,{className:"ec-grid__item--".concat(e.layout)},o.default.createElement("span",{className:"ec-grid__item-content-wrapper--".concat(e.layout)},r))});return o.default.createElement("div",{className:"ec-grid--".concat(e.layout)},o.default.createElement(r,{className:"ec-grid__item-wrapper--".concat(e.layout)},n))};i.propTypes={children:a.node.isRequired,layout:a.string,asList:a.bool},i.defaultProps={layout:"default",asList:!1};var u=i;t.default=u},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(44)),a=o.default;t.default=a},function(e,t,r){"use strict";var n=r(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=n(r(3)),a=r(3).PropTypes||r(13),i=function(e){var t=o.default.Children.map(e.children,function(t){return o.default.createElement("div",{className:"ec-content-panel__item--".concat(e.brand)},t)});return o.default.createElement("section",{className:"ec-content-panel--".concat(e.brand)},t)};i.propTypes={children:a.node.isRequired,brand:a.string},i.defaultProps={brand:"default"};var u=i;t.default=u}]);; });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-bitesize-nations-levels-data/language/en-GB/version/6.5.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"content-type":"application\/json"}},"body":{"phases":[{"phase":"primary","classModifier":"--primary","callout":"You're in","title":"Primary","subtitle":"Age 3 to 11","cta":"Go to Primary","nationList":[{"label":"England","dataLabel":"primary-england-levels","levelList":[{"year":"Year 1 to 2","levelId":"z3g4d2p","label":"KS1","url":"\/bitesize\/levels\/z3g4d2p"},{"year":"Year 3 to 6","levelId":"zbr9wmn","label":"KS2","url":"\/bitesize\/levels\/zbr9wmn"}]},{"label":"Northern Ireland","dataLabel":"primary-northern-ireland-levels","levelList":[{"year":"Primary 1 to 2","levelId":"znyh7nb","label":"Foundation Stage","url":"\/bitesize\/levels\/znyh7nb"},{"year":"Primary 3 to 4","levelId":"z3g4d2p","label":"KS1","url":"\/bitesize\/levels\/z3g4d2p"},{"year":"Primary 5 to 7","levelId":"zjmj92p","label":"KS2","url":"\/bitesize\/levels\/zjmj92p"}]},{"label":"Scotland","dataLabel":"primary-scotland-levels","levelList":[{"year":"Primary 1","levelId":"zf7hgwx","label":"Early level","url":"\/bitesize\/levels\/zf7hgwx"},{"year":"Primary 2 to 4","levelId":"zgckjxs","label":"1st level","url":"\/bitesize\/levels\/zgckjxs"},{"year":"Primary 5 to 7","levelId":"zr48q6f","label":"2nd level","url":"\/bitesize\/levels\/zr48q6f"},{"year":"Bun-sgoil 2 gu 4","levelId":"zk3xy9q","label":"A' Chiad Ìre","url":"\/bitesize\/levels\/zk3xy9q"},{"year":"Bun-sgoil 5 gu 7","levelId":"z4y2scw","label":"An Dàrna Ìre","url":"\/bitesize\/levels\/z4y2scw"}]},{"label":"Wales","dataLabel":"primary-wales-levels","levelList":[{"year":"Reception to Year 2","levelId":"zxybmsg","label":"Foundation Phase","url":"\/bitesize\/levels\/zxybmsg"},{"year":"Year 3 to 6","levelId":"zbr9wmn","label":"KS2","url":"\/bitesize\/levels\/zbr9wmn"},{"year":"Reception to Year 2","levelId":"z4js6v4","label":"Cyfnod Sylfaen","url":"\/bitesize\/levels\/z4js6v4"},{"year":"Year 3 to 6","levelId":"zbpwt39","label":"CA2","url":"\/bitesize\/levels\/zbpwt39"}]}]},{"phase":"secondary","classModifier":"--secondary","callout":"You're in","title":"Secondary","subtitle":"Age 11 to 16","cta":"Go to Secondary","nationList":[{"label":"England","dataLabel":"secondary-england-levels","levelList":[{"label":"KS3","url":"\/bitesize\/levels\/z4kw2hv"},{"label":"GCSE","url":"\/bitesize\/levels\/z98jmp3"},{"label":"Careers","url":"\/bitesize\/careers"}]},{"label":"Northern Ireland","dataLabel":"secondary-northern-ireland-levels","levelList":[{"label":"KS3","url":"\/bitesize\/levels\/z4kw2hv"},{"label":"GCSE","url":"\/bitesize\/levels\/z98jmp3"},{"label":"Careers","url":"\/bitesize\/careers"}]},{"label":"Scotland","dataLabel":"secondary-scotland-levels","levelList":[{"label":"3rd level","url":"\/bitesize\/levels\/zy4qn39"},{"label":"4th level","url":"\/bitesize\/levels\/zvk2fg8"},{"label":"Nàiseanta 4","url":"\/bitesize\/levels\/z8hhvcw"},{"label":"Nàiseanta 5","url":"\/bitesize\/levels\/zdpp34j"},{"label":"National 4","url":"\/bitesize\/levels\/zp3d7ty"},{"label":"National 5","url":"\/bitesize\/levels\/z6gw2hv"},{"label":"Àrd Ìre","url":"\/bitesize\/levels\/zqq4wxs"},{"label":"Higher","url":"\/bitesize\/levels\/zkdqxnb"},{"label":"Careers","url":"\/bitesize\/careers"}]},{"label":"Wales","dataLabel":"secondary-wales-levels","levelList":[{"label":"CA3","url":"\/bitesize\/levels\/zh6vr82"},{"label":"KS3","url":"\/bitesize\/levels\/z4kw2hv"},{"label":"CBC","url":"\/bitesize\/levels\/zqxy8mn"},{"label":"GCSE","url":"\/bitesize\/levels\/z98jmp3"},{"label":"TGAU","url":"\/bitesize\/levels\/z8w76sg"},{"label":"WBQ","url":"\/bitesize\/levels\/z9wtgdm"},{"label":"Careers","url":"\/bitesize\/careers"}]}]},{"phase":"post-16","classModifier":"--post-16","callout":"You're in","title":"Post-16","subtitle":"Age 16+","cta":"Go to Post-16","nationList":[{"label":"England","dataLabel":"post-16-england-levels","levelList":[{"label":"Functional Skills","url":"\/bitesize\/levels\/zvhtng8"}]},{"label":"Scotland","dataLabel":"post-16-scotland-levels","levelList":[{"label":"Core Skills","url":"\/bitesize\/levels\/z66jhbk"}]},{"label":"Wales","dataLabel":"post-16-wales-levels","levelList":[{"label":"Essential Skills","url":"\/bitesize\/levels\/zhh7nrd"}]}]}]}}); });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-bitesize-primary-index-view","language":"en-GB","version":"1.4.0","_mrrVersion":"2.0.18"},'u33051296519322193'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u33051296519322193 */</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-superagent@2.0.0"]={superagent:"3.5.2"},function(t){function e(s){if(r[s])return r[s].exports;var i=r[s]={exports:{},id:s,loaded:!1};return t[s].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var r={};e.m=t,e.c=r,e.p="",e(0)}([function(t,e,r){Morph.modules["bbc-morph-superagent@2.0.0"]=r(1)},function(t,e,r){var s=r(2);t.exports=s},function(t,e,r){function s(){}function i(t){if(!y(t))return t;var e=[];for(var r in t)o(e,r,t[r]);return e.join("&")}function o(t,e,r){if(null!=r)if(Array.isArray(r))r.forEach(function(r){o(t,e,r)});else if(y(r))for(var s in r)o(t,e+"["+s+"]",r[s]);else t.push(encodeURIComponent(e)+"="+encodeURIComponent(r));else null===r&&t.push(encodeURIComponent(e))}function n(t){for(var e,r,s={},i=t.split("&"),o=0,n=i.length;o<n;++o)e=i[o],r=e.indexOf("="),-1==r?s[decodeURIComponent(e)]="":s[decodeURIComponent(e.slice(0,r))]=decodeURIComponent(e.slice(r+1));return s}function a(t){var e,r,s,i,o=t.split(/\r?\n/),n={};o.pop();for(var a=0,h=o.length;a<h;++a)r=o[a],e=r.indexOf(":"),s=r.slice(0,e).toLowerCase(),i=w(r.slice(e+1)),n[s]=i;return n}function h(t){return/[\/+]json\b/.test(t)}function u(t){this.req=t,this.xhr=this.req.xhr,this.text="HEAD"!=this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var e=this.xhr.status;1223===e&&(e=204),this._setStatusProperties(e),this.header=this.headers=a(this.xhr.getAllResponseHeaders()),this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&t._responseType?this.body=this.xhr.response:this.body="HEAD"!=this.req.method?this._parseBody(this.text?this.text:this.xhr.response):null}function p(t,e){var r=this;this._query=this._query||[],this.method=t,this.url=e,this.header={},this._header={},this.on("end",function(){var t=null,e=null;try{e=new u(r)}catch(e){return t=new Error("Parser is unable to parse the response"),t.parse=!0,t.original=e,r.xhr?(t.rawResponse=void 0===r.xhr.responseType?r.xhr.responseText:r.xhr.response,t.status=r.xhr.status?r.xhr.status:null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),r.callback(t)}r.emit("response",e);var s;try{r._isResponseOK(e)||(s=new Error(e.statusText||"Unsuccessful HTTP response"),s.original=t,s.response=e,s.status=e.status)}catch(t){s=t}s?r.callback(s,e):r.callback(null,e)})}function c(t,e,r){var s=v("DELETE",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s}var l;"undefined"!=typeof window?l=window:"undefined"!=typeof self?l=self:(console.warn("Using browser-only version of superagent in non-browser environment"),l=this);var f=r(3),d=r(4),y=r(5),m=r(6),_=r(7),b=r(9),v=e=t.exports=function(t,r){return"function"==typeof r?new e.Request("GET",t).end(r):1==arguments.length?new e.Request("GET",t):new e.Request(t,r)};e.Request=p,v.getXHR=function(){if(!(!l.XMLHttpRequest||l.location&&"file:"==l.location.protocol&&l.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(t){}throw Error("Browser-only verison of superagent could not find XHR")};var w="".trim?function(t){return t.trim()}:function(t){return t.replace(/(^\s*|\s*$)/g,"")};v.serializeObject=i,v.parseString=n,v.types={html:"text/html",json:"application/json",xml:"application/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},v.serialize={"application/x-www-form-urlencoded":i,"application/json":JSON.stringify},v.parse={"application/x-www-form-urlencoded":n,"application/json":JSON.parse},_(u.prototype),u.prototype._parseBody=function(t){var e=v.parse[this.type];return this.req._parser?this.req._parser(this,t):(!e&&h(this.type)&&(e=v.parse["application/json"]),e&&t&&(t.length||t instanceof Object)?e(t):null)},u.prototype.toError=function(){var t=this.req,e=t.method,r=t.url,s="cannot "+e+" "+r+" ("+this.status+")",i=new Error(s);return i.status=this.status,i.method=e,i.url=r,i},v.Response=u,f(p.prototype),d(p.prototype),p.prototype.type=function(t){return this.set("Content-Type",v.types[t]||t),this},p.prototype.accept=function(t){return this.set("Accept",v.types[t]||t),this},p.prototype.auth=function(t,e,r){switch("object"==typeof e&&null!==e&&(r=e),r||(r={type:"function"==typeof btoa?"basic":"auto"}),r.type){case"basic":this.set("Authorization","Basic "+btoa(t+":"+e));break;case"auto":this.username=t,this.password=e;break;case"bearer":this.set("Authorization","Bearer "+t)}return this},p.prototype.query=function(t){return"string"!=typeof t&&(t=i(t)),t&&this._query.push(t),this},p.prototype.attach=function(t,e,r){if(e){if(this._data)throw Error("superagent can't mix .send() and .attach()");this._getFormData().append(t,e,r||e.name)}return this},p.prototype._getFormData=function(){return this._formData||(this._formData=new l.FormData),this._formData},p.prototype.callback=function(t,e){if(this._maxRetries&&this._retries++<this._maxRetries&&b(t,e))return this._retry();var r=this._callback;this.clearTimeout(),t&&(this._maxRetries&&(t.retries=this._retries-1),this.emit("error",t)),r(t,e)},p.prototype.crossDomainError=function(){var t=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");t.crossDomain=!0,t.status=this.status,t.method=this.method,t.url=this.url,this.callback(t)},p.prototype.buffer=p.prototype.ca=p.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},p.prototype.pipe=p.prototype.write=function(){throw Error("Streaming is not supported in browser version of superagent")},p.prototype._appendQueryString=function(){var t=this._query.join("&");if(t&&(this.url+=(this.url.indexOf("?")>=0?"&":"?")+t),this._sort){var e=this.url.indexOf("?");if(e>=0){var r=this.url.substring(e+1).split("&");m(this._sort)?r.sort(this._sort):r.sort(),this.url=this.url.substring(0,e)+"?"+r.join("&")}}},p.prototype._isHost=function(t){return t&&"object"==typeof t&&!Array.isArray(t)&&"[object Object]"!==Object.prototype.toString.call(t)},p.prototype.end=function(t){return this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=t||s,this._appendQueryString(),this._end()},p.prototype._end=function(){var t=this,e=this.xhr=v.getXHR(),r=this._formData||this._data;this._setTimeouts(),e.onreadystatechange=function(){var r=e.readyState;if(r>=2&&t._responseTimeoutTimer&&clearTimeout(t._responseTimeoutTimer),4==r){var s;try{s=e.status}catch(t){s=0}if(!s){if(t.timedout||t._aborted)return;return t.crossDomainError()}t.emit("end")}};var s=function(e,r){r.total>0&&(r.percent=r.loaded/r.total*100),r.direction=e,t.emit("progress",r)};if(this.hasListeners("progress"))try{e.onprogress=s.bind(null,"download"),e.upload&&(e.upload.onprogress=s.bind(null,"upload"))}catch(t){}try{this.username&&this.password?e.open(this.method,this.url,!0,this.username,this.password):e.open(this.method,this.url,!0)}catch(t){return this.callback(t)}if(this._withCredentials&&(e.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof r&&!this._isHost(r)){var i=this._header["content-type"],o=this._serializer||v.serialize[i?i.split(";")[0]:""];!o&&h(i)&&(o=v.serialize["application/json"]),o&&(r=o(r))}for(var n in this.header)null!=this.header[n]&&this.header.hasOwnProperty(n)&&e.setRequestHeader(n,this.header[n]);return this._responseType&&(e.responseType=this._responseType),this.emit("request",this),e.send(void 0!==r?r:null),this},v.get=function(t,e,r){var s=v("GET",t);return"function"==typeof e&&(r=e,e=null),e&&s.query(e),r&&s.end(r),s},v.head=function(t,e,r){var s=v("HEAD",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s},v.options=function(t,e,r){var s=v("OPTIONS",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s},v.del=c,v.delete=c,v.patch=function(t,e,r){var s=v("PATCH",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s},v.post=function(t,e,r){var s=v("POST",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s},v.put=function(t,e,r){var s=v("PUT",t);return"function"==typeof e&&(r=e,e=null),e&&s.send(e),r&&s.end(r),s}},function(t,e,r){function s(t){if(t)return i(t)}function i(t){for(var e in s.prototype)t[e]=s.prototype[e];return t}t.exports=s,s.prototype.on=s.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},s.prototype.once=function(t,e){function r(){this.off(t,r),e.apply(this,arguments)}return r.fn=e,this.on(t,r),this},s.prototype.off=s.prototype.removeListener=s.prototype.removeAllListeners=s.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r=this._callbacks["$"+t];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var s,i=0;i<r.length;i++)if((s=r[i])===e||s.fn===e){r.splice(i,1);break}return this},s.prototype.emit=function(t){this._callbacks=this._callbacks||{};var e=[].slice.call(arguments,1),r=this._callbacks["$"+t];if(r){r=r.slice(0);for(var s=0,i=r.length;s<i;++s)r[s].apply(this,e)}return this},s.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},s.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e,r){function s(t){if(t)return i(t)}function i(t){for(var e in s.prototype)t[e]=s.prototype[e];return t}var o=r(5);t.exports=s,s.prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,this},s.prototype.parse=function(t){return this._parser=t,this},s.prototype.responseType=function(t){return this._responseType=t,this},s.prototype.serialize=function(t){return this._serializer=t,this},s.prototype.timeout=function(t){if(!t||"object"!=typeof t)return this._timeout=t,this._responseTimeout=0,this;for(var e in t)switch(e){case"deadline":this._timeout=t.deadline;break;case"response":this._responseTimeout=t.response;break;default:console.warn("Unknown timeout option",e)}return this},s.prototype.retry=function(t){return 0!==arguments.length&&!0!==t||(t=1),t<=0&&(t=0),this._maxRetries=t,this._retries=0,this},s.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this._end()},s.prototype.then=function(t,e){if(!this._fullfilledPromise){var r=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise(function(t,e){r.end(function(r,s){r?e(r):t(s)})})}return this._fullfilledPromise.then(t,e)},s.prototype.catch=function(t){return this.then(void 0,t)},s.prototype.use=function(t){return t(this),this},s.prototype.ok=function(t){if("function"!=typeof t)throw Error("Callback required");return this._okCallback=t,this},s.prototype._isResponseOK=function(t){return!!t&&(this._okCallback?this._okCallback(t):t.status>=200&&t.status<300)},s.prototype.get=function(t){return this._header[t.toLowerCase()]},s.prototype.getHeader=s.prototype.get,s.prototype.set=function(t,e){if(o(t)){for(var r in t)this.set(r,t[r]);return this}return this._header[t.toLowerCase()]=e,this.header[t]=e,this},s.prototype.unset=function(t){return delete this._header[t.toLowerCase()],delete this.header[t],this},s.prototype.field=function(t,e){if(null===t||void 0===t)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),o(t)){for(var r in t)this.field(r,t[r]);return this}if(Array.isArray(e)){for(var s in e)this.field(t,e[s]);return this}if(null===e||void 0===e)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof e&&(e=""+e),this._getFormData().append(t,e),this},s.prototype.abort=function(){return this._aborted?this:(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort"),this)},s.prototype.withCredentials=function(t){return void 0==t&&(t=!0),this._withCredentials=t,this},s.prototype.redirects=function(t){return this._maxRedirects=t,this},s.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},s.prototype.send=function(t){var e=o(t),r=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),e&&!this._data)Array.isArray(t)?this._data=[]:this._isHost(t)||(this._data={});else if(t&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(e&&o(this._data))for(var s in t)this._data[s]=t[s];else"string"==typeof t?(r||this.type("form"),r=this._header["content-type"],this._data="application/x-www-form-urlencoded"==r?this._data?this._data+"&"+t:t:(this._data||"")+t):this._data=t;return!e||this._isHost(t)?this:(r||this.type("json"),this)},s.prototype.sortQuery=function(t){return this._sort=void 0===t||t,this},s.prototype._timeoutError=function(t,e,r){if(!this._aborted){var s=new Error(t+e+"ms exceeded");s.timeout=e,s.code="ECONNABORTED",s.errno=r,this.timedout=!0,this.abort(),this.callback(s)}},s.prototype._setTimeouts=function(){var t=this;this._timeout&&!this._timer&&(this._timer=setTimeout(function(){t._timeoutError("Timeout of ",t._timeout,"ETIME")},this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout(function(){t._timeoutError("Response timeout of ",t._responseTimeout,"ETIMEDOUT")},this._responseTimeout))}},function(t,e){function r(t){return null!==t&&"object"==typeof t}t.exports=r},function(t,e,r){function s(t){return"[object Function]"===(i(t)?Object.prototype.toString.call(t):"")}var i=r(5);t.exports=s},function(t,e,r){function s(t){if(t)return i(t)}function i(t){for(var e in s.prototype)t[e]=s.prototype[e];return t}var o=r(8);t.exports=s,s.prototype.get=function(t){return this.header[t.toLowerCase()]},s.prototype._setHeaderProperties=function(t){var e=t["content-type"]||"";this.type=o.type(e);var r=o.params(e);for(var s in r)this[s]=r[s];this.links={};try{t.link&&(this.links=o.parseLinks(t.link))}catch(t){}},s.prototype._setStatusProperties=function(t){var e=t/100|0;this.status=this.statusCode=t,this.statusType=e,this.info=1==e,this.ok=2==e,this.redirect=3==e,this.clientError=4==e,this.serverError=5==e,this.error=(4==e||5==e)&&this.toError(),this.accepted=202==t,this.noContent=204==t,this.badRequest=400==t,this.unauthorized=401==t,this.notAcceptable=406==t,this.forbidden=403==t,this.notFound=404==t}},function(t,e){e.type=function(t){return t.split(/ *; */).shift()},e.params=function(t){return t.split(/ *; */).reduce(function(t,e){var r=e.split(/ *= */),s=r.shift(),i=r.shift();return s&&i&&(t[s]=i),t},{})},e.parseLinks=function(t){return t.split(/ *, */).reduce(function(t,e){var r=e.split(/ *; */),s=r[0].slice(1,-1);return t[r[1].split(/ *= */)[1].slice(1,-1)]=s,t},{})},e.cleanHeader=function(t,e){return delete t["content-type"],delete t["content-length"],delete t["transfer-encoding"],delete t.host,e&&delete t.cookie,t}},function(t,e){var r=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];t.exports=function(t,e){return!!(t&&t.code&&~r.indexOf(t.code))||(!!(e&&e.status&&e.status>=500)||(!!(t&&"timeout"in t&&"ECONNABORTED"==t.code)||!!(t&&"crossDomain"in t)))}}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-promise@1.0.6"]={"es6-promise":"3.2.1"},function(t){function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}var e={};return n.m=t,n.c=e,n.p="",n(0)}([function(t,n,e){Morph.modules["bbc-morph-promise@1.0.6"]=e(1)},function(t,n,e){var r=e(2).Promise;t.exports=r},function(t,n,e){var r;(function(t,o,i){(function(){"use strict";function s(t){return"function"==typeof t||"object"==typeof t&&null!==t}function u(t){return"function"==typeof t}function c(t){V=t}function a(t){tt=t}function f(){return function(){t.nextTick(v)}}function l(){return function(){R(v)}}function h(){var t=0,n=new rt(v),e=document.createTextNode("");return n.observe(e,{characterData:!0}),function(){e.data=t=++t%2}}function p(){var t=new MessageChannel;return t.port1.onmessage=v,function(){t.port2.postMessage(0)}}function d(){return function(){setTimeout(v,1)}}function v(){for(var t=0;t<$;t+=2){var n=st[t],e=st[t+1];n(e),st[t]=void 0,st[t+1]=void 0}$=0}function _(){try{var t=e(5);return R=t.runOnLoop||t.runOnContext,l()}catch(t){return d()}}function y(t,n){var e=this,r=new this.constructor(w);void 0===r[at]&&N(r);var o=e._state;if(o){var i=arguments[o-1];tt(function(){F(o,r,i,e._result)})}else C(e,r,t,n);return r}function m(t){var n=this;if(t&&"object"==typeof t&&t.constructor===n)return t;var e=new n(w);return j(e,t),e}function w(){}function b(){return new TypeError("You cannot resolve a promise with itself")}function g(){return new TypeError("A promises callback cannot return that same promise.")}function A(t){try{return t.then}catch(t){return pt.error=t,pt}}function x(t,n,e,r){try{t.call(n,e,r)}catch(t){return t}}function E(t,n,e){tt(function(t){var r=!1,o=x(e,n,function(e){r||(r=!0,n!==e?j(t,e):M(t,e))},function(n){r||(r=!0,k(t,n))},"Settle: "+(t._label||" unknown promise"));!r&&o&&(r=!0,k(t,o))},t)}function T(t,n){n._state===lt?M(t,n._result):n._state===ht?k(t,n._result):C(n,void 0,function(n){j(t,n)},function(n){k(t,n)})}function S(t,n,e){n.constructor===t.constructor&&e===ut&&constructor.resolve===ct?T(t,n):e===pt?k(t,pt.error):void 0===e?M(t,n):u(e)?E(t,n,e):M(t,n)}function j(t,n){t===n?k(t,b()):s(n)?S(t,n,A(n)):M(t,n)}function P(t){t._onerror&&t._onerror(t._result),O(t)}function M(t,n){t._state===ft&&(t._result=n,t._state=lt,0!==t._subscribers.length&&tt(O,t))}function k(t,n){t._state===ft&&(t._state=ht,t._result=n,tt(P,t))}function C(t,n,e,r){var o=t._subscribers,i=o.length;t._onerror=null,o[i]=n,o[i+lt]=e,o[i+ht]=r,0===i&&t._state&&tt(O,t)}function O(t){var n=t._subscribers,e=t._state;if(0!==n.length){for(var r,o,i=t._result,s=0;s<n.length;s+=3)r=n[s],o=n[s+e],r?F(e,r,o,i):o(i);t._subscribers.length=0}}function L(){this.error=null}function Y(t,n){try{return t(n)}catch(t){return dt.error=t,dt}}function F(t,n,e,r){var o,i,s,c,a=u(e);if(a){if(o=Y(e,r),o===dt?(c=!0,i=o.error,o=null):s=!0,n===o)return void k(n,g())}else o=r,s=!0;n._state!==ft||(a&&s?j(n,o):c?k(n,i):t===lt?M(n,o):t===ht&&k(n,o))}function D(t,n){try{n(function(n){j(t,n)},function(n){k(t,n)})}catch(n){k(t,n)}}function K(){return vt++}function N(t){t[at]=vt++,t._state=void 0,t._result=void 0,t._subscribers=[]}function U(t){return new bt(this,t).promise}function W(t){var n=this;return new n(Z(t)?function(e,r){for(var o=t.length,i=0;i<o;i++)n.resolve(t[i]).then(e,r)}:function(t,n){n(new TypeError("You must pass an array to race."))})}function q(t){var n=this,e=new n(w);return k(e,t),e}function z(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function B(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}function G(t){this[at]=K(),this._result=this._state=void 0,this._subscribers=[],w!==t&&("function"!=typeof t&&z(),this instanceof G?D(this,t):B())}function H(t,n){this._instanceConstructor=t,this.promise=new t(w),this.promise[at]||N(this.promise),Z(n)?(this._input=n,this.length=n.length,this._remaining=n.length,this._result=new Array(this.length),0===this.length?M(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&M(this.promise,this._result))):k(this.promise,I())}function I(){return new Error("Array Methods must be provided an Array")}function J(){var t;if("undefined"!=typeof o)t=o;else if("undefined"!=typeof self)t=self;else try{t=Function("return this")()}catch(t){throw new Error("polyfill failed because global object is unavailable in this environment")}var n=t.Promise;n&&"[object Promise]"===Object.prototype.toString.call(n.resolve())&&!n.cast||(t.Promise=wt)}var Q;Q=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)};var R,V,X,Z=Q,$=0,tt=function(t,n){st[$]=t,st[$+1]=n,$+=2,2===$&&(V?V(v):X())},nt="undefined"!=typeof window?window:void 0,et=nt||{},rt=et.MutationObserver||et.WebKitMutationObserver,ot="undefined"==typeof self&&"undefined"!=typeof t&&"[object process]"==={}.toString.call(t),it="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel,st=new Array(1e3);X=ot?f():rt?h():it?p():void 0===nt?_():d();var ut=y,ct=m,at=Math.random().toString(36).substring(16),ft=void 0,lt=1,ht=2,pt=new L,dt=new L,vt=0,_t=U,yt=W,mt=q,wt=G;G.all=_t,G.race=yt,G.resolve=ct,G.reject=mt,G._setScheduler=c,G._setAsap=a,G._asap=tt,G.prototype={constructor:G,then:ut,catch:function(t){return this.then(null,t)}};var bt=H;H.prototype._enumerate=function(){for(var t=this.length,n=this._input,e=0;this._state===ft&&e<t;e++)this._eachEntry(n[e],e)},H.prototype._eachEntry=function(t,n){var e=this._instanceConstructor,r=e.resolve;if(r===ct){var o=A(t);if(o===ut&&t._state!==ft)this._settledAt(t._state,n,t._result);else if("function"!=typeof o)this._remaining--,this._result[n]=t;else if(e===wt){var i=new e(w);S(i,t,o),this._willSettleAt(i,n)}else this._willSettleAt(new e(function(n){n(t)}),n)}else this._willSettleAt(r(t),n)},H.prototype._settledAt=function(t,n,e){var r=this.promise;r._state===ft&&(this._remaining--,t===ht?k(r,e):this._result[n]=e),0===this._remaining&&M(r,this._result)},H.prototype._willSettleAt=function(t,n){var e=this;C(t,void 0,function(t){e._settledAt(lt,n,t)},function(t){e._settledAt(ht,n,t)})};var gt=J,At={Promise:wt,polyfill:gt};e(6).amd?(r=function(){return At}.call(n,e,n,i),!(void 0!==r&&(i.exports=r))):"undefined"!=typeof i&&i.exports?i.exports=At:"undefined"!=typeof this&&(this.ES6Promise=At),gt()}).call(this)}).call(n,e(3),function(){return this}(),e(4)(t))},function(t,n){function e(){l&&a&&(l=!1,a.length?f=a.concat(f):h=-1,f.length&&r())}function r(){if(!l){var t=s(e);l=!0;for(var n=f.length;n;){for(a=f,f=[];++h<n;)a&&a[h].run();h=-1,n=f.length}a=null,l=!1,u(t)}}function o(t,n){this.fun=t,this.array=n}function i(){}var s,u,c=t.exports={};!function(){try{s=setTimeout}catch(t){s=function(){throw new Error("setTimeout is not defined")}}try{u=clearTimeout}catch(t){u=function(){throw new Error("clearTimeout is not defined")}}}();var a,f=[],l=!1,h=-1;c.nextTick=function(t){var n=new Array(arguments.length-1);if(arguments.length>1)for(var e=1;e<arguments.length;e++)n[e-1]=arguments[e];f.push(new o(t,n)),1!==f.length||l||s(r,0)},o.prototype.run=function(){this.fun.apply(null,this.array)},c.title="browser",c.browser=!0,c.env={},c.argv=[],c.version="",c.versions={},c.on=i,c.addListener=i,c.once=i,c.off=i,c.removeListener=i,c.removeAllListeners=i,c.emit=i,c.binding=function(t){throw new Error("process.binding is not supported")},c.cwd=function(){return"/"},c.chdir=function(t){throw new Error("process.chdir is not supported")},c.umask=function(){return 0}},function(t,n){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,n){},function(t,n){t.exports=function(){throw new Error("define cannot be used indirect")}}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-istats@1.3.0"]={"bbc-morph-promise":"1.0.6",requirejs:"2.3.5"},function(n){function r(e){if(t[e])return t[e].exports;var o=t[e]={exports:{},id:e,loaded:!1};return n[e].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}var t={};return r.m=n,r.c=t,r.p="",r(0)}([function(n,r,t){Morph.modules["bbc-morph-istats@1.3.0"]=t(1)},function(n,r,t){function e(){return p?a.resolve(p):new a(function(n){requirejs(["istats-1"],function(r){p=r,n(p)})})}function o(n){return"string"==typeof n&&n[0]}function u(n,r){return o(n)&&o(r)}function i(n,r,t){return e().then(function(e){e.log(n,r,t)})}function c(n,r){return e().then(function(t){t.track(n,r)})}function s(n,r,t){return u(n,r)?i(r,n,t):a.reject("Invalid parameters")}function f(){return e().then(function(n){return n.getCountername()})}var p,a=t(2);r.track=s,r.trackRegion=c,r.getCountername=f,r.log=i},function(n,r){n.exports=Morph.modules["bbc-morph-promise@1.0.6"]}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-classnames@1.0.2"]={classnames:"2.2.5"},function(r){function o(s){if(n[s])return n[s].exports;var e=n[s]={exports:{},id:s,loaded:!1};return r[s].call(e.exports,e,e.exports,o),e.loaded=!0,e.exports}var n={};o.m=r,o.c=n,o.p="",o(0)}([function(r,o,n){Morph.modules["bbc-morph-classnames@1.0.2"]=n(1)},function(r,o,n){var s=n(2);r.exports=s},function(r,o,n){var s,e;!function(){"use strict";function n(){for(var r=[],o=0;o<arguments.length;o++){var s=arguments[o];if(s){var e=typeof s;if("string"===e||"number"===e)r.push(s);else if(Array.isArray(s))r.push(n.apply(null,s));else if("object"===e)for(var a in s)t.call(s,a)&&s[a]&&r.push(a)}}return r.join(" ")}var t={}.hasOwnProperty;void 0!==r&&r.exports?r.exports=n:(s=[],void 0!==(e=function(){return n}.apply(o,s))&&(r.exports=e))}()}]);; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-gel-icons@3.0.0"]={"bbc-morph-classnames":"1.0.2","morph-require":"3.0.17",react:"0.14.7"},function(e){function r(n){if(t[n])return t[n].exports;var i=t[n]={exports:{},id:n,loaded:!1};return e[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}var t={};return r.m=e,r.c=t,r.p="",r(0)}([function(e,r,t){Morph.modules["bbc-morph-gel-icons@3.0.0"]=t(1)},function(e,r,t){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(r,"__esModule",{value:!0});var i=t(2),o=n(i),a=t(3),s=n(a),l=t(4),c=n(l),u=o.default.createClass({displayName:"GEL__Icon",propTypes:{iconName:o.default.PropTypes.string,additionalClassNames:o.default.PropTypes.string},render:function(){var e=(0,c.default)("gel-icon","gel-icon--"+this.props.iconName,this.props.additionalClassNames),r="";try{var t=s.default.selfTransitiveThenUpdate("gel-icon-"+this.props.iconName,this);r=t?o.default.createElement(t,null):o.default.createElement("noscript",null)}catch(e){r=o.default.createElement("noscript",null)}return o.default.createElement("div",{className:e},r)}});u.ensureIcon=function(e){"undefined"==typeof window&&s.default.selfTransitive("gel-icon-"+e,null)},r.default=u,e.exports=r.default},function(e,r){e.exports=React},function(e,r){e.exports={transitive:function(e,r){return Morph.requireTransitiveWithCaller("bbc-morph-gel-icons@3.0.0",e,r)},selfTransitive:function(e,r){return Morph.requireTransitiveWithCaller("bbc-morph-gel-icons@3.0.0",e,r,!0)},transitiveThenUpdate:function(e,r){return Morph.requireTransitiveWithCallerThenUpdate("bbc-morph-gel-icons@3.0.0",e,r)},selfTransitiveThenUpdate:function(e,r){return Morph.requireTransitiveWithCallerThenUpdate("bbc-morph-gel-icons@3.0.0",e,r,!0)}}},function(e,r){e.exports=Morph.modules["bbc-morph-classnames@1.0.2"]}]);; });</script><script>Morph.toInit.bundles.push(function() { !function(e){function t(s){if(i[s])return i[s].exports;var r=i[s]={i:s,l:!1,exports:{}};return e[s].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var i={};t.m=e,t.c=i,t.d=function(e,i,s){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:s})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=84)}([function(e,t,i){(function(t){var i=function(e){return e&&e.Math==Math&&e};e.exports=i("object"==typeof globalThis&&globalThis)||i("object"==typeof window&&window)||i("object"==typeof self&&self)||i("object"==typeof t&&t)||Function("return this")()}).call(t,i(87))},function(e,t,i){var s=i(0),r=i(29),n=i(4),a=i(23),o=i(35),c=i(57),h=r("wks"),d=s.Symbol,u=c?d:d&&d.withoutSetter||a;e.exports=function(e){return n(h,e)||(o&&n(d,e)?h[e]=d[e]:h[e]=u("Symbol."+e)),h[e]}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){var i={}.hasOwnProperty;e.exports=function(e,t){return i.call(e,t)}},function(e,t,i){var s=i(2);e.exports=function(e){if(!s(e))throw TypeError(String(e)+" is not an object");return e}},function(e,t,i){var s=i(0),r=i(15).f,n=i(9),a=i(11),o=i(27),c=i(52),h=i(34);e.exports=function(e,t){var i,d,u,l,w,b=e.target,p=e.global,g=e.stat;if(i=p?s:g?s[b]||o(b,{}):(s[b]||{}).prototype)for(d in t){if(l=t[d],e.noTargetGet?(w=r(i,d),u=w&&w.value):u=i[d],!h(p?d:b+(g?".":"#")+d,e.forced)&&void 0!==u){if(typeof l==typeof u)continue;c(l,u)}(e.sham||u&&u.sham)&&n(l,"sham",!0),a(i,d,l,e)}}},function(e,t,i){var s=i(3);e.exports=!s(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},function(e,t,i){var s=i(7),r=i(49),n=i(5),a=i(25),o=Object.defineProperty;t.f=s?o:function(e,t,i){if(n(e),t=a(t,!0),n(i),r)try{return o(e,t,i)}catch(e){}if("get"in i||"set"in i)throw TypeError("Accessors not supported");return"value"in i&&(e[t]=i.value),e}},function(e,t,i){var s=i(7),r=i(8),n=i(21);e.exports=s?function(e,t,i){return r.f(e,t,n(1,i))}:function(e,t,i){return e[t]=i,e}},function(e,t){var i={}.toString;e.exports=function(e){return i.call(e).slice(8,-1)}},function(e,t,i){var s=i(0),r=i(9),n=i(4),a=i(27),o=i(28),c=i(13),h=c.get,d=c.enforce,u=String(String).split("String");(e.exports=function(e,t,i,o){var c=!!o&&!!o.unsafe,h=!!o&&!!o.enumerable,l=!!o&&!!o.noTargetGet;if("function"==typeof i&&("string"!=typeof t||n(i,"name")||r(i,"name",t),d(i).source=u.join("string"==typeof t?t:"")),e===s)return void(h?e[t]=i:a(t,i));c?!l&&e[t]&&(h=!0):delete e[t],h?e[t]=i:r(e,t,i)})(Function.prototype,"toString",function(){return"function"==typeof this&&h(this).source||o(this)})},function(e,t,i){var s=i(48),r=i(16);e.exports=function(e){return s(r(e))}},function(e,t,i){var s,r,n,a=i(51),o=i(0),c=i(2),h=i(9),d=i(4),u=i(22),l=i(18),w=o.WeakMap,b=function(e){return n(e)?r(e):s(e,{})},p=function(e){return function(t){var i;if(!c(t)||(i=r(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return i}};if(a){var g=new w,m=g.get,z=g.has,f=g.set;s=function(e,t){return f.call(g,e,t),t},r=function(e){return m.call(g,e)||{}},n=function(e){return z.call(g,e)}}else{var y=u("state");l[y]=!0,s=function(e,t){return h(e,y,t),t},r=function(e){return d(e,y)?e[y]:{}},n=function(e){return d(e,y)}}e.exports={set:s,get:r,has:n,enforce:b,getterFor:p}},function(e,t,i){var s=i(53),r=i(0),n=function(e){return"function"==typeof e?e:void 0};e.exports=function(e,t){return arguments.length<2?n(s[e])||n(r[e]):s[e]&&s[e][t]||r[e]&&r[e][t]}},function(e,t,i){var s=i(7),r=i(47),n=i(21),a=i(12),o=i(25),c=i(4),h=i(49),d=Object.getOwnPropertyDescriptor;t.f=s?d:function(e,t){if(e=a(e),t=o(t,!0),h)try{return d(e,t)}catch(e){}if(c(e,t))return n(!r.f.call(e,t),e[t])}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports=!1},function(e,t){e.exports={}},function(e,t,i){var s=i(8).f,r=i(4),n=i(1),a=n("toStringTag");e.exports=function(e,t,i){e&&!r(e=i?e:e.prototype,a)&&s(e,a,{configurable:!0,value:t})}},function(e,t){e.exports={}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,i){var s=i(29),r=i(23),n=s("keys");e.exports=function(e){return n[e]||(n[e]=r(e))}},function(e,t){var i=0,s=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++i+s).toString(36)}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},function(e,t,i){var s=i(2);e.exports=function(e,t){if(!s(e))return e;var i,r;if(t&&"function"==typeof(i=e.toString)&&!s(r=i.call(e)))return r;if("function"==typeof(i=e.valueOf)&&!s(r=i.call(e)))return r;if(!t&&"function"==typeof(i=e.toString)&&!s(r=i.call(e)))return r;throw TypeError("Can't convert object to primitive value")}},function(e,t,i){var s=i(0),r=i(2),n=s.document,a=r(n)&&r(n.createElement);e.exports=function(e){return a?n.createElement(e):{}}},function(e,t,i){var s=i(0),r=i(9);e.exports=function(e,t){try{r(s,e,t)}catch(i){s[e]=t}return t}},function(e,t,i){var s=i(50),r=Function.toString;"function"!=typeof s.inspectSource&&(s.inspectSource=function(e){return r.call(e)}),e.exports=s.inspectSource},function(e,t,i){var s=i(17),r=i(50);(e.exports=function(e,t){return r[e]||(r[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.6.4",mode:s?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(e,t,i){var s=i(54),r=i(33),n=r.concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return s(e,n)}},function(e,t,i){var s=i(32),r=Math.min;e.exports=function(e){return e>0?r(s(e),9007199254740991):0}},function(e,t){var i=Math.ceil,s=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?s:i)(e)}},function(e,t){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(e,t,i){var s=i(3),r=/#|\.prototype\./,n=function(e,t){var i=o[a(e)];return i==h||i!=c&&("function"==typeof t?s(t):!!t)},a=n.normalize=function(e){return String(e).replace(r,".").toLowerCase()},o=n.data={},c=n.NATIVE="N",h=n.POLYFILL="P";e.exports=n},function(e,t,i){var s=i(3);e.exports=!!Object.getOwnPropertySymbols&&!s(function(){return!String(Symbol())})},function(e,t,i){var s=i(16);e.exports=function(e){return Object(s(e))}},function(e,t,i){var s,r=i(5),n=i(90),a=i(33),o=i(18),c=i(60),h=i(26),d=i(22),u=d("IE_PROTO"),l=function(){},w=function(e){return"<script>"+e+"<\/script>"},b=function(e){e.write(w("")),e.close();var t=e.parentWindow.Object;return e=null,t},p=function(){var e,t=h("iframe");return t.style.display="none",c.appendChild(t),t.src=String("javascript:"),e=t.contentWindow.document,e.open(),e.write(w("document.F=Object")),e.close(),e.F},g=function(){try{s=document.domain&&new ActiveXObject("htmlfile")}catch(e){}g=s?b(s):p();for(var e=a.length;e--;)delete g.prototype[a[e]];return g()};o[u]=!0,e.exports=Object.create||function(e,t){var i;return null!==e?(l.prototype=r(e),i=new l,l.prototype=null,i[u]=e):i=g(),void 0===t?i:n(i,t)}},function(e,t,i){var s=i(39),r=i(48),n=i(36),a=i(31),o=i(92),c=[].push,h=function(e){var t=1==e,i=2==e,h=3==e,d=4==e,u=6==e,l=5==e||u;return function(w,b,p,g){for(var m,z,f=n(w),y=r(f),v=s(b,p,3),k=a(y.length),x=0,j=g||o,q=t?j(w,k):i?j(w,0):void 0;k>x;x++)if((l||x in y)&&(m=y[x],z=v(m,x,f),e))if(t)q[x]=z;else if(z)switch(e){case 3:return!0;case 5:return m;case 6:return x;case 2:c.call(q,m)}else if(d)return!1;return u?-1:h||d?d:q}};e.exports={forEach:h(0),map:h(1),filter:h(2),some:h(3),every:h(4),find:h(5),findIndex:h(6)}},function(e,t,i){var s=i(24);e.exports=function(e,t,i){if(s(e),void 0===t)return e;switch(i){case 0:return function(){return e.call(t)};case 1:return function(i){return e.call(t,i)};case 2:return function(i,s){return e.call(t,i,s)};case 3:return function(i,s,r){return e.call(t,i,s,r)}}return function(){return e.apply(t,arguments)}}},function(e,t,i){var s=i(1),r=s("toStringTag"),n={};n[r]="z",e.exports="[object z]"===String(n)},function(e,t,i){var s=i(11);e.exports=function(e,t,i){for(var r in t)s(e,r,t[r],i);return e}},function(e,t){e.exports=function(e,t,i){if(!(e instanceof t))throw TypeError("Incorrect "+(i?i+" ":"")+"invocation");return e}},function(e,t,i){var s=i(5),r=i(103),n=i(31),a=i(39),o=i(104),c=i(105),h=function(e,t){this.stopped=e,this.result=t};(e.exports=function(e,t,i,d,u){var l,w,b,p,g,m,z,f=a(t,i,d?2:1);if(u)l=e;else{if("function"!=typeof(w=o(e)))throw TypeError("Target is not iterable");if(r(w)){for(b=0,p=n(e.length);p>b;b++)if((g=d?f(s(z=e[b])[0],z[1]):f(e[b]))&&g instanceof h)return g;return new h(!1)}l=w.call(e)}for(m=l.next;!(z=m.call(l)).done;)if("object"==typeof(g=c(l,f,z.value,d))&&g&&g instanceof h)return g;return new h(!1)}).stop=function(e){return new h(!0,e)}},function(e,t,i){"use strict";var s=i(6),r=i(45);s({target:"RegExp",proto:!0,forced:/./.exec!==r},{exec:r})},function(e,t,i){"use strict";var s=i(111),r=i(112),n=RegExp.prototype.exec,a=String.prototype.replace,o=n,c=function(){var e=/a/,t=/b*/g;return n.call(e,"a"),n.call(t,"a"),0!==e.lastIndex||0!==t.lastIndex}(),h=r.UNSUPPORTED_Y||r.BROKEN_CARET,d=void 0!==/()??/.exec("")[1];(c||d||h)&&(o=function(e){var t,i,r,o,u=this,l=h&&u.sticky,w=s.call(u),b=u.source,p=0,g=e;return l&&(w=w.replace("y",""),-1===w.indexOf("g")&&(w+="g"),g=String(e).slice(u.lastIndex),u.lastIndex>0&&(!u.multiline||u.multiline&&"\n"!==e[u.lastIndex-1])&&(b="(?: "+b+")",g=" "+g,p++),i=new RegExp("^(?:"+b+")",w)),d&&(i=new RegExp("^"+b+"$(?!\\s)",w)),c&&(t=u.lastIndex),r=n.call(l?i:u,g),l?r?(r.input=r.input.slice(p),r[0]=r[0].slice(p),r.index=u.lastIndex,u.lastIndex+=r[0].length):u.lastIndex=0:c&&r&&(u.lastIndex=u.global?r.index+r[0].length:t),d&&r&&r.length>1&&a.call(r[0],i,function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)}),r}),e.exports=o},function(e,t,i){var s=i(18),r=i(2),n=i(4),a=i(8).f,o=i(23),c=i(122),h=o("meta"),d=0,u=Object.isExtensible||function(){return!0},l=function(e){a(e,h,{value:{objectID:"O"+ ++d,weakData:{}}})},w=function(e,t){if(!r(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!n(e,h)){if(!u(e))return"F";if(!t)return"E";l(e)}return e[h].objectID},b=function(e,t){if(!n(e,h)){if(!u(e))return!0;if(!t)return!1;l(e)}return e[h].weakData},p=function(e){return c&&g.REQUIRED&&u(e)&&!n(e,h)&&l(e),e},g=e.exports={REQUIRED:!1,fastKey:w,getWeakData:b,onFreeze:p};s[h]=!0},function(e,t,i){"use strict";var s={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,n=r&&!s.call({1:2},1);t.f=n?function(e){var t=r(this,e);return!!t&&t.enumerable}:s},function(e,t,i){var s=i(3),r=i(10),n="".split;e.exports=s(function(){return!Object("z").propertyIsEnumerable(0)})?function(e){return"String"==r(e)?n.call(e,""):Object(e)}:Object},function(e,t,i){var s=i(7),r=i(3),n=i(26);e.exports=!s&&!r(function(){return 7!=Object.defineProperty(n("div"),"a",{get:function(){return 7}}).a})},function(e,t,i){var s=i(0),r=i(27),n=s["__core-js_shared__"]||r("__core-js_shared__",{});e.exports=n},function(e,t,i){var s=i(0),r=i(28),n=s.WeakMap;e.exports="function"==typeof n&&/native code/.test(r(n))},function(e,t,i){var s=i(4),r=i(88),n=i(15),a=i(8);e.exports=function(e,t){for(var i=r(t),o=a.f,c=n.f,h=0;h<i.length;h++){var d=i[h];s(e,d)||o(e,d,c(t,d))}}},function(e,t,i){var s=i(0);e.exports=s},function(e,t,i){var s=i(4),r=i(12),n=i(55).indexOf,a=i(18);e.exports=function(e,t){var i,o=r(e),c=0,h=[];for(i in o)!s(a,i)&&s(o,i)&&h.push(i);for(;t.length>c;)s(o,i=t[c++])&&(~n(h,i)||h.push(i));return h}},function(e,t,i){var s=i(12),r=i(31),n=i(89),a=function(e){return function(t,i,a){var o,c=s(t),h=r(c.length),d=n(a,h);if(e&&i!=i){for(;h>d;)if((o=c[d++])!=o)return!0}else for(;h>d;d++)if((e||d in c)&&c[d]===i)return e||d||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,i){var s=i(35);e.exports=s&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(e,t,i){var s=i(10);e.exports=Array.isArray||function(e){return"Array"==s(e)}},function(e,t,i){var s=i(54),r=i(33);e.exports=Object.keys||function(e){return s(e,r)}},function(e,t,i){var s=i(14);e.exports=s("document","documentElement")},function(e,t,i){var s=i(1);t.f=s},function(e,t,i){var s=i(53),r=i(4),n=i(61),a=i(8).f;e.exports=function(e){var t=s.Symbol||(s.Symbol={});r(t,e)||a(t,e,{value:n.f(e)})}},function(e,t,i){"use strict";var s=i(6),r=i(38).filter,n=i(95),a=i(66),o=n("filter"),c=a("filter");s({target:"Array",proto:!0,forced:!o||!c},{filter:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}})},function(e,t,i){var s,r,n=i(0),a=i(65),o=n.process,c=o&&o.versions,h=c&&c.v8;h?(s=h.split("."),r=s[0]+s[1]):a&&(!(s=a.match(/Edge\/(\d+)/))||s[1]>=74)&&(s=a.match(/Chrome\/(\d+)/))&&(r=s[1]),e.exports=r&&+r},function(e,t,i){var s=i(14);e.exports=s("navigator","userAgent")||""},function(e,t,i){var s=i(7),r=i(3),n=i(4),a=Object.defineProperty,o={},c=function(e){throw e};e.exports=function(e,t){if(n(o,e))return o[e];t||(t={});var i=[][e],h=!!n(t,"ACCESSORS")&&t.ACCESSORS,d=n(t,0)?t[0]:c,u=n(t,1)?t[1]:void 0;return o[e]=!!i&&!r(function(){if(h&&!s)return!0;var e={length:-1};h?a(e,1,{enumerable:!0,get:c}):e[1]=1,i.call(e,d,u)})}},function(e,t,i){"use strict";var s=i(6),r=i(55).includes,n=i(68);s({target:"Array",proto:!0,forced:!i(66)("indexOf",{ACCESSORS:!0,1:0})},{includes:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}}),n("includes")},function(e,t,i){var s=i(1),r=i(37),n=i(8),a=s("unscopables"),o=Array.prototype;void 0==o[a]&&n.f(o,a,{configurable:!0,value:r(null)}),e.exports=function(e){o[a][e]=!0}},function(e,t,i){"use strict";var s=i(12),r=i(68),n=i(20),a=i(13),o=i(70),c=a.set,h=a.getterFor("Array Iterator");e.exports=o(Array,"Array",function(e,t){c(this,{type:"Array Iterator",target:s(e),index:0,kind:t})},function(){var e=h(this),t=e.target,i=e.kind,s=e.index++;return!t||s>=t.length?(e.target=void 0,{value:void 0,done:!0}):"keys"==i?{value:s,done:!1}:"values"==i?{value:t[s],done:!1}:{value:[s,t[s]],done:!1}},"values"),n.Arguments=n.Array,r("keys"),r("values"),r("entries")},function(e,t,i){"use strict";var s=i(6),r=i(96),n=i(72),a=i(73),o=i(19),c=i(9),h=i(11),d=i(1),u=i(17),l=i(20),w=i(71),b=w.IteratorPrototype,p=w.BUGGY_SAFARI_ITERATORS,g=d("iterator"),m=function(){return this};e.exports=function(e,t,i,d,w,z,f){r(i,t,d);var y,v,k,x=function(e){if(e===w&&S)return S;if(!p&&e in T)return T[e];switch(e){case"keys":case"values":case"entries":return function(){return new i(this,e)}}return function(){return new i(this)}},j=t+" Iterator",q=!1,T=e.prototype,I=T[g]||T["@@iterator"]||w&&T[w],S=!p&&I||x(w),P="Array"==t?T.entries||I:I;if(P&&(y=n(P.call(new e)),b!==Object.prototype&&y.next&&(u||n(y)===b||(a?a(y,b):"function"!=typeof y[g]&&c(y,g,m)),o(y,j,!0,!0),u&&(l[j]=m))),"values"==w&&I&&"values"!==I.name&&(q=!0,S=function(){return I.call(this)}),u&&!f||T[g]===S||c(T,g,S),l[t]=S,w)if(v={values:x("values"),keys:z?S:x("keys"),entries:x("entries")},f)for(k in v)!p&&!q&&k in T||h(T,k,v[k]);else s({target:t,proto:!0,forced:p||q},v);return v}},function(e,t,i){"use strict";var s,r,n,a=i(72),o=i(9),c=i(4),h=i(1),d=i(17),u=h("iterator"),l=!1,w=function(){return this};[].keys&&(n=[].keys(),"next"in n?(r=a(a(n)))!==Object.prototype&&(s=r):l=!0),void 0==s&&(s={}),d||c(s,u)||o(s,u,w),e.exports={IteratorPrototype:s,BUGGY_SAFARI_ITERATORS:l}},function(e,t,i){var s=i(4),r=i(36),n=i(22),a=i(97),o=n("IE_PROTO"),c=Object.prototype;e.exports=a?Object.getPrototypeOf:function(e){return e=r(e),s(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?c:null}},function(e,t,i){var s=i(5),r=i(98);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,i={};try{e=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set,e.call(i,[]),t=i instanceof Array}catch(e){}return function(i,n){return s(i),r(n),t?e.call(i,n):i.__proto__=n,i}}():void 0)},function(e,t,i){var s=i(40),r=i(11),n=i(100);s||r(Object.prototype,"toString",n,{unsafe:!0})},function(e,t,i){var s=i(40),r=i(10),n=i(1),a=n("toStringTag"),o="Arguments"==r(function(){return arguments}()),c=function(e,t){try{return e[t]}catch(e){}};e.exports=s?r:function(e){var t,i,s;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(i=c(t=Object(e),a))?i:o?r(t):"Object"==(s=r(t))&&"function"==typeof t.callee?"Arguments":s}},function(e,t,i){"use strict";var s,r,n,a,o=i(6),c=i(17),h=i(0),d=i(14),u=i(101),l=i(11),w=i(41),b=i(19),p=i(102),g=i(2),m=i(24),z=i(42),f=i(10),y=i(28),v=i(43),k=i(77),x=i(106),j=i(78).set,q=i(107),T=i(108),I=i(109),S=i(80),P=i(110),M=i(13),C=i(34),A=i(1),H=i(64),R=A("species"),E="Promise",W=M.get,O=M.set,D=M.getterFor(E),N=u,L=h.TypeError,B=h.document,K=h.process,F=d("fetch"),U=S.f,_=U,V="process"==f(K),J=!!(B&&B.createEvent&&h.dispatchEvent),G=C(E,function(){if(y(N)===String(N)){if(66===H)return!0;if(!V&&"function"!=typeof PromiseRejectionEvent)return!0}if(c&&!N.prototype.finally)return!0;if(H>=51&&/native code/.test(N))return!1;var e=N.resolve(1),t=function(e){e(function(){},function(){})},i=e.constructor={};return i[R]=t,!(e.then(function(){})instanceof t)}),$=G||!k(function(e){N.all(e).catch(function(){})}),Q=function(e){var t;return!(!g(e)||"function"!=typeof(t=e.then))&&t},Y=function(e,t,i){if(!t.notified){t.notified=!0;var s=t.reactions;q(function(){for(var r=t.value,n=1==t.state,a=0;s.length>a;){var o,c,h,d=s[a++],u=n?d.ok:d.fail,l=d.resolve,w=d.reject,b=d.domain;try{u?(n||(2===t.rejection&&te(e,t),t.rejection=1),!0===u?o=r:(b&&b.enter(),o=u(r),b&&(b.exit(),h=!0)),o===d.promise?w(L("Promise-chain cycle")):(c=Q(o))?c.call(o,l,w):l(o)):w(r)}catch(e){b&&!h&&b.exit(),w(e)}}t.reactions=[],t.notified=!1,i&&!t.rejection&&X(e,t)})}},Z=function(e,t,i){var s,r;J?(s=B.createEvent("Event"),s.promise=t,s.reason=i,s.initEvent(e,!1,!0),h.dispatchEvent(s)):s={promise:t,reason:i},(r=h["on"+e])?r(s):"unhandledrejection"===e&&I("Unhandled promise rejection",i)},X=function(e,t){j.call(h,function(){var i,s=t.value,r=ee(t);if(r&&(i=P(function(){V?K.emit("unhandledRejection",s,e):Z("unhandledrejection",e,s)}),t.rejection=V||ee(t)?2:1,i.error))throw i.value})},ee=function(e){return 1!==e.rejection&&!e.parent},te=function(e,t){j.call(h,function(){V?K.emit("rejectionHandled",e):Z("rejectionhandled",e,t.value)})},ie=function(e,t,i,s){return function(r){e(t,i,r,s)}},se=function(e,t,i,s){t.done||(t.done=!0,s&&(t=s),t.value=i,t.state=2,Y(e,t,!0))},re=function(e,t,i,s){if(!t.done){t.done=!0,s&&(t=s);try{if(e===i)throw L("Promise can't be resolved itself");var r=Q(i);r?q(function(){var s={done:!1};try{r.call(i,ie(re,e,s,t),ie(se,e,s,t))}catch(i){se(e,s,i,t)}}):(t.value=i,t.state=1,Y(e,t,!1))}catch(i){se(e,{done:!1},i,t)}}};G&&(N=function(e){z(this,N,E),m(e),s.call(this);var t=W(this);try{e(ie(re,this,t),ie(se,this,t))}catch(e){se(this,t,e)}},s=function(e){O(this,{type:E,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})},s.prototype=w(N.prototype,{then:function(e,t){var i=D(this),s=U(x(this,N));return s.ok="function"!=typeof e||e,s.fail="function"==typeof t&&t,s.domain=V?K.domain:void 0,i.parent=!0,i.reactions.push(s),0!=i.state&&Y(this,i,!1),s.promise},catch:function(e){return this.then(void 0,e)}}),r=function(){var e=new s,t=W(e);this.promise=e,this.resolve=ie(re,e,t),this.reject=ie(se,e,t)},S.f=U=function(e){return e===N||e===n?new r(e):_(e)},c||"function"!=typeof u||(a=u.prototype.then,l(u.prototype,"then",function(e,t){var i=this;return new N(function(e,t){a.call(i,e,t)}).then(e,t)},{unsafe:!0}),"function"==typeof F&&o({global:!0,enumerable:!0,forced:!0},{fetch:function(e){return T(N,F.apply(h,arguments))}}))),o({global:!0,wrap:!0,forced:G},{Promise:N}),b(N,E,!1,!0),p(E),n=d(E),o({target:E,stat:!0,forced:G},{reject:function(e){var t=U(this);return t.reject.call(void 0,e),t.promise}}),o({target:E,stat:!0,forced:c||G},{resolve:function(e){return T(c&&this===n?N:this,e)}}),o({target:E,stat:!0,forced:$},{all:function(e){var t=this,i=U(t),s=i.resolve,r=i.reject,n=P(function(){var i=m(t.resolve),n=[],a=0,o=1;v(e,function(e){var c=a++,h=!1;n.push(void 0),o++,i.call(t,e).then(function(e){h||(h=!0,n[c]=e,--o||s(n))},r)}),--o||s(n)});return n.error&&r(n.value),i.promise},race:function(e){var t=this,i=U(t),s=i.reject,r=P(function(){var r=m(t.resolve);v(e,function(e){r.call(t,e).then(i.resolve,s)})});return r.error&&s(r.value),i.promise}})},function(e,t,i){var s=i(1),r=s("iterator"),n=!1;try{var a=0,o={next:function(){return{done:!!a++}},return:function(){n=!0}};o[r]=function(){return this},Array.from(o,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!n)return!1;var i=!1;try{var s={};s[r]=function(){return{next:function(){return{done:i=!0}}}},e(s)}catch(e){}return i}},function(e,t,i){var s,r,n,a=i(0),o=i(3),c=i(10),h=i(39),d=i(60),u=i(26),l=i(79),w=a.location,b=a.setImmediate,p=a.clearImmediate,g=a.process,m=a.MessageChannel,z=a.Dispatch,f=0,y={},v=function(e){if(y.hasOwnProperty(e)){var t=y[e];delete y[e],t()}},k=function(e){return function(){v(e)}},x=function(e){v(e.data)},j=function(e){a.postMessage(e+"",w.protocol+"//"+w.host)};b&&p||(b=function(e){for(var t=[],i=1;arguments.length>i;)t.push(arguments[i++]);return y[++f]=function(){("function"==typeof e?e:Function(e)).apply(void 0,t)},s(f),f},p=function(e){delete y[e]},"process"==c(g)?s=function(e){g.nextTick(k(e))}:z&&z.now?s=function(e){z.now(k(e))}:m&&!l?(r=new m,n=r.port2,r.port1.onmessage=x,s=h(n.postMessage,n,1)):!a.addEventListener||"function"!=typeof postMessage||a.importScripts||o(j)?s="onreadystatechange"in u("script")?function(e){d.appendChild(u("script")).onreadystatechange=function(){d.removeChild(this),v(e)}}:function(e){setTimeout(k(e),0)}:(s=j,a.addEventListener("message",x,!1))),e.exports={set:b,clear:p}},function(e,t,i){var s=i(65);e.exports=/(iphone|ipod|ipad).*applewebkit/i.test(s)},function(e,t,i){"use strict";var s=i(24),r=function(e){var t,i;this.promise=new e(function(e,s){if(void 0!==t||void 0!==i)throw TypeError("Bad Promise constructor");t=e,i=s}),this.resolve=s(t),this.reject=s(i)};e.exports.f=function(e){return new r(e)}},function(e,t,i){"use strict";var s=i(6),r=i(113),n=i(16);s({target:"String",proto:!0,forced:!i(115)("includes")},{includes:function(e){return!!~String(n(this)).indexOf(r(e),arguments.length>1?arguments[1]:void 0)}})},function(e,t,i){"use strict";var s=i(118),r=i(5),n=i(16),a=i(119),o=i(120);s("search",1,function(e,t,i){return[function(t){var i=n(this),s=void 0==t?void 0:t[e];return void 0!==s?s.call(t,i):new RegExp(t)[e](String(i))},function(e){var s=i(t,e,this);if(s.done)return s.value;var n=r(e),c=String(this),h=n.lastIndex;a(h,0)||(n.lastIndex=0);var d=o(n,c);return a(n.lastIndex,h)||(n.lastIndex=h),null===d?-1:d.index}]})},function(e,t){e.exports=React},function(e,t,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=i(85),r=i.n(s);Morph.modules["bbc-morph-bitesize-search-view@1.17.1"]=r.a},function(e,t,i){"use strict";i(86),i(93),i(94),i(63),i(67),i(69),i(99),i(74),i(76),i(44),i(81),i(116),i(82),i(121),i(126),e.exports=function(e){function t(s){if(i[s])return i[s].exports;var r=i[s]={i:s,l:!1,exports:{}};return e[s].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,s){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:s})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,i){function s(e){"@babel/helpers - typeof";return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function r(e){return e&&e.__esModule?e:{default:e}}function n(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return n=function(){return e},e}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=function(e){if(e&&e.__esModule)return e;if(null===e||"object"!==s(e)&&"function"!=typeof e)return{default:e};var t=n();if(t&&t.has(e))return t.get(e);var i={},r=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var o=r?Object.getOwnPropertyDescriptor(e,a):null;o&&(o.get||o.set)?Object.defineProperty(i,a,o):i[a]=e[a]}return i.default=e,t&&t.set(e,i),i}(i(1)),o=r(i(2)),c=r(i(3)),h=function(e){var t=e.className,i=e.placeholderText,s=e.section,r=e.zid,n=!t||"careers"===s.toLowerCase();return a.default.createElement("div",{className:t},n&&a.default.createElement(o.default,{placeholderText:i,searchRequest:(0,c.default)(r),maxResults:20}))};h.defaultProps={className:"",placeholderText:"Search for a job or subject",section:"",zid:""},h.propTypes={className:a.PropTypes.string,placeholderText:a.PropTypes.string,section:a.PropTypes.string,zid:a.PropTypes.string};var d=h;t.default=d,e.exports=t.default},function(e,t){e.exports=i(83)},function(e,t){e.exports=i(128)},function(e,t,i){function s(e){return e&&e.__esModule?e:{default:e}}i(4),i(5),i(6),i(7),i(8),i(9),i(10),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(11)),n=s(i(12)),a=s(i(13)),o=s(i(14)),c=s(i(15)),h={z4882hv:n.default,zk26n39:a.default,zqhs34j:o.default,z3kw2hv:c.default},d=function(e){return function(t){var i=h[e]||r.default;return Promise.resolve(i.filter(function(e){return e.search.includes(t)}))}};t.default=d,e.exports=t.default},function(e,t){e.exports=i(63)},function(e,t){e.exports=i(67)},function(e,t){e.exports=i(74)},function(e,t){e.exports=i(76)},function(e,t){e.exports=i(44)},function(e,t){e.exports=i(81)},function(e,t){e.exports=i(82)},function(e,t){e.exports=[{id:"zvty7nb",headline:"Jobs that use Food and Nutrition",search:"jobs that use food and nutrition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zvty7nb/jobs-that-use-food-and-nutrition/1"},{id:"zrsg6v4",headline:"Jobs that use Maths",search:"jobs that use maths",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zrsg6v4/jobs-that-use-maths/1"},{id:"zrrh8xs",headline:"CVs",search:"cvs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zrrh8xs/cvs/1"},{id:"znpwvk7",headline:"Interviews",search:"interviews",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/znpwvk7/interviews/1"},{id:"zn7h8xs",headline:"Jobs that use Design and Technology",search:"jobs that use design and technology",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zn7h8xs/jobs-that-use-design-and-technology/1"},{id:"zkjnwty",headline:"Jobs that use Art and Design",search:"jobs that use art and design",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zkjnwty/jobs-that-use-art-and-design/1"},{id:"zkh292p",headline:"Skills for work",search:"skills for work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zkh292p/skills-for-work/1"},{id:"zk39nrd",headline:"Jobs that use Modern Foreign Languages",search:"jobs that use modern foreign languages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zk39nrd/jobs-that-use-modern-foreign-languages/1"},{id:"zjcwvk7",headline:"Jobs that use PE",search:"jobs that use pe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zjcwvk7/jobs-that-use-pe/1"},{id:"zjb8f4j",headline:"Jobs that use Science",search:"jobs that use science",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zjb8f4j/jobs-that-use-science/1"},{id:"zhj692p",headline:"Jobs that use Computing and ICT",search:"jobs that use computing and ict",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zhj692p/jobs-that-use-computing-and-ict/1"},{id:"zfmnwty",headline:"Jobs that use English and Drama",search:"jobs that use english and drama",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zfmnwty/jobs-that-use-english-and-drama/1"},{id:"zdg8f4j",headline:"Jobs that use Music",search:"jobs that use music",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zdg8f4j/jobs-that-use-music/1"},{id:"zd7fqp3",headline:"Jobs that use Business",search:"jobs that use business",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zd7fqp3/jobs-that-use-business/1"},{id:"zbp3mfr",headline:"Jobs that use Geography",search:"jobs that use geography",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/zbp3mfr/jobs-that-use-geography/1"},{id:"z7vct39",headline:"Apprenticeships",search:"apprenticeships",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/z7vct39/apprenticeships/1"},{id:"z7p6d6f",headline:"Jobs that use History",search:"jobs that use history",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/z7p6d6f/jobs-that-use-history/1"},{id:"z79qbdm",headline:"Jobs that use Religious Studies",search:"jobs that use religious studies",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/z79qbdm/jobs-that-use-religious-studies/1"},{id:"z4ychbk",headline:"Jobs that use Media Studies",search:"jobs that use media studies",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/z4ychbk/jobs-that-use-media-studies/1"},{id:"z46qcqt",headline:"The workplace",search:"the workplace",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/tags/z46qcqt/the-workplace/1"},{id:"zvwx92p",headline:"How to become a concept artist: Thomas' story",search:"how to become a concept artist thomas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvwx92p"},{id:"zvwn6v4",headline:"Can you have a business AND a life?",search:"can you have a business and a life",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvwn6v4"},{id:"zvvft39",headline:"How to become a media researcher: Mona's story",search:"how to become a media researcher monas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvvft39"},{id:"zvvchbk",headline:"How to become a broadcast assistant: Molly's story",search:"how to become a broadcast assistant mollys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvvchbk"},{id:"zvv4f4j",headline:"From volunteer to career: how giving your time could win your dream job",search:"from volunteer to career how giving your time could win your dream job",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvv4f4j"},{id:"zvtt2sg",headline:"5 mindful ways to start the new year",search:"5 mindful ways to start the new year",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvtt2sg"},{id:"zvts7nb",headline:"How to become a solicitor: Jacob's story",search:"how to become a solicitor jacobs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvts7nb"},{id:"zvtrscw",headline:"BBC Introducing: Jobs at music festivals and in the music industry",search:"bbc introducing jobs at music festivals and in the music industry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvtrscw"},{id:"zvsypg8",headline:"They say you're too young to run your own business? Meet Brandon Relph",search:"they say youre too young to run your own business meet brandon relph",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvsypg8"},{id:"zvsnd6f",headline:"Working out and working overtime got me a better life",search:"working out and working overtime got me a better life",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvsnd6f"},{id:"zvrxrj6",headline:"How to become a paper maker: Zoe's story",search:"how to become a paper maker zoes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvrxrj6"},{id:"zvrv7nb",headline:"How to become a conservation trainee: Liberty's story",search:"how to become a conservation trainee libertys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvrv7nb"},{id:"zvqyqp3",headline:"How to become an electrical engineer: Ciaran's story",search:"how to become an electrical engineer ciarans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvqyqp3"},{id:"zvp7y9q",headline:"How to become a fashion designer: Gemma's story",search:"how to become a fashion designer gemmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvp7y9q"},{id:"zvnmgwx",headline:"How to become a bird of prey specialist: Florrie's story",search:"how to become a bird of prey specialist florries story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvnmgwx"},{id:"zvmjbdm",headline:"How to become a baker: Georgia's story",search:"how to become a baker georgias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvmjbdm"},{id:"zvmcmfr",headline:"What is it like to be... a singer-songwriter?",search:"what is it like to be a singersongwriter",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvmcmfr"},{id:"zvkqrj6",headline:"How to become a coroner's officer: Bryony's story",search:"how to become a coroners officer bryonys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvkqrj6"},{id:"zvk3jhv",headline:"How to become a Formula 1 engineer: Amy's story",search:"how to become a formula 1 engineer amys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvk3jhv"},{id:"zvk3hbk",headline:"How to become a DJ and presenter: Jaguar's story",search:"how to become a dj and presenter jaguars story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvk3hbk"},{id:"zvjt7nb",headline:"Can you guess these celebs' jobs before they were famous?",search:"can you guess these celebs jobs before they were famous",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvjt7nb"},{id:"zvhwrj6",headline:"How to become a professional tennis player",search:"how to become a professional tennis player",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvhwrj6"},{id:"zvhv7nb",headline:"Health problems kept me unemployed for 12 years - now I'm living the dream",search:"health problems kept me unemployed for 12 years now im living the dream",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvhv7nb"},{id:"zvfq8xs",headline:"How to become a creative technologist: Timea's story",search:"how to become a creative technologist timeas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvfq8xs"},{id:"zvfnxyc",headline:"How to become a development officer: Jenna's story",search:"how to become a development officer jennas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvfnxyc"},{id:"zvctjhv",headline:"Working for a music publisher: Simon's story",search:"working for a music publisher simons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvctjhv"},{id:"zvcf8xs",headline:"How to become a civil engineering technician: Sally's story",search:"how to become a civil engineering technician sallys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvcf8xs"},{id:"zvbdvk7",headline:"How to become a primary school teacher: Toby's story",search:"how to become a primary school teacher tobys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvbdvk7"},{id:"zvbct39",headline:"How to become a dental nurse assistant: Jemma's story",search:"how to become a dental nurse assistant jemmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvbct39"},{id:"zv9wy9q",headline:"How to get into engineering: Rachael's story",search:"how to get into engineering rachaels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv9wy9q"},{id:"zv8bqp3",headline:"How to get a job protecting the planet: Aine's story",search:"how to get a job protecting the planet aines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv8bqp3"},{id:"zv88rj6",headline:"How to become a media assistant: Hayley's story",search:"how to become a media assistant hayleys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv88rj6"},{id:"zv7nd6f",headline:"How can you be yourself at work?",search:"how can you be yourself at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv7nd6f"},{id:"zv6knrd",headline:"How to become a secretary: Gemma's story",search:"how to become a secretary gemmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv6knrd"},{id:"zv6jbdm",headline:"How to become a biomedical scientist: Hannah's story",search:"how to become a biomedical scientist hannahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv6jbdm"},{id:"zv68cqt",headline:"How to become a senior systems engineer: Ben's story",search:"how to become a senior systems engineer bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv68cqt"},{id:"zv4t92p",headline:"How to make a great first impression at work",search:"how to make a great first impression at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv4t92p"},{id:"zv4kcqt",headline:"How to build a business with zero cash",search:"how to build a business with zero cash",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv4kcqt"},{id:"zv48scw",headline:"How to become a civil engineering apprentice: Kawsar's story",search:"how to become a civil engineering apprentice kawsars story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv48scw"},{id:"zv33nrd",headline:"How to become a senior research manager: Jennifer's story",search:"how to become a senior research manager jennifers story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv33nrd"},{id:"zv2skmn",headline:"How to become a research scientist: Jaz's story",search:"how to become a research scientist jazs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv2skmn"},{id:"zv27bdm",headline:"Manage your money while you study",search:"manage your money while you study",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv27bdm"},{id:"zryq8xs",headline:"How to become a strategist: Nicola's story",search:"how to become a strategist nicolas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zryq8xs"},{id:"zrxmrj6",headline:"Transferable skills translator",search:"transferable skills translator",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrxmrj6"},{id:"zrx2cqt",headline:"Working as an educational wellbeing specialist: Erin's story",search:"working as an educational wellbeing specialist erins story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrx2cqt"},{id:"zrwqy9q",headline:"How to become an engineering apprentice: Jade's story",search:"how to become an engineering apprentice jades story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrwqy9q"},{id:"zrw647h",headline:"Working on a nuclear site: Jack's story",search:"working on a nuclear site jacks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrw647h"},{id:"zrv7d6f",headline:"How to become a professional dancer: Kieran's story",search:"how to become a professional dancer kierans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrv7d6f"},{id:"zrsqf4j",headline:"How to become a journalist: Sirin's story",search:"how to become a journalist sirins story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrsqf4j"},{id:"zrqst39",headline:"Jobs in construction",search:"jobs in construction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrqst39"},{id:"zrpskmn",headline:"What is it like to be... a tour manager?",search:"what is it like to be a tour manager",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpskmn"},{id:"zrpfhbk",headline:"Jackie Fast: how to succeed in uncertain times",search:"jackie fast how to succeed in uncertain times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpfhbk"},{id:"zrpdf4j",headline:"How to become an electrician: Ryan's story",search:"how to become an electrician ryans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpdf4j"},{id:"zrpct39",headline:"How to become a technical theatre apprentice: Hosanna's story",search:"how to become a technical theatre apprentice hosannas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpct39"},{id:"zrpcf4j",headline:"How to become a music festival volunteer: Betty's story",search:"how to become a music festival volunteer bettys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpcf4j"},{id:"zrpbt39",headline:"Ramadan in the workplace 101 – What you need to know",search:"ramadan in the workplace 101 what you need to know",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrpbt39"},{id:"zrp4gwx",headline:"Ten things you need to know when building your ‘jigsaw’ career",search:"ten things you need to know when building your jigsaw career",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrp4gwx"},{id:"zrm2gwx",headline:"Here’s how to get the edge when looking for work",search:"heres how to get the edge when looking for work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrm2gwx"},{id:"zrk37nb",headline:"Working to protect the environment: Liam's story",search:"working to protect the environment liams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrk37nb"},{id:"zrht47h",headline:"How to become an apprentice joiner: Reid's story",search:"how to become an apprentice joiner reids story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrht47h"},{id:"zrhpwty",headline:"How to become an aircraft engineer: Balwant's story",search:"how to become an aircraft engineer balwants story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrhpwty"},{id:"zrgn92p",headline:"How to become a science student and researcher: Zahra's story",search:"how to become a science student and researcher zahras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrgn92p"},{id:"zrdvqp3",headline:"How to become a science apprentice: Georgia's story",search:"how to become a science apprentice georgias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrdvqp3"},{id:"zrdswty",headline:"Top tips for teamwork",search:"top tips for teamwork",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrdswty"},{id:"zrdnd6f",headline:"How to become a mechanical engineer: Jack's story",search:"how to become a mechanical engineer jacks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrdnd6f"},{id:"zrd7vk7",headline:"What it is like to be… a humanitarian worker and reality TV star?",search:"what it is like to be a humanitarian worker and reality tv star",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrd7vk7"},{id:"zrd7bdm",headline:"How to become a YouTuber: Huw's story",search:"how to become a youtuber huws story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrd7bdm"},{id:"zrcskmn",headline:"How to become a doctor: Inshal's story",search:"how to become a doctor inshals story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrcskmn"},{id:"zrcn2sg",headline:"How to become a pharmacist: Usman's story",search:"how to become a pharmacist usmans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrcn2sg"},{id:"zrc7y9q",headline:"How to become a volcano vlogger and guide: Chris' story",search:"how to become a volcano vlogger and guide chris story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrc7y9q"},{id:"zrbp47h",headline:"How to become a dance choreographer: Rachel's story",search:"how to become a dance choreographer rachels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrbp47h"},{id:"zr92rj6",headline:"Four jobs you probably didn’t know existed",search:"four jobs you probably didnt know existed",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr92rj6"},{id:"zr8qkmn",headline:"How to become an events assistant: Emma's story",search:"how to become an events assistant emmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr8qkmn"},{id:"zr8fjhv",headline:"How to become a prop maker: Miles' story",search:"how to become a prop maker miles story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr8fjhv"},{id:"zr7b6v4",headline:"How to become a digital marketing entrepreneur: Melissa's story",search:"how to become a digital marketing entrepreneur melissas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr7b6v4"},{id:"zr73pg8",headline:"World Entrepreneurs' Day: Being your own boss",search:"world entrepreneurs day being your own boss",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr73pg8"},{id:"zr6xrj6",headline:"How to become a waste warrior: Grace's story",search:"how to become a waste warrior graces story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr6xrj6"},{id:"zr3xwty",headline:"#changethegame: Life in online sports journalism",search:"changethegame life in online sports journalism",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr3xwty"},{id:"zr3x92p",headline:"How to become a landscape assistant: Florence's story",search:"how to become a landscape assistant florences story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr3x92p"},{id:"zr3wy9q",headline:"Working for a small business: Savannah's story",search:"working for a small business savannahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr3wy9q"},{id:"zr3b7nb",headline:"How to become a physiotherapist: Deepa's story",search:"how to become a physiotherapist deepas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr3b7nb"},{id:"znyyt39",headline:"International Day of Charity: Where could volunteering and charity work take you?",search:"international day of charity where could volunteering and charity work take you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znyyt39"},{id:"znxkpg8",headline:"How to become a woodworker: JoJo's story",search:"how to become a woodworker jojos story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znxkpg8"},{id:"znwtjhv",headline:"BBC One's Ambulance: meet the real life heroes",search:"bbc ones ambulance meet the real life heroes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znwtjhv"},{id:"znwdscw",headline:"How to become a knitwear designer: Terri's story",search:"how to become a knitwear designer terris story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znwdscw"},{id:"znr9nrd",headline:"How to become a handbag designer: Sophie's story",search:"how to become a handbag designer sophies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znr9nrd"},{id:"znqfhbk",headline:"How to pitch like a pro",search:"how to pitch like a pro",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znqfhbk"},{id:"znpknrd",headline:"How to become a veterinary nurse: Kirstie's story",search:"how to become a veterinary nurse kirsties story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znpknrd"},{id:"znmxrj6",headline:"How to become a wardrobe technician in a theatre: Sophie's story",search:"how to become a wardrobe technician in a theatre sophies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znmxrj6"},{id:"znmvwty",headline:"How to become a vet: Lucy's story",search:"how to become a vet lucys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znmvwty"},{id:"znmr6v4",headline:"How to become an architectural assistant: Hannah's story",search:"how to become an architectural assistant hannahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znmr6v4"},{id:"znj9scw",headline:"How to become an aerospace engineer: Ben's story",search:"how to become an aerospace engineer bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znj9scw"},{id:"znhp92p",headline:"How to become a fundraising development officer: Stephanie's story",search:"how to become a fundraising development officer stephanies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znhp92p"},{id:"znh7y9q",headline:"How to become a music PR manager: Beth's story",search:"how to become a music pr manager beths story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znh7y9q"},{id:"zngpxyc",headline:"How to become a digital content producer: Liam's story",search:"how to become a digital content producer liams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zngpxyc"},{id:"zngbxyc",headline:"How to become a training manager: Matthew's story",search:"how to become a training manager matthews story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zngbxyc"},{id:"znffjhv",headline:"How to become an entrepreneur: Ben's story",search:"how to become an entrepreneur bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znffjhv"},{id:"zncfd6f",headline:"Making work work for you",search:"making work work for you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zncfd6f"},{id:"zncdvk7",headline:"How to become an audio engineer: Tommy's story",search:"how to become an audio engineer tommys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zncdvk7"},{id:"znbgpg8",headline:"How to become a helicopter pilot: Lee's story",search:"how to become a helicopter pilot lees story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znbgpg8"},{id:"zn8cmfr",headline:"What is it like to be... a music video director?",search:"what is it like to be a music video director",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn8cmfr"},{id:"zn7ypg8",headline:"Young and in charge: is youth an advantage in business?",search:"young and in charge is youth an advantage in business",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn7ypg8"},{id:"zn7wf4j",headline:"Stacey Dooley: My tips to women starting out in their career",search:"stacey dooley my tips to women starting out in their career",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn7wf4j"},{id:"zn7chbk",headline:"How to become a farrier: Charlie's story",search:"how to become a farrier charlies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn7chbk"},{id:"zn64bdm",headline:"How to become a lighting director: Cate's story",search:"how to become a lighting director cates story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn64bdm"},{id:"zn4ct39",headline:"Maths myths that could be holding you back",search:"maths myths that could be holding you back",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn4ct39"},{id:"zmyyhbk",headline:"How to become a vlogger: Alice's story",search:"how to become a vlogger alices story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmyyhbk"},{id:"zmx7y9q",headline:"What is it like to be... a music curator?",search:"what is it like to be a music curator",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmx7y9q"},{id:"zmwxgwx",headline:"How not to let online negativity get you down",search:"how not to let online negativity get you down",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmwxgwx"},{id:"zmvmkmn",headline:"How to become an ambulance dispatcher: Emily's story",search:"how to become an ambulance dispatcher emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmvmkmn"},{id:"zmvgscw",headline:"How to become a festival programme director: Emma's story",search:"how to become a festival programme director emmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmvgscw"},{id:"zmskpg8",headline:"What GCSEs should I take to become a... ?",search:"what gcses should i take to become a",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmskpg8"},{id:"zmqrhbk",headline:"Life as a communications intern: Alex's story",search:"life as a communications intern alexs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmqrhbk"},{id:"zmq3jhv",headline:"How to become a coder: Pauline's story",search:"how to become a coder paulines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmq3jhv"},{id:"zmpmgwx",headline:"Life as a filmmaker and vlogger: Isaac's story",search:"life as a filmmaker and vlogger isaacs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmpmgwx"},{id:"zmn8scw",headline:"How to resolve conflict at work",search:"how to resolve conflict at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmn8scw"},{id:"zmmvxyc",headline:"Life as a digital degree apprentice: Hassan's story",search:"life as a digital degree apprentice hassans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmmvxyc"},{id:"zmmrscw",headline:"How to become a music photographer: Priti's story",search:"how to become a music photographer pritis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmmrscw"},{id:"zmm9hbk",headline:"How to become a digital marketing specialist: Ben's story",search:"how to become a digital marketing specialist bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmm9hbk"},{id:"zmkh92p",headline:"How to become a professional contemporary dancer: Connor's story",search:"how to become a professional contemporary dancer connors story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmkh92p"},{id:"zmjqvk7",headline:"How to become a photographer: Corinne's story",search:"how to become a photographer corinnes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmjqvk7"},{id:"zmhkf4j",headline:"How to become a Twitter Moments curator: Melina's story",search:"how to become a twitter moments curator melinas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmhkf4j"},{id:"zmh3hbk",headline:"How to become an urgent care desk paramedic: Becky's story",search:"how to become an urgent care desk paramedic beckys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmh3hbk"},{id:"zmgmgwx",headline:"How to run your own coding events: Adam's story",search:"how to run your own coding events adams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmgmgwx"},{id:"zmg9f4j",headline:"Working as an outreach pastor: Jacob's story",search:"working as an outreach pastor jacobs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmg9f4j"},{id:"zmg792p",headline:"How to become a DJ Producer: Tom's story",search:"how to become a dj producer toms story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmg792p"},{id:"zmfy7nb",headline:"Working as a trainee supervisor: Alex's story",search:"working as a trainee supervisor alexs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmfy7nb"},{id:"zmfwy9q",headline:"How to stay positive at work",search:"how to stay positive at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmfwy9q"},{id:"zmfkrj6",headline:"Jobs in sports",search:"jobs in sports",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmfkrj6"},{id:"zmf8cqt",headline:"Growth mindset: an entrepreneur’s best friend",search:"growth mindset an entrepreneurs best friend",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmf8cqt"},{id:"zmdmrj6",headline:"How I went from redundancy to managing others",search:"how i went from redundancy to managing others",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmdmrj6"},{id:"zmdfhbk",headline:"How to become a jewellery designer: Chloe's story",search:"how to become a jewellery designer chloes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmdfhbk"},{id:"zmdct39",headline:"How to become a member of youth parliament: Dominic's story",search:"how to become a member of youth parliament dominics story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmdct39"},{id:"zmdc382",headline:"Explore careers by job sectors",search:"explore careers by job sectors",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmdc382"},{id:"zmcq382",headline:"What is leadership at work?",search:"what is leadership at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmcq382"},{id:"zmbrxyc",headline:"How to become a wedding dress designer: Deborah's story",search:"how to become a wedding dress designer deborahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmbrxyc"},{id:"zmb32sg",headline:"Help! I don’t have any skills…",search:"help i dont have any skills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmb32sg"},{id:"zm9cvk7",headline:"Breaking stereotypes: The women leading the charge in STEM careers",search:"breaking stereotypes the women leading the charge in stem careers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm9cvk7"},{id:"zm8rhbk",headline:"How to become a corporate social responsibility coordinator: Ben's story",search:"how to become a corporate social responsibility coordinator bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm8rhbk"},{id:"zm8rf4j",headline:"Making a difference: My job at Manchester Pride",search:"making a difference my job at manchester pride",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm8rf4j"},{id:"zm6wnrd",headline:"How to become a composer: Grace's story",search:"how to become a composer graces story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm6wnrd"},{id:"zm63xyc",headline:"Four jobs that could save the planet",search:"four jobs that could save the planet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm63xyc"},{id:"zm3wnrd",headline:"How to become a restaurant owner: Tom's story",search:"how to become a restaurant owner toms story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm3wnrd"},{id:"zm2rvk7",headline:"How to become a UX/UI designer: Stephen's story",search:"how to become a uxui designer stephens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm2rvk7"},{id:"zkywf4j",headline:"How to become a globemaker: Eddy's story",search:"how to become a globemaker eddys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkywf4j"},{id:"zkyd47h",headline:"Do you have to be savage to be successful?",search:"do you have to be savage to be successful",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkyd47h"},{id:"zkx3scw",headline:"Jobs in IT",search:"jobs in it",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkx3scw"},{id:"zkwrt39",headline:"Working as a financial paraplanner: Raphael's story",search:"working as a financial paraplanner raphaels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkwrt39"},{id:"zkw6cqt",headline:"Saiful Islam - Materials chemist",search:"saiful islam materials chemist",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkw6cqt"},{id:"zkv8scw",headline:"How to become a nanny: Nichol's story",search:"how to become a nanny nichols story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkv8scw"},{id:"zkt6cqt",headline:"How to become a politician: Jason's story",search:"how to become a politician jasons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkt6cqt"},{id:"zkrmrj6",headline:"How to become a product designer: Michael's story",search:"how to become a product designer michaels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkrmrj6"},{id:"zkn3mfr",headline:"How to become a naval architect: Lawrence's story",search:"how to become a naval architect lawrences story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkn3mfr"},{id:"zkmvnrd",headline:"Jobs in law",search:"jobs in law",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkmvnrd"},{id:"zkmgxyc",headline:"How knowing your weaknesses could be your biggest strength",search:"how knowing your weaknesses could be your biggest strength",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkmgxyc"},{id:"zkmdbdm",headline:"I get paid to fight monsters",search:"i get paid to fight monsters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkmdbdm"},{id:"zkjcmfr",headline:"How to become an apprentice welder: Billy's story",search:"how to become an apprentice welder billys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkjcmfr"},{id:"zkj2rj6",headline:"How to become an audiologist: Amun's story",search:"how to become an audiologist amuns story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkj2rj6"},{id:"zkhct39",headline:"What skills do you need to work in a restaurant?",search:"what skills do you need to work in a restaurant",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkhct39"},{id:"zkhb6v4",headline:"How to become a director of photography: Toby's story",search:"how to become a director of photography tobys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkhb6v4"},{id:"zkggf4j",headline:"How to become a junior copywriter: Gail's story",search:"how to become a junior copywriter gails story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkggf4j"},{id:"zkgcvk7",headline:"Black History Month: British entrepreneurs from the past and present",search:"black history month british entrepreneurs from the past and present",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkgcvk7"},{id:"zkgbmfr",headline:"How to become a student nurse: Keilagh's story",search:"how to become a student nurse keilaghs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkgbmfr"},{id:"zkgbhbk",headline:"The Nine to Five with Stacey Dooley",search:"the nine to five with stacey dooley",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkgbhbk"},{id:"zkd692p",headline:"How I turned my hobby into a career",search:"how i turned my hobby into a career",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkd692p"},{id:"zkcwy9q",headline:"How to become a cleaner: Elliot's story",search:"how to become a cleaner elliots story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkcwy9q"},{id:"zkcsd6f",headline:"How to become a carer: Bethany's story",search:"how to become a carer bethanys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkcsd6f"},{id:"zk8w8xs",headline:"How to become a nurse",search:"how to become a nurse",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk8w8xs"},{id:"zk6v2sg",headline:"How to become a paramedic: Tanoh's story",search:"how to become a paramedic tanohs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk6v2sg"},{id:"zk6p2sg",headline:"How to become a production manager: Byron's story",search:"how to become a production manager byrons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk6p2sg"},{id:"zk44382",headline:"How to become an assistant media scheduler: Natasha's story",search:"how to become an assistant media scheduler natashas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk44382"},{id:"zk3gmfr",headline:"How to grow your own business: Ed's story",search:"how to grow your own business eds story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk3gmfr"},{id:"zk3b2sg",headline:"How to become a prosthetist: Becky's story",search:"how to become a prosthetist beckys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk3b2sg"},{id:"zk32gwx",headline:"How to become a software engineer apprentice: Bode's story",search:"how to become a software engineer apprentice bodes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk32gwx"},{id:"zk27382",headline:"How to become a florist: Emily's story",search:"how to become a florist emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zk27382"},{id:"zjyy2sg",headline:"How to become an estate agent: Samantha's story",search:"how to become an estate agent samanthas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjyy2sg"},{id:"zjyj8xs",headline:"How to make a million with your mates, and stay friends!",search:"how to make a million with your mates and stay friends",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjyj8xs"},{id:"zjwh8xs",headline:"How to become a production assistant: Mathilda's story",search:"how to become a production assistant mathildas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjwh8xs"},{id:"zjw7bdm",headline:"How to become a civil engineer: Jasmine's story",search:"how to become a civil engineer jasmines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjw7bdm"},{id:"zjvf2sg",headline:"Life as a cyber security apprentice: Ellie's story",search:"life as a cyber security apprentice ellies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjvf2sg"},{id:"zjsn8xs",headline:"I returned to work after a decade of bringing up my children",search:"i returned to work after a decade of bringing up my children",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjsn8xs"},{id:"zjrx92p",headline:"How to become a marketing and communications intern: Lara's story",search:"how to become a marketing and communications intern laras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjrx92p"},{id:"zjrgpg8",headline:"Alex Scott: How to make it as a pundit",search:"alex scott how to make it as a pundit",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjrgpg8"},{id:"zjq3jhv",headline:"How to become a wing designer: Zuzanna's story",search:"how to become a wing designer zuzannas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjq3jhv"},{id:"zjpc382",headline:"Jobs in science",search:"jobs in science",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjpc382"},{id:"zjnyqp3",headline:"How to become an innovation manager: Holly's story",search:"how to become an innovation manager hollys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjnyqp3"},{id:"zjnp8xs",headline:"Five simple steps to change your maths mindset",search:"five simple steps to change your maths mindset",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjnp8xs"},{id:"zjnj382",headline:"How to become a night shift manager: James' story",search:"how to become a night shift manager james story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjnj382"},{id:"zjmkpg8",headline:"How to set up a social enterprise: Alison's story",search:"how to set up a social enterprise alisons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjmkpg8"},{id:"zjmct39",headline:"How to become a chef: Isabel's story",search:"how to become a chef isabels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjmct39"},{id:"zjmcscw",headline:"How to become an emergency medical technician (EMT): Ray's story",search:"how to become an emergency medical technician emt rays story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjmcscw"},{id:"zjmb2sg",headline:"How to become a production manager for festivals: Emily's story",search:"how to become a production manager for festivals emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjmb2sg"},{id:"zjhqf4j",headline:"Life as a medical student and intern: Khadija's story",search:"life as a medical student and intern khadijas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjhqf4j"},{id:"zjgpwty",headline:"Working as a trainee film director: Alfie's story",search:"working as a trainee film director alfies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjgpwty"},{id:"zjgc6v4",headline:"Life as a medical student: Kestra's story",search:"life as a medical student kestras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjgc6v4"},{id:"zjdbqp3",headline:"How to become a camera assistant: Tamsin's story",search:"how to become a camera assistant tamsins story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjdbqp3"},{id:"zjbfjhv",headline:"How to become a home safety support worker: Sam's story",search:"how to become a home safety support worker sams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjbfjhv"},{id:"zj9q8xs",headline:"How science can make you a better athlete",search:"how science can make you a better athlete",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj9q8xs"},{id:"zj8knrd",headline:"Working in the rain wasn't for me, but life is brighter as a barber",search:"working in the rain wasnt for me but life is brighter as a barber",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj8knrd"},{id:"zj6s6v4",headline:"How to become a digital engagement apprentice: Phoebe's story",search:"how to become a digital engagement apprentice phoebes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj6s6v4"},{id:"zj6mgwx",headline:"How to grow a small business: Sam's story",search:"how to grow a small business sams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj6mgwx"},{id:"zj6ct39",headline:"Understanding your role in a team",search:"understanding your role in a team",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj6ct39"},{id:"zj4q382",headline:"What does it mean to have a plan B?",search:"what does it mean to have a plan b",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj4q382"},{id:"zj2wy9q",headline:"How to become a youth worker: Callum's story",search:"how to become a youth worker callums story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj2wy9q"},{id:"zj2kt39",headline:"How to become a glass-maker: Jahday's story",search:"how to become a glassmaker jahdays story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj2kt39"},{id:"zhynjhv",headline:"How to become a nursery worker: Lucy's story",search:"how to become a nursery worker lucys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhynjhv"},{id:"zhyjvk7",headline:"How listening can help you win at work",search:"how listening can help you win at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhyjvk7"},{id:"zhyfqp3",headline:"How to become a community education coordinator: Annaleigh's story",search:"how to become a community education coordinator annaleighs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhyfqp3"},{id:"zhxt92p",headline:"Celebrities reveal the moments which inspired their careers",search:"celebrities reveal the moments which inspired their careers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhxt92p"},{id:"zhxc382",headline:"Life as part of a songwriting collective: Rick's story",search:"life as part of a songwriting collective ricks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhxc382"},{id:"zhx6rj6",headline:"How to become a press officer: Jessica's story",search:"how to become a press officer jessicas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhx6rj6"},{id:"zhwgt39",headline:"How to become an associate producer: Ellie's story",search:"how to become an associate producer ellies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhwgt39"},{id:"zhvq382",headline:"How to get organised at work",search:"how to get organised at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhvq382"},{id:"zhst2sg",headline:"Where could your favourite subject take you?",search:"where could your favourite subject take you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhst2sg"},{id:"zhs2bdm",headline:"How to become a football coach: Bryan's story",search:"how to become a football coach bryans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhs2bdm"},{id:"zhrxrj6",headline:"How to become a model: Natasha's story",search:"how to become a model natashas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhrxrj6"},{id:"zhrgmfr",headline:"Owning a sustainable business: Karina's story",search:"owning a sustainable business karinas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhrgmfr"},{id:"zhqcvk7",headline:"The introverts' guide to negotiation: 14 steps to success!",search:"the introverts guide to negotiation 14 steps to success",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhqcvk7"},{id:"zhp9y9q",headline:"How to become a 999 call taker: Laura's story",search:"how to become a 999 call taker lauras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhp9y9q"},{id:"zhnrpg8",headline:"How to become a ramp agent: Alex's story",search:"how to become a ramp agent alexs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhnrpg8"},{id:"zhmxqp3",headline:"4 school subjects that could help you become an entrepreneur",search:"4 school subjects that could help you become an entrepreneur",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhmxqp3"},{id:"zhmsmfr",headline:"How to become an apprentice mechanic: Elsa's story",search:"how to become an apprentice mechanic elsas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhmsmfr"},{id:"zhm2gwx",headline:"I enjoyed my work but retrained to improve my earning potential",search:"i enjoyed my work but retrained to improve my earning potential",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhm2gwx"},{id:"zhjhd6f",headline:"How to become a management accountant: Omar's story",search:"how to become a management accountant omars story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhjhd6f"},{id:"zhhpkmn",headline:"How to become a paralegal: Halimah's story",search:"how to become a paralegal halimahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhhpkmn"},{id:"zhhjy9q",headline:"How to become a minerals technology apprentice: Louis' story",search:"how to become a minerals technology apprentice louis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhhjy9q"},{id:"zhgq47h",headline:"How to become a singer-songwriter: Jade Bird's story",search:"how to become a singersongwriter jade birds story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhgq47h"},{id:"zhgn92p",headline:"How to become an app developer: Jack's story",search:"how to become an app developer jacks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhgn92p"},{id:"zhg8scw",headline:"I was glad to leave school, but returning as an adult changed my life",search:"i was glad to leave school but returning as an adult changed my life",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhg8scw"},{id:"zhfwy9q",headline:"How to strike the right tone in the workplace",search:"how to strike the right tone in the workplace",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhfwy9q"},{id:"zhdxqp3",headline:"How to pitch yourself and your ideas: 6 tips from former ‘Dragon’ Jenny Campbell",search:"how to pitch yourself and your ideas 6 tips from former dragon jenny campbell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhdxqp3"},{id:"zhd2382",headline:"The best advice I've ever been given",search:"the best advice ive ever been given",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhd2382"},{id:"zhcr6v4",headline:"Five steps to finding the right course for you",search:"five steps to finding the right course for you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhcr6v4"},{id:"zhcpmfr",headline:"7 steps to 'owning' your personal brand",search:"7 steps to owning your personal brand",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhcpmfr"},{id:"zhcmwty",headline:"Five work lessons we've learnt from films",search:"five work lessons weve learnt from films",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhcmwty"},{id:"zhbjkmn",headline:"Jobs working with animals",search:"jobs working with animals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhbjkmn"},{id:"zhb4vk7",headline:"How to become a radio producer: Phillip's story",search:"how to become a radio producer phillips story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhb4vk7"},{id:"zhb2gwx",headline:"How taking calculated risks can come with great rewards",search:"how taking calculated risks can come with great rewards",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhb2gwx"},{id:"zh8fjhv",headline:"How to become an usher: Aisha's story",search:"how to become an usher aishas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh8fjhv"},{id:"zh8c382",headline:"How three young people have used their struggles to help others",search:"how three young people have used their struggles to help others",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh8c382"},{id:"zh7gt39",headline:"How to become an education support officer: Callum's story",search:"how to become an education support officer callums story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh7gt39"},{id:"zh7bqp3",headline:"How to become a trainee karate instructor: Shola's story",search:"how to become a trainee karate instructor sholas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh7bqp3"},{id:"zh796v4",headline:"How to become a music manager: Colin Lester's story",search:"how to become a music manager colin lesters story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh796v4"},{id:"zh6x92p",headline:"How to become a clinical photographer: Bethany's story",search:"how to become a clinical photographer bethanys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh6x92p"},{id:"zh6wnrd",headline:"How to become a features editor: Lisa's story",search:"how to become a features editor lisas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh6wnrd"},{id:"zh64y9q",headline:"How to become a music business owner: Ryan's story",search:"how to become a music business owner ryans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh64y9q"},{id:"zh3292p",headline:"How to become an air ambulance doctor: Matt's story",search:"how to become an air ambulance doctor matts story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh3292p"},{id:"zh2hwty",headline:"How to become a ramp agent: Shannon's story",search:"how to become a ramp agent shannons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh2hwty"},{id:"zh29hbk",headline:"How to become a recruitment apprentice: Vikas' story",search:"how to become a recruitment apprentice vikas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh29hbk"},{id:"zfys6v4",headline:"How to become a promotions producer: Kim's story",search:"how to become a promotions producer kims story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfys6v4"},{id:"zfy37nb",headline:"How to become a silversmith: Varis' story",search:"how to become a silversmith varis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfy37nb"},{id:"zfxs8xs",headline:"How do you cope with failure?",search:"how do you cope with failure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfxs8xs"},{id:"zfwnjhv",headline:"How to become a clothing manufacturer: Ryan's story",search:"how to become a clothing manufacturer ryans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfwnjhv"},{id:"zfwdf4j",headline:"Returning to learning: three top tips",search:"returning to learning three top tips",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfwdf4j"},{id:"zfsyjhv",headline:"How to become a digital marketing assistant: Vanessa's story",search:"how to become a digital marketing assistant vanessas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfsyjhv"},{id:"zfswy9q",headline:"How to become a financial adviser: Chloe's story",search:"how to become a financial adviser chloes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfswy9q"},{id:"zfsk382",headline:"How to become a global pop music playlist editor: Dominic's story",search:"how to become a global pop music playlist editor dominics story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfsk382"},{id:"zfs9nrd",headline:"How to become a tendering engineer: Alice's story",search:"how to become a tendering engineer alices story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfs9nrd"},{id:"zfrq92p",headline:"Jobs in the performing arts",search:"jobs in the performing arts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfrq92p"},{id:"zfpjkmn",headline:"How to become a digital marketing exec: Jenny's story",search:"how to become a digital marketing exec jennys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfpjkmn"},{id:"zfp792p",headline:"How to become a festival build manager: Willy's story",search:"how to become a festival build manager willys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfp792p"},{id:"zfnct39",headline:"How to become a recruitment consultant: Emily's story",search:"how to become a recruitment consultant emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfnct39"},{id:"zfn3nrd",headline:"How to become a songwriter (for Kylie!): Jon's story",search:"how to become a songwriter for kylie jons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfn3nrd"},{id:"zfmbmfr",headline:"How to become a software engineer: Ekansh's story",search:"how to become a software engineer ekanshs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfmbmfr"},{id:"zfkwy9q",headline:"How to become a maths teacher: Dina's story",search:"how to become a maths teacher dinas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfkwy9q"},{id:"zfgpkmn",headline:"How to become a community cohesion officer: Josh's story",search:"how to become a community cohesion officer joshs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfgpkmn"},{id:"zffm382",headline:"How to become a kitchenware maker: Dan's story",search:"how to become a kitchenware maker dans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zffm382"},{id:"zfdsd6f",headline:"How to become a conservation officer: Jade's story",search:"how to become a conservation officer jades story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfdsd6f"},{id:"zfd8nrd",headline:"How to become a craft woodworker: George's story",search:"how to become a craft woodworker georges story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfd8nrd"},{id:"zfbcy9q",headline:"How to become a music news reporter: Clare's story",search:"how to become a music news reporter clares story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfbcy9q"},{id:"zf6p2sg",headline:"How to become a festival PR director: Jess' story",search:"how to become a festival pr director jess story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf6p2sg"},{id:"zf4y2sg",headline:"How to become a conservation apprentice: Lorna's story",search:"how to become a conservation apprentice lornas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4y2sg"},{id:"zf4mjhv",headline:"Jobs in finance",search:"jobs in finance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4mjhv"},{id:"zf4fhbk",headline:"How to become a marketing executive: Georgia's story",search:"how to become a marketing executive georgias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4fhbk"},{id:"zf4dnrd",headline:"What it is like to be... an internet-famous chef?",search:"what it is like to be an internetfamous chef",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4dnrd"},{id:"zf4bmfr",headline:"How to become a construction manager: Abdullah's story",search:"how to become a construction manager abdullahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4bmfr"},{id:"zf3vpg8",headline:"How to become a gaming company director: Mike's story",search:"how to become a gaming company director mikes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf3vpg8"},{id:"zf2r6v4",headline:"How to become a copy editor: Athena's story",search:"how to become a copy editor athenas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf2r6v4"},{id:"zf2mgwx",headline:"How to become a farmer: Aimee's story",search:"how to become a farmer aimees story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf2mgwx"},{id:"zdycscw",headline:"How I ran away with the circus (without performing)",search:"how i ran away with the circus without performing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdycscw"},{id:"zdxwy9q",headline:"4 key skills for success at work",search:"4 key skills for success at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdxwy9q"},{id:"zdxn8xs",headline:"Dr Mark Richards - Atmospheric physicist",search:"dr mark richards atmospheric physicist",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdxn8xs"},{id:"zdtgy9q",headline:"Jobs in teaching",search:"jobs in teaching",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdtgy9q"},{id:"zds3pg8",headline:"How to become a stage manager: Pete's story",search:"how to become a stage manager petes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zds3pg8"},{id:"zdrv7nb",headline:"How to become a firefighter: Elis' story",search:"how to become a firefighter elis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdrv7nb"},{id:"zdr37nb",headline:"How to succeed at work? Believe in yourself!",search:"how to succeed at work believe in yourself",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdr37nb"},{id:"zdqnxyc",headline:"Careers A to Z: Find your perfect job",search:"careers a to z find your perfect job",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdqnxyc"},{id:"zdq6xyc",headline:"Jobs working in conservation",search:"jobs working in conservation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdq6xyc"},{id:"zdp32sg",headline:"Self-doubt held me back for years - now I help others shine",search:"selfdoubt held me back for years now i help others shine",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdp32sg"},{id:"zdnw382",headline:"How to become an ecologist: Gabrielle's story",search:"how to become an ecologist gabrielles story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdnw382"},{id:"zdnmkmn",headline:"Professional football: Top tips from England's Women's World Cup team",search:"professional football top tips from englands womens world cup team",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdnmkmn"},{id:"zdn8nrd",headline:"How to become a machine operator: Callum's story",search:"how to become a machine operator callums story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdn8nrd"},{id:"zdmt2sg",headline:"‘What tree would you be and why?’: Tackling weird interview questions",search:"what tree would you be and why tackling weird interview questions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdmt2sg"},{id:"zdkxcqt",headline:"How to become a horse riding instructor: Evie's story",search:"how to become a horse riding instructor evies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdkxcqt"},{id:"zdkn6v4",headline:"How to become a songwriter: Danny and Sarah's story",search:"how to become a songwriter danny and sarahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdkn6v4"},{id:"zdhhd6f",headline:"How to become a chocolate maker: Max's story",search:"how to become a chocolate maker maxs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdhhd6f"},{id:"zdfswty",headline:"Can I afford to study?",search:"can i afford to study",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdfswty"},{id:"zddg7nb",headline:"How to become an online entrepreneur: Poppy's story",search:"how to become an online entrepreneur poppys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zddg7nb"},{id:"zdd8rj6",headline:"Ask Jackie Fast: What makes a successful entrepreneur?",search:"ask jackie fast what makes a successful entrepreneur",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdd8rj6"},{id:"zdcvt39",headline:"How to become a mental health nurse: Jake's story",search:"how to become a mental health nurse jakes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdcvt39"},{id:"zdcj382",headline:"How to become a musician: Isabel's story",search:"how to become a musician isabels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdcj382"},{id:"zdcb2sg",headline:"How to up your resilience game",search:"how to up your resilience game",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdcb2sg"},{id:"zdbq8xs",headline:"Reframing failure: making failure work for you",search:"reframing failure making failure work for you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdbq8xs"},{id:"zdbjcqt",headline:"How to become a stage manager: Felix's story",search:"how to become a stage manager felixs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdbjcqt"},{id:"zd9wkmn",headline:"Breaking the school-to-prison pipeline",search:"breaking the schooltoprison pipeline",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd9wkmn"},{id:"zd8dnrd",headline:"How to become an occupational therapy assistant: Sarah's story",search:"how to become an occupational therapy assistant sarahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd8dnrd"},{id:"zd7kt39",headline:"How to become an apprentice quantity surveyor: Josh's story",search:"how to become an apprentice quantity surveyor joshs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd7kt39"},{id:"zd778xs",headline:"How to become a radio presenter: Katie Thistleton's story",search:"how to become a radio presenter katie thistletons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd778xs"},{id:"zd77382",headline:"How to get a job you love? Get to know yourself!",search:"how to get a job you love get to know yourself",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd77382"},{id:"zd6nkmn",headline:"How to become a presenter and YouTuber: Riyadh Khalaf 's story",search:"how to become a presenter and youtuber riyadh khalaf s story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd6nkmn"},{id:"zd6ct39",headline:"Why you should never stop learning at work",search:"why you should never stop learning at work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd6ct39"},{id:"zd62bdm",headline:"How to become an agricultural policy adviser: Jenny's story",search:"how to become an agricultural policy adviser jennys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd62bdm"},{id:"zd3qrj6",headline:"How to become a lifeguard: Lucia's story",search:"how to become a lifeguard lucias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd3qrj6"},{id:"zd2rxyc",headline:"How to become a rap workshop leader: Jaidon's story",search:"how to become a rap workshop leader jaidons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd2rxyc"},{id:"zbyt8xs",headline:"How to become a kitchen assistant: John-Jo's story",search:"how to become a kitchen assistant johnjos story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbyt8xs"},{id:"zbxx8xs",headline:"How to become a press officer: Alice's story",search:"how to become a press officer alices story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbxx8xs"},{id:"zbxt8xs",headline:"How to become a customer service apprentice: William's story",search:"how to become a customer service apprentice williams story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbxt8xs"},{id:"zbx2bdm",headline:"Life as a pet food supplier: Callum's story",search:"life as a pet food supplier callums story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbx2bdm"},{id:"zbw692p",headline:"How to become an engineer: Josh's story",search:"how to become an engineer joshs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbw692p"},{id:"zbvgxyc",headline:"How to become an online business owner: Akshay's story",search:"how to become an online business owner akshays story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbvgxyc"},{id:"zbtsjhv",headline:"How to become an apprentice countryside officer: Amelia's story",search:"how to become an apprentice countryside officer amelias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbtsjhv"},{id:"zbt8scw",headline:"How to become a filmmaker: Taylor's story",search:"how to become a filmmaker taylors story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbt8scw"},{id:"zbskpg8",headline:"How to become an alpine ski racer: Menna's story",search:"how to become an alpine ski racer mennas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbskpg8"},{id:"zbn8nrd",headline:"How to become a cosmetics creator: Rose's story",search:"how to become a cosmetics creator roses story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbn8nrd"},{id:"zbn4hbk",headline:"How to become a carpenter in a theatre: Paddy's story",search:"how to become a carpenter in a theatre paddys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbn4hbk"},{id:"zbkqbdm",headline:"How to become a tree surgeon: Daniel's story",search:"how to become a tree surgeon daniels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbkqbdm"},{id:"zbk8382",headline:"How to become a community specialist paramedic: Sara's story",search:"how to become a community specialist paramedic saras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbk8382"},{id:"zbjpwty",headline:"How to become a radio presenter: Chris' story",search:"how to become a radio presenter chris story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbjpwty"},{id:"zbjh7nb",headline:"How to become a sound engineer: Matilda's story",search:"how to become a sound engineer matildas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbjh7nb"},{id:"zbhyjhv",headline:"How to become a pharmacologist: Mah Hussain's story",search:"how to become a pharmacologist mah hussains story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbhyjhv"},{id:"zbgc6v4",headline:"How to become a freelance writer: Emily's story",search:"how to become a freelance writer emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbgc6v4"},{id:"zbg4scw",headline:"How to become a barista: Zach's story",search:"how to become a barista zachs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbg4scw"},{id:"zbfcpg8",headline:"How to become a stunt performer: Rick's story",search:"how to become a stunt performer ricks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbfcpg8"},{id:"zbfc382",headline:"Which Apprentice candidate are you?",search:"which apprentice candidate are you",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbfc382"},{id:"zbdhmfr",headline:"Jobs in healthcare",search:"jobs in healthcare",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbdhmfr"},{id:"zbddvk7",headline:"How to become an apprentice plumber: Sophie's story",search:"how to become an apprentice plumber sophies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbddvk7"},{id:"zbddcqt",headline:"How to become a senior content executive: Nikky's story",search:"how to become a senior content executive nikkys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbddcqt"},{id:"zbd7vk7",headline:"How to become a music promoter: Sally's story",search:"how to become a music promoter sallys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbd7vk7"},{id:"zbcyd6f",headline:"How to become a receptionist: Francesca's story",search:"how to become a receptionist francescas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbcyd6f"},{id:"zbccvk7",headline:"How to become a graphic designer: Ste's story",search:"how to become a graphic designer stes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbccvk7"},{id:"zb9nd6f",headline:"How to become a software developer: Hannah's story",search:"how to become a software developer hannahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb9nd6f"},{id:"zb6fjhv",headline:"Retraining helped me achieve",search:"retraining helped me achieve",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb6fjhv"},{id:"zb3gmfr",headline:"How to become a police officer: Dylan's story",search:"how to become a police officer dylans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb3gmfr"},{id:"zb38y9q",headline:"How to become a games designer: Rhianne's story",search:"how to become a games designer rhiannes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb38y9q"},{id:"zb29nrd",headline:"How to become an electrical engineer apprentice: Ben's story",search:"how to become an electrical engineer apprentice bens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb29nrd"},{id:"z7wdf4j",headline:"I retrained to get the security I needed",search:"i retrained to get the security i needed",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7wdf4j"},{id:"z7wb2sg",headline:"How to become an accounting technician: Damilare's story",search:"how to become an accounting technician damilares story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7wb2sg"},{id:"z7thd6f",headline:"How to become an architect: Tegan's story",search:"how to become an architect tegans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7thd6f"},{id:"z7ry7nb",headline:"How to become a junior soldier: Caitlyn's story",search:"how to become a junior soldier caitlyns story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7ry7nb"},{id:"z7rwvk7",headline:"A survival guide to office jargon",search:"a survival guide to office jargon",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7rwvk7"},{id:"z7pywty",headline:"How to become a TV presenter: Radzi Chinyanganya's story",search:"how to become a tv presenter radzi chinyanganyas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7pywty"},{id:"z7n8scw",headline:"Don’t give up when times get tough",search:"dont give up when times get tough",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7n8scw"},{id:"z7n8nrd",headline:"How I got my first job in the media industry",search:"how i got my first job in the media industry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7n8nrd"},{id:"z7n4hbk",headline:"How to become a teaching assistant: Stacey's story",search:"how to become a teaching assistant staceys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7n4hbk"},{id:"z7n4bdm",headline:"Jobs in engineering",search:"jobs in engineering",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7n4bdm"},{id:"z7kx47h",headline:"What is National Careers Week?",search:"what is national careers week",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7kx47h"},{id:"z7jkbdm",headline:"'How maths scored me a job in fantasy football'",search:"how maths scored me a job in fantasy football",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7jkbdm"},{id:"z7fn8xs",headline:"How to become a digital marketing assistant: Jack's story",search:"how to become a digital marketing assistant jacks story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7fn8xs"},{id:"z7dw47h",headline:"BBC Bitesize's Schools Tour 2019",search:"bbc bitesizes schools tour 2019",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7dw47h"},{id:"z7d8scw",headline:"Life threw me a curve ball – but I made the most of it!",search:"life threw me a curve ball but i made the most of it",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7d8scw"},{id:"z7d78xs",headline:"How to become an engagement manager: Farhana's story",search:"how to become an engagement manager farhanas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7d78xs"},{id:"z7d692p",headline:"How to become a marketing intern: Megan's story",search:"how to become a marketing intern megans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7d692p"},{id:"z7d3hbk",headline:"Wimbledon legends: what I learnt from pro tennis",search:"wimbledon legends what i learnt from pro tennis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7d3hbk"},{id:"z78td6f",headline:"How to become an apprentice data and compliance manager: Catherine's story",search:"how to become an apprentice data and compliance manager catherines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z78td6f"},{id:"z78h7nb",headline:"#changethegame: Behind the scenes of the women's summer of sport season",search:"changethegame behind the scenes of the womens summer of sport season",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z78h7nb"},{id:"z789bdm",headline:"The Apprentice candidates: What do their USPs REALLY mean?",search:"the apprentice candidates what do their usps really mean",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z789bdm"},{id:"z77f7nb",headline:"How to become a shop owner: Lydia's story",search:"how to become a shop owner lydias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z77f7nb"},{id:"z77bmfr",headline:"How to become a public relations account assistant: Bliss' story",search:"how to become a public relations account assistant bliss story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z77bmfr"},{id:"z76x92p",headline:"How to become a dental lab assistant: Tom's story",search:"how to become a dental lab assistant toms story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z76x92p"},{id:"z769hbk",headline:"How to become an illustrator: Anh's story",search:"how to become an illustrator anhs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z769hbk"},{id:"z74xqp3",headline:"The secrets to success",search:"the secrets to success",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z74xqp3"},{id:"z74vt39",headline:"How to become an artist manager: Ryan's story",search:"how to become an artist manager ryans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z74vt39"},{id:"z74njhv",headline:"How to become a jewellery maker: Niamh's story",search:"how to become a jewellery maker niamhs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z74njhv"},{id:"z74hkmn",headline:"How to become a trainee business analyst: Megan's story",search:"how to become a trainee business analyst megans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z74hkmn"},{id:"z738gwx",headline:"Melissa: Head of TV at Caroline International",search:"melissa head of tv at caroline international",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z738gwx"},{id:"z6yg2sg",headline:"How to become an actor: Aedan Duckworth's story",search:"how to become an actor aedan duckworths story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6yg2sg"},{id:"z6y2bdm",headline:"How to become a business administrator apprentice: Gemma's story",search:"how to become a business administrator apprentice gemmas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6y2bdm"},{id:"z6xgmfr",headline:"How to become a motorbike mechanic: Ewan's story",search:"how to become a motorbike mechanic ewans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6xgmfr"},{id:"z6vvqp3",headline:"What does it mean to be a good team player?",search:"what does it mean to be a good team player",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6vvqp3"},{id:"z6vrmfr",headline:"How to become a model: Jada Sezer's story",search:"how to become a model jada sezers story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6vrmfr"},{id:"z6vq382",headline:"How activities outside work can help put you a step ahead",search:"how activities outside work can help put you a step ahead",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6vq382"},{id:"z6vjvk7",headline:"How to become a recruitment consultant: Hamzah's story",search:"how to become a recruitment consultant hamzahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6vjvk7"},{id:"z6sdf4j",headline:"If in doubt, ask!",search:"if in doubt ask",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6sdf4j"},{id:"z6rkscw",headline:"‘We’re doing jobs that didn’t exist 20 years ago’",search:"were doing jobs that didnt exist 20 years ago",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6rkscw"},{id:"z6rjvk7",headline:"How do you manage your own work?",search:"how do you manage your own work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6rjvk7"},{id:"z6rjgwx",headline:"How to become a soldier: Naomi's story",search:"how to become a soldier naomis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6rjgwx"},{id:"z6pwnrd",headline:"What is it like to be... a poet, writer and spoken word artist?",search:"what is it like to be a poet writer and spoken word artist",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6pwnrd"},{id:"z6pfqp3",headline:"How to become a writer: Louise's story",search:"how to become a writer louises story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6pfqp3"},{id:"z6n7d6f",headline:"How to become a senior creative: Richard's story",search:"how to become a senior creative richards story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6n7d6f"},{id:"z6n3mfr",headline:"How to become a firefighter: Izzy's story",search:"how to become a firefighter izzys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6n3mfr"},{id:"z6m9hbk",headline:"How to become a business owner: Jessica's story",search:"how to become a business owner jessicas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6m9hbk"},{id:"z6hqvk7",headline:"How to become a personal trainer: Louis' story",search:"how to become a personal trainer louis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6hqvk7"},{id:"z6gn92p",headline:"How to become a science journalist: Rosie's story",search:"how to become a science journalist rosies story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6gn92p"},{id:"z6gjscw",headline:"How to become a solar farm manager: Manish's story",search:"how to become a solar farm manager manishs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6gjscw"},{id:"z6dpxyc",headline:"What is an entrepreneur?",search:"what is an entrepreneur",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6dpxyc"},{id:"z6cvt39",headline:"How to become a HART paramedic: Hannah's story",search:"how to become a hart paramedic hannahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6cvt39"},{id:"z6cr6v4",headline:"Earning and learning: top tips to make it work",search:"earning and learning top tips to make it work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6cr6v4"},{id:"z6by7nb",headline:"How to become a critical care nurse: Kate's story",search:"how to become a critical care nurse kates story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6by7nb"},{id:"z68fjhv",headline:"How to become an apprentice steel fabricator: Tom's story",search:"how to become an apprentice steel fabricator toms story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z68fjhv"},{id:"z6796v4",headline:"How to become an apprentice construction site engineer: Zoe's story",search:"how to become an apprentice construction site engineer zoes story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6796v4"},{id:"z672382",headline:"How to become an interpretation officer: Chris's story",search:"how to become an interpretation officer chriss story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z672382"},{id:"z62v2sg",headline:"The Gen Z women flying the flag for workplace confidence",search:"the gen z women flying the flag for workplace confidence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z62v2sg"},{id:"z62p92p",headline:"How do you stay resilient in your industry?",search:"how do you stay resilient in your industry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z62p92p"},{id:"z4ykscw",headline:"How to become a journalist: Megha Mohan's story",search:"how to become a journalist megha mohans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ykscw"},{id:"z4yg6v4",headline:"How to become a medicine management technician: Korina's story",search:"how to become a medicine management technician korinas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4yg6v4"},{id:"z4xw92p",headline:"Sir Richard Branson’s secrets to success",search:"sir richard bransons secrets to success",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4xw92p"},{id:"z4wsd6f",headline:"How to become a professional gamer: Ozzy's story",search:"how to become a professional gamer ozzys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4wsd6f"},{id:"z4wfwty",headline:"How to become a lighting technician: Peter's story",search:"how to become a lighting technician peters story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4wfwty"},{id:"z4w6qp3",headline:"How to become a drummer (for Kylie!): Tom's story",search:"how to become a drummer for kylie toms story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4w6qp3"},{id:"z4vpd6f",headline:"How to become a business owner: Lauren's story",search:"how to become a business owner laurens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4vpd6f"},{id:"z4vjf4j",headline:"Seven essential freelancing tips from people who are making it work",search:"seven essential freelancing tips from people who are making it work",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4vjf4j"},{id:"z4v7bdm",headline:"How to become a restaurant assistant manager: Larissa's story",search:"how to become a restaurant assistant manager larissas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4v7bdm"},{id:"z4v3qp3",headline:"How to become an outreach officer in the fire service: Ludwig's story",search:"how to become an outreach officer in the fire service ludwigs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4v3qp3"},{id:"z4thd6f",headline:"How to become a field technician: Harry's story",search:"how to become a field technician harrys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4thd6f"},{id:"z4sm8xs",headline:"How to become a production manager: Jasmine's story",search:"how to become a production manager jasmines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4sm8xs"},{id:"z4ryqp3",headline:"How to become a patient support and engagement team administrator : Ailish's story",search:"how to become a patient support and engagement team administrator ailishs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ryqp3"},{id:"z4rry9q",headline:"How to become a junior creative: Aaron's story",search:"how to become a junior creative aarons story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4rry9q"},{id:"z4rmrj6",headline:"How to become a hairdresser: Jasmine's story",search:"how to become a hairdresser jasmines story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4rmrj6"},{id:"z4r4t39",headline:"How to become a founder of a makeup brand: Jessica's story",search:"how to become a founder of a makeup brand jessicas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4r4t39"},{id:"z4r2gwx",headline:"What skills do you need to work in care?",search:"what skills do you need to work in care",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4r2gwx"},{id:"z4pr6v4",headline:"How to become a shop shift leader: Monique's story",search:"how to become a shop shift leader moniques story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4pr6v4"},{id:"z4pmrj6",headline:"Founding a start-up company: George's story",search:"founding a startup company georges story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4pmrj6"},{id:"z4ph92p",headline:"How to become a membership coordinator in a museum: Ailsa's story",search:"how to become a membership coordinator in a museum ailsas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ph92p"},{id:"z4p9t39",headline:"Six myths about freelancing: Busted!",search:"six myths about freelancing busted",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4p9t39"},{id:"z4nq8xs",headline:"How to become a drone operator: Carys' story",search:"how to become a drone operator carys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4nq8xs"},{id:"z4md47h",headline:"How an autistic teenager’s passion for nature led to his first book deal",search:"how an autistic teenagers passion for nature led to his first book deal",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4md47h"},{id:"z4m892p",headline:"Five famous faces who started as apprentices",search:"five famous faces who started as apprentices",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4m892p"},{id:"z4jyqp3",headline:"Why working together matters",search:"why working together matters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4jyqp3"},{id:"z4jn2sg",headline:"How to become a sound engineer: Raphael's story",search:"how to become a sound engineer raphaels story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4jn2sg"},{id:"z4hdcqt",headline:"Business buzzwords: Decoded",search:"business buzzwords decoded",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4hdcqt"},{id:"z4gjbdm",headline:"How to become a sales performance manager: Grant's story",search:"how to become a sales performance manager grants story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4gjbdm"},{id:"z4fq382",headline:"How to become a chef and food vlogger: Dominique's story",search:"how to become a chef and food vlogger dominiques story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4fq382"},{id:"z4fkscw",headline:"How to become a crèche assistant: Lia's story",search:"how to become a creche assistant lias story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4fkscw"},{id:"z4dm92p",headline:"Life as a director of a wholesale fashion company: Wasim's story",search:"life as a director of a wholesale fashion company wasims story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4dm92p"},{id:"z4bvpg8",headline:"How to become a radio and podcast presenter: Nick Bright's story",search:"how to become a radio and podcast presenter nick brights story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4bvpg8"},{id:"z49t92p",headline:"How to become a makeup artist: Amrita's story",search:"how to become a makeup artist amritas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z49t92p"},{id:"z49bmfr",headline:"How to become an executive assistant: Emily's story",search:"how to become an executive assistant emilys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z49bmfr"},{id:"z49b6v4",headline:"How to become a critical care staff nurse: Sarah's story",search:"how to become a critical care staff nurse sarahs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z49b6v4"},{id:"z48m47h",headline:"How to become an assistant learning officer: Amy's story",search:"how to become an assistant learning officer amys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z48m47h"},{id:"z48kgwx",headline:"How to become an art director: Laura's story",search:"how to become an art director lauras story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z48kgwx"},{id:"z48dpg8",headline:"How to become a streaming manager: Rob's story",search:"how to become a streaming manager robs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z48dpg8"},{id:"z482382",headline:"How to become a screenwriter: Roanne Bardsley's story",search:"how to become a screenwriter roanne bardsleys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z482382"},{id:"z47tcqt",headline:"The advice I'd give to my younger self",search:"the advice id give to my younger self",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z47tcqt"},{id:"z47rxyc",headline:"How to become a drama facilitator: Megan's story",search:"how to become a drama facilitator megans story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z47rxyc"},{id:"z47qvk7",headline:"How to become a science officer: Lauren's story",search:"how to become a science officer laurens story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z47qvk7"},{id:"z47b2sg",headline:"How to become a business development intern: Nifemi's story",search:"how to become a business development intern nifemis story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z47b2sg"},{id:"z477382",headline:"Communication is about more than words",search:"communication is about more than words",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z477382"},{id:"z476rj6",headline:"How to become a commissioning and development executive: Craig Orr's story",search:"how to become a commissioning and development executive craig orrs story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z476rj6"},{id:"z4732sg",headline:"Top tips on taking the initiative",search:"top tips on taking the initiative",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4732sg"},{id:"z46p8xs",headline:"How to become an apprentice journalist: Natasha's story",search:"how to become an apprentice journalist natashas story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z46p8xs"},{id:"z46d47h",headline:"How to become a content editor: Henry's story",search:"how to become a content editor henrys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z46d47h"},{id:"z44dcqt",headline:"Five workplace perks you didn’t know you wanted",search:"five workplace perks you didnt know you wanted",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z44dcqt"},{id:"z439nrd",headline:"How to become a radio presenter: Swarzy's story",search:"how to become a radio presenter swarzys story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z439nrd"}]},function(e,t){e.exports=[{id:"zkv26yc",headline:"Darwin v Doudna: Who was the greatest scientist? (Inheritance and genetics)",search:"darwin v doudna who was the greatest scientist",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkv26yc"},{id:"z26xgdm",headline:"How to dissect a chicken leg (Living organisms)",search:"how to dissect a chicken leg",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z26xgdm"},{id:"z4nj2nb",headline:"How to make a model animal cell (Living organisms)",search:"how to make a model animal cell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4nj2nb"},{id:"zrh8jty",headline:"How to make a model plant cell (Living organisms)",search:"how to make a model plant cell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrh8jty"},{id:"z9wwsrd",headline:"How to measure photosynthesis (Respiration and gas exchange)",search:"how to measure photosynthesis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z9wwsrd"},{id:"zm3xh39",headline:"How to measure your lung capacity (Respiration and gas exchange)",search:"how to measure your lung capacity",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm3xh39"},{id:"zrm48mn",headline:"How to model digestion using tights (Nutrition, digestion and excretion)",search:"how to model digestion using tights",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrm48mn"},{id:"zbm48mn",headline:"How to observe cells under a microscope (Living organisms)",search:"how to observe cells under a microscope",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbm48mn"},{id:"z9gkfcw",headline:"How to turn starch into glucose (Nutrition, digestion and excretion)",search:"how to turn starch into glucose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z9gkfcw"},{id:"z3p7gdm",headline:"Should extinct species be brought back to life? (Inheritance and genetics)",search:"should extinct species be brought back to life",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z3p7gdm"},{id:"z877v9q",headline:"Should sugary drinks be banned for under-18s? (Health and disease)",search:"should sugary drinks be banned for under18s",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z877v9q"},{id:"z4f26yc",headline:"What are bacteria? (Living organisms)",search:"what are bacteria",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4f26yc"},{id:"zfqg4qt",headline:"What are carbohydrates? (Nutrition, digestion and excretion)",search:"what are carbohydrates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfqg4qt"},{id:"zr69dxs",headline:"What are cells? (Living organisms)",search:"what are cells",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr69dxs"},{id:"zkhdqhv",headline:"What are lipids, oils and fats? (Nutrition, digestion and excretion)",search:"what are lipids oils and fats",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkhdqhv"},{id:"zfj3rwx",headline:"What are specialised cells? (Living organisms)",search:"what are specialised cells",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfj3rwx"},{id:"zmrtng8",headline:"What are the differences between animal and plant cells? (Living organisms)",search:"what are the differences between animal and plant cells",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmrtng8"},{id:"zjchsrd",headline:"What are the organs of a plant? (Living organisms)",search:"what are the organs of a plant",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjchsrd"},{id:"zbpdqhv",headline:"What are the organs of the human body? (Living organisms)",search:"what are the organs of the human body",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbpdqhv"},{id:"zf2ck2p",headline:"What are vitamins and minerals? (Nutrition, digestion and excretion)",search:"what are vitamins and minerals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf2ck2p"},{id:"zvwbcj6",headline:"What is DNA? (Inheritance and genetics)",search:"what is dna",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvwbcj6"},{id:"zmwvgdm",headline:"What is a healthy diet? (Nutrition, digestion and excretion)",search:"what is a healthy diet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmwvgdm"},{id:"zth9ng8",headline:"What is aerobic respiration? (Respiration and gas exchange)",search:"what is aerobic respiration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zth9ng8"},{id:"zcsbmsg",headline:"What is anaerobic respiration? (Respiration and gas exchange)",search:"what is anaerobic respiration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zcsbmsg"},{id:"z2d2gdm",headline:"What is cellulose? (Living organisms)",search:"what is cellulose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z2d2gdm"},{id:"z4f7xfr",headline:"What is dietary fibre? (Nutrition, digestion and excretion)",search:"what is dietary fibre",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4f7xfr"},{id:"z7gpfcw",headline:"What is digestion? (Nutrition, digestion and excretion)",search:"what is digestion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7gpfcw"},{id:"zm8yb82",headline:"What is food energy? (Nutrition, digestion and excretion)",search:"what is food energy",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zm8yb82"},{id:"zctyqhv",headline:"What is glucose or blood sugar? (Respiration and gas exchange)",search:"what is glucose or blood sugar",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zctyqhv"},{id:"ztdmrwx",headline:"What is lactic acid? (Respiration and gas exchange)",search:"what is lactic acid",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztdmrwx"},{id:"zms7xfr",headline:"What is malnutrition? (Health and disease)",search:"what is malnutrition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zms7xfr"},{id:"z7hj2nb",headline:"What is natural selection? (Inheritance and genetics)",search:"what is natural selection",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7hj2nb"},{id:"zdx8jty",headline:"What is obesity? (Health and disease)",search:"what is obesity",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdx8jty"},{id:"zn4sv9q",headline:"What is photosynthesis? (Respiration and gas exchange)",search:"what is photosynthesis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn4sv9q"},{id:"zfcsv9q",headline:"What is poo? (Nutrition, digestion and excretion)",search:"what is poo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfcsv9q"},{id:"zh2r97h",headline:"What is protein? (Nutrition, digestion and excretion)",search:"what is protein",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh2r97h"},{id:"zxwwsrd",headline:"What is starch? (Nutrition, digestion and excretion)",search:"what is starch",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zxwwsrd"},{id:"z6btng8",headline:"What is the structure of a leaf? (Living organisms)",search:"what is the structure of a leaf",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6btng8"},{id:"z6s26yc",headline:"What is variation? (Inheritance and genetics)",search:"what is variation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6s26yc"},{id:"z9hyvcw",headline:"Cells to systems (Living organisms)",search:"cells to systems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw"},{id:"z9hyvcw-3",headline:"Cells to systems: Animal cells and plant cells (Living organisms)",search:"animal cells and plant cells",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/3"},{id:"z9hyvcw-2",headline:"Cells to systems: Cells (Living organisms)",search:"cells",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/2"},{id:"z9hyvcw-4",headline:"Cells to systems: Cells and their functions (Living organisms)",search:"cells and their functions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/4"},{id:"z9hyvcw-6",headline:"Cells to systems: Cells, tissues, organs and systems (Living organisms)",search:"cells tissues organs and systems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/6"},{id:"z9hyvcw-1",headline:"Cells to systems: Life processes (Living organisms)",search:"life processes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/1"},{id:"z9hyvcw-5",headline:"Cells to systems: Unicellular organisms (Living organisms)",search:"unicellular organisms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9hyvcw/revision/5"},{id:"zp7thyc",headline:"DNA (Inheritance and genetics)",search:"dna",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp7thyc"},{id:"zp7thyc-2",headline:"DNA: Chromosomes, DNA and genes (Inheritance and genetics)",search:"chromosomes dna and genes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp7thyc/revision/2"},{id:"zp7thyc-1",headline:"DNA: Structure of DNA (Inheritance and genetics)",search:"structure of dna",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp7thyc/revision/1"},{id:"zyjx6sg",headline:"Diet (Nutrition, digestion and excretion)",search:"diet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyjx6sg"},{id:"zyjx6sg-3",headline:"Diet: Effects of a poor diet (Nutrition, digestion and excretion)",search:"effects of a poor diet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyjx6sg/revision/3"},{id:"zyjx6sg-2",headline:"Diet: Energy needs (Nutrition, digestion and excretion)",search:"energy needs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyjx6sg/revision/2"},{id:"zyjx6sg-1",headline:"Diet: Nutrients (Nutrition, digestion and excretion)",search:"nutrients",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyjx6sg/revision/1"},{id:"z9pv34j",headline:"Digestive system (Nutrition, digestion and excretion)",search:"digestive system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9pv34j"},{id:"z9pv34j-3",headline:"Digestive system: Absorption and egestion (Nutrition, digestion and excretion)",search:"absorption and egestion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9pv34j/revision/3"},{id:"z9pv34j-2",headline:"Digestive system: Digestion and enzymes (Nutrition, digestion and excretion)",search:"digestion and enzymes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9pv34j/revision/2"},{id:"z9pv34j-1",headline:"Digestive system: Human digestive system (Nutrition, digestion and excretion)",search:"human digestive system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9pv34j/revision/1"},{id:"z9pv34j-4",headline:"Digestive system: Modelling the digestive system (Nutrition, digestion and excretion)",search:"modelling the digestive system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9pv34j/revision/4"},{id:"zw9jq6f",headline:"Evolution, extinction and biodiversity (Inheritance and genetics)",search:"evolution extinction and biodiversity",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw9jq6f"},{id:"zw9jq6f-1",headline:"Evolution, extinction and biodiversity: Evolution (Inheritance and genetics)",search:"evolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw9jq6f/revision/1"},{id:"zw9jq6f-2",headline:"Evolution, extinction and biodiversity: Extinction (Inheritance and genetics)",search:"extinction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw9jq6f/revision/2"},{id:"zw9jq6f-3",headline:"Evolution, extinction and biodiversity: Maintaining biodiversity (Inheritance and genetics)",search:"maintaining biodiversity",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw9jq6f/revision/3"},{id:"zq4wjxs",headline:"Food chains and food webs (Ecosystems and habitats)",search:"food chains and food webs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs"},{id:"zq4wjxs-4",headline:"Food chains and food webs: Changes to food webs (Ecosystems and habitats)",search:"changes to food webs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs/revision/4"},{id:"zq4wjxs-1",headline:"Food chains and food webs: Food chains (Ecosystems and habitats)",search:"food chains",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs/revision/1"},{id:"zq4wjxs-3",headline:"Food chains and food webs: Food webs (Ecosystems and habitats)",search:"food webs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs/revision/3"},{id:"zq4wjxs-2",headline:"Food chains and food webs: Pyramids of numbers (Ecosystems and habitats)",search:"pyramids of numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs/revision/2"},{id:"zq4wjxs-5",headline:"Food chains and food webs: Toxic materials in the food chain (Ecosystems and habitats)",search:"toxic materials in the food chain",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq4wjxs/revision/5"},{id:"zy2hpv4",headline:"Health (Health and disease)",search:"health",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2hpv4"},{id:"zy2hpv4-3",headline:"Health: Drugs (Health and disease)",search:"drugs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2hpv4/revision/3"},{id:"zy2hpv4-1",headline:"Health: Lungs and health (Health and disease)",search:"lungs and health",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2hpv4/revision/1"},{id:"zy2hpv4-2",headline:"Health: Smoking (Health and disease)",search:"smoking",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2hpv4/revision/2"},{id:"z9fgr82",headline:"Human reproduction (Reproduction)",search:"human reproduction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82"},{id:"z9fgr82-5",headline:"Human reproduction: Fetal development and birth (Reproduction)",search:"fetal development and birth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/5"},{id:"z9fgr82-4",headline:"Human reproduction: Gametes and fertilisation (Reproduction)",search:"gametes and fertilisation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/4"},{id:"z9fgr82-6",headline:"Human reproduction: Puberty (Reproduction)",search:"puberty",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/6"},{id:"z9fgr82-2",headline:"Human reproduction: The female reproductive system (Reproduction)",search:"the female reproductive system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/2"},{id:"z9fgr82-1",headline:"Human reproduction: The male reproductive system (Reproduction)",search:"the male reproductive system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/1"},{id:"z9fgr82-3",headline:"Human reproduction: The menstrual cycle (Reproduction)",search:"the menstrual cycle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fgr82/revision/3"},{id:"zpwmxnb",headline:"Photosynthesis (Respiration and gas exchange)",search:"photosynthesis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwmxnb"},{id:"zpwmxnb-2",headline:"Photosynthesis: Adaptations of the leaf (Respiration and gas exchange)",search:"adaptations of the leaf",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwmxnb/revision/2"},{id:"zpwmxnb-4",headline:"Photosynthesis: Investigating the rate of photosynthesis (Respiration and gas exchange)",search:"investigating the rate of photosynthesis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwmxnb/revision/4"},{id:"zpwmxnb-3",headline:"Photosynthesis: Photosynthesis and respiration in plants (Respiration and gas exchange)",search:"photosynthesis and respiration in plants",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwmxnb/revision/3"},{id:"zpwmxnb-1",headline:"Photosynthesis: What is photosynthesis? (Respiration and gas exchange)",search:"what is photosynthesis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwmxnb/revision/1"},{id:"zs7thyc",headline:"Plant reproduction (Reproduction)",search:"plant reproduction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs7thyc"},{id:"zs7thyc-4",headline:"Plant reproduction: Dispersal (Reproduction)",search:"dispersal",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs7thyc/revision/4"},{id:"zs7thyc-1",headline:"Plant reproduction: Flower structure (Reproduction)",search:"flower structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs7thyc/revision/1"},{id:"zs7thyc-2",headline:"Plant reproduction: Pollination (Reproduction)",search:"pollination",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs7thyc/revision/2"},{id:"zs7thyc-3",headline:"Plant reproduction: Seeds and fruit (Reproduction)",search:"seeds and fruit",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs7thyc/revision/3"},{id:"zq349j6",headline:"Respiration (Respiration and gas exchange)",search:"respiration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq349j6"},{id:"zq349j6-3",headline:"Respiration: Gas exchange in the lungs (Respiration and gas exchange)",search:"gas exchange in the lungs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq349j6/revision/3"},{id:"zq349j6-1",headline:"Respiration: Respiration (Respiration and gas exchange)",search:"respiration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq349j6/revision/1"},{id:"zq349j6-2",headline:"Respiration: The human gas exchange system (Respiration and gas exchange)",search:"the human gas exchange system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zq349j6/revision/2"},{id:"zpkq7ty",headline:"Skeletal and muscular systems (Living organisms)",search:"skeletal and muscular systems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpkq7ty"},{id:"zpkq7ty-2",headline:"Skeletal and muscular systems: Joints (Living organisms)",search:"joints",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpkq7ty/revision/2"},{id:"zpkq7ty-3",headline:"Skeletal and muscular systems: Muscles (Living organisms)",search:"muscles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpkq7ty/revision/3"},{id:"zpkq7ty-1",headline:"Skeletal and muscular systems: The skeleton (Living organisms)",search:"the skeleton",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpkq7ty/revision/1"},{id:"zw4wjxs",headline:"Species and selective breeding (Inheritance and genetics)",search:"species and selective breeding",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw4wjxs"},{id:"zw4wjxs-2",headline:"Species and selective breeding: Selective breeding (Inheritance and genetics)",search:"selective breeding",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw4wjxs/revision/2"},{id:"zw4wjxs-1",headline:"Species and selective breeding: Species (Inheritance and genetics)",search:"species",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw4wjxs/revision/1"},{id:"z9gk87h",headline:"Variation (Inheritance and genetics)",search:"variation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9gk87h"},{id:"z9gk87h-3",headline:"Variation: Continuous and discontinuous variation (Inheritance and genetics)",search:"continuous and discontinuous variation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9gk87h/revision/3"},{id:"z9gk87h-2",headline:"Variation: Inherited and environmental variation (Inheritance and genetics)",search:"inherited and environmental variation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9gk87h/revision/2"},{id:"z9gk87h-1",headline:"Variation: What is variation? (Inheritance and genetics)",search:"what is variation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9gk87h/revision/1"},{id:"zxhhvcw",headline:"Ecosystems and habitats",search:"ecosystems and habitats",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zxhhvcw"},{id:"z6pp34j",headline:"Evolution",search:"evolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z6pp34j"},{id:"ztnnb9q",headline:"Health and disease",search:"health and disease",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/ztnnb9q"},{id:"zhssgk7",headline:"Humans and the environment",search:"humans and the environment",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zhssgk7"},{id:"zpffr82",headline:"Inheritance and genetics",search:"inheritance and genetics",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zpffr82"},{id:"znyycdm",headline:"Living organisms",search:"living organisms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znyycdm"},{id:"zsvv4wx",headline:"Nerves and hormones",search:"nerves and hormones",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zsvv4wx"},{id:"zf339j6",headline:"Nutrition, digestion and excretion",search:"nutrition digestion and excretion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zf339j6"},{id:"zybbkqt",headline:"Reproduction",search:"reproduction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zybbkqt"},{id:"zvrrd2p",headline:"Respiration and gas exchange",search:"respiration and gas exchange",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvrrd2p"},{id:"z3ccwmn",headline:"Transport",search:"transport",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z3ccwmn"}]},function(e,t){e.exports=[{id:"zky82hv",headline:"Charles I, Civil War and the Restoration (Charles I)",search:"charles i civil war and the restoration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv"},{id:"zky82hv-1",headline:"Charles I, Civil War and the Restoration: A summary of Charles I, Civil War and the Restoration (Charles I)",search:"a summary of charles i civil war and the restoration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/1"},{id:"zky82hv-6",headline:"Charles I, Civil War and the Restoration: Consequences of Charles' actions, the Civil War and the Restoration (Charles I)",search:"consequences of charles actions the civil war and the restoration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/6"},{id:"zky82hv-7",headline:"Charles I, Civil War and the Restoration: Interpretations of Charles' actions, the Civil War and the Restoration (Charles I)",search:"interpretations of charles actions the civil war and the restoration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/7"},{id:"zky82hv-2",headline:"Charles I, Civil War and the Restoration: King and Parliament (Charles I)",search:"king and parliament",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/2"},{id:"zky82hv-4",headline:"Charles I, Civil War and the Restoration: The Civil War (Charles I)",search:"the civil war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/4"},{id:"zky82hv-5",headline:"Charles I, Civil War and the Restoration: The Execution of Charles I (Charles I)",search:"the execution of charles i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/5"},{id:"zky82hv-3",headline:"Charles I, Civil War and the Restoration: The steps to civil war (Charles I)",search:"the steps to civil war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zky82hv/revision/3"},{id:"z6k6fg8",headline:"Conflicts through time (Conflict through time in the UK)",search:"conflicts through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8"},{id:"z6k6fg8-1",headline:"Conflicts through time: A summary of conflicts through time (Conflict through time in the UK)",search:"a summary of conflicts through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8/revision/1"},{id:"z6k6fg8-4",headline:"Conflicts through time: The 19th Century (Conflict through time in the UK)",search:"the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8/revision/4"},{id:"z6k6fg8-5",headline:"Conflicts through time: The 20th century (Conflict through time in the UK)",search:"the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8/revision/5"},{id:"z6k6fg8-2",headline:"Conflicts through time: The Middle Ages (Conflict through time in the UK)",search:"the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8/revision/2"},{id:"z6k6fg8-3",headline:"Conflicts through time: Tudor and Stuart times (Conflict through time in the UK)",search:"tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6k6fg8/revision/3"},{id:"zcn4jxs",headline:"Elizabeth I (Elizabeth I)",search:"elizabeth i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs"},{id:"zcn4jxs-1",headline:"Elizabeth I: A summary of Elizabeth I (Elizabeth I)",search:"a summary of elizabeth i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs/revision/1"},{id:"zcn4jxs-4",headline:"Elizabeth I: Consequences of Elizabeth I's reign (Elizabeth I)",search:"consequences of elizabeth is reign",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs/revision/4"},{id:"zcn4jxs-5",headline:"Elizabeth I: Interpretations of Elizabeth I's reign (Elizabeth I)",search:"interpretations of elizabeth is reign",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs/revision/5"},{id:"zcn4jxs-2",headline:"Elizabeth I: Problems (Elizabeth I)",search:"problems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs/revision/2"},{id:"zcn4jxs-3",headline:"Elizabeth I: The power of the queen (Elizabeth I)",search:"the power of the queen",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcn4jxs/revision/3"},{id:"zwbj6sg",headline:"Everyday life in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"everyday life in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg"},{id:"zwbj6sg-1",headline:"Everyday life in Tudor and Stuart times: A summary of everyday life in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"a summary of everyday life in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/1"},{id:"zwbj6sg-5",headline:"Everyday life in Tudor and Stuart times: Entertainment in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"entertainment in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/5"},{id:"zwbj6sg-8",headline:"Everyday life in Tudor and Stuart times: Interpretations of life in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"interpretations of life in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/8"},{id:"zwbj6sg-3",headline:"Everyday life in Tudor and Stuart times: Life for the Stuart lords (Everyday life in Tudor and Stuart times)",search:"life for the stuart lords",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/3"},{id:"zwbj6sg-2",headline:"Everyday life in Tudor and Stuart times: Life for the Tudor lords (Everyday life in Tudor and Stuart times)",search:"life for the tudor lords",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/2"},{id:"zwbj6sg-7",headline:"Everyday life in Tudor and Stuart times: Life for the poor in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"life for the poor in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/7"},{id:"zwbj6sg-4",headline:"Everyday life in Tudor and Stuart times: Life in the towns in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"life in the towns in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/4"},{id:"zwbj6sg-6",headline:"Everyday life in Tudor and Stuart times: London in Tudor and Stuart times (Everyday life in Tudor and Stuart times)",search:"london in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwbj6sg/revision/6"},{id:"zqgjq6f",headline:"Everyday life in the 20th century (Everyday life in the 20th century)",search:"everyday life in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f"},{id:"zqgjq6f-1",headline:"Everyday life in the 20th century: A summary of everyday life in the 20th century (Everyday life in the 20th century)",search:"a summary of everyday life in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f/revision/1"},{id:"zqgjq6f-3",headline:"Everyday life in the 20th century: Economy (Everyday life in the 20th century)",search:"economy",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f/revision/3"},{id:"zqgjq6f-5",headline:"Everyday life in the 20th century: Society and private lives (Everyday life in the 20th century)",search:"society and private lives",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f/revision/5"},{id:"zqgjq6f-4",headline:"Everyday life in the 20th century: Society and the state (Everyday life in the 20th century)",search:"society and the state",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f/revision/4"},{id:"zqgjq6f-2",headline:"Everyday life in the 20th century: Technology and science (Everyday life in the 20th century)",search:"technology and science",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgjq6f/revision/2"},{id:"z3x39j6",headline:"Everyday life in the Industrial Era (British society)",search:"everyday life in the industrial era",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6"},{id:"z3x39j6-1",headline:"Everyday life in the Industrial Era: A summary of everyday life in the Industrial Era (British society)",search:"a summary of everyday life in the industrial era",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/1"},{id:"z3x39j6-3",headline:"Everyday life in the Industrial Era: Middle class life in the Industrial Era (British society)",search:"middle class life in the industrial era",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/3"},{id:"z3x39j6-2",headline:"Everyday life in the Industrial Era: Upper class life in the Industrial Era (British society)",search:"upper class life in the industrial era",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/2"},{id:"z3x39j6-5",headline:"Everyday life in the Industrial Era: What do you think? (British society)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/5"},{id:"z3x39j6-6",headline:"Everyday life in the Industrial Era: Where next? (British society)",search:"where next",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/6"},{id:"z3x39j6-4",headline:"Everyday life in the Industrial Era: Working class life in the Industrial Era (British society)",search:"working class life in the industrial era",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3x39j6/revision/4"},{id:"zm4mn39",headline:"Everyday life in the Middle Ages (The Middle Ages (12th to 15th century))",search:"everyday life in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39"},{id:"zm4mn39-3",headline:"Everyday life in the Middle Ages: A day in the life of a medieval lord (The Middle Ages (12th to 15th century))",search:"a day in the life of a medieval lord",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/3"},{id:"zm4mn39-5",headline:"Everyday life in the Middle Ages: A day in the life of a medieval town (The Middle Ages (12th to 15th century))",search:"a day in the life of a medieval town",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/5"},{id:"zm4mn39-1",headline:"Everyday life in the Middle Ages: A summary of everyday life in the Middle Ages (The Middle Ages (12th to 15th century))",search:"a summary of everyday life in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/1"},{id:"zm4mn39-2",headline:"Everyday life in the Middle Ages: Life in a castle (The Middle Ages (12th to 15th century))",search:"life in a castle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/2"},{id:"zm4mn39-4",headline:"Everyday life in the Middle Ages: Life in a medieval town (The Middle Ages (12th to 15th century))",search:"life in a medieval town",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/4"},{id:"zm4mn39-6",headline:"Everyday life in the Middle Ages: Life in a medieval village (The Middle Ages (12th to 15th century))",search:"life in a medieval village",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/6"},{id:"zm4mn39-7",headline:"Everyday life in the Middle Ages: Literature, art and architecture in the Middle Ages (The Middle Ages (12th to 15th century))",search:"literature art and architecture in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zm4mn39/revision/7"},{id:"zghrd2p",headline:"Henry VIII (Henry VIII)",search:"henry viii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p"},{id:"zghrd2p-2",headline:"Henry VIII: A strong throne (Henry VIII)",search:"a strong throne",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p/revision/2"},{id:"zghrd2p-1",headline:"Henry VIII: A summary of Henry VIII (Henry VIII)",search:"a summary of henry viii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p/revision/1"},{id:"zghrd2p-4",headline:"Henry VIII: Consequences of Henry VIII's reign (Henry VIII)",search:"consequences of henry viiis reign",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p/revision/4"},{id:"zghrd2p-5",headline:"Henry VIII: Interpretations of Henry VIII's reign (Henry VIII)",search:"interpretations of henry viiis reign",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p/revision/5"},{id:"zghrd2p-3",headline:"Henry VIII: Power of the king (Henry VIII)",search:"power of the king",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zghrd2p/revision/3"},{id:"zrhrd2p",headline:"Ireland in the 20th century (Northern Ireland)",search:"ireland in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p"},{id:"zrhrd2p-8",headline:"Ireland in the 20th century: 1980 - 1990s – Agreement, settlement and an end to the Troubles (Northern Ireland)",search:"1980 1990s agreement settlement and an end to the troubles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/8"},{id:"zrhrd2p-1",headline:"Ireland in the 20th century: A summary of Ireland during the 20th century (Northern Ireland)",search:"a summary of ireland during the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/1"},{id:"zrhrd2p-9",headline:"Ireland in the 20th century: Consequences of the conflict in Ireland (Northern Ireland)",search:"consequences of the conflict in ireland",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/9"},{id:"zrhrd2p-3",headline:"Ireland in the 20th century: Easter Rising 1916 (Northern Ireland)",search:"easter rising 1916",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/3"},{id:"zrhrd2p-2",headline:"Ireland in the 20th century: Home Rule Bill (Northern Ireland)",search:"home rule bill",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/2"},{id:"zrhrd2p-6",headline:"Ireland in the 20th century: Settlement 1923 - 1951 (Northern Ireland)",search:"settlement 1923 1951",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/6"},{id:"zrhrd2p-5",headline:"Ireland in the 20th century: The Civil War 1922 – 1923 (Northern Ireland)",search:"the civil war 1922 1923",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/5"},{id:"zrhrd2p-7",headline:"Ireland in the 20th century: The Troubles 1950s to 1970s (Northern Ireland)",search:"the troubles 1950s to 1970s",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/7"},{id:"zrhrd2p-4",headline:"Ireland in the 20th century: The War of Independence 1919 – 1921 (Northern Ireland)",search:"the war of independence 1919 1921",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/4"},{id:"zrhrd2p-10",headline:"Ireland in the 20th century: What do you think? (Northern Ireland)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrhrd2p/revision/10"},{id:"zqgqtfr",headline:"King John and Magna Carta (The Middle Ages (12th to 15th century))",search:"king john and magna carta",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr"},{id:"zqgqtfr-1",headline:"King John and Magna Carta: A summary of King John and Magna Carta (The Middle Ages (12th to 15th century))",search:"a summary of king john and magna carta",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/1"},{id:"zqgqtfr-4",headline:"King John and Magna Carta: Consequences of Magna Carta (The Middle Ages (12th to 15th century))",search:"consequences of magna carta",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/4"},{id:"zqgqtfr-3",headline:"King John and Magna Carta: Creation of Magna Carta (The Middle Ages (12th to 15th century))",search:"creation of magna carta",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/3"},{id:"zqgqtfr-6",headline:"King John and Magna Carta: Historical interpretations of King John (The Middle Ages (12th to 15th century))",search:"historical interpretations of king john",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/6"},{id:"zqgqtfr-5",headline:"King John and Magna Carta: Historical interpretations of Magna Carta (The Middle Ages (12th to 15th century))",search:"historical interpretations of magna carta",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/5"},{id:"zqgqtfr-2",headline:"King John and Magna Carta: John and the monarchy (The Middle Ages (12th to 15th century))",search:"john and the monarchy",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqgqtfr/revision/2"},{id:"zxg6wxs",headline:"Medicine through time (Medieval and Renaissance medicine)",search:"medicine through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs"},{id:"zp9n2p3",headline:"Medicine through time (Modern medicine)",search:"medicine through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3"},{id:"zxg6wxs-1",headline:"Medicine through time: A summary of medicine through time (Medieval and Renaissance medicine)",search:"a summary of medicine through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/1"},{id:"zp9n2p3-1",headline:"Medicine through time: A summary of medicine through time (Modern medicine)",search:"a summary of medicine through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/1"},{id:"zxg6wxs-6",headline:"Medicine through time: Medicine in the 19th century (Medieval and Renaissance medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/6"},{id:"zxg6wxs-7",headline:"Medicine through time: Medicine in the 19th century (Medieval and Renaissance medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/7"},{id:"zxg6wxs-8",headline:"Medicine through time: Medicine in the 19th century (Medieval and Renaissance medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/8"},{id:"zp9n2p3-6",headline:"Medicine through time: Medicine in the 19th century (Modern medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/6"},{id:"zp9n2p3-7",headline:"Medicine through time: Medicine in the 19th century (Modern medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/7"},{id:"zp9n2p3-8",headline:"Medicine through time: Medicine in the 19th century (Modern medicine)",search:"medicine in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/8"},{id:"zxg6wxs-9",headline:"Medicine through time: Medicine in the 20th century (Medieval and Renaissance medicine)",search:"medicine in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/9"},{id:"zxg6wxs-10",headline:"Medicine through time: Medicine in the 20th century (Medieval and Renaissance medicine)",search:"medicine in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/10"},{id:"zp9n2p3-9",headline:"Medicine through time: Medicine in the 20th century (Modern medicine)",search:"medicine in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/9"},{id:"zp9n2p3-10",headline:"Medicine through time: Medicine in the 20th century (Modern medicine)",search:"medicine in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/10"},{id:"zxg6wxs-4",headline:"Medicine through time: Medicine in the Early Modern age (Medieval and Renaissance medicine)",search:"medicine in the early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/4"},{id:"zxg6wxs-5",headline:"Medicine through time: Medicine in the Early Modern age (Medieval and Renaissance medicine)",search:"medicine in the early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/5"},{id:"zp9n2p3-4",headline:"Medicine through time: Medicine in the Early Modern age (Modern medicine)",search:"medicine in the early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/4"},{id:"zp9n2p3-5",headline:"Medicine through time: Medicine in the Early Modern age (Modern medicine)",search:"medicine in the early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/5"},{id:"zxg6wxs-2",headline:"Medicine through time: Medicine in the Middle Ages (Medieval and Renaissance medicine)",search:"medicine in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/2"},{id:"zxg6wxs-3",headline:"Medicine through time: Medicine in the Middle Ages (Medieval and Renaissance medicine)",search:"medicine in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxg6wxs/revision/3"},{id:"zp9n2p3-2",headline:"Medicine through time: Medicine in the Middle Ages (Modern medicine)",search:"medicine in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/2"},{id:"zp9n2p3-3",headline:"Medicine through time: Medicine in the Middle Ages (Modern medicine)",search:"medicine in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp9n2p3/revision/3"},{id:"zgtg87h",headline:"Modern China (China)",search:"modern china",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h"},{id:"zgtg87h-1",headline:"Modern China: A summary of modern China (China)",search:"a summary of modern china",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/1"},{id:"zgtg87h-5",headline:"Modern China: China after Mao (China)",search:"china after mao",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/5"},{id:"zgtg87h-2",headline:"Modern China: China and Britain (1910-1950) (China)",search:"china and britain 19101950",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/2"},{id:"zgtg87h-3",headline:"Modern China: China and Britain (1950-1970) (China)",search:"china and britain 19501970",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/3"},{id:"zgtg87h-4",headline:"Modern China: Mao Zedong (China)",search:"mao zedong",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/4"},{id:"zgtg87h-6",headline:"Modern China: The development of modern China (China)",search:"the development of modern china",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/6"},{id:"zgtg87h-7",headline:"Modern China: What do you think? (China)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgtg87h/revision/7"},{id:"zt8tyrd",headline:"Movement and settlement in the UK (Movement and settlement in the UK)",search:"movement and settlement in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd"},{id:"zt8tyrd-1",headline:"Movement and settlement in the UK: A summary of movement and settlement in the UK (Movement and settlement in the UK)",search:"a summary of movement and settlement in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/1"},{id:"zt8tyrd-4",headline:"Movement and settlement in the UK: Black Britons (Movement and settlement in the UK)",search:"black britons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/4"},{id:"zt8tyrd-6",headline:"Movement and settlement in the UK: Emigration (Movement and settlement in the UK)",search:"emigration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/6"},{id:"zt8tyrd-5",headline:"Movement and settlement in the UK: The 19th century (Movement and settlement in the UK)",search:"the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/5"},{id:"zt8tyrd-7",headline:"Movement and settlement in the UK: The 20th century (Movement and settlement in the UK)",search:"the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/7"},{id:"zt8tyrd-2",headline:"Movement and settlement in the UK: The Middle Ages (Movement and settlement in the UK)",search:"the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/2"},{id:"zt8tyrd-3",headline:"Movement and settlement in the UK: Tudor and Stuart times (Movement and settlement in the UK)",search:"tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/3"},{id:"zt8tyrd-8",headline:"Movement and settlement in the UK: What do you think? (Movement and settlement in the UK)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt8tyrd/revision/8"},{id:"z8vdmp3",headline:"Oliver Cromwell (Oliver Cromwell)",search:"oliver cromwell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3"},{id:"z8vdmp3-1",headline:"Oliver Cromwell: A summary of Oliver Cromwell (Oliver Cromwell)",search:"a summary of oliver cromwell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/1"},{id:"z8vdmp3-5",headline:"Oliver Cromwell: Consequences of Oliver Cromwell's rule (Oliver Cromwell)",search:"consequences of oliver cromwells rule",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/5"},{id:"z8vdmp3-6",headline:"Oliver Cromwell: Interpretations of Oliver Cromwell (Oliver Cromwell)",search:"interpretations of oliver cromwell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/6"},{id:"z8vdmp3-3",headline:"Oliver Cromwell: Ireland and Scotland (Oliver Cromwell)",search:"ireland and scotland",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/3"},{id:"z8vdmp3-4",headline:"Oliver Cromwell: The Protectorate (Oliver Cromwell)",search:"the protectorate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/4"},{id:"z8vdmp3-7",headline:"Oliver Cromwell: What do you think? (Oliver Cromwell)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/7"},{id:"z8vdmp3-2",headline:"Oliver Cromwell: Who was Oliver Cromwell? (Oliver Cromwell)",search:"who was oliver cromwell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8vdmp3/revision/2"},{id:"zpwp34j",headline:"Popular protests through time (Popular protest through time in the UK)",search:"popular protests through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j"},{id:"zpwp34j-1",headline:"Popular protests through time: A summary of popular protests in British history (Popular protest through time in the UK)",search:"a summary of popular protests in british history",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/1"},{id:"zpwp34j-3",headline:"Popular protests through time: Protest in Tudor and Stuart times (Popular protest through time in the UK)",search:"protest in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/3"},{id:"zpwp34j-6",headline:"Popular protests through time: Protest in the 19th century (Popular protest through time in the UK)",search:"protest in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/6"},{id:"zpwp34j-7",headline:"Popular protests through time: Protest in the 20th century (Popular protest through time in the UK)",search:"protest in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/7"},{id:"zpwp34j-2",headline:"Popular protests through time: Protest in the Middle Ages (Popular protest through time in the UK)",search:"protest in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/2"},{id:"zpwp34j-4",headline:"Popular protests through time: Protests in the 18th century (Popular protest through time in the UK)",search:"protests in the 18th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/4"},{id:"zpwp34j-5",headline:"Popular protests through time: The French Revolution (Popular protest through time in the UK)",search:"the french revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/5"},{id:"zpwp34j-8",headline:"Popular protests through time: What do you think? (Popular protest through time in the UK)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpwp34j/revision/8"},{id:"znjnb9q",headline:"Religion through time in the UK (Religion through time in the UK)",search:"religion through time in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q"},{id:"znjnb9q-1",headline:"Religion through time in the UK: A summary of religion through time in the UK (Religion through time in the UK)",search:"a summary of religion through time in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/1"},{id:"znjnb9q-4",headline:"Religion through time in the UK: Religion in Tudor and Stuart times (Religion through time in the UK)",search:"religion in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/4"},{id:"znjnb9q-5",headline:"Religion through time in the UK: Religion in the 19th century (Religion through time in the UK)",search:"religion in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/5"},{id:"znjnb9q-6",headline:"Religion through time in the UK: Religion in the 20th and 21st centuries (Religion through time in the UK)",search:"religion in the 20th and 21st centuries",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/6"},{id:"znjnb9q-2",headline:"Religion through time in the UK: Religion in the Middle Ages (Religion through time in the UK)",search:"religion in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/2"},{id:"znjnb9q-3",headline:"Religion through time in the UK: Religion in the Middle Ages - monks and nuns (Religion through time in the UK)",search:"religion in the middle ages monks and nuns",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znjnb9q/revision/3"},{id:"zsqsgk7",headline:"Shaping the UK (Shaping the UK)",search:"shaping the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7"},{id:"zsqsgk7-9",headline:"Shaping the UK: Devolution (Shaping the UK)",search:"devolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/9"},{id:"zsqsgk7-7",headline:"Shaping the UK: Ireland: 19th century (Shaping the UK)",search:"ireland 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/7"},{id:"zsqsgk7-8",headline:"Shaping the UK: Ireland: 20th century (Shaping the UK)",search:"ireland 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/8"},{id:"zsqsgk7-6",headline:"Shaping the UK: Ireland: The Middle Ages and Early Modern Age (Shaping the UK)",search:"ireland the middle ages and early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/6"},{id:"zsqsgk7-5",headline:"Shaping the UK: Scotland: 19th and 20th century (Shaping the UK)",search:"scotland 19th and 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/5"},{id:"zsqsgk7-4",headline:"Shaping the UK: Scotland: The Middle Ages and Early Modern Age (Shaping the UK)",search:"scotland the middle ages and early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/4"},{id:"zsqsgk7-1",headline:"Shaping the UK: Summary (Shaping the UK)",search:"summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/1"},{id:"zsqsgk7-3",headline:"Shaping the UK: Wales: 19th and 20th century (Shaping the UK)",search:"wales 19th and 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/3"},{id:"zsqsgk7-2",headline:"Shaping the UK: Wales: The Middle Ages and Early Modern Age (Shaping the UK)",search:"wales the middle ages and early modern age",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsqsgk7/revision/2"},{id:"z7r7hyc",headline:"The Black Death (The Middle Ages (12th to 15th century))",search:"the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc"},{id:"z7r7hyc-1",headline:"The Black Death: A summary of the Black Death (The Middle Ages (12th to 15th century))",search:"a summary of the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/1"},{id:"z7r7hyc-2",headline:"The Black Death: Causes of the Black Death (The Middle Ages (12th to 15th century))",search:"causes of the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/2"},{id:"z7r7hyc-5",headline:"The Black Death: Consequences of the Black Death (The Middle Ages (12th to 15th century))",search:"consequences of the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/5"},{id:"z7r7hyc-4",headline:"The Black Death: Cures for the Black Death (The Middle Ages (12th to 15th century))",search:"cures for the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/4"},{id:"z7r7hyc-6",headline:"The Black Death: Interpretations of the Black Death (The Middle Ages (12th to 15th century))",search:"interpretations of the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/6"},{id:"z7r7hyc-3",headline:"The Black Death: The spread of the Black Death (The Middle Ages (12th to 15th century))",search:"the spread of the black death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7r7hyc/revision/3"},{id:"zf7fr82",headline:"The British Empire through time (The British Empire through time)",search:"the british empire through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82"},{id:"zf7fr82-1",headline:"The British Empire through time: A summary of the British Empire through time (The British Empire through time)",search:"a summary of the british empire through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/1"},{id:"zf7fr82-2",headline:"The British Empire through time: Background: Britain in the Middle Ages (The British Empire through time)",search:"background britain in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/2"},{id:"zf7fr82-6",headline:"The British Empire through time: The British Empire after 1924 (The British Empire through time)",search:"the british empire after 1924",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/6"},{id:"zf7fr82-3",headline:"The British Empire through time: The first British Empire: 1497-1763 (The British Empire through time)",search:"the first british empire 14971763",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/3"},{id:"zf7fr82-4",headline:"The British Empire through time: The first British Empire: 1763-1783 (The British Empire through time)",search:"the first british empire 17631783",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/4"},{id:"zf7fr82-5",headline:"The British Empire through time: The second British Empire: 1783-1924 (The British Empire through time)",search:"the second british empire 17831924",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/5"},{id:"zf7fr82-7",headline:"The British Empire through time: What do you think? (The British Empire through time)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zf7fr82/revision/7"},{id:"zhdhvcw",headline:"The Chartists (Popular protest through time in the UK)",search:"the chartists",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw"},{id:"zhdhvcw-1",headline:"The Chartists: A summary of the Chartist Movement (Popular protest through time in the UK)",search:"a summary of the chartist movement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw/revision/1"},{id:"zhdhvcw-4",headline:"The Chartists: Consequences and significance of Chartism (Popular protest through time in the UK)",search:"consequences and significance of chartism",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw/revision/4"},{id:"zhdhvcw-3",headline:"The Chartists: The Charters (Popular protest through time in the UK)",search:"the charters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw/revision/3"},{id:"zhdhvcw-2",headline:"The Chartists: The roots of Chartism (Popular protest through time in the UK)",search:"the roots of chartism",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw/revision/2"},{id:"zhdhvcw-5",headline:"The Chartists: What do you think? (Popular protest through time in the UK)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhdhvcw/revision/5"},{id:"zcpcwmn",headline:"The Civil Rights Movement in America (USA)",search:"the civil rights movement in america",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn"},{id:"zcpcwmn-1",headline:"The Civil Rights Movement in America: A summary of the Civil Rights Movement in America (USA)",search:"a summary of the civil rights movement in america",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/1"},{id:"zcpcwmn-2",headline:"The Civil Rights Movement in America: After slavery (USA)",search:"after slavery",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/2"},{id:"zcpcwmn-4",headline:"The Civil Rights Movement in America: Consequences of the Civil Rights Movement (USA)",search:"consequences of the civil rights movement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/4"},{id:"zcpcwmn-3",headline:"The Civil Rights Movement in America: The Path to Civil Rights (USA)",search:"the path to civil rights",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/3"},{id:"zcpcwmn-5",headline:"The Civil Rights Movement in America: What do you think? (USA)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/5"},{id:"zcpcwmn-6",headline:"The Civil Rights Movement in America: Where next? (USA)",search:"where next",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcpcwmn/revision/6"},{id:"zjbj6sg",headline:"The Crusades (The Middle Ages (12th to 15th century))",search:"the crusades",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg"},{id:"zjbj6sg-1",headline:"The Crusades: How did the Crusades begin? (The Middle Ages (12th to 15th century))",search:"how did the crusades begin",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/1"},{id:"zjbj6sg-5",headline:"The Crusades: How did the Crusades change the western world? (The Middle Ages (12th to 15th century))",search:"how did the crusades change the western world",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/5"},{id:"zjbj6sg-2",headline:"The Crusades: Overview of the Crusades (The Middle Ages (12th to 15th century))",search:"overview of the crusades",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/2"},{id:"zjbj6sg-4",headline:"The Crusades: Summary of key events of the Crusades (The Middle Ages (12th to 15th century))",search:"summary of key events of the crusades",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/4"},{id:"zjbj6sg-6",headline:"The Crusades: Western and eastern interpretations of the Crusades (The Middle Ages (12th to 15th century))",search:"western and eastern interpretations of the crusades",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/6"},{id:"zjbj6sg-3",headline:"The Crusades: What were the different motives for the Crusades? (The Middle Ages (12th to 15th century))",search:"what were the different motives for the crusades",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjbj6sg/revision/3"},{id:"z4n4jxs",headline:"The First World War (World War One)",search:"the first world war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs"},{id:"z4n4jxs-1",headline:"The First World War: A summary of the First World War (World War One)",search:"a summary of the first world war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/1"},{id:"z4n4jxs-3",headline:"The First World War: The Coming of War 1914 (World War One)",search:"the coming of war 1914",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/3"},{id:"z4n4jxs-5",headline:"The First World War: The Consequences of the War (World War One)",search:"the consequences of the war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/5"},{id:"z4n4jxs-4",headline:"The First World War: The Course of the War 1914 − 1918 (World War One)",search:"the course of the war 1914 1918",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/4"},{id:"z4n4jxs-6",headline:"The First World War: What do you think? (World War One)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/6"},{id:"z4n4jxs-2",headline:"The First World War: Why did War break out? (World War One)",search:"why did war break out",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4n4jxs/revision/2"},{id:"zd3wxnb",headline:"The Great Plague (Everyday life in Tudor and Stuart times)",search:"the great plague",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb"},{id:"zd3wxnb-4",headline:"The Great Plague: 'Ring-a-ring-o'-roses' (Everyday life in Tudor and Stuart times)",search:"ringaringoroses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/4"},{id:"zd3wxnb-1",headline:"The Great Plague: A summary of the Great Plague (Everyday life in Tudor and Stuart times)",search:"a summary of the great plague",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/1"},{id:"zd3wxnb-6",headline:"The Great Plague: Consequences of the Great Plague (Everyday life in Tudor and Stuart times)",search:"consequences of the great plague",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/6"},{id:"zd3wxnb-5",headline:"The Great Plague: Cures (Everyday life in Tudor and Stuart times)",search:"cures",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/5"},{id:"zd3wxnb-2",headline:"The Great Plague: The causes (Everyday life in Tudor and Stuart times)",search:"the causes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/2"},{id:"zd3wxnb-3",headline:"The Great Plague: The death toll rises (Everyday life in Tudor and Stuart times)",search:"the death toll rises",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/3"},{id:"zd3wxnb-7",headline:"The Great Plague: What do you think? (Everyday life in Tudor and Stuart times)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd3wxnb/revision/7"},{id:"z9fk7ty",headline:"The Gunpowder Plot (The Gunpowder Plot)",search:"the gunpowder plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty"},{id:"z9fk7ty-1",headline:"The Gunpowder Plot: A summary of the Gunpowder Plot (The Gunpowder Plot)",search:"a summary of the gunpowder plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty/revision/1"},{id:"z9fk7ty-2",headline:"The Gunpowder Plot: After Elizabeth (The Gunpowder Plot)",search:"after elizabeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty/revision/2"},{id:"z9fk7ty-4",headline:"The Gunpowder Plot: Consequences of the Gunpowder Plot (The Gunpowder Plot)",search:"consequences of the gunpowder plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty/revision/4"},{id:"z9fk7ty-5",headline:"The Gunpowder Plot: Interpretations of the Gunpowder Plot (The Gunpowder Plot)",search:"interpretations of the gunpowder plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty/revision/5"},{id:"z9fk7ty-3",headline:"The Gunpowder Plot: The plot (The Gunpowder Plot)",search:"the plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9fk7ty/revision/3"},{id:"zkfk7ty",headline:"The Holocaust (World War Two)",search:"the holocaust",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty"},{id:"zkfk7ty-1",headline:"The Holocaust: A summary of the Holocaust (World War Two)",search:"a summary of the holocaust",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/1"},{id:"zkfk7ty-5",headline:"The Holocaust: Consequences of the Holocaust (World War Two)",search:"consequences of the holocaust",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/5"},{id:"zkfk7ty-4",headline:"The Holocaust: Genocide (World War Two)",search:"genocide",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/4"},{id:"zkfk7ty-3",headline:"The Holocaust: Persecution (World War Two)",search:"persecution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/3"},{id:"zkfk7ty-2",headline:"The Holocaust: The Holocaust (World War Two)",search:"the holocaust",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/2"},{id:"zkfk7ty-6",headline:"The Holocaust: What do you think? (World War Two)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkfk7ty/revision/6"},{id:"zvmv4wx",headline:"The Industrial Revolution (The Industrial Revolution)",search:"the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx"},{id:"zvmv4wx-1",headline:"The Industrial Revolution: A summary of the Industrial Revolution (The Industrial Revolution)",search:"a summary of the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/1"},{id:"zvmv4wx-5",headline:"The Industrial Revolution: Agriculture in the Industrial Revolution (The Industrial Revolution)",search:"agriculture in the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/5"},{id:"zvmv4wx-6",headline:"The Industrial Revolution: Causes of the Industrial Revolution (The Industrial Revolution)",search:"causes of the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/6"},{id:"zvmv4wx-7",headline:"The Industrial Revolution: Consequences for industry (The Industrial Revolution)",search:"consequences for industry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/7"},{id:"zvmv4wx-4",headline:"The Industrial Revolution: Education during the Industrial Revolution (The Industrial Revolution)",search:"education during the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/4"},{id:"zvmv4wx-9",headline:"The Industrial Revolution: Effects of the Industrial Revolution on transport and communication (The Industrial Revolution)",search:"effects of the industrial revolution on transport and communication",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/9"},{id:"zvmv4wx-3",headline:"The Industrial Revolution: Scientific and technological developments in the Industrial Revolution (The Industrial Revolution)",search:"scientific and technological developments in the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/3"},{id:"zvmv4wx-2",headline:"The Industrial Revolution: The Industrial Revolution in context (The Industrial Revolution)",search:"the industrial revolution in context",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/2"},{id:"zvmv4wx-8",headline:"The Industrial Revolution: Transport and communications during the Industrial Revolution (The Industrial Revolution)",search:"transport and communications during the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/8"},{id:"zvmv4wx-10",headline:"The Industrial Revolution: What do you think? (The Industrial Revolution)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvmv4wx/revision/10"},{id:"zx9xsbk",headline:"The Islamic world in the Middle Ages (The Middle Ages (12th to 15th century))",search:"the islamic world in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk"},{id:"zx9xsbk-1",headline:"The Islamic world in the Middle Ages: A summary of the Islamic world in the Middle Ages (The Middle Ages (12th to 15th century))",search:"a summary of the islamic world in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/1"},{id:"zx9xsbk-3",headline:"The Islamic world in the Middle Ages: An empire of infighting and power struggles (The Middle Ages (12th to 15th century))",search:"an empire of infighting and power struggles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/3"},{id:"zx9xsbk-4",headline:"The Islamic world in the Middle Ages: Conflict in the Islamic world (The Middle Ages (12th to 15th century))",search:"conflict in the islamic world",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/4"},{id:"zx9xsbk-6",headline:"The Islamic world in the Middle Ages: Economy and trade in the Islamic world (The Middle Ages (12th to 15th century))",search:"economy and trade in the islamic world",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/6"},{id:"zx9xsbk-8",headline:"The Islamic world in the Middle Ages: Islamic influence on Western Europe (The Middle Ages (12th to 15th century))",search:"islamic influence on western europe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/8"},{id:"zx9xsbk-5",headline:"The Islamic world in the Middle Ages: Movement and settlement in the Islamic world (The Middle Ages (12th to 15th century))",search:"movement and settlement in the islamic world",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/5"},{id:"zx9xsbk-7",headline:"The Islamic world in the Middle Ages: Science, medicine and everyday life in the Islamic world (The Middle Ages (12th to 15th century))",search:"science medicine and everyday life in the islamic world",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/7"},{id:"zx9xsbk-2",headline:"The Islamic world in the Middle Ages: The rapid expansion of the Ottoman Empire (The Middle Ages (12th to 15th century))",search:"the rapid expansion of the ottoman empire",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx9xsbk/revision/2"},{id:"zsjnb9q",headline:"The Norman Conquest (Normans)",search:"the norman conquest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q"},{id:"zsjnb9q-1",headline:"The Norman Conquest: A summary of the Norman Conquest (Normans)",search:"a summary of the norman conquest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/1"},{id:"zsjnb9q-3",headline:"The Norman Conquest: Harald Hardrada's bid to become King of England (Normans)",search:"harald hardradas bid to become king of england",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/3"},{id:"zsjnb9q-8",headline:"The Norman Conquest: Historical interpretations of The Norman Conquest (Normans)",search:"historical interpretations of the norman conquest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/8"},{id:"zsjnb9q-7",headline:"The Norman Conquest: How The Norman Conquest changed England and Western Europe (Normans)",search:"how the norman conquest changed england and western europe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/7"},{id:"zsjnb9q-6",headline:"The Norman Conquest: How did William take long term control of England? (Normans)",search:"how did william take long term control of england",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/6"},{id:"zsjnb9q-5",headline:"The Norman Conquest: The Harrying of the North in response to rebellion (Normans)",search:"the harrying of the north in response to rebellion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/5"},{id:"zsjnb9q-2",headline:"The Norman Conquest: The three rivals for the English throne in 1066 (Normans)",search:"the three rivals for the english throne in 1066",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/2"},{id:"zsjnb9q-4",headline:"The Norman Conquest: William and Harold meet at the Battle of Hastings (Normans)",search:"william and harold meet at the battle of hastings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsjnb9q/revision/4"},{id:"zxp9kqt",headline:"The Peace Settlement (World War One)",search:"the peace settlement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt"},{id:"zxp9kqt-1",headline:"The Peace Settlement: A summary of the Peace Settlement (World War One)",search:"a summary of the peace settlement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt/revision/1"},{id:"zxp9kqt-2",headline:"The Peace Settlement: The leaders (World War One)",search:"the leaders",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt/revision/2"},{id:"zxp9kqt-5",headline:"The Peace Settlement: What do you think? (World War One)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt/revision/5"},{id:"zxp9kqt-3",headline:"The Peace Settlement: What was to be included in the Treaty? (World War One)",search:"what was to be included in the treaty",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt/revision/3"},{id:"zxp9kqt-4",headline:"The Peace Settlement: What were the consequences of the Treaty of Versailles? (World War One)",search:"what were the consequences of the treaty of versailles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxp9kqt/revision/4"},{id:"z2c2pv4",headline:"The Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4"},{id:"z2c2pv4-1",headline:"The Peasants' Revolt: A summary of the Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"a summary of the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4/revision/1"},{id:"z2c2pv4-4",headline:"The Peasants' Revolt: Consequences of the Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"consequences of the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4/revision/4"},{id:"z2c2pv4-5",headline:"The Peasants' Revolt: Interpretations of the Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"interpretations of the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4/revision/5"},{id:"z2c2pv4-2",headline:"The Peasants' Revolt: The causes of the Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"the causes of the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4/revision/2"},{id:"z2c2pv4-3",headline:"The Peasants' Revolt: Timeline of the Peasants' Revolt (The Middle Ages (12th to 15th century))",search:"timeline of the peasants revolt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2pv4/revision/3"},{id:"zrpcwmn",headline:"The Reformation (Mary Queen of Scots and the Reformation)",search:"the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn"},{id:"zrpcwmn-1",headline:"The Reformation: A summary of the Reformation (Mary Queen of Scots and the Reformation)",search:"a summary of the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/1"},{id:"zrpcwmn-2",headline:"The Reformation: Background to the Reformation (Mary Queen of Scots and the Reformation)",search:"background to the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/2"},{id:"zrpcwmn-7",headline:"The Reformation: Consequences of the Reformation (Mary Queen of Scots and the Reformation)",search:"consequences of the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/7"},{id:"zrpcwmn-5",headline:"The Reformation: From Edward VI to Mary I (Mary Queen of Scots and the Reformation)",search:"from edward vi to mary i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/5"},{id:"zrpcwmn-4",headline:"The Reformation: From Henry VIII to Edward VI (Mary Queen of Scots and the Reformation)",search:"from henry viii to edward vi",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/4"},{id:"zrpcwmn-3",headline:"The Reformation: Henry VIII's split from Rome (Mary Queen of Scots and the Reformation)",search:"henry viiis split from rome",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/3"},{id:"zrpcwmn-8",headline:"The Reformation: Interpretations of the Reformation (Mary Queen of Scots and the Reformation)",search:"interpretations of the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/8"},{id:"zrpcwmn-6",headline:"The Reformation: Mary I to Elizabeth I (Mary Queen of Scots and the Reformation)",search:"mary i to elizabeth i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/6"},{id:"zrpcwmn-9",headline:"The Reformation: What do you think? (Mary Queen of Scots and the Reformation)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrpcwmn/revision/9"},{id:"zfqsgk7",headline:"The Roman Empire (Romans)",search:"the roman empire",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7"},{id:"zfqsgk7-5",headline:"The Roman Empire: Conflict (Romans)",search:"conflict",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/5"},{id:"zfqsgk7-9",headline:"The Roman Empire: Consequences (Romans)",search:"consequences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/9"},{id:"zfqsgk7-7",headline:"The Roman Empire: Economy and trade (Romans)",search:"economy and trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/7"},{id:"zfqsgk7-8",headline:"The Roman Empire: Life in the Roman Empire (Romans)",search:"life in the roman empire",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/8"},{id:"zfqsgk7-6",headline:"The Roman Empire: Movement and settlement (Romans)",search:"movement and settlement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/6"},{id:"zfqsgk7-3",headline:"The Roman Empire: Power (Romans)",search:"power",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/3"},{id:"zfqsgk7-4",headline:"The Roman Empire: Rulers of the Roman Empire (Romans)",search:"rulers of the roman empire",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/4"},{id:"zfqsgk7-1",headline:"The Roman Empire: Summary of the Roman Empire (Romans)",search:"summary of the roman empire",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/1"},{id:"zfqsgk7-2",headline:"The Roman Empire: The origins of Rome (Romans)",search:"the origins of rome",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfqsgk7/revision/2"},{id:"z4s9q6f",headline:"The Spanish Armada (Elizabeth I)",search:"the spanish armada",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f"},{id:"z4s9q6f-1",headline:"The Spanish Armada: A summary of the Spanish Armada (Elizabeth I)",search:"a summary of the spanish armada",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f/revision/1"},{id:"z4s9q6f-4",headline:"The Spanish Armada: Consequences of the Spanish Armada (Elizabeth I)",search:"consequences of the spanish armada",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f/revision/4"},{id:"z4s9q6f-2",headline:"The Spanish Armada: England and Spain (Elizabeth I)",search:"england and spain",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f/revision/2"},{id:"z4s9q6f-3",headline:"The Spanish Armada: The attack (Elizabeth I)",search:"the attack",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f/revision/3"},{id:"z4s9q6f-5",headline:"The Spanish Armada: What do you think? (Elizabeth I)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4s9q6f/revision/5"},{id:"zbtg87h",headline:"The UK Government through time (Shaping the UK)",search:"the uk government through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h"},{id:"zbtg87h-1",headline:"The UK Government through time: A summary of the UK government through time (Shaping the UK)",search:"a summary of the uk government through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/1"},{id:"zbtg87h-3",headline:"The UK Government through time: UK government in Tudor and Stuart times (Shaping the UK)",search:"uk government in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/3"},{id:"zbtg87h-4",headline:"The UK Government through time: UK government in the 19th century (Shaping the UK)",search:"uk government in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/4"},{id:"zbtg87h-5",headline:"The UK Government through time: UK government in the 20th century (Shaping the UK)",search:"uk government in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/5"},{id:"zbtg87h-2",headline:"The UK Government through time: UK government in the Middle Ages (Shaping the UK)",search:"uk government in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/2"},{id:"zbtg87h-6",headline:"The UK Government through time: Where next? (Shaping the UK)",search:"where next",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbtg87h/revision/6"},{id:"zvx39j6",headline:"The UK economy through time (The UK economy through time)",search:"the uk economy through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6"},{id:"zvx39j6-1",headline:"The UK economy through time: A summary of the UK economy through time (The UK economy through time)",search:"a summary of the uk economy through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/1"},{id:"zvx39j6-3",headline:"The UK economy through time: Britain's economy 1500-1750 (The UK economy through time)",search:"britains economy 15001750",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/3"},{id:"zvx39j6-4",headline:"The UK economy through time: Britain's economy in the 19th century (The UK economy through time)",search:"britains economy in the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/4"},{id:"zvx39j6-5",headline:"The UK economy through time: Britain's economy in the 20th century (The UK economy through time)",search:"britains economy in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/5"},{id:"zvx39j6-2",headline:"The UK economy through time: Britain's economy in the Middle Ages (The UK economy through time)",search:"britains economy in the middle ages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/2"},{id:"zvx39j6-6",headline:"The UK economy through time: What do you think? (The UK economy through time)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvx39j6/revision/6"},{id:"z8y82hv",headline:"The bombing of Hiroshima (World War Two)",search:"the bombing of hiroshima",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv"},{id:"z8y82hv-1",headline:"The bombing of Hiroshima: A summary of the bombing of Hiroshima (World War Two)",search:"a summary of the bombing of hiroshima",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv/revision/1"},{id:"z8y82hv-4",headline:"The bombing of Hiroshima: Consequences/significance of the Hiroshima bombing (World War Two)",search:"consequencessignificance of the hiroshima bombing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv/revision/4"},{id:"z8y82hv-3",headline:"The bombing of Hiroshima: The Decision (World War Two)",search:"the decision",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv/revision/3"},{id:"z8y82hv-2",headline:"The bombing of Hiroshima: The road to the bomb (World War Two)",search:"the road to the bomb",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv/revision/2"},{id:"z8y82hv-5",headline:"The bombing of Hiroshima: What do you think? (World War Two)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8y82hv/revision/5"},{id:"zy2ycdm",headline:"The campaign for women's suffrage (The changing role of women in the twentieth century)",search:"the campaign for womens suffrage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm"},{id:"zy2ycdm-1",headline:"The campaign for women's suffrage: A summary of the campaign for women's suffrage (The changing role of women in the twentieth century)",search:"a summary of the campaign for womens suffrage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/1"},{id:"zy2ycdm-6",headline:"The campaign for women's suffrage: Consequences and significance of women getting the vote (The changing role of women in the twentieth century)",search:"consequences and significance of women getting the vote",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/6"},{id:"zy2ycdm-3",headline:"The campaign for women's suffrage: Key events leading to women getting the vote (The changing role of women in the twentieth century)",search:"key events leading to women getting the vote",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/3"},{id:"zy2ycdm-2",headline:"The campaign for women's suffrage: Life for women at the start of the 19th century (The changing role of women in the twentieth century)",search:"life for women at the start of the 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/2"},{id:"zy2ycdm-4",headline:"The campaign for women's suffrage: The Suffragettes (The changing role of women in the twentieth century)",search:"the suffragettes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/4"},{id:"zy2ycdm-7",headline:"The campaign for women's suffrage: What do you think? (The changing role of women in the twentieth century)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/7"},{id:"zy2ycdm-5",headline:"The campaign for women's suffrage: Women getting the vote (The changing role of women in the twentieth century)",search:"women getting the vote",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy2ycdm/revision/5"},{id:"zdvdmp3",headline:"The feudal system and the Domesday Book (The Middle Ages (12th to 15th century))",search:"the feudal system and the domesday book",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3"},{id:"zdvdmp3-1",headline:"The feudal system and the Domesday Book: A summary of the feudal system and the Domesday Book (The Middle Ages (12th to 15th century))",search:"a summary of the feudal system and the domesday book",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3/revision/1"},{id:"zdvdmp3-5",headline:"The feudal system and the Domesday Book: Historical interpretations of the feudal system (The Middle Ages (12th to 15th century))",search:"historical interpretations of the feudal system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3/revision/5"},{id:"zdvdmp3-3",headline:"The feudal system and the Domesday Book: How did the feudal system start? (The Middle Ages (12th to 15th century))",search:"how did the feudal system start",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3/revision/3"},{id:"zdvdmp3-2",headline:"The feudal system and the Domesday Book: Reasons behind the feudal system (The Middle Ages (12th to 15th century))",search:"reasons behind the feudal system",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3/revision/2"},{id:"zdvdmp3-4",headline:"The feudal system and the Domesday Book: What impact did the feudal system have on society? (The Middle Ages (12th to 15th century))",search:"what impact did the feudal system have on society",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdvdmp3/revision/4"},{id:"zy7fr82",headline:"The triangular slave trade (Slavery and its abolition)",search:"the triangular slave trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82"},{id:"zy7fr82-1",headline:"The triangular slave trade: A summary of the triangular slave trade (Slavery and its abolition)",search:"a summary of the triangular slave trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/1"},{id:"zy7fr82-4",headline:"The triangular slave trade: Abolition (Slavery and its abolition)",search:"abolition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/4"},{id:"zy7fr82-5",headline:"The triangular slave trade: Abolition milestones (Slavery and its abolition)",search:"abolition milestones",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/5"},{id:"zy7fr82-6",headline:"The triangular slave trade: Consequences of the slave trade (Slavery and its abolition)",search:"consequences of the slave trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/6"},{id:"zy7fr82-7",headline:"The triangular slave trade: Interpretations of the slave trade (Slavery and its abolition)",search:"interpretations of the slave trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/7"},{id:"zy7fr82-2",headline:"The triangular slave trade: The beginning of the slave trade (Slavery and its abolition)",search:"the beginning of the slave trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/2"},{id:"zy7fr82-3",headline:"The triangular slave trade: The triangular trade (Slavery and its abolition)",search:"the triangular trade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/3"},{id:"zy7fr82-8",headline:"The triangular slave trade: Where next? (Slavery and its abolition)",search:"where next",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zy7fr82/revision/8"},{id:"zw3wxnb",headline:"Thomas Becket and Henry II (The Middle Ages (12th to 15th century))",search:"thomas becket and henry ii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb"},{id:"zw3wxnb-4",headline:"Thomas Becket and Henry II: Consequences following Thomas Becket's Death (The Middle Ages (12th to 15th century))",search:"consequences following thomas beckets death",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb/revision/4"},{id:"zw3wxnb-3",headline:"Thomas Becket and Henry II: Events in the lead up to Becket’s murder (The Middle Ages (12th to 15th century))",search:"events in the lead up to beckets murder",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb/revision/3"},{id:"zw3wxnb-5",headline:"Thomas Becket and Henry II: Historical interpretations of Thomas Becket - saint or sinner? (The Middle Ages (12th to 15th century))",search:"historical interpretations of thomas becket saint or sinner",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb/revision/5"},{id:"zw3wxnb-2",headline:"Thomas Becket and Henry II: Thomas Becket and Henry II - Church versus monarch (The Middle Ages (12th to 15th century))",search:"thomas becket and henry ii church versus monarch",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb/revision/2"},{id:"zw3wxnb-1",headline:"Thomas Becket and Henry II: Why was Thomas Becket important to Henry II? (The Middle Ages (12th to 15th century))",search:"why was thomas becket important to henry ii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw3wxnb/revision/1"},{id:"z9s9q6f",headline:"World War Two (World War Two)",search:"world war two",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f"},{id:"z9s9q6f-1",headline:"World War Two: A summary of World War Two (World War Two)",search:"a summary of world war two",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/1"},{id:"z9s9q6f-4",headline:"World War Two: Consequences of World War Two (World War Two)",search:"consequences of world war two",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/4"},{id:"z9s9q6f-2",headline:"World War Two: The background to war (World War Two)",search:"the background to war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/2"},{id:"z9s9q6f-3",headline:"World War Two: The five phases (World War Two)",search:"the five phases",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/3"},{id:"z9s9q6f-5",headline:"World War Two: What do you think? (World War Two)",search:"what do you think",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/5"},{id:"z9s9q6f-6",headline:"World War Two: Where next? (World War Two)",search:"where next",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9s9q6f/revision/6"},{id:"zjwdmp3",headline:"Ancient medicine",search:"ancient medicine",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zjwdmp3"},{id:"zp6xsbk",headline:"Anglo-Saxons",search:"anglosaxons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zp6xsbk"},{id:"zqwdmp3",headline:"British society",search:"british society",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zqwdmp3"},{id:"ztm2pv4",headline:"Celts",search:"celts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/ztm2pv4"},{id:"zdk9q6f",headline:"Change and conflict in Britain 1500-1760",search:"change and conflict in britain 15001760",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zdk9q6f"},{id:"zm27hyc",headline:"Changes in sport, leisure and tourism",search:"changes in sport leisure and tourism",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zm27hyc"},{id:"z4rg87h",headline:"Charles I",search:"charles i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z4rg87h"},{id:"zsphvcw",headline:"China",search:"china",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zsphvcw"},{id:"zxm2pv4",headline:"Conflict through time in the UK",search:"conflict through time in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zxm2pv4"},{id:"z6xmn39",headline:"Crime and punishment through time",search:"crime and punishment through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z6xmn39"},{id:"z627hyc",headline:"Early civilisations and empires (pre 12th century)",search:"early civilisations and empires pre 12th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z627hyc"},{id:"zbvycdm",headline:"Elizabeth I",search:"elizabeth i",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zbvycdm"},{id:"z894jxs",headline:"Everyday life in Tudor and Stuart times",search:"everyday life in tudor and stuart times",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z894jxs"},{id:"zn6v87h",headline:"Everyday life in the 20th century",search:"everyday life in the 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zn6v87h"},{id:"z7jwxnb",headline:"Farming and agriculture",search:"farming and agriculture",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z7jwxnb"},{id:"zfnp34j",headline:"Germany",search:"germany",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfnp34j"},{id:"zysnb9q",headline:"Great Britain",search:"great britain",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zysnb9q"},{id:"zvfsgk7",headline:"Henry VII",search:"henry vii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvfsgk7"},{id:"z3yfr82",headline:"Henry VIII",search:"henry viii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z3yfr82"},{id:"zvvycdm",headline:"Historical skills",search:"historical skills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvvycdm"},{id:"zjd82hv",headline:"Industrial and Victorian era (18th and 19th century)",search:"industrial and victorian era 18th and 19th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zjd82hv"},{id:"zg3v4wx",headline:"Mary Queen of Scots and the Reformation",search:"mary queen of scots and the reformation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zg3v4wx"},{id:"zwd82hv",headline:"Medicine through time",search:"medicine through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zwd82hv"},{id:"zqjwxnb",headline:"Medieval and Renaissance medicine",search:"medieval and renaissance medicine",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zqjwxnb"},{id:"znhtyrd",headline:"Modern World history (20th century)",search:"modern world history 20th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znhtyrd"},{id:"z7qj6sg",headline:"Modern medicine",search:"modern medicine",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z7qj6sg"},{id:"zt6xsbk",headline:"Movement and settlement in the UK",search:"movement and settlement in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zt6xsbk"},{id:"zshtyrd",headline:"Normans",search:"normans",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zshtyrd"},{id:"zvyfr82",headline:"Northern Ireland",search:"northern ireland",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvyfr82"},{id:"zcgbkqt",headline:"Oliver Cromwell",search:"oliver cromwell",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zcgbkqt"},{id:"zht6fg8",headline:"Popular protest through time in the UK",search:"popular protest through time in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zht6fg8"},{id:"zphtyrd",headline:"Religion through time in the UK",search:"religion through time in the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zphtyrd"},{id:"zhxmn39",headline:"Romans",search:"romans",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zhxmn39"},{id:"znphvcw",headline:"Shaping the UK",search:"shaping the uk",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znphvcw"},{id:"z2qj6sg",headline:"Slavery and its abolition",search:"slavery and its abolition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z2qj6sg"},{id:"z3vycdm",headline:"South Africa",search:"south africa",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z3vycdm"},{id:"zsnp34j",headline:"The British Empire through time",search:"the british empire through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zsnp34j"},{id:"z8k9q6f",headline:"The Cold War",search:"the cold war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z8k9q6f"},{id:"zk4cwmn",headline:"The English Civil War",search:"the english civil war",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zk4cwmn"},{id:"zw8k7ty",headline:"The French Revolution (18th century)",search:"the french revolution 18th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zw8k7ty"},{id:"z9crd2p",headline:"The Gunpowder Plot",search:"the gunpowder plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z9crd2p"},{id:"zm7qtfr",headline:"The Industrial Revolution",search:"the industrial revolution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zm7qtfr"},{id:"zfphvcw",headline:"The Middle Ages (12th to 15th century)",search:"the middle ages 12th to 15th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfphvcw"},{id:"zb3v4wx",headline:"The Middle East",search:"the middle east",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zb3v4wx"},{id:"zyfsgk7",headline:"The UK economy through time",search:"the uk economy through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zyfsgk7"},{id:"z27qtfr",headline:"The UK through time",search:"the uk through time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z27qtfr"},{id:"zfsnb9q",headline:"The changing role of women in the twentieth century",search:"the changing role of women in the twentieth century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfsnb9q"},{id:"z94cwmn",headline:"The inter-war years",search:"the interwar years",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z94cwmn"},{id:"zynp34j",headline:"Tudors and Stuarts (15th to 17th century)",search:"tudors and stuarts 15th to 17th century",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zynp34j"},{id:"zgb39j6",headline:"USA",search:"usa",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zgb39j6"},{id:"zrgbkqt",headline:"USSR and Russia",search:"ussr and russia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zrgbkqt"},{id:"zd8k7ty",headline:"Vietnam",search:"vietnam",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zd8k7ty"},{id:"znt6fg8",headline:"Vikings",search:"vikings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znt6fg8"},{id:"zcrg87h",headline:"Wales",search:"wales",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zcrg87h"},{id:"z4crd2p",headline:"World War One",search:"world war one",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z4crd2p"},{id:"zk94jxs",headline:"World War Two",search:"world war two",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zk94jxs"}]},function(e,t){e.exports=[{id:"zhbtng8",headline:"Calculating speed, distance and time (Equations)",search:"calculating speed distance and time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhbtng8"},{id:"z4jg4qt",headline:"How to add fractions (Fractions)",search:"how to add fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4jg4qt"},{id:"zkvxh39",headline:"How to collect like terms in algebra (Expressions and formulae)",search:"how to collect like terms in algebra",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkvxh39"},{id:"z3wndxs",headline:"How to construct a parabola (Graphs)",search:"how to construct a parabola",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z3wndxs"},{id:"zqg73k7",headline:"How to construct triangles (Shapes)",search:"how to construct triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqg73k7"},{id:"zy6n7p3",headline:"How to convert between standard units (Measurement)",search:"how to convert between standard units",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zy6n7p3"},{id:"z4ymtv4",headline:"How to convert fractions to decimals (Operations (calculations/sums))",search:"how to convert fractions to decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ymtv4"},{id:"z78vgdm",headline:"How to divide by a fraction using bar models (Fractions)",search:"how to divide by a fraction using bar models",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z78vgdm"},{id:"zbymtv4",headline:"How to divide using the array method (Prime numbers, factors and multiples)",search:"how to divide using the array method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbymtv4"},{id:"znghsrd",headline:"How to draw a distance-time graph (Graphs)",search:"how to draw a distancetime graph",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znghsrd"},{id:"zqp37p3",headline:"How to draw a golden spiral (Patterns and sequences)",search:"how to draw a golden spiral",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqp37p3"},{id:"zkpj2nb",headline:"How to draw a graph of a linear equation (Graphs)",search:"how to draw a graph of a linear equation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkpj2nb"},{id:"z2skpbk",headline:"How to draw a perfect five-pointed star (Angles)",search:"how to draw a perfect fivepointed star",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z2skpbk"},{id:"z7cny4j",headline:"How to draw a quadratic graph (Graphs)",search:"how to draw a quadratic graph",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7cny4j"},{id:"z8p4tv4",headline:"How to draw a regular hexagon, square and triangle (Shapes)",search:"how to draw a regular hexagon square and triangle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z8p4tv4"},{id:"zp3wfcw",headline:"How to draw in perspective (Transformations)",search:"how to draw in perspective",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zp3wfcw"},{id:"zs6tw6f",headline:"How to draw inverse proportion (Graphs)",search:"how to draw inverse proportion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zs6tw6f"},{id:"z4rpfcw",headline:"How to estimate before you calculate (Rounding and estimating)",search:"how to estimate before you calculate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4rpfcw"},{id:"zrghsrd",headline:"How to find the factors of a number with arrays (Prime numbers, factors and multiples)",search:"how to find the factors of a number with arrays",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrghsrd"},{id:"z3qfjty",headline:"How to find the missing angles on crossing lines (Angles)",search:"how to find the missing angles on crossing lines",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z3qfjty"},{id:"zf4sv9q",headline:"How to find the next term in an arithmetic sequence (Patterns and sequences)",search:"how to find the next term in an arithmetic sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zf4sv9q"},{id:"z8vs2nb",headline:"How to find the original value before % off (decimal method) (Percentages)",search:"how to find the original value before off decimal method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z8vs2nb"},{id:"zhw3rwx",headline:"How to make a logical paradox (Shape, space and measures)",search:"how to make a logical paradox",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhw3rwx"},{id:"zqffmsg",headline:"How to make a scale drawing of a football pitch (Measurement)",search:"how to make a scale drawing of a football pitch",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqffmsg"},{id:"zbkyb82",headline:"How to multiply across a bracket (Expressions and formulae)",search:"how to multiply across a bracket",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbkyb82"},{id:"zd6dqhv",headline:"How to multiply fractions by folding paper (Operations (calculations/sums))",search:"how to multiply fractions by folding paper",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd6dqhv"},{id:"zfbhsrd",headline:"How to multiply using the array method (Place value)",search:"how to multiply using the array method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfbhsrd"},{id:"zvvmtv4",headline:"How to plot coordinates (Graphs)",search:"how to plot coordinates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvvmtv4"},{id:"zgf8ng8",headline:"How to prove Pythagoras' theorem (Pythagoras)",search:"how to prove pythagoras theorem",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zgf8ng8"},{id:"zqg7b82",headline:"How to prove a cone's surface area = π × r × slant length (Perimeter, Area, Volume)",search:"how to prove a cones surface area r slant length",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqg7b82"},{id:"z3n9pbk",headline:"How to prove a cylinder's surface area is (2πr × h) + 2πr² (Perimeter, Area, Volume)",search:"how to prove a cylinders surface area is 2r h 2r2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z3n9pbk"},{id:"zcp4h39",headline:"How to prove that there can only be five Platonic solids (Shapes)",search:"how to prove that there can only be five platonic solids",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zcp4h39"},{id:"zgkh97h",headline:"How to prove the area of a parallelogram is base × height (Perimeter, Area, Volume)",search:"how to prove the area of a parallelogram is base height",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zgkh97h"},{id:"z37vqhv",headline:"How to prove the formula for the area of a trapezium (Perimeter, Area, Volume)",search:"how to prove the formula for the area of a trapezium",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z37vqhv"},{id:"zcnkpbk",headline:"How to prove the volume of a cone is ⅓ height × πr² (Perimeter, Area, Volume)",search:"how to prove the volume of a cone is 13 height r2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zcnkpbk"},{id:"zyg2b82",headline:"How to show angles in a n-sided polygon add to 180° × (n-2) (Angles)",search:"how to show angles in a nsided polygon add to 180 n2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zyg2b82"},{id:"zph8ng8",headline:"How to show the angles in a triangle add up to 180 degrees (Angles)",search:"how to show the angles in a triangle add up to 180 degrees",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zph8ng8"},{id:"zsp37p3",headline:"How to show the area of a circle is π × r² (Perimeter, Area, Volume)",search:"how to show the area of a circle is r2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zsp37p3"},{id:"zc4pk2p",headline:"How to show the area of a triangle is ½ × base × height (Perimeter, Area, Volume)",search:"how to show the area of a triangle is 12 base height",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zc4pk2p"},{id:"z34n8mn",headline:"How to show the circumference of a circle is π x diameter (Perimeter, Area, Volume)",search:"how to show the circumference of a circle is x diameter",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z34n8mn"},{id:"ztgdsrd",headline:"How to show the surface area of a sphere is 4πr² (Perimeter, Area, Volume)",search:"how to show the surface area of a sphere is 4r2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztgdsrd"},{id:"z8b73k7",headline:"How to show the volume of a cuboid = length × width × height (Perimeter, Area, Volume)",search:"how to show the volume of a cuboid length width height",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z8b73k7"},{id:"zy88b82",headline:"How to simplify fractions (Fractions)",search:"how to simplify fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zy88b82"},{id:"zfpw7p3",headline:"How to solve algebraic equations using guess and check (Equations)",search:"how to solve algebraic equations using guess and check",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfpw7p3"},{id:"zrg6pbk",headline:"How to solve simple algebraic equations (Algebra)",search:"how to solve simple algebraic equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrg6pbk"},{id:"zfxkw6f",headline:"How to solve simultaneous equations using bar models (Equations)",search:"how to solve simultaneous equations using bar models",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfxkw6f"},{id:"zbvxh39",headline:"How to solve simultaneous equations using graphs (Equations)",search:"how to solve simultaneous equations using graphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbvxh39"},{id:"z4rhsrd",headline:"How to subtract fractions (Fractions)",search:"how to subtract fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4rhsrd"},{id:"zstr6yc",headline:"How to turn a fraction into a percentage (Fractions)",search:"how to turn a fraction into a percentage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zstr6yc"},{id:"zj29dxs",headline:"How to use BIDMAS to solve equations (Operations (calculations/sums))",search:"how to use bidmas to solve equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj29dxs"},{id:"zv7r97h",headline:"How to use Singapore Bar Modelling (Equations)",search:"how to use singapore bar modelling",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv7r97h"},{id:"zytc6yc",headline:"How to use right-angled triangles to solve geometry problems (Angles)",search:"how to use rightangled triangles to solve geometry problems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zytc6yc"},{id:"zfv6pbk",headline:"How to use the bar method to model and solve problems (Operations (calculations/sums))",search:"how to use the bar method to model and solve problems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfv6pbk"},{id:"z47bcj6",headline:"How to visualise an arithmetic sequence (Patterns and sequences)",search:"how to visualise an arithmetic sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z47bcj6"},{id:"zv4sv9q",headline:"How to visualise division with an array (Operations (calculations/sums))",search:"how to visualise division with an array",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv4sv9q"},{id:"zmm9dxs",headline:"How to visualise multiplication with an array (Operations (calculations/sums))",search:"how to visualise multiplication with an array",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmm9dxs"},{id:"z33csrd",headline:"How to work out a fraction of an amount (Fractions)",search:"how to work out a fraction of an amount",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z33csrd"},{id:"zy7wgdm",headline:"How to work out a percentage decrease (decimal method) (Percentages)",search:"how to work out a percentage decrease decimal method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zy7wgdm"},{id:"zp9rng8",headline:"How to work out a percentage of an amount (1% method) (Percentages)",search:"how to work out a percentage of an amount 1 method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zp9rng8"},{id:"zqnhdxs",headline:"How to work out a percentage of an amount (Percentages)",search:"how to work out a percentage of an amount",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqnhdxs"},{id:"z2jqcj6",headline:"How to work out a unit price (Operations (calculations/sums))",search:"how to work out a unit price",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z2jqcj6"},{id:"z9bgpbk",headline:"How to work out density (Measurement)",search:"how to work out density",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z9bgpbk"},{id:"zw8db82",headline:"How to work out interest (Looking after your finances)",search:"how to work out interest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zw8db82"},{id:"zpkcsrd",headline:"How to work out percentage increase (decimal method) (Percentages)",search:"how to work out percentage increase decimal method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zpkcsrd"},{id:"z8k83k7",headline:"How to work out speed, time and distance (Time)",search:"how to work out speed time and distance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z8k83k7"},{id:"z4ctng8",headline:"How to work out the gradient of a straight line (Shape, space and measures)",search:"how to work out the gradient of a straight line",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ctng8"},{id:"zj8sv9q",headline:"How to write algebraic notation (Expressions and formulae)",search:"how to write algebraic notation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj8sv9q"},{id:"z7w3rwx",headline:"Reverse percentages (Percentages)",search:"reverse percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7w3rwx"},{id:"zpjh97h",headline:"What are angles? (Angles)",search:"what are angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zpjh97h"},{id:"zw473k7",headline:"What are congruent and similar shapes? (Shapes)",search:"what are congruent and similar shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zw473k7"},{id:"zwjwgdm",headline:"What are equivalent fractions? (Fractions)",search:"what are equivalent fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zwjwgdm"},{id:"z3fs2nb",headline:"What are exchange rates? (Looking after your finances)",search:"what are exchange rates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z3fs2nb"},{id:"zq7mb82",headline:"What are fractions? (Fractions)",search:"what are fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zq7mb82"},{id:"zcwmk2p",headline:"What are percentages? (Percentages)",search:"what are percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zcwmk2p"},{id:"ztm297h",headline:"What are ratios? (Ratio and proportion)",search:"what are ratios",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztm297h"},{id:"zjm48mn",headline:"What are square and cube numbers? (Shape, space and measures)",search:"what are square and cube numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjm48mn"},{id:"zxtb2nb",headline:"What are the parts of a circle? (Shapes)",search:"what are the parts of a circle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zxtb2nb"},{id:"ztf9h39",headline:"What are the types of triangle? (Shapes)",search:"what are the types of triangle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztf9h39"},{id:"zqrkpbk",headline:"What are translation, rotation and reflection? (Transformations)",search:"what are translation rotation and reflection",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zqrkpbk"},{id:"z72r97h",headline:"What is a common factor? (Prime numbers, factors and multiples)",search:"what is a common factor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z72r97h"},{id:"zv9sv9q",headline:"What is a factor? (Prime numbers, factors and multiples)",search:"what is a factor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv9sv9q"},{id:"zntkw6f",headline:"What is a geometric sequence? (Patterns and sequences)",search:"what is a geometric sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zntkw6f"},{id:"zdhdqhv",headline:"What is a number line? (Place value)",search:"what is a number line",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdhdqhv"},{id:"z7dyb82",headline:"What is a parabola? (Graphs)",search:"what is a parabola",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7dyb82"},{id:"z6gtng8",headline:"What is a prime? (Prime numbers, factors and multiples)",search:"what is a prime",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6gtng8"},{id:"zgrn8mn",headline:"What is a scale factor? (Transformations)",search:"what is a scale factor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zgrn8mn"},{id:"zkf7xfr",headline:"What is algebra? (Expressions and formulae)",search:"what is algebra",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkf7xfr"},{id:"zv2ck2p",headline:"What is an equation? (Equations)",search:"what is an equation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zv2ck2p"},{id:"ztt6dxs",headline:"What is density? (Measurement)",search:"what is density",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztt6dxs"},{id:"zj66pbk",headline:"What is estimating? (Rounding and estimating)",search:"what is estimating",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj66pbk"},{id:"zwrkpbk",headline:"What is pi? (Perimeter, Area, Volume)",search:"what is pi",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zwrkpbk"},{id:"zcr3tv4",headline:"What is speed? (Distance, speed and time)",search:"what is speed",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zcr3tv4"},{id:"zh4ny4j",headline:"What is standard form? (Standard index form)",search:"what is standard form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zh4ny4j"},{id:"ztqsdxs",headline:"What is the volume of a cone, a sphere and a cylinder? (Perimeter, Area, Volume)",search:"what is the volume of a cone a sphere and a cylinder",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/ztqsdxs"},{id:"zj76fg8",headline:"2D and 3D shapes (Shapes)",search:"2d and 3d shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8"},{id:"zj76fg8-6",headline:"2D and 3D shapes: 2D representation of 3D shapes (Shapes)",search:"2d representation of 3d shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/6"},{id:"zj76fg8-3",headline:"2D and 3D shapes: 3D solid shapes (Shapes)",search:"3d solid shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/3"},{id:"zj76fg8-5",headline:"2D and 3D shapes: Drawing 3D shapes on isometric paper (Shapes)",search:"drawing 3d shapes on isometric paper",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/5"},{id:"zj76fg8-4",headline:"2D and 3D shapes: Nets (Shapes)",search:"nets",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/4"},{id:"zj76fg8-2",headline:"2D and 3D shapes: Properties of quadrilaterals (Shapes)",search:"properties of quadrilaterals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/2"},{id:"zj76fg8-1",headline:"2D and 3D shapes: Properties of triangles (Shapes)",search:"properties of triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj76fg8/revision/1"},{id:"z2xp34j",headline:"3D shapes (Shapes)",search:"3d shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2xp34j"},{id:"z2xp34j-3",headline:"3D shapes: Drawing 3D shapes on isometric paper (Shapes)",search:"drawing 3d shapes on isometric paper",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2xp34j/revision/3"},{id:"z2xp34j-2",headline:"3D shapes: Nets (Shapes)",search:"nets",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2xp34j/revision/2"},{id:"z2xp34j-1",headline:"3D shapes: Solid shapes (Shapes)",search:"solid shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2xp34j/revision/1"},{id:"zx7xsbk",headline:"Algebraic terms (Expressions and formulae)",search:"algebraic terms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk"},{id:"zx7xsbk-2",headline:"Algebraic terms: Adding and subtracting like terms (Expressions and formulae)",search:"adding and subtracting like terms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk/revision/2"},{id:"zx7xsbk-3",headline:"Algebraic terms: Collecting like terms (Expressions and formulae)",search:"collecting like terms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk/revision/3"},{id:"zx7xsbk-5",headline:"Algebraic terms: Multiplying brackets (Expressions and formulae)",search:"multiplying brackets",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk/revision/5"},{id:"zx7xsbk-4",headline:"Algebraic terms: Multiplying terms and expressions (Expressions and formulae)",search:"multiplying terms and expressions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk/revision/4"},{id:"zx7xsbk-1",headline:"Algebraic terms: Understanding terms and expressions (Expressions and formulae)",search:"understanding terms and expressions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7xsbk/revision/1"},{id:"zrck7ty",headline:"Angles and triangles (Angles)",search:"angles and triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty"},{id:"zrck7ty-5",headline:"Angles and triangles: Angle sum (Angles)",search:"angle sum",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/5"},{id:"zrck7ty-1",headline:"Angles and triangles: Different types of angles (Angles)",search:"different types of angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/1"},{id:"zrck7ty-3",headline:"Angles and triangles: Drawing angles (Angles)",search:"drawing angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/3"},{id:"zrck7ty-6",headline:"Angles and triangles: Equilateral and isosceles triangles (Angles)",search:"equilateral and isosceles triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/6"},{id:"zrck7ty-2",headline:"Angles and triangles: Estimating angles (Angles)",search:"estimating angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/2"},{id:"zrck7ty-4",headline:"Angles and triangles: Measuring angles (Angles)",search:"measuring angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrck7ty/revision/4"},{id:"z2mtyrd",headline:"Area (Perimeter, Area, Volume)",search:"area",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd"},{id:"z2mtyrd-7",headline:"Area: Area of a trapezium (Perimeter, Area, Volume)",search:"area of a trapezium",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/7"},{id:"z2mtyrd-4",headline:"Area: Compound shapes (Perimeter, Area, Volume)",search:"compound shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/4"},{id:"z2mtyrd-1",headline:"Area: Counting squares (Perimeter, Area, Volume)",search:"counting squares",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/1"},{id:"z2mtyrd-5",headline:"Area: Parallelograms - area (Perimeter, Area, Volume)",search:"parallelograms area",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/5"},{id:"z2mtyrd-6",headline:"Area: Parallelograms - base or height (Perimeter, Area, Volume)",search:"parallelograms base or height",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/6"},{id:"z2mtyrd-2",headline:"Area: Rectangles (Perimeter, Area, Volume)",search:"rectangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/2"},{id:"z2mtyrd-3",headline:"Area: Triangles (Perimeter, Area, Volume)",search:"triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2mtyrd/revision/3"},{id:"zc9wxnb",headline:"Circles (Shapes)",search:"circles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zc9wxnb"},{id:"zc9wxnb-3",headline:"Circles: Area of a circle (Shapes)",search:"area of a circle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zc9wxnb/revision/3"},{id:"zc9wxnb-2",headline:"Circles: Circumference (Shapes)",search:"circumference",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zc9wxnb/revision/2"},{id:"zc9wxnb-1",headline:"Circles: What is pi? (Shapes)",search:"what is pi",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zc9wxnb/revision/1"},{id:"zvybkqt",headline:"Collecting and recording data (Collecting, recording and representing data)",search:"collecting and recording data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt"},{id:"zvybkqt-5",headline:"Collecting and recording data: Continuous data (Collecting, recording and representing data)",search:"continuous data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/5"},{id:"zvybkqt-6",headline:"Collecting and recording data: Grouping continuous data (Collecting, recording and representing data)",search:"grouping continuous data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/6"},{id:"zvybkqt-3",headline:"Collecting and recording data: Grouping data (Collecting, recording and representing data)",search:"grouping data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/3"},{id:"zvybkqt-7",headline:"Collecting and recording data: Stem and leaf diagrams (Collecting, recording and representing data)",search:"stem and leaf diagrams",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/7"},{id:"zvybkqt-2",headline:"Collecting and recording data: Tally chart and frequency chart (Collecting, recording and representing data)",search:"tally chart and frequency chart",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/2"},{id:"zvybkqt-1",headline:"Collecting and recording data: Tallying (Collecting, recording and representing data)",search:"tallying",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/1"},{id:"zvybkqt-4",headline:"Collecting and recording data: Two-way tables (Collecting, recording and representing data)",search:"twoway tables",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvybkqt/revision/4"},{id:"zj2tyrd",headline:"Constructing triangles (Angles)",search:"constructing triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj2tyrd"},{id:"zj2tyrd-2",headline:"Constructing triangles: Constructing a triangle using a compass (Angles)",search:"constructing a triangle using a compass",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj2tyrd/revision/2"},{id:"zj2tyrd-1",headline:"Constructing triangles: Constructing a triangle using a protractor (Angles)",search:"constructing a triangle using a protractor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj2tyrd/revision/1"},{id:"zjqmn39",headline:"Constructions, loci and three-figure bearings (Angles)",search:"constructions loci and threefigure bearings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39"},{id:"zjqmn39-5",headline:"Constructions, loci and three-figure bearings: Angle bisector (Angles)",search:"angle bisector",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/5"},{id:"zjqmn39-1",headline:"Constructions, loci and three-figure bearings: Definitions of perpendicular, bisector and locus (Angles)",search:"definitions of perpendicular bisector and locus",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/1"},{id:"zjqmn39-3",headline:"Constructions, loci and three-figure bearings: Draw a perpendicular from a point to a line (Angles)",search:"draw a perpendicular from a point to a line",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/3"},{id:"zjqmn39-4",headline:"Constructions, loci and three-figure bearings: Draw a perpendicular through a point on a line (Angles)",search:"draw a perpendicular through a point on a line",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/4"},{id:"zjqmn39-6",headline:"Constructions, loci and three-figure bearings: Locus (Angles)",search:"locus",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/6"},{id:"zjqmn39-2",headline:"Constructions, loci and three-figure bearings: Perpendicular bisector of a line segment (Angles)",search:"perpendicular bisector of a line segment",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/2"},{id:"zjqmn39-7",headline:"Constructions, loci and three-figure bearings: Three-figure bearings (Angles)",search:"threefigure bearings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjqmn39/revision/7"},{id:"zgg4jxs",headline:"Converting fractions, decimals and percentages (Operations (calculations/sums))",search:"converting fractions decimals and percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgg4jxs"},{id:"zgg4jxs-1",headline:"Converting fractions, decimals and percentages: Converting between decimals and fractions (Operations (calculations/sums))",search:"converting between decimals and fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgg4jxs/revision/1"},{id:"zgg4jxs-2",headline:"Converting fractions, decimals and percentages: Converting decimals to percentages (Operations (calculations/sums))",search:"converting decimals to percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgg4jxs/revision/2"},{id:"zgg4jxs-3",headline:"Converting fractions, decimals and percentages: Converting fractions to percentages (Operations (calculations/sums))",search:"converting fractions to percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgg4jxs/revision/3"},{id:"zgg4jxs-4",headline:"Converting fractions, decimals and percentages: Converting percentages to or from fractions and decimals (Operations (calculations/sums))",search:"converting percentages to or from fractions and decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgg4jxs/revision/4"},{id:"zg3rd2p",headline:"Coordinates (Graphs)",search:"coordinates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3rd2p"},{id:"zg3rd2p-1",headline:"Coordinates: Axes and coordinates (Graphs)",search:"axes and coordinates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3rd2p/revision/1"},{id:"zg3rd2p-2",headline:"Coordinates: Plotting coordinates (Graphs)",search:"plotting coordinates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3rd2p/revision/2"},{id:"zg3rd2p-3",headline:"Coordinates: Practise plotting coordinates (Graphs)",search:"practise plotting coordinates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3rd2p/revision/3"},{id:"zg3rd2p-4",headline:"Coordinates: The four quadrants (Graphs)",search:"the four quadrants",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3rd2p/revision/4"},{id:"z27xsbk",headline:"Decimals (Decimals)",search:"decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk"},{id:"z27xsbk-2",headline:"Decimals: Adding and subtracting decimals (Decimals)",search:"adding and subtracting decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/2"},{id:"z27xsbk-6",headline:"Decimals: Dividing a decimal by a whole number (Decimals)",search:"dividing a decimal by a whole number",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/6"},{id:"z27xsbk-4",headline:"Decimals: Dividing decimals by 10, 100, 1,000 (Decimals)",search:"dividing decimals by 10 100 1000",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/4"},{id:"z27xsbk-5",headline:"Decimals: Multiplying a decimal by a whole number (Decimals)",search:"multiplying a decimal by a whole number",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/5"},{id:"z27xsbk-3",headline:"Decimals: Multiplying decimals by 10, 100 and 1,000 (Decimals)",search:"multiplying decimals by 10 100 and 1000",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/3"},{id:"z27xsbk-1",headline:"Decimals: Place value and ordering decimals (Decimals)",search:"place value and ordering decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z27xsbk/revision/1"},{id:"zqdqtfr",headline:"Formulae (Expressions and formulae)",search:"formulae",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdqtfr"},{id:"zqdqtfr-4",headline:"Formulae: Changing the subject of a formula (Expressions and formulae)",search:"changing the subject of a formula",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdqtfr/revision/4"},{id:"zqdqtfr-2",headline:"Formulae: Constructing formulae (Expressions and formulae)",search:"constructing formulae",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdqtfr/revision/2"},{id:"zqdqtfr-3",headline:"Formulae: Substitution (Expressions and formulae)",search:"substitution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdqtfr/revision/3"},{id:"zqdqtfr-1",headline:"Formulae: Writing formulae in words (Expressions and formulae)",search:"writing formulae in words",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdqtfr/revision/1"},{id:"zt6p34j",headline:"Fractions (Fractions)",search:"fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j"},{id:"zt6p34j-7",headline:"Fractions: Adding and subtracting fractions (Fractions)",search:"adding and subtracting fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/7"},{id:"zt6p34j-3",headline:"Fractions: Equivalent fractions (Fractions)",search:"equivalent fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/3"},{id:"zt6p34j-1",headline:"Fractions: Introducing fractions (Fractions)",search:"introducing fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/1"},{id:"zt6p34j-5",headline:"Fractions: Mixed numbers and improper fractions (Fractions)",search:"mixed numbers and improper fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/5"},{id:"zt6p34j-8",headline:"Fractions: Multiplying and dividing fractions (Fractions)",search:"multiplying and dividing fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/8"},{id:"zt6p34j-6",headline:"Fractions: Ordering fractions (Fractions)",search:"ordering fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/6"},{id:"zt6p34j-4",headline:"Fractions: Simplest form (Fractions)",search:"simplest form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/4"},{id:"zt6p34j-2",headline:"Fractions: What is a fraction? (Fractions)",search:"what is a fraction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt6p34j/revision/2"},{id:"z9ck7ty",headline:"Inequalities (Inequalities)",search:"inequalities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ck7ty"},{id:"z9ck7ty-1",headline:"Inequalities: Inequalities (Inequalities)",search:"inequalities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ck7ty/revision/1"},{id:"z9ck7ty-2",headline:"Inequalities: Plotting inequalities on number lines (Inequalities)",search:"plotting inequalities on number lines",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ck7ty/revision/2"},{id:"z9ck7ty-3",headline:"Inequalities: Solving inequalities (Inequalities)",search:"solving inequalities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ck7ty/revision/3"},{id:"zk8j6sg",headline:"Intersecting and parallel lines (Angles)",search:"intersecting and parallel lines",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk8j6sg"},{id:"zk8j6sg-1",headline:"Intersecting and parallel lines: Finding angles (Angles)",search:"finding angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk8j6sg/revision/1"},{id:"zk8j6sg-2",headline:"Intersecting and parallel lines: Parallel and equal lines (Angles)",search:"parallel and equal lines",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk8j6sg/revision/2"},{id:"zbybkqt",headline:"Introduction to equations (Equations)",search:"introduction to equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt"},{id:"zbybkqt-2",headline:"Introduction to equations: Balancing the equation (Equations)",search:"balancing the equation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/2"},{id:"zbybkqt-8",headline:"Introduction to equations: Equations with fractions on both sides (Equations)",search:"equations with fractions on both sides",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/8"},{id:"zbybkqt-5",headline:"Introduction to equations: Solving equations when the term in x is negative (Equations)",search:"solving equations when the term in x is negative",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/5"},{id:"zbybkqt-6",headline:"Introduction to equations: Solving equations with brackets (Equations)",search:"solving equations with brackets",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/6"},{id:"zbybkqt-4",headline:"Introduction to equations: Solving equations with x on both sides (Equations)",search:"solving equations with x on both sides",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/4"},{id:"zbybkqt-7",headline:"Introduction to equations: Solving equations written as fractions (Equations)",search:"solving equations written as fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/7"},{id:"zbybkqt-3",headline:"Introduction to equations: Solving more complex equations (Equations)",search:"solving more complex equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/3"},{id:"zbybkqt-1",headline:"Introduction to equations: What are equations? (Equations)",search:"what are equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbybkqt/revision/1"},{id:"z7j2pv4",headline:"Linear sequences (Patterns and sequences)",search:"linear sequences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4"},{id:"z7j2pv4-1",headline:"Linear sequences: Exploring number patterns (Patterns and sequences)",search:"exploring number patterns",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4/revision/1"},{id:"z7j2pv4-4",headline:"Linear sequences: Finding the nth term of a linear sequence (Patterns and sequences)",search:"finding the nth term of a linear sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4/revision/4"},{id:"z7j2pv4-5",headline:"Linear sequences: More on finding the nth term (Patterns and sequences)",search:"more on finding the nth term",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4/revision/5"},{id:"z7j2pv4-2",headline:"Linear sequences: Number patterns in diagrams (Patterns and sequences)",search:"number patterns in diagrams",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4/revision/2"},{id:"z7j2pv4-3",headline:"Linear sequences: The common difference (Patterns and sequences)",search:"the common difference",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7j2pv4/revision/3"},{id:"z94k87h",headline:"Looking after your finances (Looking after your finances)",search:"looking after your finances",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h"},{id:"z94k87h-2",headline:"Looking after your finances: Deductions from wages or salaries (Looking after your finances)",search:"deductions from wages or salaries",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h/revision/2"},{id:"z94k87h-4",headline:"Looking after your finances: Other bills or contracts (Looking after your finances)",search:"other bills or contracts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h/revision/4"},{id:"z94k87h-5",headline:"Looking after your finances: School trips (Looking after your finances)",search:"school trips",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h/revision/5"},{id:"z94k87h-3",headline:"Looking after your finances: Utility bills (household bills) (Looking after your finances)",search:"utility bills household bills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h/revision/3"},{id:"z94k87h-1",headline:"Looking after your finances: Wages and salaries (Looking after your finances)",search:"wages and salaries",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z94k87h/revision/1"},{id:"znhsgk7",headline:"Mean, median, mode and range (Averages)",search:"mean median mode and range",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7"},{id:"znhsgk7-7",headline:"Mean, median, mode and range: Calculating the mean and modal class from grouped data (Averages)",search:"calculating the mean and modal class from grouped data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/7"},{id:"znhsgk7-6",headline:"Mean, median, mode and range: Calculating the mean from a frequency table (Averages)",search:"calculating the mean from a frequency table",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/6"},{id:"znhsgk7-5",headline:"Mean, median, mode and range: Comparing distributions (Averages)",search:"comparing distributions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/5"},{id:"znhsgk7-1",headline:"Mean, median, mode and range: Mean (Averages)",search:"mean",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/1"},{id:"znhsgk7-2",headline:"Mean, median, mode and range: Median (Averages)",search:"median",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/2"},{id:"znhsgk7-3",headline:"Mean, median, mode and range: Mode (Averages)",search:"mode",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/3"},{id:"znhsgk7-4",headline:"Mean, median, mode and range: Range (Averages)",search:"range",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znhsgk7/revision/4"},{id:"zthsgk7",headline:"Measures (Measurement)",search:"measures",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7"},{id:"zthsgk7-5",headline:"Measures: Accuracy (Measurement)",search:"accuracy",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/5"},{id:"zthsgk7-1",headline:"Measures: Choosing appropriate units (Measurement)",search:"choosing appropriate units",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/1"},{id:"zthsgk7-3",headline:"Measures: Converting between units (Measurement)",search:"converting between units",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/3"},{id:"zthsgk7-4",headline:"Measures: Converting units for area and volume (Measurement)",search:"converting units for area and volume",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/4"},{id:"zthsgk7-2",headline:"Measures: Reading scales (Measurement)",search:"reading scales",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/2"},{id:"zthsgk7-6",headline:"Measures: Speed, distance and time (Measurement)",search:"speed distance and time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthsgk7/revision/6"},{id:"zvvg87h",headline:"Multiplication and division (Operations (calculations/sums))",search:"multiplication and division",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h"},{id:"zvvg87h-3",headline:"Multiplication and division: Multiplication - area method (Operations (calculations/sums))",search:"multiplication area method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/3"},{id:"zvvg87h-1",headline:"Multiplication and division: Multiplication - partition method (Operations (calculations/sums))",search:"multiplication partition method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/1"},{id:"zvvg87h-2",headline:"Multiplication and division: Multiplication – Napier’s method (Operations (calculations/sums))",search:"multiplication napiers method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/2"},{id:"zvvg87h-6",headline:"Multiplication and division: Multiplying and dividing by numbers between 0 and 1 (Operations (calculations/sums))",search:"multiplying and dividing by numbers between 0 and 1",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/6"},{id:"zvvg87h-5",headline:"Multiplication and division: Short division (Operations (calculations/sums))",search:"short division",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/5"},{id:"zvvg87h-4",headline:"Multiplication and division: Short multiplication (Operations (calculations/sums))",search:"short multiplication",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvvg87h/revision/4"},{id:"zdkwxnb",headline:"Number patterns (Patterns and sequences)",search:"number patterns",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb"},{id:"zdkwxnb-3",headline:"Number patterns: Cube numbers (Patterns and sequences)",search:"cube numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb/revision/3"},{id:"zdkwxnb-1",headline:"Number patterns: Even and odd numbers (Patterns and sequences)",search:"even and odd numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb/revision/1"},{id:"zdkwxnb-5",headline:"Number patterns: Multiples (Patterns and sequences)",search:"multiples",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb/revision/5"},{id:"zdkwxnb-2",headline:"Number patterns: Square numbers (Patterns and sequences)",search:"square numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb/revision/2"},{id:"zdkwxnb-4",headline:"Number patterns: Triangle numbers (Patterns and sequences)",search:"triangle numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdkwxnb/revision/4"},{id:"zsnycdm",headline:"Order of operation (Operations (calculations/sums))",search:"order of operation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsnycdm"},{id:"zsnycdm-2",headline:"Order of operation: Practising using the BIDMAS rule (Operations (calculations/sums))",search:"practising using the bidmas rule",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsnycdm/revision/2"},{id:"zsnycdm-1",headline:"Order of operation: The BIDMAS rule (Operations (calculations/sums))",search:"the bidmas rule",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsnycdm/revision/1"},{id:"z4482hv",headline:"Percentages (Percentages)",search:"percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4482hv"},{id:"z4482hv-3",headline:"Percentages: Finding the percentage of a quantity (Percentages)",search:"finding the percentage of a quantity",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4482hv/revision/3"},{id:"z4482hv-1",headline:"Percentages: What are percentages? (Percentages)",search:"what are percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4482hv/revision/1"},{id:"z4482hv-2",headline:"Percentages: Writing one number as a percentage of another (Percentages)",search:"writing one number as a percentage of another",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4482hv/revision/2"},{id:"zsf39j6",headline:"Perimeter (Perimeter, Area, Volume)",search:"perimeter",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf39j6"},{id:"zsf39j6-2",headline:"Perimeter: Compound shapes (Perimeter, Area, Volume)",search:"compound shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf39j6/revision/2"},{id:"zsf39j6-1",headline:"Perimeter: Simple shapes (Perimeter, Area, Volume)",search:"simple shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf39j6/revision/1"},{id:"zddqtfr",headline:"Place value (Place value)",search:"place value",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr"},{id:"zddqtfr-5",headline:"Place value: Dividing by 10, 100, and 1,000 (Place value)",search:"dividing by 10 100 and 1000",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr/revision/5"},{id:"zddqtfr-4",headline:"Place value: Multiplying by 10, 100, 1,000 (Place value)",search:"multiplying by 10 100 1000",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr/revision/4"},{id:"zddqtfr-3",headline:"Place value: Ordering whole numbers (Place value)",search:"ordering whole numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr/revision/3"},{id:"zddqtfr-1",headline:"Place value: What is place value? (Place value)",search:"what is place value",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr/revision/1"},{id:"zddqtfr-2",headline:"Place value: Writing and describing whole numbers (Place value)",search:"writing and describing whole numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zddqtfr/revision/2"},{id:"z8w2pv4",headline:"Polygons (Shapes)",search:"polygons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8w2pv4"},{id:"z8w2pv4-4",headline:"Polygons: Angles of a regular polygon (Shapes)",search:"angles of a regular polygon",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8w2pv4/revision/4"},{id:"z8w2pv4-1",headline:"Polygons: Investigating polygons (Shapes)",search:"investigating polygons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8w2pv4/revision/1"},{id:"z8w2pv4-2",headline:"Polygons: The exterior angle of a polygon (Shapes)",search:"the exterior angle of a polygon",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8w2pv4/revision/2"},{id:"z8w2pv4-3",headline:"Polygons: The interior angle of a polygon (Shapes)",search:"the interior angle of a polygon",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8w2pv4/revision/3"},{id:"z77xsbk",headline:"Positive and negative numbers (Positive and negative numbers)",search:"positive and negative numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z77xsbk"},{id:"z77xsbk-2",headline:"Positive and negative numbers: Adding and subtracting positive and negative numbers (Positive and negative numbers)",search:"adding and subtracting positive and negative numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z77xsbk/revision/2"},{id:"z77xsbk-3",headline:"Positive and negative numbers: Multiplying and dividing positive and negative numbers (Positive and negative numbers)",search:"multiplying and dividing positive and negative numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z77xsbk/revision/3"},{id:"z77xsbk-1",headline:"Positive and negative numbers: What are positive and negative numbers? (Positive and negative numbers)",search:"what are positive and negative numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z77xsbk/revision/1"},{id:"z66p34j",headline:"Power and roots (Powers and roots)",search:"power and roots",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z66p34j"},{id:"z66p34j-4",headline:"Power and roots: Index laws for multiplication and division (Powers and roots)",search:"index laws for multiplication and division",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z66p34j/revision/4"},{id:"z66p34j-1",headline:"Power and roots: Powers (Powers and roots)",search:"powers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z66p34j/revision/1"},{id:"z66p34j-2",headline:"Power and roots: Powers - using a calculator (Powers and roots)",search:"powers using a calculator",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z66p34j/revision/2"},{id:"z66p34j-3",headline:"Power and roots: Square root and cube root (Powers and roots)",search:"square root and cube root",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z66p34j/revision/3"},{id:"zp6p34j",headline:"Prime numbers, factors and multiples (Prime numbers, factors and multiples)",search:"prime numbers factors and multiples",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j"},{id:"zp6p34j-3",headline:"Prime numbers, factors and multiples: Factor pairs (Prime numbers, factors and multiples)",search:"factor pairs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/3"},{id:"zp6p34j-4",headline:"Prime numbers, factors and multiples: Factor trees (Prime numbers, factors and multiples)",search:"factor trees",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/4"},{id:"zp6p34j-2",headline:"Prime numbers, factors and multiples: Factors and multiples (Prime numbers, factors and multiples)",search:"factors and multiples",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/2"},{id:"zp6p34j-5",headline:"Prime numbers, factors and multiples: Highest common factor (HCF) (Prime numbers, factors and multiples)",search:"highest common factor hcf",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/5"},{id:"zp6p34j-6",headline:"Prime numbers, factors and multiples: Lowest common multiple (LCM) (Prime numbers, factors and multiples)",search:"lowest common multiple lcm",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/6"},{id:"zp6p34j-1",headline:"Prime numbers, factors and multiples: Prime numbers (Prime numbers, factors and multiples)",search:"prime numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6p34j/revision/1"},{id:"zk9dmp3",headline:"Probability (Probability)",search:"probability",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3"},{id:"zk9dmp3-1",headline:"Probability: Describing probabilities and the probability scale (Probability)",search:"describing probabilities and the probability scale",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/1"},{id:"zk9dmp3-3",headline:"Probability: Experimental probability (Probability)",search:"experimental probability",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/3"},{id:"zk9dmp3-2",headline:"Probability: Finding probabilities (Probability)",search:"finding probabilities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/2"},{id:"zk9dmp3-6",headline:"Probability: Probability of combined events (Probability)",search:"probability of combined events",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/6"},{id:"zk9dmp3-4",headline:"Probability: Probability surveys (Probability)",search:"probability surveys",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/4"},{id:"zk9dmp3-5",headline:"Probability: Sum of probabilities (Probability)",search:"sum of probabilities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zk9dmp3/revision/5"},{id:"z3g9q6f",headline:"Pythagoras' theorem (Pythagoras)",search:"pythagoras theorem",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3g9q6f"},{id:"z3g9q6f-3",headline:"Pythagoras' theorem: Calculating the length of another side of a triangle (Pythagoras)",search:"calculating the length of another side of a triangle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3g9q6f/revision/3"},{id:"z3g9q6f-4",headline:"Pythagoras' theorem: Length of a line segment (Pythagoras)",search:"length of a line segment",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3g9q6f/revision/4"},{id:"z3g9q6f-1",headline:"Pythagoras' theorem: Right-angled triangles (Pythagoras)",search:"rightangled triangles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3g9q6f/revision/1"},{id:"z3g9q6f-2",headline:"Pythagoras' theorem: Working out the hypotenuse (Pythagoras)",search:"working out the hypotenuse",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3g9q6f/revision/2"},{id:"z6mtyrd",headline:"Quadratic sequences (Patterns and sequences)",search:"quadratic sequences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6mtyrd"},{id:"z6mtyrd-1",headline:"Quadratic sequences: Finding the next term of a quadratic sequence (Patterns and sequences)",search:"finding the next term of a quadratic sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6mtyrd/revision/1"},{id:"z6mtyrd-2",headline:"Quadratic sequences: Finding the nth term of a quadratic sequence (Patterns and sequences)",search:"finding the nth term of a quadratic sequence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6mtyrd/revision/2"},{id:"z6mtyrd-3",headline:"Quadratic sequences: Multiples of powers (Patterns and sequences)",search:"multiples of powers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z6mtyrd/revision/3"},{id:"znnycdm",headline:"Ratio and proportion (Ratio and proportion)",search:"ratio and proportion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm"},{id:"znnycdm-2",headline:"Ratio and proportion: Division in a given ratio (Ratio and proportion)",search:"division in a given ratio",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm/revision/2"},{id:"znnycdm-1",headline:"Ratio and proportion: Equivalent ratios and simplest form (Ratio and proportion)",search:"equivalent ratios and simplest form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm/revision/1"},{id:"znnycdm-4",headline:"Ratio and proportion: Map scales (Ratio and proportion)",search:"map scales",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm/revision/4"},{id:"znnycdm-5",headline:"Ratio and proportion: Proportion (Ratio and proportion)",search:"proportion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm/revision/5"},{id:"znnycdm-3",headline:"Ratio and proportion: Using ratios (Ratio and proportion)",search:"using ratios",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/znnycdm/revision/3"},{id:"zjw7hyc",headline:"Relative frequency (Probability)",search:"relative frequency",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjw7hyc"},{id:"zjw7hyc-2",headline:"Relative frequency: Calculating relative frequency (Probability)",search:"calculating relative frequency",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjw7hyc/revision/2"},{id:"zjw7hyc-1",headline:"Relative frequency: Estimating probability (Probability)",search:"estimating probability",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjw7hyc/revision/1"},{id:"zrg4jxs",headline:"Representing data (Collecting, recording and representing data)",search:"representing data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs"},{id:"zrg4jxs-2",headline:"Representing data: Bar charts (Collecting, recording and representing data)",search:"bar charts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/2"},{id:"zrg4jxs-6",headline:"Representing data: Constructing pie charts (Collecting, recording and representing data)",search:"constructing pie charts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/6"},{id:"zrg4jxs-7",headline:"Representing data: Frequency diagrams and frequency polygons (Collecting, recording and representing data)",search:"frequency diagrams and frequency polygons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/7"},{id:"zrg4jxs-3",headline:"Representing data: Line graphs (Collecting, recording and representing data)",search:"line graphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/3"},{id:"zrg4jxs-4",headline:"Representing data: Pictograms (Collecting, recording and representing data)",search:"pictograms",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/4"},{id:"zrg4jxs-5",headline:"Representing data: Pie charts (Collecting, recording and representing data)",search:"pie charts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/5"},{id:"zrg4jxs-9",headline:"Representing data: Scatter diagrams - line of best fit (Collecting, recording and representing data)",search:"scatter diagrams line of best fit",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/9"},{id:"zrg4jxs-8",headline:"Representing data: Scatter diagrams - plotting and reading (Collecting, recording and representing data)",search:"scatter diagrams plotting and reading",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/8"},{id:"zrg4jxs-1",headline:"Representing data: Types of graphs and charts (Collecting, recording and representing data)",search:"types of graphs and charts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrg4jxs/revision/1"},{id:"zv3rd2p",headline:"Rounding and estimating (Rounding and estimating)",search:"rounding and estimating",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p"},{id:"zv3rd2p-2",headline:"Rounding and estimating: Making estimates (Rounding and estimating)",search:"making estimates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/2"},{id:"zv3rd2p-5",headline:"Rounding and estimating: Rounding significant figures (Rounding and estimating)",search:"rounding significant figures",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/5"},{id:"zv3rd2p-3",headline:"Rounding and estimating: Rounding to a given number of places (Rounding and estimating)",search:"rounding to a given number of places",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/3"},{id:"zv3rd2p-1",headline:"Rounding and estimating: Rounding to the nearest whole number (Rounding and estimating)",search:"rounding to the nearest whole number",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/1"},{id:"zv3rd2p-4",headline:"Rounding and estimating: Significant figures (Rounding and estimating)",search:"significant figures",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/4"},{id:"zv3rd2p-6",headline:"Rounding and estimating: Trial and improvement (Rounding and estimating)",search:"trial and improvement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zv3rd2p/revision/6"},{id:"zd9dmp3",headline:"Simultaneous equations (Equations)",search:"simultaneous equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd9dmp3"},{id:"zd9dmp3-1",headline:"Simultaneous equations: Introducing simultaneous equations (Equations)",search:"introducing simultaneous equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd9dmp3/revision/1"},{id:"zd9dmp3-3",headline:"Simultaneous equations: Solving simultaneous equations algebraically (Equations)",search:"solving simultaneous equations algebraically",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd9dmp3/revision/3"},{id:"zd9dmp3-2",headline:"Simultaneous equations: Solving simultaneous equations by substitution (Equations)",search:"solving simultaneous equations by substitution",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd9dmp3/revision/2"},{id:"zd9dmp3-4",headline:"Simultaneous equations: Solving simultaneous equations graphically (Equations)",search:"solving simultaneous equations graphically",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zd9dmp3/revision/4"},{id:"ztg987h",headline:"Standard index form (Standard index form)",search:"standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztg987h"},{id:"ztg987h-3",headline:"Standard index form: Calculations in standard index form (Standard index form)",search:"calculations in standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztg987h/revision/3"},{id:"ztg987h-4",headline:"Standard index form: Calculations in standard index form (Standard index form)",search:"calculations in standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztg987h/revision/4"},{id:"ztg987h-1",headline:"Standard index form: Introducing standard index form (Standard index form)",search:"introducing standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztg987h/revision/1"},{id:"ztg987h-2",headline:"Standard index form: Large and small numbers in standard index form (Standard index form)",search:"large and small numbers in standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztg987h/revision/2"},{id:"zynycdm",headline:"Straight line graphs (Graphs)",search:"straight line graphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zynycdm"},{id:"zynycdm-2",headline:"Straight line graphs: Equations of other straight line graphs (Graphs)",search:"equations of other straight line graphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zynycdm/revision/2"},{id:"zynycdm-1",headline:"Straight line graphs: Horizontal and vertical lines (in the form y = c and x = c) (Graphs)",search:"horizontal and vertical lines in the form y c and x c",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zynycdm/revision/1"},{id:"zsktyrd",headline:"Symmetry (Symmetry)",search:"symmetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsktyrd"},{id:"zsktyrd-1",headline:"Symmetry: Line symmetry (Symmetry)",search:"line symmetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsktyrd/revision/1"},{id:"zsktyrd-3",headline:"Symmetry: Rotational symmetry (Symmetry)",search:"rotational symmetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsktyrd/revision/3"},{id:"zsktyrd-2",headline:"Symmetry: Symmetry in regular polygons (Symmetry)",search:"symmetry in regular polygons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsktyrd/revision/2"},{id:"z3rk7ty",headline:"Time (Time)",search:"time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3rk7ty"},{id:"z3rk7ty-2",headline:"Time: 12-hour and 24-hour clock (Time)",search:"12hour and 24hour clock",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3rk7ty/revision/2"},{id:"z3rk7ty-4",headline:"Time: Days, months and years (Time)",search:"days months and years",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3rk7ty/revision/4"},{id:"z3rk7ty-3",headline:"Time: Reading timetables (Time)",search:"reading timetables",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3rk7ty/revision/3"},{id:"z3rk7ty-1",headline:"Time: Units of time (Time)",search:"units of time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3rk7ty/revision/1"},{id:"zkw2pv4",headline:"Transformations and enlargements (Transformations)",search:"transformations and enlargements",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4"},{id:"zkw2pv4-7",headline:"Transformations and enlargements: Centre of enlargement (Transformations)",search:"centre of enlargement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/7"},{id:"zkw2pv4-1",headline:"Transformations and enlargements: Congruent shapes (Transformations)",search:"congruent shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/1"},{id:"zkw2pv4-5",headline:"Transformations and enlargements: Finding reflections using tracing paper (Transformations)",search:"finding reflections using tracing paper",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/5"},{id:"zkw2pv4-8",headline:"Transformations and enlargements: Fractional scale factor (Transformations)",search:"fractional scale factor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/8"},{id:"zkw2pv4-4",headline:"Transformations and enlargements: Reflection (Transformations)",search:"reflection",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/4"},{id:"zkw2pv4-3",headline:"Transformations and enlargements: Rotation (Transformations)",search:"rotation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/3"},{id:"zkw2pv4-6",headline:"Transformations and enlargements: Scale factor enlargement (Transformations)",search:"scale factor enlargement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/6"},{id:"zkw2pv4-2",headline:"Transformations and enlargements: Translation (Transformations)",search:"translation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkw2pv4/revision/2"},{id:"z26nb9q",headline:"Volume (Perimeter, Area, Volume)",search:"volume",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z26nb9q"},{id:"z26nb9q-1",headline:"Volume: Finding volume by counting cubes (Perimeter, Area, Volume)",search:"finding volume by counting cubes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z26nb9q/revision/1"},{id:"z26nb9q-2",headline:"Volume: Volume of a cuboid (Perimeter, Area, Volume)",search:"volume of a cuboid",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z26nb9q/revision/2"},{id:"z26nb9q-3",headline:"Volume: Volume of a prism (Perimeter, Area, Volume)",search:"volume of a prism",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z26nb9q/revision/3"},{id:"z4f3cdm",headline:"Algebra",search:"algebra",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z4f3cdm"},{id:"zdr9wmn",headline:"Angles",search:"angles",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zdr9wmn"},{id:"zbsvr82",headline:"Averages",search:"averages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zbsvr82"},{id:"z3nygk7",headline:"Collecting, recording and representing data",search:"collecting recording and representing data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z3nygk7"},{id:"zh7xpv4",headline:"Decimals",search:"decimals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zh7xpv4"},{id:"z28jmp3",headline:"Distance, speed and time",search:"distance speed and time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z28jmp3"},{id:"z83rkqt",headline:"Equations",search:"equations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z83rkqt"},{id:"z9yb4wx",headline:"Expressions and formulae",search:"expressions and formulae",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z9yb4wx"},{id:"zsxhfg8",headline:"Fractions",search:"fractions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zsxhfg8"},{id:"zdbc87h",headline:"Graphs",search:"graphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zdbc87h"},{id:"zvpfb9q",headline:"Handling data",search:"handling data",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvpfb9q"},{id:"zkvg9j6",headline:"Inequalities",search:"inequalities",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zkvg9j6"},{id:"zq7ncdm",headline:"Looking after your finances",search:"looking after your finances",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zq7ncdm"},{id:"z4vg9j6",headline:"Measurement",search:"measurement",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z4vg9j6"},{id:"z7kw2hv",headline:"Numbers",search:"numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z7kw2hv"},{id:"znmtsbk",headline:"Operations (calculations/sums)",search:"operations calculationssums",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znmtsbk"},{id:"zwg4d2p",headline:"Patterns and sequences",search:"patterns and sequences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zwg4d2p"},{id:"zf6pyrd",headline:"Percentages",search:"percentages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zf6pyrd"},{id:"zrf3cdm",headline:"Perimeter, Area, Volume",search:"perimeter area volume",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zrf3cdm"},{id:"zc3d7ty",headline:"Place value",search:"place value",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zc3d7ty"},{id:"zp26n39",headline:"Positive and negative numbers",search:"positive and negative numbers",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zp26n39"},{id:"ztqmhyc",headline:"Powers and roots",search:"powers and roots",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/ztqmhyc"},{id:"z6j2tfr",headline:"Prime numbers, factors and multiples",search:"prime numbers factors and multiples",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z6j2tfr"},{id:"zgf3cdm",headline:"Probability",search:"probability",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zgf3cdm"},{id:"zkbc87h",headline:"Pythagoras",search:"pythagoras",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zkbc87h"},{id:"zxw76sg",headline:"Ratio and proportion",search:"ratio and proportion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zxw76sg"},{id:"zmdqxnb",headline:"Rounding and estimating",search:"rounding and estimating",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zmdqxnb"},{id:"zvhs34j",headline:"Shape, space and measures",search:"shape space and measures",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zvhs34j"},{id:"zwckjxs",headline:"Shapes",search:"shapes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zwckjxs"},{id:"z2mf9j6",headline:"Standard index form",search:"standard index form",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z2mf9j6"},{id:"zbnygk7",headline:"Symmetry",search:"symmetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zbnygk7"},{id:"zfxhfg8",headline:"Think like a mathematician",search:"think like a mathematician",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfxhfg8"},{id:"zj48q6f",headline:"Time",search:"time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zj48q6f"},{id:"z3pfb9q",headline:"Transformations",search:"transformations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z3pfb9q"},{id:"z93rkqt",headline:"Trigonometry",search:"trigonometry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z93rkqt"}]},function(e,t){e.exports=[{id:"zr726yc",headline:"Can language exist without grammar? (Grammar)",search:"can language exist without grammar",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr726yc"},{id:"zs87dxs",headline:"Drafting 'Anthem for Doomed Youth' (Understanding poetry)",search:"drafting anthem for doomed youth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zs87dxs"},{id:"z6n6gwx",headline:"How to build an argument (Non-fiction writing)",search:"how to build an argument",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6n6gwx"},{id:"zd7w7p3",headline:"How to check your apostrophes are correct (Punctuation)",search:"how to check your apostrophes are correct",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zd7w7p3"},{id:"zbmsd6f",headline:"How to compare fiction texts (Critical reading)",search:"how to compare fiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbmsd6f"},{id:"z7gdscw",headline:"How to compare non-fiction texts (Critical reading)",search:"how to compare nonfiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7gdscw"},{id:"zb4bqp3",headline:"How to draft your writing (Fiction writing)",search:"how to draft your writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zb4bqp3"},{id:"zrkr2sg",headline:"How to engage the reader in the opening paragraph (Fiction writing)",search:"how to engage the reader in the opening paragraph",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrkr2sg"},{id:"zn3skmn",headline:"How to identify form in poetry (Understanding poetry)",search:"how to identify form in poetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn3skmn"},{id:"z6w4xyc",headline:"How to investigate language in fiction texts (Critical reading)",search:"how to investigate language in fiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6w4xyc"},{id:"z4d4xyc",headline:"How to investigate language in non-fiction texts (Critical reading)",search:"how to investigate language in nonfiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4d4xyc"},{id:"z48cmfr",headline:"How to investigate structure in fiction texts (Critical reading)",search:"how to investigate structure in fiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z48cmfr"},{id:"zjmjscw",headline:"How to investigate structure in non-fiction texts (Critical reading)",search:"how to investigate structure in nonfiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjmjscw"},{id:"zvh37nb",headline:"How to link ideas in sentences (Grammar)",search:"how to link ideas in sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvh37nb"},{id:"zjxqf4j",headline:"How to memorise tricky spellings (Spelling)",search:"how to memorise tricky spellings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjxqf4j"},{id:"zr8cmfr",headline:"How to persuade a reader (Non-fiction writing)",search:"how to persuade a reader",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zr8cmfr"},{id:"z7vhsrd",headline:"How to proofread (Punctuation)",search:"how to proofread",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7vhsrd"},{id:"zrxxh39",headline:"How to punctuate independent clauses (Grammar)",search:"how to punctuate independent clauses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zrxxh39"},{id:"zn2n8xs",headline:"How to punctuate quotations in an essay (Punctuation)",search:"how to punctuate quotations in an essay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zn2n8xs"},{id:"zfqh92p",headline:"How to spell plural nouns (Spelling)",search:"how to spell plural nouns",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfqh92p"},{id:"zhqh92p",headline:"How to structure and punctuate direct speech in fiction (Punctuation)",search:"how to structure and punctuate direct speech in fiction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhqh92p"},{id:"zhyp47h",headline:"How to understand open and closed form in poetry (Understanding poetry)",search:"how to understand open and closed form in poetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhyp47h"},{id:"zmpxbdm",headline:"How to understand rhythm in poetry (Understanding poetry)",search:"how to understand rhythm in poetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmpxbdm"},{id:"zksrxyc",headline:"How to understand unfamiliar vocabulary (Critical reading)",search:"how to understand unfamiliar vocabulary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zksrxyc"},{id:"zjyyb82",headline:"How to use a dictionary (Spelling)",search:"how to use a dictionary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjyyb82"},{id:"zdq8hbk",headline:"How to use evidence from a text (Critical reading)",search:"how to use evidence from a text",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zdq8hbk"},{id:"zmt2vk7",headline:"How to use language for effect (Fiction writing)",search:"how to use language for effect",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zmt2vk7"},{id:"z697382",headline:"How to use linguistic devices in your writing (Fiction writing)",search:"how to use linguistic devices in your writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z697382"},{id:"z6w6cqt",headline:"How to use semicolons (Punctuation)",search:"how to use semicolons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z6w6cqt"},{id:"zhntng8",headline:"How to use semicolons in a list (Punctuation)",search:"how to use semicolons in a list",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhntng8"},{id:"zhstrj6",headline:"How to use structure for effect (Fiction writing)",search:"how to use structure for effect",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zhstrj6"},{id:"zfphsrd",headline:"How to use subordinating conjunctions (Grammar)",search:"how to use subordinating conjunctions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfphsrd"},{id:"zjcjy9q",headline:"How to use suffixes in your writing (Spelling)",search:"how to use suffixes in your writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zjcjy9q"},{id:"z7t2vk7",headline:"How to use tenses (Grammar)",search:"how to use tenses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7t2vk7"},{id:"zkttng8",headline:"How to use the passive voice to sound more objective (Grammar)",search:"how to use the passive voice to sound more objective",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkttng8"},{id:"zfxfwty",headline:"How to write a complex sentence (Grammar)",search:"how to write a complex sentence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfxfwty"},{id:"zvc3jhv",headline:"How to write a conclusion to an essay (Non-fiction writing)",search:"how to write a conclusion to an essay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zvc3jhv"},{id:"zkq8hbk",headline:"How to write a formal letter (Non-fiction writing)",search:"how to write a formal letter",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zkq8hbk"},{id:"z4w96v4",headline:"How to write a speech (Non-fiction writing)",search:"how to write a speech",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4w96v4"},{id:"znvn92p",headline:"How to write an essay (Non-fiction writing)",search:"how to write an essay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znvn92p"},{id:"zfbf8xs",headline:"How to write an introduction to an essay (Non-fiction writing)",search:"how to write an introduction to an essay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfbf8xs"},{id:"zfbyb82",headline:"Modal verbs (Grammar)",search:"modal verbs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfbyb82"},{id:"znn6pbk",headline:"Past v present tense (Grammar)",search:"past v present tense",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znn6pbk"},{id:"zbjqmsg",headline:"What do the words we use say about us? (Spoken English)",search:"what do the words we use say about us",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zbjqmsg"},{id:"zfmmtv4",headline:"What is a comma? (Punctuation)",search:"what is a comma",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zfmmtv4"},{id:"znddqhv",headline:"What is a noun? (Grammar)",search:"what is a noun",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/znddqhv"},{id:"z4ppfcw",headline:"What is a verb? (Grammar)",search:"what is a verb",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z4ppfcw"},{id:"zj33rwx",headline:"What is an adjective? (Grammar)",search:"what is an adjective",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/zj33rwx"},{id:"z7fyb82",headline:"Why does language change over time? (Spoken English)",search:"why does language change over time",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/articles/z7fyb82"},{id:"zqjsyrd",headline:"Analysing persuasive texts (Reading skills)",search:"analysing persuasive texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd"},{id:"zqjsyrd-4",headline:"Analysing persuasive texts : Analysing persuasive texts (Reading skills)",search:"analysing persuasive texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd/revision/4"},{id:"zqjsyrd-3",headline:"Analysing persuasive texts : More persuasive techniques (Reading skills)",search:"more persuasive techniques",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd/revision/3"},{id:"zqjsyrd-1",headline:"Analysing persuasive texts : Persuading the reader (Reading skills)",search:"persuading the reader",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd/revision/1"},{id:"zqjsyrd-2",headline:"Analysing persuasive texts : Persuasive techniques (Reading skills)",search:"persuasive techniques",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd/revision/2"},{id:"zqjsyrd-5",headline:"Analysing persuasive texts : The effect on the reader (Reading skills)",search:"the effect on the reader",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqjsyrd/revision/5"},{id:"zwnkd2p",headline:"Analysing spoken English (Spoken English)",search:"analysing spoken english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p"},{id:"zwnkd2p-5",headline:"Analysing spoken English: Analysing spoken English (Spoken English)",search:"analysing spoken english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/5"},{id:"zwnkd2p-3",headline:"Analysing spoken English: Context of production (Spoken English)",search:"context of production",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/3"},{id:"zwnkd2p-4",headline:"Analysing spoken English: Language use (Spoken English)",search:"language use",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/4"},{id:"zwnkd2p-1",headline:"Analysing spoken English: Spontaneous and planned (or scripted) speech (Spoken English)",search:"spontaneous and planned or scripted speech",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/1"},{id:"zwnkd2p-2",headline:"Analysing spoken English: Why do we speak differently? (Spoken English)",search:"why do we speak differently",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/2"},{id:"zwnkd2p-6",headline:"Analysing spoken English: Writing up your analysis (Spoken English)",search:"writing up your analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwnkd2p/revision/6"},{id:"z8ktpv4",headline:"Atmosphere and setting (Reading skills)",search:"atmosphere and setting",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4"},{id:"z8ktpv4-3",headline:"Atmosphere and setting: Analysing explicit and implicit meaning (Reading skills)",search:"analysing explicit and implicit meaning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/3"},{id:"z8ktpv4-4",headline:"Atmosphere and setting: Analysing explicit and implicit meaning - task (Reading skills)",search:"analysing explicit and implicit meaning task",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/4"},{id:"z8ktpv4-6",headline:"Atmosphere and setting: Atmosphere and setting - task (Reading skills)",search:"atmosphere and setting task",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/6"},{id:"z8ktpv4-1",headline:"Atmosphere and setting: Explicit and implicit meaning (Reading skills)",search:"explicit and implicit meaning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/1"},{id:"z8ktpv4-2",headline:"Atmosphere and setting: Identifying meaning (Reading skills)",search:"identifying meaning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/2"},{id:"z8ktpv4-5",headline:"Atmosphere and setting: Using quotations and useful phrases (Reading skills)",search:"using quotations and useful phrases",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z8ktpv4/revision/5"},{id:"z2wp34j",headline:"Audience and social attitudes (About Shakespeare)",search:"audience and social attitudes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2wp34j"},{id:"z2wp34j-1",headline:"Audience and social attitudes: Audience and social attitudes (About Shakespeare)",search:"audience and social attitudes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2wp34j/revision/1"},{id:"z2wp34j-2",headline:"Audience and social attitudes: Class (About Shakespeare)",search:"class",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2wp34j/revision/2"},{id:"z2wp34j-4",headline:"Audience and social attitudes: Elizabethan entertainment (About Shakespeare)",search:"elizabethan entertainment",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2wp34j/revision/4"},{id:"z2wp34j-3",headline:"Audience and social attitudes: Women (About Shakespeare)",search:"women",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2wp34j/revision/3"},{id:"zmjnb9q",headline:"Beliefs and superstitions (About Shakespeare)",search:"beliefs and superstitions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zmjnb9q"},{id:"zmjnb9q-1",headline:"Beliefs and superstitions: Beliefs and superstitions (About Shakespeare)",search:"beliefs and superstitions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zmjnb9q/revision/1"},{id:"zmjnb9q-4",headline:"Beliefs and superstitions: The Body (About Shakespeare)",search:"the body",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zmjnb9q/revision/4"},{id:"zmjnb9q-2",headline:"Beliefs and superstitions: The Great Chain of Being (About Shakespeare)",search:"the great chain of being",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zmjnb9q/revision/2"},{id:"zmjnb9q-3",headline:"Beliefs and superstitions: Witches (About Shakespeare)",search:"witches",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zmjnb9q/revision/3"},{id:"z3vwq6f",headline:"Character (Reading skills)",search:"character",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f"},{id:"z3vwq6f-1",headline:"Character: Analysing characters (Reading skills)",search:"analysing characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/1"},{id:"z3vwq6f-4",headline:"Character: Analysing meaning (Reading skills)",search:"analysing meaning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/4"},{id:"z3vwq6f-2",headline:"Character: Beyond PEA (Reading skills)",search:"beyond pea",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/2"},{id:"z3vwq6f-5",headline:"Character: First, second and third person accounts (Reading skills)",search:"first second and third person accounts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/5"},{id:"z3vwq6f-6",headline:"Character: How to analyse characters (Reading skills)",search:"how to analyse characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/6"},{id:"z3vwq6f-3",headline:"Character: Implicit meaning (Reading skills)",search:"implicit meaning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/3"},{id:"z3vwq6f-7",headline:"Character: Using quotations and useful phrases (Reading skills)",search:"using quotations and useful phrases",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3vwq6f/revision/7"},{id:"z3fk7ty",headline:"Characters (A Midsummer Night's Dream)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty"},{id:"zpx39j6",headline:"Characters (Macbeth)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6"},{id:"zqdhvcw",headline:"Characters (Much Ado about Nothing)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw"},{id:"ztmv4wx",headline:"Characters (Richard III)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx"},{id:"zyn4jxs",headline:"Characters (Romeo and Juliet)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs"},{id:"z9r7hyc",headline:"Characters (The Merchant of Venice)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc"},{id:"zcgqtfr",headline:"Characters (The Tempest)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr"},{id:"zw8tyrd",headline:"Characters (Twelfth Night)",search:"characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd"},{id:"z3fk7ty-6",headline:"Characters: Additional characters (A Midsummer Night's Dream)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/6"},{id:"zpx39j6-6",headline:"Characters: Additional characters (Macbeth)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/6"},{id:"zqdhvcw-6",headline:"Characters: Additional characters (Much Ado about Nothing)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/6"},{id:"zyn4jxs-6",headline:"Characters: Additional characters (Romeo and Juliet)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/6"},{id:"z9r7hyc-5",headline:"Characters: Additional characters (The Merchant of Venice)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc/revision/5"},{id:"zcgqtfr-6",headline:"Characters: Additional characters (The Tempest)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/6"},{id:"zw8tyrd-6",headline:"Characters: Additional characters (Twelfth Night)",search:"additional characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/6"},{id:"z3fk7ty-7",headline:"Characters: Additional characters (continued) (A Midsummer Night's Dream)",search:"additional characters continued",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/7"},{id:"z3fk7ty-8",headline:"Characters: Additional characters (continued) (A Midsummer Night's Dream)",search:"additional characters continued",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/8"},{id:"zqdhvcw-7",headline:"Characters: Additional characters (continued) (Much Ado about Nothing)",search:"additional characters continued",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/7"},{id:"zpx39j6-7",headline:"Characters: Additional characters - continued (Macbeth)",search:"additional characters continued",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/7"},{id:"ztmv4wx-6",headline:"Characters: Additional characters - part 2 (Richard III)",search:"additional characters part 2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/6"},{id:"ztmv4wx-7",headline:"Characters: Additional characters - part 3 (Richard III)",search:"additional characters part 3",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/7"},{id:"ztmv4wx-8",headline:"Characters: Additional characters - part 4 (Richard III)",search:"additional characters part 4",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/8"},{id:"ztmv4wx-5",headline:"Characters: Additional characters – part 1 (Richard III)",search:"additional characters part 1",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/5"},{id:"z9r7hyc-4",headline:"Characters: Antonio (The Merchant of Venice)",search:"antonio",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc/revision/4"},{id:"zcgqtfr-5",headline:"Characters: Ariel (The Tempest)",search:"ariel",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/5"},{id:"zpx39j6-4",headline:"Characters: Banquo (Macbeth)",search:"banquo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/4"},{id:"zqdhvcw-2",headline:"Characters: Beatrice (Much Ado about Nothing)",search:"beatrice",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/2"},{id:"zqdhvcw-3",headline:"Characters: Benedick (Much Ado about Nothing)",search:"benedick",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/3"},{id:"zcgqtfr-3",headline:"Characters: Caliban (The Tempest)",search:"caliban",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/3"},{id:"zqdhvcw-1",headline:"Characters: Character overview (Much Ado about Nothing)",search:"character overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/1"},{id:"zqdhvcw-4",headline:"Characters: Claudio (Much Ado about Nothing)",search:"claudio",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/4"},{id:"z3fk7ty-4",headline:"Characters: Demetrius (A Midsummer Night's Dream)",search:"demetrius",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/4"},{id:"zqdhvcw-5",headline:"Characters: Don John (Much Ado about Nothing)",search:"don john",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqdhvcw/revision/5"},{id:"zyn4jxs-4",headline:"Characters: Friar Lawrence (Romeo and Juliet)",search:"friar lawrence",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/4"},{id:"z3fk7ty-5",headline:"Characters: Helena (A Midsummer Night's Dream)",search:"helena",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/5"},{id:"z3fk7ty-2",headline:"Characters: Hermia (A Midsummer Night's Dream)",search:"hermia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/2"},{id:"zyn4jxs-3",headline:"Characters: Juliet (Romeo and Juliet)",search:"juliet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/3"},{id:"zpx39j6-3",headline:"Characters: Lady Macbeth (Macbeth)",search:"lady macbeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/3"},{id:"z3fk7ty-3",headline:"Characters: Lysander (A Midsummer Night's Dream)",search:"lysander",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/3"},{id:"zpx39j6-2",headline:"Characters: Macbeth (Macbeth)",search:"macbeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/2"},{id:"zpx39j6-5",headline:"Characters: Macduff (Macbeth)",search:"macduff",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/5"},{id:"zw8tyrd-5",headline:"Characters: Malvolio (Twelfth Night)",search:"malvolio",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/5"},{id:"ztmv4wx-3",headline:"Characters: Margaret (Richard III)",search:"margaret",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/3"},{id:"zcgqtfr-4",headline:"Characters: Miranda (The Tempest)",search:"miranda",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/4"},{id:"zw8tyrd-4",headline:"Characters: Olivia (Twelfth Night)",search:"olivia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/4"},{id:"zw8tyrd-3",headline:"Characters: Orsino (Twelfth Night)",search:"orsino",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/3"},{id:"z3fk7ty-1",headline:"Characters: Overview of characters (A Midsummer Night's Dream)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3fk7ty/revision/1"},{id:"zpx39j6-1",headline:"Characters: Overview of characters (Macbeth)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpx39j6/revision/1"},{id:"ztmv4wx-1",headline:"Characters: Overview of characters (Richard III)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/1"},{id:"zyn4jxs-1",headline:"Characters: Overview of characters (Romeo and Juliet)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/1"},{id:"z9r7hyc-1",headline:"Characters: Overview of characters (The Merchant of Venice)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc/revision/1"},{id:"zcgqtfr-1",headline:"Characters: Overview of characters (The Tempest)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/1"},{id:"zw8tyrd-1",headline:"Characters: Overview of characters (Twelfth Night)",search:"overview of characters",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/1"},{id:"z9r7hyc-2",headline:"Characters: Portia (The Merchant of Venice)",search:"portia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc/revision/2"},{id:"zcgqtfr-2",headline:"Characters: Prospero (The Tempest)",search:"prospero",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcgqtfr/revision/2"},{id:"ztmv4wx-4",headline:"Characters: Queen Elizabeth (Richard III)",search:"queen elizabeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/4"},{id:"ztmv4wx-2",headline:"Characters: Richard (Richard III)",search:"richard",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztmv4wx/revision/2"},{id:"zyn4jxs-2",headline:"Characters: Romeo (Romeo and Juliet)",search:"romeo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/2"},{id:"z9r7hyc-3",headline:"Characters: Shylock (The Merchant of Venice)",search:"shylock",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9r7hyc/revision/3"},{id:"zyn4jxs-5",headline:"Characters: The Nurse (Romeo and Juliet)",search:"the nurse",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyn4jxs/revision/5"},{id:"zw8tyrd-2",headline:"Characters: Viola (Twelfth Night)",search:"viola",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zw8tyrd/revision/2"},{id:"zwjsyrd",headline:"Creative and narrative writing (Writing skills)",search:"creative and narrative writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd"},{id:"zwjsyrd-5",headline:"Creative and narrative writing: Ending a short story (Writing skills)",search:"ending a short story",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd/revision/5"},{id:"zwjsyrd-4",headline:"Creative and narrative writing: Examples of narration (Writing skills)",search:"examples of narration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd/revision/4"},{id:"zwjsyrd-1",headline:"Creative and narrative writing: Original ideas (Writing skills)",search:"original ideas",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd/revision/1"},{id:"zwjsyrd-2",headline:"Creative and narrative writing: Short stories (Writing skills)",search:"short stories",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd/revision/2"},{id:"zwjsyrd-3",headline:"Creative and narrative writing: Writing techniques (Writing skills)",search:"writing techniques",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwjsyrd/revision/3"},{id:"zthc9j6",headline:"Debating and arguing (Spoken English)",search:"debating and arguing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthc9j6"},{id:"zthc9j6-3",headline:"Debating and arguing: Arguing in a debate (Spoken English)",search:"arguing in a debate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthc9j6/revision/3"},{id:"zthc9j6-2",headline:"Debating and arguing: Listening (Spoken English)",search:"listening",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthc9j6/revision/2"},{id:"zthc9j6-1",headline:"Debating and arguing: Participating in debates (Spoken English)",search:"participating in debates",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zthc9j6/revision/1"},{id:"zsf8wmn",headline:"Drama (Spoken English)",search:"drama",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn"},{id:"zsf8wmn-1",headline:"Drama: Drama essentials (Spoken English)",search:"drama essentials",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn/revision/1"},{id:"zsf8wmn-2",headline:"Drama: Hot seating (Spoken English)",search:"hot seating",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn/revision/2"},{id:"zsf8wmn-3",headline:"Drama: Improvisation or working from a script? (Spoken English)",search:"improvisation or working from a script",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn/revision/3"},{id:"zsf8wmn-4",headline:"Drama: Showing moods and emotions (Spoken English)",search:"showing moods and emotions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn/revision/4"},{id:"zsf8wmn-5",headline:"Drama: The stage (Spoken English)",search:"the stage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsf8wmn/revision/5"},{id:"z996hyc",headline:"Formal and informal (Writing skills)",search:"formal and informal",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z996hyc"},{id:"z996hyc-4",headline:"Formal and informal: Adapting to audiences (Writing skills)",search:"adapting to audiences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z996hyc/revision/4"},{id:"z996hyc-1",headline:"Formal and informal: Formal language and Standard English (Writing skills)",search:"formal language and standard english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z996hyc/revision/1"},{id:"z996hyc-3",headline:"Formal and informal: Informal writing (Writing skills)",search:"informal writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z996hyc/revision/3"},{id:"z996hyc-2",headline:"Formal and informal: Making your writing more formal (Writing skills)",search:"making your writing more formal",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z996hyc/revision/2"},{id:"zgvdmp3",headline:"Language (A Midsummer Night's Dream)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgvdmp3"},{id:"zstg87h",headline:"Language (Macbeth)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zstg87h"},{id:"z2jnb9q",headline:"Language (Much Ado about Nothing)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2jnb9q"},{id:"zp6bkqt",headline:"Language (Richard III)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6bkqt"},{id:"z3y82hv",headline:"Language (Romeo and Juliet)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3y82hv"},{id:"z84mn39",headline:"Language (The Merchant of Venice)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z84mn39"},{id:"z9c2pv4",headline:"Language (The Tempest)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9c2pv4"},{id:"zqwp34j",headline:"Language (Twelfth Night)",search:"language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqwp34j"},{id:"z67fr82",headline:"Language and relevance (About Shakespeare)",search:"language and relevance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z67fr82"},{id:"z67fr82-1",headline:"Language and relevance: Language and relevance (About Shakespeare)",search:"language and relevance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z67fr82/revision/1"},{id:"z67fr82-3",headline:"Language and relevance: On the page (About Shakespeare)",search:"on the page",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z67fr82/revision/3"},{id:"z67fr82-2",headline:"Language and relevance: Rhythm (About Shakespeare)",search:"rhythm",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z67fr82/revision/2"},{id:"zgvdmp3-3",headline:"Language: Imagery and metaphor (A Midsummer Night's Dream)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgvdmp3/revision/3"},{id:"zstg87h-3",headline:"Language: Imagery and metaphor (Macbeth)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zstg87h/revision/3"},{id:"zp6bkqt-3",headline:"Language: Imagery and metaphor (Richard III)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6bkqt/revision/3"},{id:"z3y82hv-2",headline:"Language: Imagery and metaphor (Romeo and Juliet)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3y82hv/revision/2"},{id:"z84mn39-3",headline:"Language: Imagery and metaphor (The Merchant of Venice)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z84mn39/revision/3"},{id:"z9c2pv4-2",headline:"Language: Imagery and metaphor (The Tempest)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9c2pv4/revision/2"},{id:"zqwp34j-3",headline:"Language: Imagery and metaphor (Twelfth Night)",search:"imagery and metaphor",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqwp34j/revision/3"},{id:"z2jnb9q-3",headline:"Language: Imagery and metaphors (Much Ado about Nothing)",search:"imagery and metaphors",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2jnb9q/revision/3"},{id:"zgvdmp3-1",headline:"Language: Language overview (A Midsummer Night's Dream)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgvdmp3/revision/1"},{id:"zstg87h-1",headline:"Language: Language overview (Macbeth)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zstg87h/revision/1"},{id:"z2jnb9q-1",headline:"Language: Language overview (Much Ado about Nothing)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2jnb9q/revision/1"},{id:"zp6bkqt-1",headline:"Language: Language overview (Richard III)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6bkqt/revision/1"},{id:"z3y82hv-1",headline:"Language: Language overview (Romeo and Juliet)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3y82hv/revision/1"},{id:"z84mn39-1",headline:"Language: Language overview (The Merchant of Venice)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z84mn39/revision/1"},{id:"z9c2pv4-1",headline:"Language: Language overview (The Tempest)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9c2pv4/revision/1"},{id:"zqwp34j-1",headline:"Language: Language overview (Twelfth Night)",search:"language overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqwp34j/revision/1"},{id:"z3y82hv-3",headline:"Language: Opposites and oxymorons (Romeo and Juliet)",search:"opposites and oxymorons",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3y82hv/revision/3"},{id:"z2jnb9q-4",headline:"Language: Puns and wordplay (Much Ado about Nothing)",search:"puns and wordplay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2jnb9q/revision/4"},{id:"zp6bkqt-4",headline:"Language: Puns and wordplay (Richard III)",search:"puns and wordplay",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6bkqt/revision/4"},{id:"zgvdmp3-2",headline:"Language: Rhythm and rhyme (A Midsummer Night's Dream)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgvdmp3/revision/2"},{id:"zstg87h-2",headline:"Language: Rhythm and rhyme (Macbeth)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zstg87h/revision/2"},{id:"z2jnb9q-2",headline:"Language: Rhythm and rhyme (Much Ado about Nothing)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2jnb9q/revision/2"},{id:"zp6bkqt-2",headline:"Language: Rhythm and rhyme (Richard III)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zp6bkqt/revision/2"},{id:"z3y82hv-4",headline:"Language: Rhythm and rhyme (Romeo and Juliet)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z3y82hv/revision/4"},{id:"z84mn39-2",headline:"Language: Rhythm and rhyme (The Merchant of Venice)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z84mn39/revision/2"},{id:"z9c2pv4-3",headline:"Language: Rhythm and rhyme (The Tempest)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9c2pv4/revision/3"},{id:"zqwp34j-2",headline:"Language: Rhythm and rhyme (Twelfth Night)",search:"rhythm and rhyme",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zqwp34j/revision/2"},{id:"z2c2xnb",headline:"Paragraphs (Reading skills)",search:"paragraphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2xnb"},{id:"z2c2xnb-3",headline:"Paragraphs: One-line paragraphs (Reading skills)",search:"oneline paragraphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2xnb/revision/3"},{id:"z2c2xnb-2",headline:"Paragraphs: Paragraph structure (Reading skills)",search:"paragraph structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2xnb/revision/2"},{id:"z2c2xnb-1",headline:"Paragraphs: Why use paragraphs? (Reading skills)",search:"why use paragraphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2c2xnb/revision/1"},{id:"zt2ycdm",headline:"Performance (About Shakespeare)",search:"performance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm"},{id:"zcbj6sg",headline:"Performance analysis (A Midsummer Night's Dream)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcbj6sg"},{id:"zypcwmn",headline:"Performance analysis (Macbeth)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zypcwmn"},{id:"zx7fr82",headline:"Performance analysis (Much Ado about Nothing)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7fr82"},{id:"zshrd2p",headline:"Performance analysis (Richard III)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zshrd2p"},{id:"zg3wxnb",headline:"Performance analysis (Romeo and Juliet)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3wxnb"},{id:"zwk6fg8",headline:"Performance analysis (The Merchant of Venice)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwk6fg8"},{id:"z89xsbk",headline:"Performance analysis (The Tempest)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z89xsbk"},{id:"z2qsgk7",headline:"Performance analysis (Twelfth Night)",search:"performance analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2qsgk7"},{id:"zshrd2p-2",headline:"Performance analysis: Act 1 Scene 1 – Casting Richard (Richard III)",search:"act 1 scene 1 casting richard",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zshrd2p/revision/2"},{id:"z89xsbk-2",headline:"Performance analysis: Act 1 Scene 1 – The storm (The Tempest)",search:"act 1 scene 1 the storm",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z89xsbk/revision/2"},{id:"zwk6fg8-2",headline:"Performance analysis: Act 1 Scene 2 – Casting Portia (The Merchant of Venice)",search:"act 1 scene 2 casting portia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwk6fg8/revision/2"},{id:"zcbj6sg-4",headline:"Performance analysis: Act 1 Scene 2 – Rehearsing Titania pampering Bottom in her fairy bower (A Midsummer Night's Dream)",search:"act 1 scene 2 rehearsing titania pampering bottom in her fairy bower",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcbj6sg/revision/4"},{id:"zcbj6sg-2",headline:"Performance analysis: Act 1 Scene 2 – Staging the argument between Oberon and Titania (A Midsummer Night's Dream)",search:"act 1 scene 2 staging the argument between oberon and titania",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcbj6sg/revision/2"},{id:"zypcwmn-4",headline:"Performance analysis: Act 1 Scene 3 –Casting the Witches (Macbeth)",search:"act 1 scene 3 casting the witches",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zypcwmn/revision/4"},{id:"z2qsgk7-2",headline:"Performance analysis: Act 1 Scene 5 – Rehearsing Cesario’s (Viola's) visit to Olivia (Twelfth Night)",search:"act 1 scene 5 rehearsing cesarios violas visit to olivia",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2qsgk7/revision/2"},{id:"zx7fr82-2",headline:"Performance analysis: Act 2 Scene 1 - Rehearsing the masked ball (Much Ado about Nothing)",search:"act 2 scene 1 rehearsing the masked ball",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7fr82/revision/2"},{id:"zypcwmn-2",headline:"Performance analysis: Act 2 Scene 1 – Staging the dagger scene (Macbeth)",search:"act 2 scene 1 staging the dagger scene",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zypcwmn/revision/2"},{id:"zg3wxnb-2",headline:"Performance analysis: Act 2 Scene 2 - The balcony scene (Romeo and Juliet)",search:"act 2 scene 2 the balcony scene",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3wxnb/revision/2"},{id:"z89xsbk-3",headline:"Performance analysis: Act 2 Scene 2 – Casting Caliban (The Tempest)",search:"act 2 scene 2 casting caliban",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z89xsbk/revision/3"},{id:"zx7fr82-3",headline:"Performance analysis: Act 2 Scene 2 – Rehearsing Borachio’s plan to trick Claudio (Much Ado about Nothing)",search:"act 2 scene 2 rehearsing borachios plan to trick claudio",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7fr82/revision/3"},{id:"zx7fr82-4",headline:"Performance analysis: Act 2 Scene 3 – Rehearsing the orchard scene (Much Ado about Nothing)",search:"act 2 scene 3 rehearsing the orchard scene",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7fr82/revision/4"},{id:"z2qsgk7-3",headline:"Performance analysis: Act 2 Scene 5 – Staging the 'box-tree' scene (Twelfth Night)",search:"act 2 scene 5 staging the boxtree scene",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2qsgk7/revision/3"},{id:"zg3wxnb-3",headline:"Performance analysis: Act 3 Scene 1 – Mercutio’s fight with Tybalt (Romeo and Juliet)",search:"act 3 scene 1 mercutios fight with tybalt",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3wxnb/revision/3"},{id:"z89xsbk-4",headline:"Performance analysis: Act 3 Scene 3 – The banquet (The Tempest)",search:"act 3 scene 3 the banquet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z89xsbk/revision/4"},{id:"zypcwmn-3",headline:"Performance analysis: Act 3 Scene 4 – Rehearsing the ghost of Banquo (Macbeth)",search:"act 3 scene 4 rehearsing the ghost of banquo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zypcwmn/revision/3"},{id:"zshrd2p-3",headline:"Performance analysis: Act 3 Scene 7 – Rehearsing Richard being offered the crown (Richard III)",search:"act 3 scene 7 rehearsing richard being offered the crown",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zshrd2p/revision/3"},{id:"zwk6fg8-3",headline:"Performance analysis: Act 4 Scene 1 – Rehearsing the court scene (The Merchant of Venice)",search:"act 4 scene 1 rehearsing the court scene",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwk6fg8/revision/3"},{id:"z2qsgk7-4",headline:"Performance analysis: Act 4 Scene 1 – Rehearsing the duel (Twelfth Night)",search:"act 4 scene 1 rehearsing the duel",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2qsgk7/revision/4"},{id:"zcbj6sg-3",headline:"Performance analysis: Act 4 Scene 1 – Rehearsing the lovers' fight (A Midsummer Night's Dream)",search:"act 4 scene 1 rehearsing the lovers fight",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcbj6sg/revision/3"},{id:"zwk6fg8-4",headline:"Performance analysis: Act 5 Scene 1 – Staging Portia’s reveal (The Merchant of Venice)",search:"act 5 scene 1 staging portias reveal",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwk6fg8/revision/4"},{id:"zshrd2p-4",headline:"Performance analysis: Act 5 Scene 3 – Staging the procession of ghosts (Richard III)",search:"act 5 scene 3 staging the procession of ghosts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zshrd2p/revision/4"},{id:"zg3wxnb-4",headline:"Performance analysis: Act 5 Scene 3 – The tomb (Romeo and Juliet)",search:"act 5 scene 3 the tomb",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3wxnb/revision/4"},{id:"zcbj6sg-1",headline:"Performance analysis: Scenes to explore (A Midsummer Night's Dream)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zcbj6sg/revision/1"},{id:"zypcwmn-1",headline:"Performance analysis: Scenes to explore (Macbeth)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zypcwmn/revision/1"},{id:"zx7fr82-1",headline:"Performance analysis: Scenes to explore (Much Ado about Nothing)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zx7fr82/revision/1"},{id:"zshrd2p-1",headline:"Performance analysis: Scenes to explore (Richard III)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zshrd2p/revision/1"},{id:"zg3wxnb-1",headline:"Performance analysis: Scenes to explore (Romeo and Juliet)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zg3wxnb/revision/1"},{id:"zwk6fg8-1",headline:"Performance analysis: Scenes to explore (The Merchant of Venice)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zwk6fg8/revision/1"},{id:"z89xsbk-1",headline:"Performance analysis: Scenes to explore (The Tempest)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z89xsbk/revision/1"},{id:"z2qsgk7-1",headline:"Performance analysis: Scenes to explore (Twelfth Night)",search:"scenes to explore",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2qsgk7/revision/1"},{id:"zt2ycdm-3",headline:"Performance: Actors (About Shakespeare)",search:"actors",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/3"},{id:"zt2ycdm-6",headline:"Performance: Costumes (About Shakespeare)",search:"costumes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/6"},{id:"zt2ycdm-2",headline:"Performance: Patronage (About Shakespeare)",search:"patronage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/2"},{id:"zt2ycdm-1",headline:"Performance: Performance (About Shakespeare)",search:"performance",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/1"},{id:"zt2ycdm-5",headline:"Performance: Sound and special effects (About Shakespeare)",search:"sound and special effects",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/5"},{id:"zt2ycdm-4",headline:"Performance: The stage – Shakespeare’s Globe (About Shakespeare)",search:"the stage shakespeares globe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zt2ycdm/revision/4"},{id:"zvs9q6f",headline:"Plot summary (A Midsummer Night's Dream)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f"},{id:"zhmv4wx",headline:"Plot summary (Macbeth)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx"},{id:"zj8tyrd",headline:"Plot summary (Much Ado about Nothing)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd"},{id:"z62ycdm",headline:"Plot summary (Richard III)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm"},{id:"zfpcwmn",headline:"Plot summary (Romeo and Juliet)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn"},{id:"z4gqtfr",headline:"Plot summary (The Merchant of Venice)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr"},{id:"zrbj6sg",headline:"Plot summary (The Tempest)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg"},{id:"zdk6fg8",headline:"Plot summary (Twelfth Night)",search:"plot summary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8"},{id:"zfpcwmn-2",headline:"Plot summary: A fight breaks out between Capulet and Montague servants (Romeo and Juliet)",search:"a fight breaks out between capulet and montague servants",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/2"},{id:"zrbj6sg-2",headline:"Plot summary: A ship is caught in a tempest and begins to sink (The Tempest)",search:"a ship is caught in a tempest and begins to sink",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/2"},{id:"zrbj6sg-5",headline:"Plot summary: Antonio and Sebastian plot to kill Alonso, the King of Naples (The Tempest)",search:"antonio and sebastian plot to kill alonso the king of naples",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/5"},{id:"z4gqtfr-6",headline:"Plot summary: Antonio’s investments are sunk and Shylock demands his arrest (The Merchant of Venice)",search:"antonios investments are sunk and shylock demands his arrest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/6"},{id:"zrbj6sg-4",headline:"Plot summary: Ariel fetches Ferdinand, who falls in love with Miranda (The Tempest)",search:"ariel fetches ferdinand who falls in love with miranda",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/4"},{id:"z4gqtfr-9",headline:"Plot summary: Bassanio and Portia argue about the loss of a wedding ring (The Merchant of Venice)",search:"bassanio and portia argue about the loss of a wedding ring",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/9"},{id:"z4gqtfr-2",headline:"Plot summary: Bassanio asks his friend Antonio for a loan (The Merchant of Venice)",search:"bassanio asks his friend antonio for a loan",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/2"},{id:"z4gqtfr-7",headline:"Plot summary: Bassanio wins Portia as his wife (The Merchant of Venice)",search:"bassanio wins portia as his wife",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/7"},{id:"zj8tyrd-4",headline:"Plot summary: Beatrice and Benedick are set up and begin to fall in love (Much Ado about Nothing)",search:"beatrice and benedick are set up and begin to fall in love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/4"},{id:"zj8tyrd-9",headline:"Plot summary: Beatrice and Benedick realise they were set up but still want to marry (Much Ado about Nothing)",search:"beatrice and benedick realise they were set up but still want to marry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/9"},{id:"zvs9q6f-5",headline:"Plot summary: Bottom gets the ears of an ass and Titania falls in love with him (A Midsummer Night's Dream)",search:"bottom gets the ears of an ass and titania falls in love with him",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/5"},{id:"z62ycdm-8",headline:"Plot summary: Buckingham asks for a reward for his loyalty and is executed (Richard III)",search:"buckingham asks for a reward for his loyalty and is executed",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/8"},{id:"zrbj6sg-7",headline:"Plot summary: Caliban suggests that they should kill Prospero, and Ariel overhears (The Tempest)",search:"caliban suggests that they should kill prospero and ariel overhears",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/7"},{id:"z62ycdm-5",headline:"Plot summary: Clarence is killed, King Edward IV dies and his son becomes his heir (Richard III)",search:"clarence is killed king edward iv dies and his son becomes his heir",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/5"},{id:"zj8tyrd-8",headline:"Plot summary: Claudio marries Hero’s cousin, but his bride turns out to be Hero (Much Ado about Nothing)",search:"claudio marries heros cousin but his bride turns out to be hero",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/8"},{id:"zj8tyrd-6",headline:"Plot summary: Claudio publicly shames Hero on their wedding day (Much Ado about Nothing)",search:"claudio publicly shames hero on their wedding day",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/6"},{id:"zj8tyrd-7",headline:"Plot summary: Dogberry’s men overhear Borachio boasting and arrest him (Much Ado about Nothing)",search:"dogberrys men overhear borachio boasting and arrest him",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/7"},{id:"zj8tyrd-5",headline:"Plot summary: Don John and Borachio trick Claudio and Don Pedro (Much Ado about Nothing)",search:"don john and borachio trick claudio and don pedro",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/5"},{id:"zj8tyrd-2",headline:"Plot summary: Don Pedro and his men arrive in Messina (Much Ado about Nothing)",search:"don pedro and his men arrive in messina",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/2"},{id:"zfpcwmn-6",headline:"Plot summary: Friar Lawrence and Juliet make a plan to reunite her with Romeo (Romeo and Juliet)",search:"friar lawrence and juliet make a plan to reunite her with romeo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/6"},{id:"z62ycdm-4",headline:"Plot summary: Henry VI’s widow, Queen Margaret, puts curses on everyone (Richard III)",search:"henry vis widow queen margaret puts curses on everyone",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/4"},{id:"zvs9q6f-2",headline:"Plot summary: Hermia runs away with Lysander instead of marrying Demetrius (A Midsummer Night's Dream)",search:"hermia runs away with lysander instead of marrying demetrius",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/2"},{id:"z4gqtfr-5",headline:"Plot summary: Jessica, Shylock’s daughter, runs away from home to be with Lorenzo (The Merchant of Venice)",search:"jessica shylocks daughter runs away from home to be with lorenzo",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/5"},{id:"zhmv4wx-7",headline:"Plot summary: Lady Macbeth commits suicide (Macbeth)",search:"lady macbeth commits suicide",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/7"},{id:"zhmv4wx-3",headline:"Plot summary: Lady Macbeth persuades Macbeth to kill King Duncan to get the throne (Macbeth)",search:"lady macbeth persuades macbeth to kill king duncan to get the throne",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/3"},{id:"zhmv4wx-6",headline:"Plot summary: Macbeth begins to think that he’s invincible (Macbeth)",search:"macbeth begins to think that hes invincible",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/6"},{id:"zhmv4wx-5",headline:"Plot summary: Macbeth has his best friend, Banquo, murdered (Macbeth)",search:"macbeth has his best friend banquo murdered",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/5"},{id:"zhmv4wx-4",headline:"Plot summary: Macbeth kills King Duncan and becomes King of Scotland (Macbeth)",search:"macbeth kills king duncan and becomes king of scotland",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/4"},{id:"zdk6fg8-4",headline:"Plot summary: Maria plays a trick on Malvolio, Olivia’s strict steward (Twelfth Night)",search:"maria plays a trick on malvolio olivias strict steward",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/4"},{id:"zvs9q6f-6",headline:"Plot summary: Oberon puts things right and wins the little boy from Titania (A Midsummer Night's Dream)",search:"oberon puts things right and wins the little boy from titania",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/6"},{id:"zdk6fg8-6",headline:"Plot summary: Olivia and Sebastian get married and Orsino is jealous (Twelfth Night)",search:"olivia and sebastian get married and orsino is jealous",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/6"},{id:"zdk6fg8-3",headline:"Plot summary: Olivia falls in love with Cesario and she in turn falls for Orsino (Twelfth Night)",search:"olivia falls in love with cesario and she in turn falls for orsino",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/3"},{id:"zfpcwmn-3",headline:"Plot summary: Paris asks for Juliet’s hand in marriage (Romeo and Juliet)",search:"paris asks for juliets hand in marriage",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/3"},{id:"zvs9q6f-1",headline:"Plot summary: Plot overview (A Midsummer Night's Dream)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/1"},{id:"zhmv4wx-1",headline:"Plot summary: Plot overview (Macbeth)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/1"},{id:"zj8tyrd-1",headline:"Plot summary: Plot overview (Much Ado about Nothing)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/1"},{id:"z62ycdm-1",headline:"Plot summary: Plot overview (Richard III)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/1"},{id:"zfpcwmn-1",headline:"Plot summary: Plot overview (Romeo and Juliet)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/1"},{id:"z4gqtfr-1",headline:"Plot summary: Plot overview (The Merchant of Venice)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/1"},{id:"zrbj6sg-1",headline:"Plot summary: Plot overview (The Tempest)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/1"},{id:"zdk6fg8-1",headline:"Plot summary: Plot overview (Twelfth Night)",search:"plot overview",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/1"},{id:"z4gqtfr-3",headline:"Plot summary: Portia is bound by her father’s will and cannot marry who she chooses (The Merchant of Venice)",search:"portia is bound by her fathers will and cannot marry who she chooses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/3"},{id:"z4gqtfr-8",headline:"Plot summary: Portia, disguised as a lawyer, saves Antonio from his bond to Shylock (The Merchant of Venice)",search:"portia disguised as a lawyer saves antonio from his bond to shylock",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/8"},{id:"zrbj6sg-9",headline:"Plot summary: Prospero forgives the passengers for their former betrayals (The Tempest)",search:"prospero forgives the passengers for their former betrayals",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/9"},{id:"zrbj6sg-3",headline:"Plot summary: Prospero tells Miranda that he caused the storm (The Tempest)",search:"prospero tells miranda that he caused the storm",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/3"},{id:"zrbj6sg-8",headline:"Plot summary: Prospero uses magic to scare Alonso and spoil Caliban’s plot (The Tempest)",search:"prospero uses magic to scare alonso and spoil calibans plot",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/8"},{id:"zvs9q6f-4",headline:"Plot summary: Puck muddles up the lovers and causes havoc with a love potion (A Midsummer Night's Dream)",search:"puck muddles up the lovers and causes havoc with a love potion",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/4"},{id:"z62ycdm-6",headline:"Plot summary: Richard has Elizabeth’s relatives and Hastings killed. He becomes King (Richard III)",search:"richard has elizabeths relatives and hastings killed he becomes king",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/6"},{id:"z62ycdm-7",headline:"Plot summary: Richard has his nephews and wife killed, then he proposes to his niece (Richard III)",search:"richard has his nephews and wife killed then he proposes to his niece",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/7"},{id:"z62ycdm-3",headline:"Plot summary: Richard makes a pass at Lady Anne, despite him murdering her husband (Richard III)",search:"richard makes a pass at lady anne despite him murdering her husband",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/3"},{id:"z62ycdm-2",headline:"Plot summary: Richard sets up his brother Clarence who’s sent to prison for treason (Richard III)",search:"richard sets up his brother clarence whos sent to prison for treason",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/2"},{id:"z62ycdm-10",headline:"Plot summary: Richmond kills Richard, ending the conflict between York and Lancaster (Richard III)",search:"richmond kills richard ending the conflict between york and lancaster",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/10"},{id:"z62ycdm-9",headline:"Plot summary: Richmond promises to topple the King, and ghosts visit both men (Richard III)",search:"richmond promises to topple the king and ghosts visit both men",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z62ycdm/revision/9"},{id:"zfpcwmn-4",headline:"Plot summary: Romeo and Juliet fall in love and get married in secret (Romeo and Juliet)",search:"romeo and juliet fall in love and get married in secret",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/4"},{id:"zfpcwmn-7",headline:"Plot summary: Romeo kills himself, then Juliet does the same (Romeo and Juliet)",search:"romeo kills himself then juliet does the same",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/7"},{id:"zdk6fg8-7",headline:"Plot summary: Sebastian appears and all becomes clear at last (Twelfth Night)",search:"sebastian appears and all becomes clear at last",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/7"},{id:"z4gqtfr-4",headline:"Plot summary: Shylock lends the money to Antonio with some slightly gory conditions (The Merchant of Venice)",search:"shylock lends the money to antonio with some slightly gory conditions",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4gqtfr/revision/4"},{id:"zdk6fg8-5",headline:"Plot summary: Sir Andrew is jealous of Cesario and challenges him to a duel (Twelfth Night)",search:"sir andrew is jealous of cesario and challenges him to a duel",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/5"},{id:"zfpcwmn-8",headline:"Plot summary: The Capulets and Montagues agree to stop fighting (Romeo and Juliet)",search:"the capulets and montagues agree to stop fighting",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/8"},{id:"zvs9q6f-3",headline:"Plot summary: The King and Queen of the fairies fight over a little boy (A Midsummer Night's Dream)",search:"the king and queen of the fairies fight over a little boy",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/3"},{id:"zvs9q6f-9",headline:"Plot summary: The fairies bless the marriages (A Midsummer Night's Dream)",search:"the fairies bless the marriages",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/9"},{id:"zvs9q6f-7",headline:"Plot summary: The lovers get married and Bottom’s friends put on a play to celebrate (A Midsummer Night's Dream)",search:"the lovers get married and bottoms friends put on a play to celebrate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/7"},{id:"zvs9q6f-8",headline:"Plot summary: The play is about Pyramus and Thisbe (A Midsummer Night's Dream)",search:"the play is about pyramus and thisbe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvs9q6f/revision/8"},{id:"zrbj6sg-6",headline:"Plot summary: The ship’s jester and butler meet Caliban, and feed him alcohol (The Tempest)",search:"the ships jester and butler meet caliban and feed him alcohol",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zrbj6sg/revision/6"},{id:"zhmv4wx-8",headline:"Plot summary: There is a battle and Macduff decapitates Macbeth (Macbeth)",search:"there is a battle and macduff decapitates macbeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/8"},{id:"zj8tyrd-3",headline:"Plot summary: There is a masked ball where Don John causes trouble (Much Ado about Nothing)",search:"there is a masked ball where don john causes trouble",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zj8tyrd/revision/3"},{id:"zhmv4wx-2",headline:"Plot summary: Three witches predict great things for Macbeth (Macbeth)",search:"three witches predict great things for macbeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhmv4wx/revision/2"},{id:"zfpcwmn-5",headline:"Plot summary: Tybalt starts a street fight and Romeo is banished from Verona (Romeo and Juliet)",search:"tybalt starts a street fight and romeo is banished from verona",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zfpcwmn/revision/5"},{id:"zdk6fg8-2",headline:"Plot summary: Viola disguises herself as a boy to become Orsino's servant (Twelfth Night)",search:"viola disguises herself as a boy to become orsinos servant",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zdk6fg8/revision/2"},{id:"z96r4wx",headline:"Preparing and drafting (Writing skills)",search:"preparing and drafting",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx"},{id:"z96r4wx-2",headline:"Preparing and drafting: Context, audience and purpose (Writing skills)",search:"context audience and purpose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/2"},{id:"z96r4wx-1",headline:"Preparing and drafting: Planning (Writing skills)",search:"planning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/1"},{id:"z96r4wx-8",headline:"Preparing and drafting: Proof check five - Can I make it better? (Writing skills)",search:"proof check five can i make it better",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/8"},{id:"z96r4wx-7",headline:"Preparing and drafting: Proof check four - Check the paragraphs (Writing skills)",search:"proof check four check the paragraphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/7"},{id:"z96r4wx-4",headline:"Preparing and drafting: Proof check one - Context, audience and purpose (Writing skills)",search:"proof check one context audience and purpose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/4"},{id:"z96r4wx-6",headline:"Preparing and drafting: Proof check three - Check the punctuation (Writing skills)",search:"proof check three check the punctuation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/6"},{id:"z96r4wx-5",headline:"Preparing and drafting: Proof check two - Check the spelling (Writing skills)",search:"proof check two check the spelling",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/5"},{id:"z96r4wx-3",headline:"Preparing and drafting: Task - Context, audience and purpose (Writing skills)",search:"task context audience and purpose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z96r4wx/revision/3"},{id:"zbvdmp3",headline:"Sample question (Romeo and Juliet)",search:"sample question",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbvdmp3"},{id:"zbvdmp3-1",headline:"Sample question: Point, evidence and analysis (Romeo and Juliet)",search:"point evidence and analysis",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbvdmp3/revision/1"},{id:"zbvdmp3-2",headline:"Sample question: Question one (Romeo and Juliet)",search:"question one",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbvdmp3/revision/2"},{id:"zbvdmp3-3",headline:"Sample question: Question two (Romeo and Juliet)",search:"question two",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zbvdmp3/revision/3"},{id:"zpqnfg8",headline:"Sentences (Reading skills)",search:"sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8"},{id:"zxqnfg8",headline:"Sentences (Writing skills)",search:"sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8"},{id:"zpqnfg8-4",headline:"Sentences: Complex sentences (Reading skills)",search:"complex sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/4"},{id:"zxqnfg8-3",headline:"Sentences: Complex sentences (Writing skills)",search:"complex sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/3"},{id:"zpqnfg8-5",headline:"Sentences: Compound and complex sentences task (Reading skills)",search:"compound and complex sentences task",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/5"},{id:"zpqnfg8-3",headline:"Sentences: Compound sentences (Reading skills)",search:"compound sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/3"},{id:"zxqnfg8-4",headline:"Sentences: Compound sentences (Writing skills)",search:"compound sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/4"},{id:"zxqnfg8-5",headline:"Sentences: Fragments (Writing skills)",search:"fragments",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/5"},{id:"zxqnfg8-7",headline:"Sentences: Punctuation marks (Writing skills)",search:"punctuation marks",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/7"},{id:"zpqnfg8-6",headline:"Sentences: Purpose of sentences (Reading skills)",search:"purpose of sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/6"},{id:"zxqnfg8-6",headline:"Sentences: Repetition in sentences (Writing skills)",search:"repetition in sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/6"},{id:"zxqnfg8-1",headline:"Sentences: Sentence types (Writing skills)",search:"sentence types",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/1"},{id:"zpqnfg8-2",headline:"Sentences: Simple sentences (Reading skills)",search:"simple sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/2"},{id:"zxqnfg8-2",headline:"Sentences: Simple sentences (Writing skills)",search:"simple sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqnfg8/revision/2"},{id:"zpqnfg8-7",headline:"Sentences: Variety of sentences (Reading skills)",search:"variety of sentences",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/7"},{id:"zpqnfg8-8",headline:"Sentences: Variety of sentences task (Reading skills)",search:"variety of sentences task",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/8"},{id:"zpqnfg8-1",headline:"Sentences: Words, phrases and clauses (Reading skills)",search:"words phrases and clauses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpqnfg8/revision/1"},{id:"zxqsgk7",headline:"Shakespeare's life and inspirations (About Shakespeare)",search:"shakespeares life and inspirations",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqsgk7"},{id:"zxqsgk7-2",headline:"Shakespeare's life and inspirations: Childhood and family (About Shakespeare)",search:"childhood and family",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqsgk7/revision/2"},{id:"zxqsgk7-1",headline:"Shakespeare's life and inspirations: Shakespeare’s life and inspiration (About Shakespeare)",search:"shakespeares life and inspiration",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqsgk7/revision/1"},{id:"zxqsgk7-3",headline:"Shakespeare's life and inspirations: Where did he get his ideas? (About Shakespeare)",search:"where did he get his ideas",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxqsgk7/revision/3"},{id:"z2m3gk7",headline:"Speaking (Spoken English)",search:"speaking",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7"},{id:"z2m3gk7-6",headline:"Speaking: Presentations and reading aloud (Spoken English)",search:"presentations and reading aloud",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/6"},{id:"z2m3gk7-5",headline:"Speaking: Speaking skills (Spoken English)",search:"speaking skills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/5"},{id:"z2m3gk7-4",headline:"Speaking: Speaking techniques (Spoken English)",search:"speaking techniques",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/4"},{id:"z2m3gk7-1",headline:"Speaking: Spoken English (Spoken English)",search:"spoken english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/1"},{id:"z2m3gk7-2",headline:"Speaking: Spoken English (Spoken English)",search:"spoken english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/2"},{id:"z2m3gk7-3",headline:"Speaking: Writing a speech (Spoken English)",search:"writing a speech",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z2m3gk7/revision/3"},{id:"ztxbr82",headline:"Structure (Reading skills)",search:"structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82"},{id:"zphc9j6",headline:"Structure and paragraphs (Writing skills)",search:"structure and paragraphs",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zphc9j6"},{id:"zphc9j6-1",headline:"Structure and paragraphs: Beginning (Writing skills)",search:"beginning",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zphc9j6/revision/1"},{id:"zphc9j6-3",headline:"Structure and paragraphs: Ending (Writing skills)",search:"ending",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zphc9j6/revision/3"},{id:"zphc9j6-2",headline:"Structure and paragraphs: Middle (Writing skills)",search:"middle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zphc9j6/revision/2"},{id:"zphc9j6-4",headline:"Structure and paragraphs: Overall structure (Writing skills)",search:"overall structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zphc9j6/revision/4"},{id:"ztxbr82-3",headline:"Structure: Alternative openings (Reading skills)",search:"alternative openings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/3"},{id:"ztxbr82-7",headline:"Structure: Analysing structure (Reading skills)",search:"analysing structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/7"},{id:"ztxbr82-5",headline:"Structure: Endings (Reading skills)",search:"endings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/5"},{id:"ztxbr82-6",headline:"Structure: Layout (Reading skills)",search:"layout",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/6"},{id:"ztxbr82-4",headline:"Structure: Middle (Reading skills)",search:"middle",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/4"},{id:"ztxbr82-2",headline:"Structure: Openings (Reading skills)",search:"openings",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/2"},{id:"ztxbr82-8",headline:"Structure: Poems (Reading skills)",search:"poems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/8"},{id:"ztxbr82-1",headline:"Structure: Sections of a text (Reading skills)",search:"sections of a text",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/ztxbr82/revision/1"},{id:"zs2fvcw",headline:"Summarising material (Reading skills)",search:"summarising material",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs2fvcw"},{id:"zs2fvcw-1",headline:"Summarising material: How to summarise a text (Reading skills)",search:"how to summarise a text",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs2fvcw/revision/1"},{id:"zs2fvcw-2",headline:"Summarising material: Skim and scan tasks (Reading skills)",search:"skim and scan tasks",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zs2fvcw/revision/2"},{id:"zsp4kqt",headline:"Text types (Reading skills)",search:"text types",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt"},{id:"zsp4kqt-2",headline:"Text types: Analysing a text (Reading skills)",search:"analysing a text",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/2"},{id:"zsp4kqt-11",headline:"Text types: Analysing non-fiction texts (Reading skills)",search:"analysing nonfiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/11"},{id:"zsp4kqt-4",headline:"Text types: Analysing prose (Reading skills)",search:"analysing prose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/4"},{id:"zsp4kqt-6",headline:"Text types: Drama (Reading skills)",search:"drama",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/6"},{id:"zsp4kqt-3",headline:"Text types: Fiction (Reading skills)",search:"fiction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/3"},{id:"zsp4kqt-7",headline:"Text types: Non-fiction (Reading skills)",search:"nonfiction",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/7"},{id:"zsp4kqt-5",headline:"Text types: Poems (Reading skills)",search:"poems",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/5"},{id:"zsp4kqt-8",headline:"Text types: Types of non-fiction texts (1) (Reading skills)",search:"types of nonfiction texts 1",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/8"},{id:"zsp4kqt-9",headline:"Text types: Types of non-fiction texts (2) (Reading skills)",search:"types of nonfiction texts 2",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/9"},{id:"zsp4kqt-10",headline:"Text types: Types of non-fiction texts (3) (Reading skills)",search:"types of nonfiction texts 3",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/10"},{id:"zsp4kqt-1",headline:"Text types: What is a text? (Reading skills)",search:"what is a text",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zsp4kqt/revision/1"},{id:"zby82hv",headline:"Themes (A Midsummer Night's Dream)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zby82hv"},{id:"zn6bkqt",headline:"Themes (Macbeth)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zn6bkqt"},{id:"z7wp34j",headline:"Themes (Much Ado about Nothing)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7wp34j"},{id:"zhx39j6",headline:"Themes (Richard III)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhx39j6"},{id:"zvfk7ty",headline:"Themes (Romeo and Juliet)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvfk7ty"},{id:"zkc2pv4",headline:"Themes (The Merchant of Venice)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkc2pv4"},{id:"z4r7hyc",headline:"Themes (The Tempest)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4r7hyc"},{id:"zjdhvcw",headline:"Themes (Twelfth Night)",search:"themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjdhvcw"},{id:"zn6bkqt-4",headline:"Themes: Ambition (Macbeth)",search:"ambition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zn6bkqt/revision/4"},{id:"zjdhvcw-4",headline:"Themes: Ambition (Twelfth Night)",search:"ambition",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjdhvcw/revision/4"},{id:"z7wp34j-4",headline:"Themes: Appearance and Reality (Much Ado about Nothing)",search:"appearance and reality",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7wp34j/revision/4"},{id:"zby82hv-3",headline:"Themes: Appearance and reality (A Midsummer Night's Dream)",search:"appearance and reality",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zby82hv/revision/3"},{id:"zn6bkqt-3",headline:"Themes: Appearance and reality (Macbeth)",search:"appearance and reality",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zn6bkqt/revision/3"},{id:"zjdhvcw-3",headline:"Themes: Appearance and reality (Twelfth Night)",search:"appearance and reality",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjdhvcw/revision/3"},{id:"z7wp34j-3",headline:"Themes: Conflict (Much Ado about Nothing)",search:"conflict",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7wp34j/revision/3"},{id:"zvfk7ty-4",headline:"Themes: Duality (Romeo and Juliet)",search:"duality",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvfk7ty/revision/4"},{id:"z4r7hyc-3",headline:"Themes: Empathy and forgiveness (The Tempest)",search:"empathy and forgiveness",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4r7hyc/revision/3"},{id:"zhx39j6-3",headline:"Themes: Family and blood ties (Richard III)",search:"family and blood ties",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhx39j6/revision/3"},{id:"zn6bkqt-2",headline:"Themes: Fate (Macbeth)",search:"fate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zn6bkqt/revision/2"},{id:"zhx39j6-4",headline:"Themes: Fate (Richard III)",search:"fate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhx39j6/revision/4"},{id:"zvfk7ty-3",headline:"Themes: Fate (Romeo and Juliet)",search:"fate",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvfk7ty/revision/3"},{id:"z4r7hyc-2",headline:"Themes: Freedom (The Tempest)",search:"freedom",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4r7hyc/revision/2"},{id:"zkc2pv4-3",headline:"Themes: Justice (The Merchant of Venice)",search:"justice",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkc2pv4/revision/3"},{id:"zby82hv-1",headline:"Themes: Key themes (A Midsummer Night's Dream)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zby82hv/revision/1"},{id:"zn6bkqt-1",headline:"Themes: Key themes (Macbeth)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zn6bkqt/revision/1"},{id:"z7wp34j-1",headline:"Themes: Key themes (Much Ado about Nothing)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7wp34j/revision/1"},{id:"zhx39j6-1",headline:"Themes: Key themes (Richard III)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhx39j6/revision/1"},{id:"zvfk7ty-1",headline:"Themes: Key themes (Romeo and Juliet)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvfk7ty/revision/1"},{id:"zkc2pv4-1",headline:"Themes: Key themes (The Merchant of Venice)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkc2pv4/revision/1"},{id:"z4r7hyc-1",headline:"Themes: Key themes (The Tempest)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4r7hyc/revision/1"},{id:"zjdhvcw-1",headline:"Themes: Key themes (Twelfth Night)",search:"key themes",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjdhvcw/revision/1"},{id:"zhx39j6-2",headline:"Themes: Leadership (Richard III)",search:"leadership",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zhx39j6/revision/2"},{id:"zby82hv-2",headline:"Themes: Love (A Midsummer Night's Dream)",search:"love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zby82hv/revision/2"},{id:"z7wp34j-2",headline:"Themes: Love (Much Ado about Nothing)",search:"love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z7wp34j/revision/2"},{id:"zvfk7ty-2",headline:"Themes: Love (Romeo and Juliet)",search:"love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zvfk7ty/revision/2"},{id:"zkc2pv4-4",headline:"Themes: Love (The Merchant of Venice)",search:"love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkc2pv4/revision/4"},{id:"zjdhvcw-2",headline:"Themes: Love (Twelfth Night)",search:"love",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zjdhvcw/revision/2"},{id:"zkc2pv4-2",headline:"Themes: Money (The Merchant of Venice)",search:"money",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zkc2pv4/revision/2"},{id:"z4r7hyc-4",headline:"Themes: Nature versus nurture (The Tempest)",search:"nature versus nurture",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z4r7hyc/revision/4"},{id:"zby82hv-4",headline:"Themes: Order and disorder (A Midsummer Night's Dream)",search:"order and disorder",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zby82hv/revision/4"},{id:"z33j7ty",headline:"Tone and style (Writing skills)",search:"tone and style",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z33j7ty"},{id:"z33j7ty-3",headline:"Tone and style: Changing your vocabulary (Writing skills)",search:"changing your vocabulary",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z33j7ty/revision/3"},{id:"z33j7ty-2",headline:"Tone and style: Context, audience and purpose (Writing skills)",search:"context audience and purpose",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z33j7ty/revision/2"},{id:"z33j7ty-4",headline:"Tone and style: Style and genre (Writing skills)",search:"style and genre",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z33j7ty/revision/4"},{id:"z33j7ty-1",headline:"Tone and style: The writer's 'voice' (Writing skills)",search:"the writers voice",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z33j7ty/revision/1"},{id:"z9ktpv4",headline:"Writing to analyse (Writing skills)",search:"writing to analyse",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ktpv4"},{id:"z9ktpv4-1",headline:"Writing to analyse: Analysing a topic (Writing skills)",search:"analysing a topic",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ktpv4/revision/1"},{id:"z9ktpv4-3",headline:"Writing to analyse: Part two - The other side of the argument (Writing skills)",search:"part two the other side of the argument",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ktpv4/revision/3"},{id:"z9ktpv4-2",headline:"Writing to analyse: Task (Writing skills)",search:"task",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ktpv4/revision/2"},{id:"z9ktpv4-4",headline:"Writing to analyse: Useful phrases (Writing skills)",search:"useful phrases",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/z9ktpv4/revision/4"},{id:"zpp4kqt",headline:"Writing to describe (Writing skills)",search:"writing to describe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt"},{id:"zpp4kqt-3",headline:"Writing to describe: Appealing to the senses (Writing skills)",search:"appealing to the senses",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt/revision/3"},{id:"zpp4kqt-4",headline:"Writing to describe: Improving your writing (Writing skills)",search:"improving your writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt/revision/4"},{id:"zpp4kqt-5",headline:"Writing to describe: Structuring your writing - The photograph method (Writing skills)",search:"structuring your writing the photograph method",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt/revision/5"},{id:"zpp4kqt-2",headline:"Writing to describe: Style models (Writing skills)",search:"style models",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt/revision/2"},{id:"zpp4kqt-1",headline:"Writing to describe: Writing to describe (Writing skills)",search:"writing to describe",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zpp4kqt/revision/1"},{id:"zxxbr82",headline:"Writing to inform and explain (Writing skills)",search:"writing to inform and explain",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxxbr82"},{id:"zxxbr82-3",headline:"Writing to inform and explain: Planning your article (Writing skills)",search:"planning your article",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxxbr82/revision/3"},{id:"zxxbr82-4",headline:"Writing to inform and explain: The timeline technique (Writing skills)",search:"the timeline technique",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxxbr82/revision/4"},{id:"zxxbr82-2",headline:"Writing to inform and explain: Writing to inform and explain - language (Writing skills)",search:"writing to inform and explain language",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxxbr82/revision/2"},{id:"zxxbr82-1",headline:"Writing to inform and explain: Writing to inform and explain - structure (Writing skills)",search:"writing to inform and explain structure",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zxxbr82/revision/1"},{id:"zyydjxs",headline:"Writing to persuade, argue and advise (Writing skills)",search:"writing to persuade argue and advise",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs"},{id:"zyydjxs-4",headline:"Writing to persuade, argue and advise: The persuader's toolkit (Writing skills)",search:"the persuaders toolkit",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs/revision/4"},{id:"zyydjxs-5",headline:"Writing to persuade, argue and advise: Writing to advise (Writing skills)",search:"writing to advise",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs/revision/5"},{id:"zyydjxs-1",headline:"Writing to persuade, argue and advise: Writing to argue (Writing skills)",search:"writing to argue",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs/revision/1"},{id:"zyydjxs-2",headline:"Writing to persuade, argue and advise: Writing to argue - techniques (Writing skills)",search:"writing to argue techniques",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs/revision/2"},{id:"zyydjxs-3",headline:"Writing to persuade, argue and advise: Writing to persuade (Writing skills)",search:"writing to persuade",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zyydjxs/revision/3"},{id:"zgr2xnb",headline:"Writing to review and comment (Writing skills)",search:"writing to review and comment",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgr2xnb"},{id:"zgr2xnb-2",headline:"Writing to review and comment: Planning what to write (Writing skills)",search:"planning what to write",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgr2xnb/revision/2"},{id:"zgr2xnb-1",headline:"Writing to review and comment: Review writing and commentary writing (Writing skills)",search:"review writing and commentary writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/guides/zgr2xnb/revision/1"},{id:"zxgcwmn",headline:"A Midsummer Night's Dream",search:"a midsummer nights dream",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zxgcwmn"},{id:"z726yrd",headline:"About Shakespeare",search:"about shakespeare",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z726yrd"},{id:"zfdh8xs",headline:"Critical reading",search:"critical reading",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfdh8xs"},{id:"zfwpd6f",headline:"Critical reading",search:"critical reading",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfwpd6f"},{id:"zdn4pg8",headline:"Fiction texts",search:"fiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zdn4pg8"},{id:"zn8tkmn",headline:"Fiction writing",search:"fiction writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zn8tkmn"},{id:"z4hrt39",headline:"Grammar",search:"grammar",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z4hrt39"},{id:"zp982hv",headline:"Macbeth",search:"macbeth",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zp982hv"},{id:"znkdmp3",headline:"Much Ado about Nothing",search:"much ado about nothing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/znkdmp3"},{id:"zjfkscw",headline:"Non-fiction texts",search:"nonfiction texts",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zjfkscw"},{id:"zv7fqp3",headline:"Non-fiction writing",search:"nonfiction writing",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zv7fqp3"},{id:"zr6bxyc",headline:"Punctuation",search:"punctuation",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zr6bxyc"},{id:"zs8nv4j",headline:"Reading skills",search:"reading skills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zs8nv4j"},{id:"zmxh34j",headline:"Richard III",search:"richard iii",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zmxh34j"},{id:"zfdj6sg",headline:"Romeo and Juliet",search:"romeo and juliet",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zfdj6sg"},{id:"zksycdm",headline:"Shakespeare",search:"shakespeare",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zksycdm"},{id:"zbmv2sg",headline:"Spelling",search:"spelling",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zbmv2sg"},{id:"z7vdy9q",headline:"Spelling, punctuation and grammar",search:"spelling punctuation and grammar",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z7vdy9q"},{id:"z86qsbk",headline:"Spoken English",search:"spoken english",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z86qsbk"},{id:"zywqtfr",headline:"The Merchant of Venice",search:"the merchant of venice",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zywqtfr"},{id:"z37mn39",headline:"The Tempest",search:"the tempest",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/z37mn39"},{id:"zb2xsbk",headline:"Twelfth Night",search:"twelfth night",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zb2xsbk"},{id:"zmbj382",headline:"Understanding poetry",search:"understanding poetry",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zmbj382"},{id:"zywfbk7",headline:"Writing skills",search:"writing skills",url:"https://web.archive.org/web/20200820050938/https://www.bbc.co.uk/bitesize/topics/zywfbk7"}]}])},function(e,t,i){"use strict";var s=i(6),r=i(0),n=i(14),a=i(17),o=i(7),c=i(35),h=i(57),d=i(3),u=i(4),l=i(58),w=i(2),b=i(5),p=i(36),g=i(12),m=i(25),z=i(21),f=i(37),y=i(59),v=i(30),k=i(91),x=i(56),j=i(15),q=i(8),T=i(47),I=i(9),S=i(11),P=i(29),M=i(22),C=i(18),A=i(23),H=i(1),R=i(61),E=i(62),W=i(19),O=i(13),D=i(38).forEach,N=M("hidden"),L=H("toPrimitive"),B=O.set,K=O.getterFor("Symbol"),F=Object.prototype,U=r.Symbol,_=n("JSON","stringify"),V=j.f,J=q.f,G=k.f,$=T.f,Q=P("symbols"),Y=P("op-symbols"),Z=P("string-to-symbol-registry"),X=P("symbol-to-string-registry"),ee=P("wks"),te=r.QObject,ie=!te||!te.prototype||!te.prototype.findChild,se=o&&d(function(){return 7!=f(J({},"a",{get:function(){return J(this,"a",{value:7}).a}})).a})?function(e,t,i){var s=V(F,t);s&&delete F[t],J(e,t,i),s&&e!==F&&J(F,t,s)}:J,re=function(e,t){var i=Q[e]=f(U.prototype);return B(i,{type:"Symbol",tag:e,description:t}),o||(i.description=t),i},ne=h?function(e){return"symbol"==typeof e}:function(e){return Object(e)instanceof U},ae=function(e,t,i){e===F&&ae(Y,t,i),b(e);var s=m(t,!0);return b(i),u(Q,s)?(i.enumerable?(u(e,N)&&e[N][s]&&(e[N][s]=!1),i=f(i,{enumerable:z(0,!1)})):(u(e,N)||J(e,N,z(1,{})),e[N][s]=!0),se(e,s,i)):J(e,s,i)},oe=function(e,t){b(e);var i=g(t),s=y(i).concat(le(i));return D(s,function(t){o&&!he.call(i,t)||ae(e,t,i[t])}),e},ce=function(e,t){return void 0===t?f(e):oe(f(e),t)},he=function(e){var t=m(e,!0),i=$.call(this,t);return!(this===F&&u(Q,t)&&!u(Y,t))&&(!(i||!u(this,t)||!u(Q,t)||u(this,N)&&this[N][t])||i)},de=function(e,t){var i=g(e),s=m(t,!0);if(i!==F||!u(Q,s)||u(Y,s)){var r=V(i,s);return!r||!u(Q,s)||u(i,N)&&i[N][s]||(r.enumerable=!0),r}},ue=function(e){var t=G(g(e)),i=[];return D(t,function(e){u(Q,e)||u(C,e)||i.push(e)}),i},le=function(e){var t=e===F,i=G(t?Y:g(e)),s=[];return D(i,function(e){!u(Q,e)||t&&!u(F,e)||s.push(Q[e])}),s};if(c||(U=function(){if(this instanceof U)throw TypeError("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?String(arguments[0]):void 0,t=A(e),i=function(e){this===F&&i.call(Y,e),u(this,N)&&u(this[N],t)&&(this[N][t]=!1),se(this,t,z(1,e))};return o&&ie&&se(F,t,{configurable:!0,set:i}),re(t,e)},S(U.prototype,"toString",function(){return K(this).tag}),S(U,"withoutSetter",function(e){return re(A(e),e)}),T.f=he,q.f=ae,j.f=de,v.f=k.f=ue,x.f=le,R.f=function(e){return re(H(e),e)},o&&(J(U.prototype,"description",{configurable:!0,get:function(){return K(this).description}}),a||S(F,"propertyIsEnumerable",he,{unsafe:!0}))),s({global:!0,wrap:!0,forced:!c,sham:!c},{Symbol:U}),D(y(ee),function(e){E(e)}),s({target:"Symbol",stat:!0,forced:!c},{for:function(e){var t=String(e);if(u(Z,t))return Z[t];var i=U(t);return Z[t]=i,X[i]=t,i},keyFor:function(e){if(!ne(e))throw TypeError(e+" is not a symbol");if(u(X,e))return X[e]},useSetter:function(){ie=!0},useSimple:function(){ie=!1}}),s({target:"Object",stat:!0,forced:!c,sham:!o},{create:ce,defineProperty:ae,defineProperties:oe,getOwnPropertyDescriptor:de}),s({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:ue,getOwnPropertySymbols:le}),s({target:"Object",stat:!0,forced:d(function(){x.f(1)})},{getOwnPropertySymbols:function(e){return x.f(p(e))}}),_){s({target:"JSON",stat:!0,forced:!c||d(function(){var e=U();return"[null]"!=_([e])||"{}"!=_({a:e})||"{}"!=_(Object(e))})},{stringify:function(e,t,i){for(var s,r=[e],n=1;arguments.length>n;)r.push(arguments[n++]);if(s=t,(w(t)||void 0!==e)&&!ne(e))return l(t)||(t=function(e,t){if("function"==typeof s&&(t=s.call(this,e,t)),!ne(t))return t}),r[1]=t,_.apply(null,r)}})}U.prototype[L]||I(U.prototype,L,U.prototype.valueOf),W(U,"Symbol"),C[N]=!0},function(e,t){var i;i=function(){return this}();try{i=i||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t,i){var s=i(14),r=i(30),n=i(56),a=i(5);e.exports=s("Reflect","ownKeys")||function(e){var t=r.f(a(e)),i=n.f;return i?t.concat(i(e)):t}},function(e,t,i){var s=i(32),r=Math.max,n=Math.min;e.exports=function(e,t){var i=s(e);return i<0?r(i+t,0):n(i,t)}},function(e,t,i){var s=i(7),r=i(8),n=i(5),a=i(59);e.exports=s?Object.defineProperties:function(e,t){n(e);for(var i,s=a(t),o=s.length,c=0;o>c;)r.f(e,i=s[c++],t[i]);return e}},function(e,t,i){var s=i(12),r=i(30).f,n={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],o=function(e){try{return r(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==n.call(e)?o(e):r(s(e))}},function(e,t,i){var s=i(2),r=i(58),n=i(1),a=n("species");e.exports=function(e,t){var i;return r(e)&&(i=e.constructor,"function"!=typeof i||i!==Array&&!r(i.prototype)?s(i)&&null===(i=i[a])&&(i=void 0):i=void 0),new(void 0===i?Array:i)(0===t?0:t)}},function(e,t,i){"use strict";var s=i(6),r=i(7),n=i(0),a=i(4),o=i(2),c=i(8).f,h=i(52),d=n.Symbol;if(r&&"function"==typeof d&&(!("description"in d.prototype)||void 0!==d().description)){var u={},l=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),t=this instanceof l?new d(e):void 0===e?d():d(e);return""===e&&(u[t]=!0),t};h(l,d);var w=l.prototype=d.prototype;w.constructor=l;var b=w.toString,p="Symbol(test)"==String(d("test")),g=/^Symbol\((.*)\)[^)]+$/;c(w,"description",{configurable:!0,get:function(){var e=o(this)?this.valueOf():this,t=b.call(e);if(a(u,e))return"";var i=p?t.slice(7,-1):t.replace(g,"$1");return""===i?void 0:i}}),s({global:!0,forced:!0},{Symbol:l})}},function(e,t,i){i(62)("iterator")},function(e,t,i){var s=i(3),r=i(1),n=i(64),a=r("species");e.exports=function(e){return n>=51||!s(function(){var t=[],i=t.constructor={};return i[a]=function(){return{foo:1}},1!==t[e](Boolean).foo})}},function(e,t,i){"use strict";var s=i(71).IteratorPrototype,r=i(37),n=i(21),a=i(19),o=i(20),c=function(){return this};e.exports=function(e,t,i){var h=t+" Iterator";return e.prototype=r(s,{next:n(1,i)}),a(e,h,!1,!0),o[h]=c,e}},function(e,t,i){var s=i(3);e.exports=!s(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})},function(e,t,i){var s=i(2);e.exports=function(e){if(!s(e)&&null!==e)throw TypeError("Can't set "+String(e)+" as a prototype");return e}},function(e,t,i){var s=i(6),r=i(3),n=i(12),a=i(15).f,o=i(7),c=r(function(){a(1)});s({target:"Object",stat:!0,forced:!o||c,sham:!o},{getOwnPropertyDescriptor:function(e,t){return a(n(e),t)}})},function(e,t,i){"use strict";var s=i(40),r=i(75);e.exports=s?{}.toString:function(){return"[object "+r(this)+"]"}},function(e,t,i){var s=i(0);e.exports=s.Promise},function(e,t,i){"use strict";var s=i(14),r=i(8),n=i(1),a=i(7),o=n("species");e.exports=function(e){var t=s(e),i=r.f;a&&t&&!t[o]&&i(t,o,{configurable:!0,get:function(){return this}})}},function(e,t,i){var s=i(1),r=i(20),n=s("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||a[n]===e)}},function(e,t,i){var s=i(75),r=i(20),n=i(1),a=n("iterator");e.exports=function(e){if(void 0!=e)return e[a]||e["@@iterator"]||r[s(e)]}},function(e,t,i){var s=i(5);e.exports=function(e,t,i,r){try{return r?t(s(i)[0],i[1]):t(i)}catch(t){var n=e.return;throw void 0!==n&&s(n.call(e)),t}}},function(e,t,i){var s=i(5),r=i(24),n=i(1),a=n("species");e.exports=function(e,t){var i,n=s(e).constructor;return void 0===n||void 0==(i=s(n)[a])?t:r(i)}},function(e,t,i){var s,r,n,a,o,c,h,d,u=i(0),l=i(15).f,w=i(10),b=i(78).set,p=i(79),g=u.MutationObserver||u.WebKitMutationObserver,m=u.process,z=u.Promise,f="process"==w(m),y=l(u,"queueMicrotask"),v=y&&y.value;v||(s=function(){var e,t;for(f&&(e=m.domain)&&e.exit();r;){t=r.fn,r=r.next;try{t()}catch(e){throw r?a():n=void 0,e}}n=void 0,e&&e.enter()},f?a=function(){m.nextTick(s)}:g&&!p?(o=!0,c=document.createTextNode(""),new g(s).observe(c,{characterData:!0}),a=function(){c.data=o=!o}):z&&z.resolve?(h=z.resolve(void 0),d=h.then,a=function(){d.call(h,s)}):a=function(){b.call(u,s)}),e.exports=v||function(e){var t={fn:e,next:void 0};n&&(n.next=t),r||(r=t,a()),n=t}},function(e,t,i){var s=i(5),r=i(2),n=i(80);e.exports=function(e,t){if(s(e),r(t)&&t.constructor===e)return t;var i=n.f(e);return(0,i.resolve)(t),i.promise}},function(e,t,i){var s=i(0);e.exports=function(e,t){var i=s.console;i&&i.error&&(1===arguments.length?i.error(e):i.error(e,t))}},function(e,t){e.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}},function(e,t,i){"use strict";var s=i(5);e.exports=function(){var e=s(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},function(e,t,i){"use strict";function s(e,t){return RegExp(e,t)}var r=i(3);t.UNSUPPORTED_Y=r(function(){var e=s("a","y");return e.lastIndex=2,null!=e.exec("abcd")}),t.BROKEN_CARET=r(function(){var e=s("^r","gy");return e.lastIndex=2,null!=e.exec("str")})},function(e,t,i){var s=i(114);e.exports=function(e){if(s(e))throw TypeError("The method doesn't accept regular expressions");return e}},function(e,t,i){var s=i(2),r=i(10),n=i(1),a=n("match");e.exports=function(e){var t;return s(e)&&(void 0!==(t=e[a])?!!t:"RegExp"==r(e))}},function(e,t,i){var s=i(1),r=s("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(i){try{return t[r]=!1,"/./"[e](t)}catch(e){}}return!1}},function(e,t,i){"use strict";var s=i(117).charAt,r=i(13),n=i(70),a=r.set,o=r.getterFor("String Iterator");n(String,"String",function(e){a(this,{type:"String Iterator",string:String(e),index:0})},function(){var e,t=o(this),i=t.string,r=t.index;return r>=i.length?{value:void 0,done:!0}:(e=s(i,r),t.index+=e.length,{value:e,done:!1})})},function(e,t,i){var s=i(32),r=i(16),n=function(e){return function(t,i){var n,a,o=String(r(t)),c=s(i),h=o.length;return c<0||c>=h?e?"":void 0:(n=o.charCodeAt(c),n<55296||n>56319||c+1===h||(a=o.charCodeAt(c+1))<56320||a>57343?e?o.charAt(c):n:e?o.slice(c,c+2):a-56320+(n-55296<<10)+65536)}};e.exports={codeAt:n(!1),charAt:n(!0)}},function(e,t,i){"use strict";i(44);var s=i(11),r=i(3),n=i(1),a=i(45),o=i(9),c=n("species"),h=!r(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}),d=function(){return"$0"==="a".replace(/./,"$0")}(),u=n("replace"),l=function(){return!!/./[u]&&""===/./[u]("a","$0")}(),w=!r(function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var i="ab".split(e);return 2!==i.length||"a"!==i[0]||"b"!==i[1]});e.exports=function(e,t,i,u){var b=n(e),p=!r(function(){var t={};return t[b]=function(){return 7},7!=""[e](t)}),g=p&&!r(function(){var t=!1,i=/a/;return"split"===e&&(i={},i.constructor={},i.constructor[c]=function(){return i},i.flags="",i[b]=/./[b]),i.exec=function(){return t=!0,null},i[b](""),!t});if(!p||!g||"replace"===e&&(!h||!d||l)||"split"===e&&!w){var m=/./[b],z=i(b,""[e],function(e,t,i,s,r){return t.exec===a?p&&!r?{done:!0,value:m.call(t,i,s)}:{done:!0,value:e.call(i,t,s)}:{done:!1}},{REPLACE_KEEPS_$0:d,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:l}),f=z[0],y=z[1];s(String.prototype,e,f),s(RegExp.prototype,b,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}u&&o(RegExp.prototype[b],"sham",!0)}},function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},function(e,t,i){var s=i(10),r=i(45);e.exports=function(e,t){var i=e.exec;if("function"==typeof i){var n=i.call(e,t);if("object"!=typeof n)throw TypeError("RegExp exec method returned something other than an Object or null");return n}if("RegExp"!==s(e))throw TypeError("RegExp#exec called on incompatible receiver");return r.call(e,t)}},function(e,t,i){"use strict";var s,r=i(0),n=i(41),a=i(46),o=i(123),c=i(125),h=i(2),d=i(13).enforce,u=i(51),l=!r.ActiveXObject&&"ActiveXObject"in r,w=Object.isExtensible,b=function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},p=e.exports=o("WeakMap",b,c);if(u&&l){s=c.getConstructor(b,"WeakMap",!0),a.REQUIRED=!0;var g=p.prototype,m=g.delete,z=g.has,f=g.get,y=g.set;n(g,{delete:function(e){if(h(e)&&!w(e)){var t=d(this);return t.frozen||(t.frozen=new s),m.call(this,e)||t.frozen.delete(e)}return m.call(this,e)},has:function(e){if(h(e)&&!w(e)){var t=d(this);return t.frozen||(t.frozen=new s),z.call(this,e)||t.frozen.has(e)}return z.call(this,e)},get:function(e){if(h(e)&&!w(e)){var t=d(this);return t.frozen||(t.frozen=new s),z.call(this,e)?f.call(this,e):t.frozen.get(e)}return f.call(this,e)},set:function(e,t){if(h(e)&&!w(e)){var i=d(this);i.frozen||(i.frozen=new s),z.call(this,e)?y.call(this,e,t):i.frozen.set(e,t)}else y.call(this,e,t);return this}})}},function(e,t,i){var s=i(3);e.exports=!s(function(){return Object.isExtensible(Object.preventExtensions({}))})},function(e,t,i){"use strict";var s=i(6),r=i(0),n=i(34),a=i(11),o=i(46),c=i(43),h=i(42),d=i(2),u=i(3),l=i(77),w=i(19),b=i(124);e.exports=function(e,t,i){var p=-1!==e.indexOf("Map"),g=-1!==e.indexOf("Weak"),m=p?"set":"add",z=r[e],f=z&&z.prototype,y=z,v={},k=function(e){var t=f[e];a(f,e,"add"==e?function(e){return t.call(this,0===e?0:e),this}:"delete"==e?function(e){return!(g&&!d(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return g&&!d(e)?void 0:t.call(this,0===e?0:e)}:"has"==e?function(e){return!(g&&!d(e))&&t.call(this,0===e?0:e)}:function(e,i){return t.call(this,0===e?0:e,i),this})};if(n(e,"function"!=typeof z||!(g||f.forEach&&!u(function(){(new z).entries().next()}))))y=i.getConstructor(t,e,p,m),o.REQUIRED=!0;else if(n(e,!0)){var x=new y,j=x[m](g?{}:-0,1)!=x,q=u(function(){x.has(1)}),T=l(function(e){new z(e)}),I=!g&&u(function(){for(var e=new z,t=5;t--;)e[m](t,t);return!e.has(-0)});T||(y=t(function(t,i){h(t,y,e);var s=b(new z,t,y);return void 0!=i&&c(i,s[m],s,p),s}),y.prototype=f,f.constructor=y),(q||I)&&(k("delete"),k("has"),p&&k("get")),(I||j)&&k(m),g&&f.clear&&delete f.clear}return v[e]=y,s({global:!0,forced:y!=z},v),w(y,e),g||i.setStrong(y,e,p),y}},function(e,t,i){var s=i(2),r=i(73);e.exports=function(e,t,i){var n,a;return r&&"function"==typeof(n=t.constructor)&&n!==i&&s(a=n.prototype)&&a!==i.prototype&&r(e,a),e}},function(e,t,i){"use strict";var s=i(41),r=i(46).getWeakData,n=i(5),a=i(2),o=i(42),c=i(43),h=i(38),d=i(4),u=i(13),l=u.set,w=u.getterFor,b=h.find,p=h.findIndex,g=0,m=function(e){return e.frozen||(e.frozen=new z)},z=function(){this.entries=[]},f=function(e,t){return b(e.entries,function(e){return e[0]===t})};z.prototype={get:function(e){var t=f(this,e);if(t)return t[1]},has:function(e){return!!f(this,e)},set:function(e,t){var i=f(this,e);i?i[1]=t:this.entries.push([e,t])},delete:function(e){var t=p(this.entries,function(t){return t[0]===e});return~t&&this.entries.splice(t,1),!!~t}},e.exports={getConstructor:function(e,t,i,h){var u=e(function(e,s){o(e,u,t),l(e,{type:t,id:g++,frozen:void 0}),void 0!=s&&c(s,e[h],e,i)}),b=w(t),p=function(e,t,i){var s=b(e),a=r(n(t),!0);return!0===a?m(s).set(t,i):a[s.id]=i,e};return s(u.prototype,{delete:function(e){var t=b(this);if(!a(e))return!1;var i=r(e);return!0===i?m(t).delete(e):i&&d(i,t.id)&&delete i[t.id]},has:function(e){var t=b(this);if(!a(e))return!1;var i=r(e);return!0===i?m(t).has(e):i&&d(i,t.id)}}),s(u.prototype,i?{get:function(e){var t=b(this);if(a(e)){var i=r(e);return!0===i?m(t).get(e):i?i[t.id]:void 0}},set:function(e,t){return p(this,e,t)}}:{add:function(e){return p(this,e,!0)}}),u}}},function(e,t,i){var s=i(0),r=i(127),n=i(69),a=i(9),o=i(1),c=o("iterator"),h=o("toStringTag"),d=n.values;for(var u in r){var l=s[u],w=l&&l.prototype;if(w){if(w[c]!==d)try{a(w,c,d)}catch(e){w[c]=d}if(w[h]||a(w,h,u),r[u])for(var b in n)if(w[b]!==n[b])try{a(w,b,n[b])}catch(e){w[b]=n[b]}}}},function(e,t){e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(e,t,i){e.exports=function(e){function t(s){if(i[s])return i[s].exports;var r=i[s]={i:s,l:!1,exports:{}};return e[s].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,s){t.o(e,i)||Object.defineProperty(e,i,{enumerable:!0,get:s})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,i){if(1&i&&(e=t(e)),8&i)return e;if(4&i&&"object"==typeof e&&e&&e.__esModule)return e;var s=Object.create(null);if(t.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:e}),2&i&&"string"!=typeof e)for(var r in e)t.d(s,r,function(t){return e[t]}.bind(null,r));return s},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=13)}([function(e,t){e.exports=i(83)},function(e,t,i){e.exports=i(14)()},function(e,t){e.exports=function(e){return e&&e.__esModule?e:{default:e}}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function i(e,t){for(var i=0;i<t.length;i++){var s=t[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(e,s.key,s)}}e.exports=function(e,t,s){return t&&i(e.prototype,t),s&&i(e,s),e}},function(e,t,i){var s=i(19),r=i(20);e.exports=function(e,t){return!t||"object"!==s(t)&&"function"!=typeof t?r(e):t}},function(e,t){function i(t){return e.exports=i=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},i(t)}e.exports=i},function(e,t,i){var s=i(21);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}},function(e,t){e.exports=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var s=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,i):{};s.get||s.set?Object.defineProperty(t,i,s):t[i]=e[i]}return t.default=e,t}},function(e,t,i){"use strict";e.exports=i(16)},function(e,t,i){"use strict";var s=i(2),r=s(i(17)),n=s(i(18)),a=s(i(22)),o=s(i(23)),c=s(i(24)),h=s(i(25)),d=s(i(26)),u=s(i(27)),l=s(i(28)),w=s(i(29)),b=s(i(30)),p=s(i(31)),g=s(i(32)),m=s(i(33)),z=s(i(34)),f=s(i(35));e.exports={GelAddIcon:r.default,GelChevronRightIcon:n.default,GelCloseIcon:a.default,GelDownIcon:o.default,GelIconDuration:c.default,GelListenIcon:h.default,GelNextIcon:d.default,GelNoIcon:u.default,GelPlayIcon:l.default,GelPreviousIcon:w.default,GelRecentActivityIcon:b.default,GelStopIcon:p.default,GelSearchIcon:g.default,GelYesIcon:m.default,GelLoadingIcon:z.default,GelAlertIcon:f.default}},function(e,t,i){!function(t){"use strict";for(var i=[null,0,{}],s=44032,r=4352,n=function(e,t){this.codepoint=e,this.feature=t},a={},o=[],c=0;c<=255;++c)o[c]=0;n.fromCharCode=[function(e,t,s){return t<60||13311<t&&t<42607?new n(t,i):e(t,s)},function(e,t,i){var s=a[t];return s||(s=e(t,i)).feature&&++o[t>>8&255]>10&&(a[t]=s),s},function(e,t,i){return i?e(t,i):new n(t,null)},function(e,t,i){var a;if(t<r||4371<=t&&t<s||55204<t)return e(t,i);if(r<=t&&t<4371){var o={},c=21*(t-r);for(a=0;a<21;++a)o[4449+a]=s+28*(a+c);return new n(t,[,,o])}var h=t-s,d=h%28,u=[];if(0!==d)u[0]=[s+h-d,4519+d];else for(u[0]=[r+Math.floor(h/588),4449+Math.floor(h%588/28)],u[2]={},a=1;a<28;++a)u[2][4519+a]=t+a;return new n(t,u)},function(e,t,s){var r=65280&t,a=(n.udata[r]||{})[t];return new n(t,a||i)}].reduceRight(function(e,t){return function(i,s){return t(e,i,s)}},null),n.isHighSurrogate=function(e){return e>=55296&&e<=56319},n.isLowSurrogate=function(e){return e>=56320&&e<=57343},n.prototype.prepFeature=function(){this.feature||(this.feature=n.fromCharCode(this.codepoint,!0).feature)},n.prototype.toString=function(){if(this.codepoint<65536)return String.fromCharCode(this.codepoint);var e=this.codepoint-65536;return String.fromCharCode(Math.floor(e/1024)+55296,e%1024+56320)},n.prototype.getDecomp=function(){return this.prepFeature(),this.feature[0]||null},n.prototype.isCompatibility=function(){return this.prepFeature(),!!this.feature[1]&&256&this.feature[1]},n.prototype.isExclude=function(){return this.prepFeature(),!!this.feature[1]&&512&this.feature[1]},n.prototype.getCanonicalClass=function(){return this.prepFeature(),this.feature[1]?255&this.feature[1]:0},n.prototype.getComposite=function(e){if(this.prepFeature(),!this.feature[2])return null;var t=this.feature[2][e.codepoint];return t?n.fromCharCode(t):null};var h=function(e){this.str=e,this.cursor=0};h.prototype.next=function(){if(this.str&&this.cursor<this.str.length){var e,t=this.str.charCodeAt(this.cursor++);return n.isHighSurrogate(t)&&this.cursor<this.str.length&&n.isLowSurrogate(e=this.str.charCodeAt(this.cursor))&&(t=1024*(t-55296)+(e-56320)+65536,++this.cursor),n.fromCharCode(t)}return this.str=null,null};var d=function(e,t){this.it=e,this.canonical=t,this.resBuf=[]};d.prototype.next=function(){if(0===this.resBuf.length){var e=this.it.next();if(!e)return null;this.resBuf=function e(t,i){var s=i.getDecomp();if(!s||t&&i.isCompatibility())return[i];for(var r=[],a=0;a<s.length;++a){var o=e(t,n.fromCharCode(s[a]));r=r.concat(o)}return r}(this.canonical,e)}return this.resBuf.shift()};var u=function(e){this.it=e,this.resBuf=[]};u.prototype.next=function(){var e;if(0===this.resBuf.length)do{var t=this.it.next();if(!t)break;e=t.getCanonicalClass();var i=this.resBuf.length;if(0!==e)for(;i>0&&!(this.resBuf[i-1].getCanonicalClass()<=e);--i);this.resBuf.splice(i,0,t)}while(0!==e);return this.resBuf.shift()};var l=function(e){this.it=e,this.procBuf=[],this.resBuf=[],this.lastClass=null};l.prototype.next=function(){for(;0===this.resBuf.length;){var e=this.it.next();if(!e){this.resBuf=this.procBuf,this.procBuf=[];break}if(0===this.procBuf.length)this.lastClass=e.getCanonicalClass(),this.procBuf.push(e);else{var t=this.procBuf[0].getComposite(e),i=e.getCanonicalClass();t&&(this.lastClass<i||0===this.lastClass)?this.procBuf[0]=t:(0===i&&(this.resBuf=this.procBuf,this.procBuf=[]),this.lastClass=i,this.procBuf.push(e))}}return this.resBuf.shift()};var w=function(e,t){for(var i,s=function(e,t){switch(e){case"NFD":return new u(new d(new h(t),!0));case"NFKD":return new u(new d(new h(t),!1));case"NFC":return new l(new u(new d(new h(t),!0)));case"NFKC":return new l(new u(new d(new h(t),!1)))}throw e+" is invalid"}(e,t),r="";i=s.next();)r+=i.toString();return r};n.udata={0:{60:[,,{824:8814}],61:[,,{824:8800}],62:[,,{824:8815}],65:[,,{768:192,769:193,770:194,771:195,772:256,774:258,775:550,776:196,777:7842,778:197,780:461,783:512,785:514,803:7840,805:7680,808:260}],66:[,,{775:7682,803:7684,817:7686}],67:[,,{769:262,770:264,775:266,780:268,807:199}],68:[,,{775:7690,780:270,803:7692,807:7696,813:7698,817:7694}],69:[,,{768:200,769:201,770:202,771:7868,772:274,774:276,775:278,776:203,777:7866,780:282,783:516,785:518,803:7864,807:552,808:280,813:7704,816:7706}],70:[,,{775:7710}],71:[,,{769:500,770:284,772:7712,774:286,775:288,780:486,807:290}],72:[,,{770:292,775:7714,776:7718,780:542,803:7716,807:7720,814:7722}],73:[,,{768:204,769:205,770:206,771:296,772:298,774:300,775:304,776:207,777:7880,780:463,783:520,785:522,803:7882,808:302,816:7724}],74:[,,{770:308}],75:[,,{769:7728,780:488,803:7730,807:310,817:7732}],76:[,,{769:313,780:317,803:7734,807:315,813:7740,817:7738}],77:[,,{769:7742,775:7744,803:7746}],78:[,,{768:504,769:323,771:209,775:7748,780:327,803:7750,807:325,813:7754,817:7752}],79:[,,{768:210,769:211,770:212,771:213,772:332,774:334,775:558,776:214,777:7886,779:336,780:465,783:524,785:526,795:416,803:7884,808:490}],80:[,,{769:7764,775:7766}],82:[,,{769:340,775:7768,780:344,783:528,785:530,803:7770,807:342,817:7774}],83:[,,{769:346,770:348,775:7776,780:352,803:7778,806:536,807:350}],84:[,,{775:7786,780:356,803:7788,806:538,807:354,813:7792,817:7790}],85:[,,{768:217,769:218,770:219,771:360,772:362,774:364,776:220,777:7910,778:366,779:368,780:467,783:532,785:534,795:431,803:7908,804:7794,808:370,813:7798,816:7796}],86:[,,{771:7804,803:7806}],87:[,,{768:7808,769:7810,770:372,775:7814,776:7812,803:7816}],88:[,,{775:7818,776:7820}],89:[,,{768:7922,769:221,770:374,771:7928,772:562,775:7822,776:376,777:7926,803:7924}],90:[,,{769:377,770:7824,775:379,780:381,803:7826,817:7828}],97:[,,{768:224,769:225,770:226,771:227,772:257,774:259,775:551,776:228,777:7843,778:229,780:462,783:513,785:515,803:7841,805:7681,808:261}],98:[,,{775:7683,803:7685,817:7687}],99:[,,{769:263,770:265,775:267,780:269,807:231}],100:[,,{775:7691,780:271,803:7693,807:7697,813:7699,817:7695}],101:[,,{768:232,769:233,770:234,771:7869,772:275,774:277,775:279,776:235,777:7867,780:283,783:517,785:519,803:7865,807:553,808:281,813:7705,816:7707}],102:[,,{775:7711}],103:[,,{769:501,770:285,772:7713,774:287,775:289,780:487,807:291}],104:[,,{770:293,775:7715,776:7719,780:543,803:7717,807:7721,814:7723,817:7830}],105:[,,{768:236,769:237,770:238,771:297,772:299,774:301,776:239,777:7881,780:464,783:521,785:523,803:7883,808:303,816:7725}],106:[,,{770:309,780:496}],107:[,,{769:7729,780:489,803:7731,807:311,817:7733}],108:[,,{769:314,780:318,803:7735,807:316,813:7741,817:7739}],109:[,,{769:7743,775:7745,803:7747}],110:[,,{768:505,769:324,771:241,775:7749,780:328,803:7751,807:326,813:7755,817:7753}],111:[,,{768:242,769:243,770:244,771:245,772:333,774:335,775:559,776:246,777:7887,779:337,780:466,783:525,785:527,795:417,803:7885,808:491}],112:[,,{769:7765,775:7767}],114:[,,{769:341,775:7769,780:345,783:529,785:531,803:7771,807:343,817:7775}],115:[,,{769:347,770:349,775:7777,780:353,803:7779,806:537,807:351}],116:[,,{775:7787,776:7831,780:357,803:7789,806:539,807:355,813:7793,817:7791}],117:[,,{768:249,769:250,770:251,771:361,772:363,774:365,776:252,777:7911,778:367,779:369,780:468,783:533,785:535,795:432,803:7909,804:7795,808:371,813:7799,816:7797}],118:[,,{771:7805,803:7807}],119:[,,{768:7809,769:7811,770:373,775:7815,776:7813,778:7832,803:7817}],120:[,,{775:7819,776:7821}],121:[,,{768:7923,769:253,770:375,771:7929,772:563,775:7823,776:255,777:7927,778:7833,803:7925}],122:[,,{769:378,770:7825,775:380,780:382,803:7827,817:7829}],160:[[32],256],168:[[32,776],256,{768:8173,769:901,834:8129}],170:[[97],256],175:[[32,772],256],178:[[50],256],179:[[51],256],180:[[32,769],256],181:[[956],256],184:[[32,807],256],185:[[49],256],186:[[111],256],188:[[49,8260,52],256],189:[[49,8260,50],256],190:[[51,8260,52],256],192:[[65,768]],193:[[65,769]],194:[[65,770],,{768:7846,769:7844,771:7850,777:7848}],195:[[65,771]],196:[[65,776],,{772:478}],197:[[65,778],,{769:506}],198:[,,{769:508,772:482}],199:[[67,807],,{769:7688}],200:[[69,768]],201:[[69,769]],202:[[69,770],,{768:7872,769:7870,771:7876,777:7874}],203:[[69,776]],204:[[73,768]],205:[[73,769]],206:[[73,770]],207:[[73,776],,{769:7726}],209:[[78,771]],210:[[79,768]],211:[[79,769]],212:[[79,770],,{768:7890,769:7888,771:7894,777:7892}],213:[[79,771],,{769:7756,772:556,776:7758}],214:[[79,776],,{772:554}],216:[,,{769:510}],217:[[85,768]],218:[[85,769]],219:[[85,770]],220:[[85,776],,{768:475,769:471,772:469,780:473}],221:[[89,769]],224:[[97,768]],225:[[97,769]],226:[[97,770],,{768:7847,769:7845,771:7851,777:7849}],227:[[97,771]],228:[[97,776],,{772:479}],229:[[97,778],,{769:507}],230:[,,{769:509,772:483}],231:[[99,807],,{769:7689}],232:[[101,768]],233:[[101,769]],234:[[101,770],,{768:7873,769:7871,771:7877,777:7875}],235:[[101,776]],236:[[105,768]],237:[[105,769]],238:[[105,770]],239:[[105,776],,{769:7727}],241:[[110,771]],242:[[111,768]],243:[[111,769]],244:[[111,770],,{768:7891,769:7889,771:7895,777:7893}],245:[[111,771],,{769:7757,772:557,776:7759}],246:[[111,776],,{772:555}],248:[,,{769:511}],249:[[117,768]],250:[[117,769]],251:[[117,770]],252:[[117,776],,{768:476,769:472,772:470,780:474}],253:[[121,769]],255:[[121,776]]},256:{256:[[65,772]],257:[[97,772]],258:[[65,774],,{768:7856,769:7854,771:7860,777:7858}],259:[[97,774],,{768:7857,769:7855,771:7861,777:7859}],260:[[65,808]],261:[[97,808]],262:[[67,769]],263:[[99,769]],264:[[67,770]],265:[[99,770]],266:[[67,775]],267:[[99,775]],268:[[67,780]],269:[[99,780]],270:[[68,780]],271:[[100,780]],274:[[69,772],,{768:7700,769:7702}],275:[[101,772],,{768:7701,769:7703}],276:[[69,774]],277:[[101,774]],278:[[69,775]],279:[[101,775]],280:[[69,808]],281:[[101,808]],282:[[69,780]],283:[[101,780]],284:[[71,770]],285:[[103,770]],286:[[71,774]],287:[[103,774]],288:[[71,775]],289:[[103,775]],290:[[71,807]],291:[[103,807]],292:[[72,770]],293:[[104,770]],296:[[73,771]],297:[[105,771]],298:[[73,772]],299:[[105,772]],300:[[73,774]],301:[[105,774]],302:[[73,808]],303:[[105,808]],304:[[73,775]],306:[[73,74],256],307:[[105,106],256],308:[[74,770]],309:[[106,770]],310:[[75,807]],311:[[107,807]],313:[[76,769]],314:[[108,769]],315:[[76,807]],316:[[108,807]],317:[[76,780]],318:[[108,780]],319:[[76,183],256],320:[[108,183],256],323:[[78,769]],324:[[110,769]],325:[[78,807]],326:[[110,807]],327:[[78,780]],328:[[110,780]],329:[[700,110],256],332:[[79,772],,{768:7760,769:7762}],333:[[111,772],,{768:7761,769:7763}],334:[[79,774]],335:[[111,774]],336:[[79,779]],337:[[111,779]],340:[[82,769]],341:[[114,769]],342:[[82,807]],343:[[114,807]],344:[[82,780]],345:[[114,780]],346:[[83,769],,{775:7780}],347:[[115,769],,{775:7781}],348:[[83,770]],349:[[115,770]],350:[[83,807]],351:[[115,807]],352:[[83,780],,{775:7782}],353:[[115,780],,{775:7783}],354:[[84,807]],355:[[116,807]],356:[[84,780]],357:[[116,780]],360:[[85,771],,{769:7800}],361:[[117,771],,{769:7801}],362:[[85,772],,{776:7802}],363:[[117,772],,{776:7803}],364:[[85,774]],365:[[117,774]],366:[[85,778]],367:[[117,778]],368:[[85,779]],369:[[117,779]],370:[[85,808]],371:[[117,808]],372:[[87,770]],373:[[119,770]],374:[[89,770]],375:[[121,770]],376:[[89,776]],377:[[90,769]],378:[[122,769]],379:[[90,775]],380:[[122,775]],381:[[90,780]],382:[[122,780]],383:[[115],256,{775:7835}],416:[[79,795],,{768:7900,769:7898,771:7904,777:7902,803:7906}],417:[[111,795],,{768:7901,769:7899,771:7905,777:7903,803:7907}],431:[[85,795],,{768:7914,769:7912,771:7918,777:7916,803:7920}],432:[[117,795],,{768:7915,769:7913,771:7919,777:7917,803:7921}],439:[,,{780:494}],452:[[68,381],256],453:[[68,382],256],454:[[100,382],256],455:[[76,74],256],456:[[76,106],256],457:[[108,106],256],458:[[78,74],256],459:[[78,106],256],460:[[110,106],256],461:[[65,780]],462:[[97,780]],463:[[73,780]],464:[[105,780]],465:[[79,780]],466:[[111,780]],467:[[85,780]],468:[[117,780]],469:[[220,772]],470:[[252,772]],471:[[220,769]],472:[[252,769]],473:[[220,780]],474:[[252,780]],475:[[220,768]],476:[[252,768]],478:[[196,772]],479:[[228,772]],480:[[550,772]],481:[[551,772]],482:[[198,772]],483:[[230,772]],486:[[71,780]],487:[[103,780]],488:[[75,780]],489:[[107,780]],490:[[79,808],,{772:492}],491:[[111,808],,{772:493}],492:[[490,772]],493:[[491,772]],494:[[439,780]],495:[[658,780]],496:[[106,780]],497:[[68,90],256],498:[[68,122],256],499:[[100,122],256],500:[[71,769]],501:[[103,769]],504:[[78,768]],505:[[110,768]],506:[[197,769]],507:[[229,769]],508:[[198,769]],509:[[230,769]],510:[[216,769]],511:[[248,769]],66045:[,220]},512:{512:[[65,783]],513:[[97,783]],514:[[65,785]],515:[[97,785]],516:[[69,783]],517:[[101,783]],518:[[69,785]],519:[[101,785]],520:[[73,783]],521:[[105,783]],522:[[73,785]],523:[[105,785]],524:[[79,783]],525:[[111,783]],526:[[79,785]],527:[[111,785]],528:[[82,783]],529:[[114,783]],530:[[82,785]],531:[[114,785]],532:[[85,783]],533:[[117,783]],534:[[85,785]],535:[[117,785]],536:[[83,806]],537:[[115,806]],538:[[84,806]],539:[[116,806]],542:[[72,780]],543:[[104,780]],550:[[65,775],,{772:480}],551:[[97,775],,{772:481}],552:[[69,807],,{774:7708}],553:[[101,807],,{774:7709}],554:[[214,772]],555:[[246,772]],556:[[213,772]],557:[[245,772]],558:[[79,775],,{772:560}],559:[[111,775],,{772:561}],560:[[558,772]],561:[[559,772]],562:[[89,772]],563:[[121,772]],658:[,,{780:495}],688:[[104],256],689:[[614],256],690:[[106],256],691:[[114],256],692:[[633],256],693:[[635],256],694:[[641],256],695:[[119],256],696:[[121],256],728:[[32,774],256],729:[[32,775],256],730:[[32,778],256],731:[[32,808],256],732:[[32,771],256],733:[[32,779],256],736:[[611],256],737:[[108],256],738:[[115],256],739:[[120],256],740:[[661],256],66272:[,220]},768:{768:[,230],769:[,230],770:[,230],771:[,230],772:[,230],773:[,230],774:[,230],775:[,230],776:[,230,{769:836}],777:[,230],778:[,230],779:[,230],780:[,230],781:[,230],782:[,230],783:[,230],784:[,230],785:[,230],786:[,230],787:[,230],788:[,230],789:[,232],790:[,220],791:[,220],792:[,220],793:[,220],794:[,232],795:[,216],796:[,220],797:[,220],798:[,220],799:[,220],800:[,220],801:[,202],802:[,202],803:[,220],804:[,220],805:[,220],806:[,220],807:[,202],808:[,202],809:[,220],810:[,220],811:[,220],812:[,220],813:[,220],814:[,220],815:[,220],816:[,220],817:[,220],818:[,220],819:[,220],820:[,1],821:[,1],822:[,1],823:[,1],824:[,1],825:[,220],826:[,220],827:[,220],828:[,220],829:[,230],830:[,230],831:[,230],832:[[768],230],833:[[769],230],834:[,230],835:[[787],230],836:[[776,769],230],837:[,240],838:[,230],839:[,220],840:[,220],841:[,220],842:[,230],843:[,230],844:[,230],845:[,220],846:[,220],848:[,230],849:[,230],850:[,230],851:[,220],852:[,220],853:[,220],854:[,220],855:[,230],856:[,232],857:[,220],858:[,220],859:[,230],860:[,233],861:[,234],862:[,234],863:[,233],864:[,234],865:[,234],866:[,233],867:[,230],868:[,230],869:[,230],870:[,230],871:[,230],872:[,230],873:[,230],874:[,230],875:[,230],876:[,230],877:[,230],878:[,230],879:[,230],884:[[697]],890:[[32,837],256],894:[[59]],900:[[32,769],256],901:[[168,769]],902:[[913,769]],903:[[183]],904:[[917,769]],905:[[919,769]],906:[[921,769]],908:[[927,769]],910:[[933,769]],911:[[937,769]],912:[[970,769]],913:[,,{768:8122,769:902,772:8121,774:8120,787:7944,788:7945,837:8124}],917:[,,{768:8136,769:904,787:7960,788:7961}],919:[,,{768:8138,769:905,787:7976,788:7977,837:8140}],921:[,,{768:8154,769:906,772:8153,774:8152,776:938,787:7992,788:7993}],927:[,,{768:8184,769:908,787:8008,788:8009}],929:[,,{788:8172}],933:[,,{768:8170,769:910,772:8169,774:8168,776:939,788:8025}],937:[,,{768:8186,769:911,787:8040,788:8041,837:8188}],938:[[921,776]],939:[[933,776]],940:[[945,769],,{837:8116}],941:[[949,769]],942:[[951,769],,{837:8132}],943:[[953,769]],944:[[971,769]],945:[,,{768:8048,769:940,772:8113,774:8112,787:7936,788:7937,834:8118,837:8115}],949:[,,{768:8050,769:941,787:7952,788:7953}],951:[,,{768:8052,769:942,787:7968,788:7969,834:8134,837:8131}],953:[,,{768:8054,769:943,772:8145,774:8144,776:970,787:7984,788:7985,834:8150}],959:[,,{768:8056,769:972,787:8e3,788:8001}],961:[,,{787:8164,788:8165}],965:[,,{768:8058,769:973,772:8161,774:8160,776:971,787:8016,788:8017,834:8166}],969:[,,{768:8060,769:974,787:8032,788:8033,834:8182,837:8179}],970:[[953,776],,{768:8146,769:912,834:8151}],971:[[965,776],,{768:8162,769:944,834:8167}],972:[[959,769]],973:[[965,769]],974:[[969,769],,{837:8180}],976:[[946],256],977:[[952],256],978:[[933],256,{769:979,776:980}],979:[[978,769]],980:[[978,776]],981:[[966],256],982:[[960],256],1008:[[954],256],1009:[[961],256],1010:[[962],256],1012:[[920],256],1013:[[949],256],1017:[[931],256],66422:[,230],66423:[,230],66424:[,230],66425:[,230],66426:[,230]},1024:{1024:[[1045,768]],1025:[[1045,776]],1027:[[1043,769]],1030:[,,{776:1031}],1031:[[1030,776]],1036:[[1050,769]],1037:[[1048,768]],1038:[[1059,774]],1040:[,,{774:1232,776:1234}],1043:[,,{769:1027}],1045:[,,{768:1024,774:1238,776:1025}],1046:[,,{774:1217,776:1244}],1047:[,,{776:1246}],1048:[,,{768:1037,772:1250,774:1049,776:1252}],1049:[[1048,774]],1050:[,,{769:1036}],1054:[,,{776:1254}],1059:[,,{772:1262,774:1038,776:1264,779:1266}],1063:[,,{776:1268}],1067:[,,{776:1272}],1069:[,,{776:1260}],1072:[,,{774:1233,776:1235}],1075:[,,{769:1107}],1077:[,,{768:1104,774:1239,776:1105}],1078:[,,{774:1218,776:1245}],1079:[,,{776:1247}],1080:[,,{768:1117,772:1251,774:1081,776:1253}],1081:[[1080,774]],1082:[,,{769:1116}],1086:[,,{776:1255}],1091:[,,{772:1263,774:1118,776:1265,779:1267}],1095:[,,{776:1269}],1099:[,,{776:1273}],1101:[,,{776:1261}],1104:[[1077,768]],1105:[[1077,776]],1107:[[1075,769]],1110:[,,{776:1111}],1111:[[1110,776]],1116:[[1082,769]],1117:[[1080,768]],1118:[[1091,774]],1140:[,,{783:1142}],1141:[,,{783:1143}],1142:[[1140,783]],1143:[[1141,783]],1155:[,230],1156:[,230],1157:[,230],1158:[,230],1159:[,230],1217:[[1046,774]],1218:[[1078,774]],1232:[[1040,774]],1233:[[1072,774]],1234:[[1040,776]],1235:[[1072,776]],1238:[[1045,774]],1239:[[1077,774]],1240:[,,{776:1242}],1241:[,,{776:1243}],1242:[[1240,776]],1243:[[1241,776]],1244:[[1046,776]],1245:[[1078,776]],1246:[[1047,776]],1247:[[1079,776]],1250:[[1048,772]],1251:[[1080,772]],1252:[[1048,776]],1253:[[1080,776]],1254:[[1054,776]],1255:[[1086,776]],1256:[,,{776:1258}],1257:[,,{776:1259}],1258:[[1256,776]],1259:[[1257,776]],1260:[[1069,776]],1261:[[1101,776]],1262:[[1059,772]],1263:[[1091,772]],1264:[[1059,776]],1265:[[1091,776]],1266:[[1059,779]],1267:[[1091,779]],1268:[[1063,776]],1269:[[1095,776]],1272:[[1067,776]],1273:[[1099,776]]},1280:{1415:[[1381,1410],256],1425:[,220],1426:[,230],1427:[,230],1428:[,230],1429:[,230],1430:[,220],1431:[,230],1432:[,230],1433:[,230],1434:[,222],1435:[,220],1436:[,230],1437:[,230],1438:[,230],1439:[,230],1440:[,230],1441:[,230],1442:[,220],1443:[,220],1444:[,220],1445:[,220],1446:[,220],1447:[,220],1448:[,230],1449:[,230],1450:[,220],1451:[,230],1452:[,230],1453:[,222],1454:[,228],1455:[,230],1456:[,10],1457:[,11],1458:[,12],1459:[,13],1460:[,14],1461:[,15],1462:[,16],1463:[,17],1464:[,18],1465:[,19],1466:[,19],1467:[,20],1468:[,21],1469:[,22],1471:[,23],1473:[,24],1474:[,25],1476:[,230],1477:[,220],1479:[,18]},1536:{1552:[,230],1553:[,230],1554:[,230],1555:[,230],1556:[,230],1557:[,230],1558:[,230],1559:[,230],1560:[,30],1561:[,31],1562:[,32],1570:[[1575,1619]],1571:[[1575,1620]],1572:[[1608,1620]],1573:[[1575,1621]],1574:[[1610,1620]],1575:[,,{1619:1570,1620:1571,1621:1573}],1608:[,,{1620:1572}],1610:[,,{1620:1574}],1611:[,27],1612:[,28],1613:[,29],1614:[,30],1615:[,31],1616:[,32],1617:[,33],1618:[,34],1619:[,230],1620:[,230],1621:[,220],1622:[,220],1623:[,230],1624:[,230],1625:[,230],1626:[,230],1627:[,230],1628:[,220],1629:[,230],1630:[,230],1631:[,220],1648:[,35],1653:[[1575,1652],256],1654:[[1608,1652],256],1655:[[1735,1652],256],1656:[[1610,1652],256],1728:[[1749,1620]],1729:[,,{1620:1730}],1730:[[1729,1620]],1746:[,,{1620:1747}],1747:[[1746,1620]],1749:[,,{1620:1728}],1750:[,230],1751:[,230],1752:[,230],1753:[,230],1754:[,230],1755:[,230],1756:[,230],1759:[,230],1760:[,230],1761:[,230],1762:[,230],1763:[,220],1764:[,230],1767:[,230],1768:[,230],1770:[,220],1771:[,230],1772:[,230],1773:[,220]},1792:{1809:[,36],1840:[,230],1841:[,220],1842:[,230],1843:[,230],1844:[,220],1845:[,230],1846:[,230],1847:[,220],1848:[,220],1849:[,220],1850:[,230],1851:[,220],1852:[,220],1853:[,230],1854:[,220],1855:[,230],1856:[,230],1857:[,230],1858:[,220],1859:[,230],1860:[,220],1861:[,230],1862:[,220],1863:[,230],1864:[,220],1865:[,230],1866:[,230],2027:[,230],2028:[,230],2029:[,230],2030:[,230],2031:[,230],2032:[,230],2033:[,230],2034:[,220],2035:[,230]},2048:{2070:[,230],2071:[,230],2072:[,230],2073:[,230],2075:[,230],2076:[,230],2077:[,230],2078:[,230],2079:[,230],2080:[,230],2081:[,230],2082:[,230],2083:[,230],2085:[,230],2086:[,230],2087:[,230],2089:[,230],2090:[,230],2091:[,230],2092:[,230],2093:[,230],2137:[,220],2138:[,220],2139:[,220],2276:[,230],2277:[,230],2278:[,220],2279:[,230],2280:[,230],2281:[,220],2282:[,230],2283:[,230],2284:[,230],2285:[,220],2286:[,220],2287:[,220],2288:[,27],2289:[,28],2290:[,29],2291:[,230],2292:[,230],2293:[,230],2294:[,220],2295:[,230],2296:[,230],2297:[,220],2298:[,220],2299:[,230],2300:[,230],2301:[,230],2302:[,230],2303:[,230]},2304:{2344:[,,{2364:2345}],2345:[[2344,2364]],2352:[,,{2364:2353}],2353:[[2352,2364]],2355:[,,{2364:2356}],2356:[[2355,2364]],2364:[,7],2381:[,9],2385:[,230],2386:[,220],2387:[,230],2388:[,230],2392:[[2325,2364],512],2393:[[2326,2364],512],2394:[[2327,2364],512],2395:[[2332,2364],512],2396:[[2337,2364],512],2397:[[2338,2364],512],2398:[[2347,2364],512],2399:[[2351,2364],512],2492:[,7],2503:[,,{2494:2507,2519:2508}],2507:[[2503,2494]],2508:[[2503,2519]],2509:[,9],2524:[[2465,2492],512],2525:[[2466,2492],512],2527:[[2479,2492],512]},2560:{2611:[[2610,2620],512],2614:[[2616,2620],512],2620:[,7],2637:[,9],2649:[[2582,2620],512],2650:[[2583,2620],512],2651:[[2588,2620],512],2654:[[2603,2620],512],2748:[,7],2765:[,9],68109:[,220],68111:[,230],68152:[,230],68153:[,1],68154:[,220],68159:[,9],68325:[,230],68326:[,220]},2816:{2876:[,7],2887:[,,{2878:2891,2902:2888,2903:2892}],2888:[[2887,2902]],2891:[[2887,2878]],2892:[[2887,2903]],2893:[,9],2908:[[2849,2876],512],2909:[[2850,2876],512],2962:[,,{3031:2964}],2964:[[2962,3031]],3014:[,,{3006:3018,3031:3020}],3015:[,,{3006:3019}],3018:[[3014,3006]],3019:[[3015,3006]],3020:[[3014,3031]],3021:[,9]},3072:{3142:[,,{3158:3144}],3144:[[3142,3158]],3149:[,9],3157:[,84],3158:[,91],3260:[,7],3263:[,,{3285:3264}],3264:[[3263,3285]],3270:[,,{3266:3274,3285:3271,3286:3272}],3271:[[3270,3285]],3272:[[3270,3286]],3274:[[3270,3266],,{3285:3275}],3275:[[3274,3285]],3277:[,9]},3328:{3398:[,,{3390:3402,3415:3404}],3399:[,,{3390:3403}],3402:[[3398,3390]],3403:[[3399,3390]],3404:[[3398,3415]],3405:[,9],3530:[,9],3545:[,,{3530:3546,3535:3548,3551:3550}],3546:[[3545,3530]],3548:[[3545,3535],,{3530:3549}],3549:[[3548,3530]],3550:[[3545,3551]]},3584:{3635:[[3661,3634],256],3640:[,103],3641:[,103],3642:[,9],3656:[,107],3657:[,107],3658:[,107],3659:[,107],3763:[[3789,3762],256],3768:[,118],3769:[,118],3784:[,122],3785:[,122],3786:[,122],3787:[,122],3804:[[3755,3737],256],3805:[[3755,3745],256]},3840:{3852:[[3851],256],3864:[,220],3865:[,220],3893:[,220],3895:[,220],3897:[,216],3907:[[3906,4023],512],3917:[[3916,4023],512],3922:[[3921,4023],512],3927:[[3926,4023],512],3932:[[3931,4023],512],3945:[[3904,4021],512],3953:[,129],3954:[,130],3955:[[3953,3954],512],3956:[,132],3957:[[3953,3956],512],3958:[[4018,3968],512],3959:[[4018,3969],256],3960:[[4019,3968],512],3961:[[4019,3969],256],3962:[,130],3963:[,130],3964:[,130],3965:[,130],3968:[,130],3969:[[3953,3968],512],3970:[,230],3971:[,230],3972:[,9],3974:[,230],3975:[,230],3987:[[3986,4023],512],3997:[[3996,4023],512],4002:[[4001,4023],512],4007:[[4006,4023],512],4012:[[4011,4023],512],4025:[[3984,4021],512],4038:[,220]},4096:{4133:[,,{4142:4134}],4134:[[4133,4142]],4151:[,7],4153:[,9],4154:[,9],4237:[,220],4348:[[4316],256],69702:[,9],69759:[,9],69785:[,,{69818:69786}],69786:[[69785,69818]],69787:[,,{69818:69788}],69788:[[69787,69818]],69797:[,,{69818:69803}],69803:[[69797,69818]],69817:[,9],69818:[,7]},4352:{69888:[,230],69889:[,230],69890:[,230],69934:[[69937,69927]],69935:[[69938,69927]],69937:[,,{69927:69934}],69938:[,,{69927:69935}],69939:[,9],69940:[,9],70003:[,7],70080:[,9]},4608:{70197:[,9],70198:[,7],70377:[,7],70378:[,9]},4864:{4957:[,230],4958:[,230],4959:[,230],70460:[,7],70471:[,,{70462:70475,70487:70476}],70475:[[70471,70462]],70476:[[70471,70487]],70477:[,9],70502:[,230],70503:[,230],70504:[,230],70505:[,230],70506:[,230],70507:[,230],70508:[,230],70512:[,230],70513:[,230],70514:[,230],70515:[,230],70516:[,230]},5120:{70841:[,,{70832:70844,70842:70843,70845:70846}],70843:[[70841,70842]],70844:[[70841,70832]],70846:[[70841,70845]],70850:[,9],70851:[,7]},5376:{71096:[,,{71087:71098}],71097:[,,{71087:71099}],71098:[[71096,71087]],71099:[[71097,71087]],71103:[,9],71104:[,7]},5632:{71231:[,9],71350:[,9],71351:[,7]},5888:{5908:[,9],5940:[,9],6098:[,9],6109:[,230]},6144:{6313:[,228]},6400:{6457:[,222],6458:[,230],6459:[,220]},6656:{6679:[,230],6680:[,220],6752:[,9],6773:[,230],6774:[,230],6775:[,230],6776:[,230],6777:[,230],6778:[,230],6779:[,230],6780:[,230],6783:[,220],6832:[,230],6833:[,230],6834:[,230],6835:[,230],6836:[,230],6837:[,220],6838:[,220],6839:[,220],6840:[,220],6841:[,220],6842:[,220],6843:[,230],6844:[,230],6845:[,220]},6912:{6917:[,,{6965:6918}],6918:[[6917,6965]],6919:[,,{6965:6920}],6920:[[6919,6965]],6921:[,,{6965:6922}],6922:[[6921,6965]],6923:[,,{6965:6924}],6924:[[6923,6965]],6925:[,,{6965:6926}],6926:[[6925,6965]],6929:[,,{6965:6930}],6930:[[6929,6965]],6964:[,7],6970:[,,{6965:6971}],6971:[[6970,6965]],6972:[,,{6965:6973}],6973:[[6972,6965]],6974:[,,{6965:6976}],6975:[,,{6965:6977}],6976:[[6974,6965]],6977:[[6975,6965]],6978:[,,{6965:6979}],6979:[[6978,6965]],6980:[,9],7019:[,230],7020:[,220],7021:[,230],7022:[,230],7023:[,230],7024:[,230],7025:[,230],7026:[,230],7027:[,230],7082:[,9],7083:[,9],7142:[,7],7154:[,9],7155:[,9]},7168:{7223:[,7],7376:[,230],7377:[,230],7378:[,230],7380:[,1],7381:[,220],7382:[,220],7383:[,220],7384:[,220],7385:[,220],7386:[,230],7387:[,230],7388:[,220],7389:[,220],7390:[,220],7391:[,220],7392:[,230],7394:[,1],7395:[,1],7396:[,1],7397:[,1],7398:[,1],7399:[,1],7400:[,1],7405:[,220],7412:[,230],7416:[,230],7417:[,230]},7424:{7468:[[65],256],7469:[[198],256],7470:[[66],256],7472:[[68],256],7473:[[69],256],7474:[[398],256],7475:[[71],256],7476:[[72],256],7477:[[73],256],7478:[[74],256],7479:[[75],256],7480:[[76],256],7481:[[77],256],7482:[[78],256],7484:[[79],256],7485:[[546],256],7486:[[80],256],7487:[[82],256],7488:[[84],256],7489:[[85],256],7490:[[87],256],7491:[[97],256],7492:[[592],256],7493:[[593],256],7494:[[7426],256],7495:[[98],256],7496:[[100],256],7497:[[101],256],7498:[[601],256],7499:[[603],256],7500:[[604],256],7501:[[103],256],7503:[[107],256],7504:[[109],256],7505:[[331],256],7506:[[111],256],7507:[[596],256],7508:[[7446],256],7509:[[7447],256],7510:[[112],256],7511:[[116],256],7512:[[117],256],7513:[[7453],256],7514:[[623],256],7515:[[118],256],7516:[[7461],256],7517:[[946],256],7518:[[947],256],7519:[[948],256],7520:[[966],256],7521:[[967],256],7522:[[105],256],7523:[[114],256],7524:[[117],256],7525:[[118],256],7526:[[946],256],7527:[[947],256],7528:[[961],256],7529:[[966],256],7530:[[967],256],7544:[[1085],256],7579:[[594],256],7580:[[99],256],7581:[[597],256],7582:[[240],256],7583:[[604],256],7584:[[102],256],7585:[[607],256],7586:[[609],256],7587:[[613],256],7588:[[616],256],7589:[[617],256],7590:[[618],256],7591:[[7547],256],7592:[[669],256],7593:[[621],256],7594:[[7557],256],7595:[[671],256],7596:[[625],256],7597:[[624],256],7598:[[626],256],7599:[[627],256],7600:[[628],256],7601:[[629],256],7602:[[632],256],7603:[[642],256],7604:[[643],256],7605:[[427],256],7606:[[649],256],7607:[[650],256],7608:[[7452],256],7609:[[651],256],7610:[[652],256],7611:[[122],256],7612:[[656],256],7613:[[657],256],7614:[[658],256],7615:[[952],256],7616:[,230],7617:[,230],7618:[,220],7619:[,230],7620:[,230],7621:[,230],7622:[,230],7623:[,230],7624:[,230],7625:[,230],7626:[,220],7627:[,230],7628:[,230],7629:[,234],7630:[,214],7631:[,220],7632:[,202],7633:[,230],7634:[,230],7635:[,230],7636:[,230],7637:[,230],7638:[,230],7639:[,230],7640:[,230],7641:[,230],7642:[,230],7643:[,230],7644:[,230],7645:[,230],7646:[,230],7647:[,230],7648:[,230],7649:[,230],7650:[,230],7651:[,230],7652:[,230],7653:[,230],7654:[,230],7655:[,230],7656:[,230],7657:[,230],7658:[,230],7659:[,230],7660:[,230],7661:[,230],7662:[,230],7663:[,230],7664:[,230],7665:[,230],7666:[,230],7667:[,230],7668:[,230],7669:[,230],7676:[,233],7677:[,220],7678:[,230],7679:[,220]},7680:{7680:[[65,805]],7681:[[97,805]],7682:[[66,775]],7683:[[98,775]],7684:[[66,803]],7685:[[98,803]],7686:[[66,817]],7687:[[98,817]],7688:[[199,769]],7689:[[231,769]],7690:[[68,775]],7691:[[100,775]],7692:[[68,803]],7693:[[100,803]],7694:[[68,817]],7695:[[100,817]],7696:[[68,807]],7697:[[100,807]],7698:[[68,813]],7699:[[100,813]],7700:[[274,768]],7701:[[275,768]],7702:[[274,769]],7703:[[275,769]],7704:[[69,813]],7705:[[101,813]],7706:[[69,816]],7707:[[101,816]],7708:[[552,774]],7709:[[553,774]],7710:[[70,775]],7711:[[102,775]],7712:[[71,772]],7713:[[103,772]],7714:[[72,775]],7715:[[104,775]],7716:[[72,803]],7717:[[104,803]],7718:[[72,776]],7719:[[104,776]],7720:[[72,807]],7721:[[104,807]],7722:[[72,814]],7723:[[104,814]],7724:[[73,816]],7725:[[105,816]],7726:[[207,769]],7727:[[239,769]],7728:[[75,769]],7729:[[107,769]],7730:[[75,803]],7731:[[107,803]],7732:[[75,817]],7733:[[107,817]],7734:[[76,803],,{772:7736}],7735:[[108,803],,{772:7737}],7736:[[7734,772]],7737:[[7735,772]],7738:[[76,817]],7739:[[108,817]],7740:[[76,813]],7741:[[108,813]],7742:[[77,769]],7743:[[109,769]],7744:[[77,775]],7745:[[109,775]],7746:[[77,803]],7747:[[109,803]],7748:[[78,775]],7749:[[110,775]],7750:[[78,803]],7751:[[110,803]],7752:[[78,817]],7753:[[110,817]],7754:[[78,813]],7755:[[110,813]],7756:[[213,769]],7757:[[245,769]],7758:[[213,776]],7759:[[245,776]],7760:[[332,768]],7761:[[333,768]],7762:[[332,769]],7763:[[333,769]],7764:[[80,769]],7765:[[112,769]],7766:[[80,775]],7767:[[112,775]],7768:[[82,775]],7769:[[114,775]],7770:[[82,803],,{772:7772}],7771:[[114,803],,{772:7773}],7772:[[7770,772]],7773:[[7771,772]],7774:[[82,817]],7775:[[114,817]],7776:[[83,775]],7777:[[115,775]],7778:[[83,803],,{775:7784}],7779:[[115,803],,{775:7785}],7780:[[346,775]],7781:[[347,775]],7782:[[352,775]],7783:[[353,775]],7784:[[7778,775]],7785:[[7779,775]],7786:[[84,775]],7787:[[116,775]],7788:[[84,803]],7789:[[116,803]],7790:[[84,817]],7791:[[116,817]],7792:[[84,813]],7793:[[116,813]],7794:[[85,804]],7795:[[117,804]],7796:[[85,816]],7797:[[117,816]],7798:[[85,813]],7799:[[117,813]],7800:[[360,769]],7801:[[361,769]],7802:[[362,776]],7803:[[363,776]],7804:[[86,771]],7805:[[118,771]],7806:[[86,803]],7807:[[118,803]],7808:[[87,768]],7809:[[119,768]],7810:[[87,769]],7811:[[119,769]],7812:[[87,776]],7813:[[119,776]],7814:[[87,775]],7815:[[119,775]],7816:[[87,803]],7817:[[119,803]],7818:[[88,775]],7819:[[120,775]],7820:[[88,776]],7821:[[120,776]],7822:[[89,775]],7823:[[121,775]],7824:[[90,770]],7825:[[122,770]],7826:[[90,803]],7827:[[122,803]],7828:[[90,817]],7829:[[122,817]],7830:[[104,817]],7831:[[116,776]],7832:[[119,778]],7833:[[121,778]],7834:[[97,702],256],7835:[[383,775]],7840:[[65,803],,{770:7852,774:7862}],7841:[[97,803],,{770:7853,774:7863}],7842:[[65,777]],7843:[[97,777]],7844:[[194,769]],7845:[[226,769]],7846:[[194,768]],7847:[[226,768]],7848:[[194,777]],7849:[[226,777]],7850:[[194,771]],7851:[[226,771]],7852:[[7840,770]],7853:[[7841,770]],7854:[[258,769]],7855:[[259,769]],7856:[[258,768]],7857:[[259,768]],7858:[[258,777]],7859:[[259,777]],7860:[[258,771]],7861:[[259,771]],7862:[[7840,774]],7863:[[7841,774]],7864:[[69,803],,{770:7878}],7865:[[101,803],,{770:7879}],7866:[[69,777]],7867:[[101,777]],7868:[[69,771]],7869:[[101,771]],7870:[[202,769]],7871:[[234,769]],7872:[[202,768]],7873:[[234,768]],7874:[[202,777]],7875:[[234,777]],7876:[[202,771]],7877:[[234,771]],7878:[[7864,770]],7879:[[7865,770]],7880:[[73,777]],7881:[[105,777]],7882:[[73,803]],7883:[[105,803]],7884:[[79,803],,{770:7896}],7885:[[111,803],,{770:7897}],7886:[[79,777]],7887:[[111,777]],7888:[[212,769]],7889:[[244,769]],7890:[[212,768]],7891:[[244,768]],7892:[[212,777]],7893:[[244,777]],7894:[[212,771]],7895:[[244,771]],7896:[[7884,770]],7897:[[7885,770]],7898:[[416,769]],7899:[[417,769]],7900:[[416,768]],7901:[[417,768]],7902:[[416,777]],7903:[[417,777]],7904:[[416,771]],7905:[[417,771]],7906:[[416,803]],7907:[[417,803]],7908:[[85,803]],7909:[[117,803]],7910:[[85,777]],7911:[[117,777]],7912:[[431,769]],7913:[[432,769]],7914:[[431,768]],7915:[[432,768]],7916:[[431,777]],7917:[[432,777]],7918:[[431,771]],7919:[[432,771]],7920:[[431,803]],7921:[[432,803]],7922:[[89,768]],7923:[[121,768]],7924:[[89,803]],7925:[[121,803]],7926:[[89,777]],7927:[[121,777]],7928:[[89,771]],7929:[[121,771]]},7936:{7936:[[945,787],,{768:7938,769:7940,834:7942,837:8064}],7937:[[945,788],,{768:7939,769:7941,834:7943,837:8065}],7938:[[7936,768],,{837:8066}],7939:[[7937,768],,{837:8067}],7940:[[7936,769],,{837:8068}],7941:[[7937,769],,{837:8069}],7942:[[7936,834],,{837:8070}],7943:[[7937,834],,{837:8071}],7944:[[913,787],,{768:7946,769:7948,834:7950,837:8072}],7945:[[913,788],,{768:7947,769:7949,834:7951,837:8073}],7946:[[7944,768],,{837:8074}],7947:[[7945,768],,{837:8075}],7948:[[7944,769],,{837:8076}],7949:[[7945,769],,{837:8077}],7950:[[7944,834],,{837:8078}],7951:[[7945,834],,{837:8079}],7952:[[949,787],,{768:7954,769:7956}],7953:[[949,788],,{768:7955,769:7957}],7954:[[7952,768]],7955:[[7953,768]],7956:[[7952,769]],7957:[[7953,769]],7960:[[917,787],,{768:7962,769:7964}],7961:[[917,788],,{768:7963,769:7965}],7962:[[7960,768]],7963:[[7961,768]],7964:[[7960,769]],7965:[[7961,769]],7968:[[951,787],,{768:7970,769:7972,834:7974,837:8080}],7969:[[951,788],,{768:7971,769:7973,834:7975,837:8081}],7970:[[7968,768],,{837:8082}],7971:[[7969,768],,{837:8083}],7972:[[7968,769],,{837:8084}],7973:[[7969,769],,{837:8085}],7974:[[7968,834],,{837:8086}],7975:[[7969,834],,{837:8087}],7976:[[919,787],,{768:7978,769:7980,834:7982,837:8088}],7977:[[919,788],,{768:7979,769:7981,834:7983,837:8089}],7978:[[7976,768],,{837:8090}],7979:[[7977,768],,{837:8091}],7980:[[7976,769],,{837:8092}],7981:[[7977,769],,{837:8093}],7982:[[7976,834],,{837:8094}],7983:[[7977,834],,{837:8095}],7984:[[953,787],,{768:7986,769:7988,834:7990}],7985:[[953,788],,{768:7987,769:7989,834:7991}],7986:[[7984,768]],7987:[[7985,768]],7988:[[7984,769]],7989:[[7985,769]],7990:[[7984,834]],7991:[[7985,834]],7992:[[921,787],,{768:7994,769:7996,834:7998}],7993:[[921,788],,{768:7995,769:7997,834:7999}],7994:[[7992,768]],7995:[[7993,768]],7996:[[7992,769]],7997:[[7993,769]],7998:[[7992,834]],7999:[[7993,834]],8e3:[[959,787],,{768:8002,769:8004}],8001:[[959,788],,{768:8003,769:8005}],8002:[[8e3,768]],8003:[[8001,768]],8004:[[8e3,769]],8005:[[8001,769]],8008:[[927,787],,{768:8010,769:8012}],8009:[[927,788],,{768:8011,769:8013}],8010:[[8008,768]],8011:[[8009,768]],8012:[[8008,769]],8013:[[8009,769]],8016:[[965,787],,{768:8018,769:8020,834:8022}],8017:[[965,788],,{768:8019,769:8021,834:8023}],8018:[[8016,768]],8019:[[8017,768]],8020:[[8016,769]],8021:[[8017,769]],8022:[[8016,834]],8023:[[8017,834]],8025:[[933,788],,{768:8027,769:8029,834:8031}],8027:[[8025,768]],8029:[[8025,769]],8031:[[8025,834]],8032:[[969,787],,{768:8034,769:8036,834:8038,837:8096}],8033:[[969,788],,{768:8035,769:8037,834:8039,837:8097}],8034:[[8032,768],,{837:8098}],8035:[[8033,768],,{837:8099}],8036:[[8032,769],,{837:8100}],8037:[[8033,769],,{837:8101}],8038:[[8032,834],,{837:8102}],8039:[[8033,834],,{837:8103}],8040:[[937,787],,{768:8042,769:8044,834:8046,837:8104}],8041:[[937,788],,{768:8043,769:8045,834:8047,837:8105}],8042:[[8040,768],,{837:8106}],8043:[[8041,768],,{837:8107}],8044:[[8040,769],,{837:8108}],8045:[[8041,769],,{837:8109}],8046:[[8040,834],,{837:8110}],8047:[[8041,834],,{837:8111}],8048:[[945,768],,{837:8114}],8049:[[940]],8050:[[949,768]],8051:[[941]],8052:[[951,768],,{837:8130}],8053:[[942]],8054:[[953,768]],8055:[[943]],8056:[[959,768]],8057:[[972]],8058:[[965,768]],8059:[[973]],8060:[[969,768],,{837:8178}],8061:[[974]],8064:[[7936,837]],8065:[[7937,837]],8066:[[7938,837]],8067:[[7939,837]],8068:[[7940,837]],8069:[[7941,837]],8070:[[7942,837]],8071:[[7943,837]],8072:[[7944,837]],8073:[[7945,837]],8074:[[7946,837]],8075:[[7947,837]],8076:[[7948,837]],8077:[[7949,837]],8078:[[7950,837]],8079:[[7951,837]],8080:[[7968,837]],8081:[[7969,837]],8082:[[7970,837]],8083:[[7971,837]],8084:[[7972,837]],8085:[[7973,837]],8086:[[7974,837]],8087:[[7975,837]],8088:[[7976,837]],8089:[[7977,837]],8090:[[7978,837]],8091:[[7979,837]],8092:[[7980,837]],8093:[[7981,837]],8094:[[7982,837]],8095:[[7983,837]],8096:[[8032,837]],8097:[[8033,837]],8098:[[8034,837]],8099:[[8035,837]],8100:[[8036,837]],8101:[[8037,837]],8102:[[8038,837]],8103:[[8039,837]],8104:[[8040,837]],8105:[[8041,837]],8106:[[8042,837]],8107:[[8043,837]],8108:[[8044,837]],8109:[[8045,837]],8110:[[8046,837]],8111:[[8047,837]],8112:[[945,774]],8113:[[945,772]],8114:[[8048,837]],8115:[[945,837]],8116:[[940,837]],8118:[[945,834],,{837:8119}],8119:[[8118,837]],8120:[[913,774]],8121:[[913,772]],8122:[[913,768]],8123:[[902]],8124:[[913,837]],8125:[[32,787],256],8126:[[953]],8127:[[32,787],256,{768:8141,769:8142,834:8143}],8128:[[32,834],256],8129:[[168,834]],8130:[[8052,837]],8131:[[951,837]],8132:[[942,837]],8134:[[951,834],,{837:8135}],8135:[[8134,837]],8136:[[917,768]],8137:[[904]],8138:[[919,768]],8139:[[905]],8140:[[919,837]],8141:[[8127,768]],8142:[[8127,769]],8143:[[8127,834]],8144:[[953,774]],8145:[[953,772]],8146:[[970,768]],8147:[[912]],8150:[[953,834]],8151:[[970,834]],8152:[[921,774]],8153:[[921,772]],8154:[[921,768]],8155:[[906]],8157:[[8190,768]],8158:[[8190,769]],8159:[[8190,834]],8160:[[965,774]],8161:[[965,772]],8162:[[971,768]],8163:[[944]],8164:[[961,787]],8165:[[961,788]],8166:[[965,834]],8167:[[971,834]],8168:[[933,774]],8169:[[933,772]],8170:[[933,768]],8171:[[910]],8172:[[929,788]],8173:[[168,768]],8174:[[901]],8175:[[96]],8178:[[8060,837]],8179:[[969,837]],8180:[[974,837]],8182:[[969,834],,{837:8183}],8183:[[8182,837]],8184:[[927,768]],8185:[[908]],8186:[[937,768]],8187:[[911]],8188:[[937,837]],8189:[[180]],8190:[[32,788],256,{768:8157,769:8158,834:8159}]},8192:{8192:[[8194]],8193:[[8195]],8194:[[32],256],8195:[[32],256],8196:[[32],256],8197:[[32],256],8198:[[32],256],8199:[[32],256],8200:[[32],256],8201:[[32],256],8202:[[32],256],8209:[[8208],256],8215:[[32,819],256],8228:[[46],256],8229:[[46,46],256],8230:[[46,46,46],256],8239:[[32],256],8243:[[8242,8242],256],8244:[[8242,8242,8242],256],8246:[[8245,8245],256],8247:[[8245,8245,8245],256],8252:[[33,33],256],8254:[[32,773],256],8263:[[63,63],256],8264:[[63,33],256],8265:[[33,63],256],8279:[[8242,8242,8242,8242],256],8287:[[32],256],8304:[[48],256],8305:[[105],256],8308:[[52],256],8309:[[53],256],8310:[[54],256],8311:[[55],256],8312:[[56],256],8313:[[57],256],8314:[[43],256],8315:[[8722],256],8316:[[61],256],8317:[[40],256],8318:[[41],256],8319:[[110],256],8320:[[48],256],8321:[[49],256],8322:[[50],256],8323:[[51],256],8324:[[52],256],8325:[[53],256],8326:[[54],256],8327:[[55],256],8328:[[56],256],8329:[[57],256],8330:[[43],256],8331:[[8722],256],8332:[[61],256],8333:[[40],256],8334:[[41],256],8336:[[97],256],8337:[[101],256],8338:[[111],256],8339:[[120],256],8340:[[601],256],8341:[[104],256],8342:[[107],256],8343:[[108],256],8344:[[109],256],8345:[[110],256],8346:[[112],256],8347:[[115],256],8348:[[116],256],8360:[[82,115],256],8400:[,230],8401:[,230],8402:[,1],8403:[,1],8404:[,230],8405:[,230],8406:[,230],8407:[,230],8408:[,1],8409:[,1],8410:[,1],8411:[,230],8412:[,230],8417:[,230],8421:[,1],8422:[,1],8423:[,230],8424:[,220],8425:[,230],8426:[,1],8427:[,1],8428:[,220],8429:[,220],8430:[,220],8431:[,220],8432:[,230]},8448:{8448:[[97,47,99],256],8449:[[97,47,115],256],8450:[[67],256],8451:[[176,67],256],8453:[[99,47,111],256],8454:[[99,47,117],256],8455:[[400],256],8457:[[176,70],256],8458:[[103],256],8459:[[72],256],8460:[[72],256],8461:[[72],256],8462:[[104],256],8463:[[295],256],8464:[[73],256],8465:[[73],256],8466:[[76],256],8467:[[108],256],8469:[[78],256],8470:[[78,111],256],8473:[[80],256],8474:[[81],256],8475:[[82],256],8476:[[82],256],8477:[[82],256],8480:[[83,77],256],8481:[[84,69,76],256],8482:[[84,77],256],8484:[[90],256],8486:[[937]],8488:[[90],256],8490:[[75]],8491:[[197]],8492:[[66],256],8493:[[67],256],8495:[[101],256],8496:[[69],256],8497:[[70],256],8499:[[77],256],8500:[[111],256],8501:[[1488],256],8502:[[1489],256],8503:[[1490],256],8504:[[1491],256],8505:[[105],256],8507:[[70,65,88],256],8508:[[960],256],8509:[[947],256],8510:[[915],256],8511:[[928],256],8512:[[8721],256],8517:[[68],256],8518:[[100],256],8519:[[101],256],8520:[[105],256],8521:[[106],256],8528:[[49,8260,55],256],8529:[[49,8260,57],256],8530:[[49,8260,49,48],256],8531:[[49,8260,51],256],8532:[[50,8260,51],256],8533:[[49,8260,53],256],8534:[[50,8260,53],256],8535:[[51,8260,53],256],8536:[[52,8260,53],256],8537:[[49,8260,54],256],8538:[[53,8260,54],256],8539:[[49,8260,56],256],8540:[[51,8260,56],256],8541:[[53,8260,56],256],8542:[[55,8260,56],256],8543:[[49,8260],256],8544:[[73],256],8545:[[73,73],256],8546:[[73,73,73],256],8547:[[73,86],256],8548:[[86],256],8549:[[86,73],256],8550:[[86,73,73],256],8551:[[86,73,73,73],256],8552:[[73,88],256],8553:[[88],256],8554:[[88,73],256],8555:[[88,73,73],256],8556:[[76],256],8557:[[67],256],8558:[[68],256],8559:[[77],256],8560:[[105],256],8561:[[105,105],256],8562:[[105,105,105],256],8563:[[105,118],256],8564:[[118],256],8565:[[118,105],256],8566:[[118,105,105],256],8567:[[118,105,105,105],256],8568:[[105,120],256],8569:[[120],256],8570:[[120,105],256],8571:[[120,105,105],256],8572:[[108],256],8573:[[99],256],8574:[[100],256],8575:[[109],256],8585:[[48,8260,51],256],8592:[,,{824:8602}],8594:[,,{824:8603}],8596:[,,{824:8622}],8602:[[8592,824]],8603:[[8594,824]],8622:[[8596,824]],8653:[[8656,824]],8654:[[8660,824]],8655:[[8658,824]],8656:[,,{824:8653}],8658:[,,{824:8655}],8660:[,,{824:8654}]},8704:{8707:[,,{824:8708}],8708:[[8707,824]],8712:[,,{824:8713}],8713:[[8712,824]],8715:[,,{824:8716}],8716:[[8715,824]],8739:[,,{824:8740}],8740:[[8739,824]],8741:[,,{824:8742}],8742:[[8741,824]],8748:[[8747,8747],256],8749:[[8747,8747,8747],256],8751:[[8750,8750],256],8752:[[8750,8750,8750],256],8764:[,,{824:8769}],8769:[[8764,824]],8771:[,,{824:8772}],8772:[[8771,824]],8773:[,,{824:8775}],8775:[[8773,824]],8776:[,,{824:8777}],8777:[[8776,824]],8781:[,,{824:8813}],8800:[[61,824]],8801:[,,{824:8802}],8802:[[8801,824]],8804:[,,{824:8816}],8805:[,,{824:8817}],8813:[[8781,824]],8814:[[60,824]],8815:[[62,824]],8816:[[8804,824]],8817:[[8805,824]],8818:[,,{824:8820}],8819:[,,{824:8821}],8820:[[8818,824]],8821:[[8819,824]],8822:[,,{824:8824}],8823:[,,{824:8825}],8824:[[8822,824]],8825:[[8823,824]],8826:[,,{824:8832}],8827:[,,{824:8833}],8828:[,,{824:8928}],8829:[,,{824:8929}],8832:[[8826,824]],8833:[[8827,824]],8834:[,,{824:8836}],8835:[,,{824:8837}],8836:[[8834,824]],8837:[[8835,824]],8838:[,,{824:8840}],8839:[,,{824:8841}],8840:[[8838,824]],8841:[[8839,824]],8849:[,,{824:8930}],8850:[,,{824:8931}],8866:[,,{824:8876}],8872:[,,{824:8877}],8873:[,,{824:8878}],8875:[,,{824:8879}],8876:[[8866,824]],8877:[[8872,824]],8878:[[8873,824]],8879:[[8875,824]],8882:[,,{824:8938}],8883:[,,{824:8939}],8884:[,,{824:8940}],8885:[,,{824:8941}],8928:[[8828,824]],8929:[[8829,824]],8930:[[8849,824]],8931:[[8850,824]],8938:[[8882,824]],8939:[[8883,824]],8940:[[8884,824]],8941:[[8885,824]]},8960:{9001:[[12296]],9002:[[12297]]},9216:{9312:[[49],256],9313:[[50],256],9314:[[51],256],9315:[[52],256],9316:[[53],256],9317:[[54],256],9318:[[55],256],9319:[[56],256],9320:[[57],256],9321:[[49,48],256],9322:[[49,49],256],9323:[[49,50],256],9324:[[49,51],256],9325:[[49,52],256],9326:[[49,53],256],9327:[[49,54],256],9328:[[49,55],256],9329:[[49,56],256],9330:[[49,57],256],9331:[[50,48],256],9332:[[40,49,41],256],9333:[[40,50,41],256],9334:[[40,51,41],256],9335:[[40,52,41],256],9336:[[40,53,41],256],9337:[[40,54,41],256],9338:[[40,55,41],256],9339:[[40,56,41],256],9340:[[40,57,41],256],9341:[[40,49,48,41],256],9342:[[40,49,49,41],256],9343:[[40,49,50,41],256],9344:[[40,49,51,41],256],9345:[[40,49,52,41],256],9346:[[40,49,53,41],256],9347:[[40,49,54,41],256],9348:[[40,49,55,41],256],9349:[[40,49,56,41],256],9350:[[40,49,57,41],256],9351:[[40,50,48,41],256],9352:[[49,46],256],9353:[[50,46],256],9354:[[51,46],256],9355:[[52,46],256],9356:[[53,46],256],9357:[[54,46],256],9358:[[55,46],256],9359:[[56,46],256],9360:[[57,46],256],9361:[[49,48,46],256],9362:[[49,49,46],256],9363:[[49,50,46],256],9364:[[49,51,46],256],9365:[[49,52,46],256],9366:[[49,53,46],256],9367:[[49,54,46],256],9368:[[49,55,46],256],9369:[[49,56,46],256],9370:[[49,57,46],256],9371:[[50,48,46],256],9372:[[40,97,41],256],9373:[[40,98,41],256],9374:[[40,99,41],256],9375:[[40,100,41],256],9376:[[40,101,41],256],9377:[[40,102,41],256],9378:[[40,103,41],256],9379:[[40,104,41],256],9380:[[40,105,41],256],9381:[[40,106,41],256],9382:[[40,107,41],256],9383:[[40,108,41],256],9384:[[40,109,41],256],9385:[[40,110,41],256],9386:[[40,111,41],256],9387:[[40,112,41],256],9388:[[40,113,41],256],9389:[[40,114,41],256],9390:[[40,115,41],256],9391:[[40,116,41],256],9392:[[40,117,41],256],9393:[[40,118,41],256],9394:[[40,119,41],256],9395:[[40,120,41],256],9396:[[40,121,41],256],9397:[[40,122,41],256],9398:[[65],256],9399:[[66],256],9400:[[67],256],9401:[[68],256],9402:[[69],256],9403:[[70],256],9404:[[71],256],9405:[[72],256],9406:[[73],256],9407:[[74],256],9408:[[75],256],9409:[[76],256],9410:[[77],256],9411:[[78],256],9412:[[79],256],9413:[[80],256],9414:[[81],256],9415:[[82],256],9416:[[83],256],9417:[[84],256],9418:[[85],256],9419:[[86],256],9420:[[87],256],9421:[[88],256],9422:[[89],256],9423:[[90],256],9424:[[97],256],9425:[[98],256],9426:[[99],256],9427:[[100],256],9428:[[101],256],9429:[[102],256],9430:[[103],256],9431:[[104],256],9432:[[105],256],9433:[[106],256],9434:[[107],256],9435:[[108],256],9436:[[109],256],9437:[[110],256],9438:[[111],256],9439:[[112],256],9440:[[113],256],9441:[[114],256],9442:[[115],256],9443:[[116],256],9444:[[117],256],9445:[[118],256],9446:[[119],256],9447:[[120],256],9448:[[121],256],9449:[[122],256],9450:[[48],256]},10752:{10764:[[8747,8747,8747,8747],256],10868:[[58,58,61],256],10869:[[61,61],256],10870:[[61,61,61],256],10972:[[10973,824],512]},11264:{11388:[[106],256],11389:[[86],256],11503:[,230],11504:[,230],11505:[,230]},11520:{11631:[[11617],256],11647:[,9],11744:[,230],11745:[,230],11746:[,230],11747:[,230],11748:[,230],11749:[,230],11750:[,230],11751:[,230],11752:[,230],11753:[,230],11754:[,230],11755:[,230],11756:[,230],11757:[,230],11758:[,230],11759:[,230],11760:[,230],11761:[,230],11762:[,230],11763:[,230],11764:[,230],11765:[,230],11766:[,230],11767:[,230],11768:[,230],11769:[,230],11770:[,230],11771:[,230],11772:[,230],11773:[,230],11774:[,230],11775:[,230]},11776:{11935:[[27597],256],12019:[[40863],256]},12032:{12032:[[19968],256],12033:[[20008],256],12034:[[20022],256],12035:[[20031],256],12036:[[20057],256],12037:[[20101],256],12038:[[20108],256],12039:[[20128],256],12040:[[20154],256],12041:[[20799],256],12042:[[20837],256],12043:[[20843],256],12044:[[20866],256],12045:[[20886],256],12046:[[20907],256],12047:[[20960],256],12048:[[20981],256],12049:[[20992],256],12050:[[21147],256],12051:[[21241],256],12052:[[21269],256],12053:[[21274],256],12054:[[21304],256],12055:[[21313],256],12056:[[21340],256],12057:[[21353],256],12058:[[21378],256],12059:[[21430],256],12060:[[21448],256],12061:[[21475],256],12062:[[22231],256],12063:[[22303],256],12064:[[22763],256],12065:[[22786],256],12066:[[22794],256],12067:[[22805],256],12068:[[22823],256],12069:[[22899],256],12070:[[23376],256],12071:[[23424],256],12072:[[23544],256],12073:[[23567],256],12074:[[23586],256],12075:[[23608],256],12076:[[23662],256],12077:[[23665],256],12078:[[24027],256],12079:[[24037],256],12080:[[24049],256],12081:[[24062],256],12082:[[24178],256],12083:[[24186],256],12084:[[24191],256],12085:[[24308],256],12086:[[24318],256],12087:[[24331],256],12088:[[24339],256],12089:[[24400],256],12090:[[24417],256],12091:[[24435],256],12092:[[24515],256],12093:[[25096],256],12094:[[25142],256],12095:[[25163],256],12096:[[25903],256],12097:[[25908],256],12098:[[25991],256],12099:[[26007],256],12100:[[26020],256],12101:[[26041],256],12102:[[26080],256],12103:[[26085],256],12104:[[26352],256],12105:[[26376],256],12106:[[26408],256],12107:[[27424],256],12108:[[27490],256],12109:[[27513],256],12110:[[27571],256],12111:[[27595],256],12112:[[27604],256],12113:[[27611],256],12114:[[27663],256],12115:[[27668],256],12116:[[27700],256],12117:[[28779],256],12118:[[29226],256],12119:[[29238],256],12120:[[29243],256],12121:[[29247],256],12122:[[29255],256],12123:[[29273],256],12124:[[29275],256],12125:[[29356],256],12126:[[29572],256],12127:[[29577],256],12128:[[29916],256],12129:[[29926],256],12130:[[29976],256],12131:[[29983],256],12132:[[29992],256],12133:[[3e4],256],12134:[[30091],256],12135:[[30098],256],12136:[[30326],256],12137:[[30333],256],12138:[[30382],256],12139:[[30399],256],12140:[[30446],256],12141:[[30683],256],12142:[[30690],256],12143:[[30707],256],12144:[[31034],256],12145:[[31160],256],12146:[[31166],256],12147:[[31348],256],12148:[[31435],256],12149:[[31481],256],12150:[[31859],256],12151:[[31992],256],12152:[[32566],256],12153:[[32593],256],12154:[[32650],256],12155:[[32701],256],12156:[[32769],256],12157:[[32780],256],12158:[[32786],256],12159:[[32819],256],12160:[[32895],256],12161:[[32905],256],12162:[[33251],256],12163:[[33258],256],12164:[[33267],256],12165:[[33276],256],12166:[[33292],256],12167:[[33307],256],12168:[[33311],256],12169:[[33390],256],12170:[[33394],256],12171:[[33400],256],12172:[[34381],256],12173:[[34411],256],12174:[[34880],256],12175:[[34892],256],12176:[[34915],256],12177:[[35198],256],12178:[[35211],256],12179:[[35282],256],12180:[[35328],256],12181:[[35895],256],12182:[[35910],256],12183:[[35925],256],12184:[[35960],256],12185:[[35997],256],12186:[[36196],256],12187:[[36208],256],12188:[[36275],256],12189:[[36523],256],12190:[[36554],256],12191:[[36763],256],12192:[[36784],256],12193:[[36789],256],12194:[[37009],256],12195:[[37193],256],12196:[[37318],256],12197:[[37324],256],12198:[[37329],256],12199:[[38263],256],12200:[[38272],256],12201:[[38428],256],12202:[[38582],256],12203:[[38585],256],12204:[[38632],256],12205:[[38737],256],12206:[[38750],256],12207:[[38754],256],12208:[[38761],256],12209:[[38859],256],12210:[[38893],256],12211:[[38899],256],12212:[[38913],256],12213:[[39080],256],12214:[[39131],256],12215:[[39135],256],12216:[[39318],256],12217:[[39321],256],12218:[[39340],256],12219:[[39592],256],12220:[[39640],256],12221:[[39647],256],12222:[[39717],256],12223:[[39727],256],12224:[[39730],256],12225:[[39740],256],12226:[[39770],256],12227:[[40165],256],12228:[[40565],256],12229:[[40575],256],12230:[[40613],256],12231:[[40635],256],12232:[[40643],256],12233:[[40653],256],12234:[[40657],256],12235:[[40697],256],12236:[[40701],256],12237:[[40718],256],12238:[[40723],256],12239:[[40736],256],12240:[[40763],256],12241:[[40778],256],12242:[[40786],256],12243:[[40845],256],12244:[[40860],256],12245:[[40864],256]},12288:{12288:[[32],256],12330:[,218],12331:[,228],12332:[,232],12333:[,222],12334:[,224],12335:[,224],12342:[[12306],256],12344:[[21313],256],12345:[[21316],256],12346:[[21317],256],12358:[,,{12441:12436}],12363:[,,{12441:12364}],12364:[[12363,12441]],12365:[,,{12441:12366}],12366:[[12365,12441]],12367:[,,{12441:12368}],12368:[[12367,12441]],12369:[,,{12441:12370}],12370:[[12369,12441]],12371:[,,{12441:12372}],12372:[[12371,12441]],12373:[,,{12441:12374}],12374:[[12373,12441]],12375:[,,{12441:12376}],12376:[[12375,12441]],12377:[,,{12441:12378}],12378:[[12377,12441]],12379:[,,{12441:12380}],12380:[[12379,12441]],12381:[,,{12441:12382}],12382:[[12381,12441]],12383:[,,{12441:12384}],12384:[[12383,12441]],12385:[,,{12441:12386}],12386:[[12385,12441]],12388:[,,{12441:12389}],12389:[[12388,12441]],12390:[,,{12441:12391}],12391:[[12390,12441]],12392:[,,{12441:12393}],12393:[[12392,12441]],12399:[,,{12441:12400,12442:12401}],12400:[[12399,12441]],12401:[[12399,12442]],12402:[,,{12441:12403,12442:12404}],12403:[[12402,12441]],12404:[[12402,12442]],12405:[,,{12441:12406,12442:12407}],12406:[[12405,12441]],12407:[[12405,12442]],12408:[,,{12441:12409,12442:12410}],12409:[[12408,12441]],12410:[[12408,12442]],12411:[,,{12441:12412,12442:12413}],12412:[[12411,12441]],12413:[[12411,12442]],12436:[[12358,12441]],12441:[,8],12442:[,8],12443:[[32,12441],256],12444:[[32,12442],256],12445:[,,{12441:12446}],12446:[[12445,12441]],12447:[[12424,12426],256],12454:[,,{12441:12532}],12459:[,,{12441:12460}],12460:[[12459,12441]],12461:[,,{12441:12462}],12462:[[12461,12441]],12463:[,,{12441:12464}],12464:[[12463,12441]],12465:[,,{12441:12466}],12466:[[12465,12441]],12467:[,,{12441:12468}],12468:[[12467,12441]],12469:[,,{12441:12470}],12470:[[12469,12441]],12471:[,,{12441:12472}],12472:[[12471,12441]],12473:[,,{12441:12474}],12474:[[12473,12441]],12475:[,,{12441:12476}],12476:[[12475,12441]],12477:[,,{12441:12478}],12478:[[12477,12441]],12479:[,,{12441:12480}],12480:[[12479,12441]],12481:[,,{12441:12482}],12482:[[12481,12441]],12484:[,,{12441:12485}],12485:[[12484,12441]],12486:[,,{12441:12487}],12487:[[12486,12441]],12488:[,,{12441:12489}],12489:[[12488,12441]],12495:[,,{12441:12496,12442:12497}],12496:[[12495,12441]],12497:[[12495,12442]],12498:[,,{12441:12499,12442:12500}],12499:[[12498,12441]],12500:[[12498,12442]],12501:[,,{12441:12502,12442:12503}],12502:[[12501,12441]],12503:[[12501,12442]],12504:[,,{12441:12505,12442:12506}],12505:[[12504,12441]],12506:[[12504,12442]],12507:[,,{12441:12508,12442:12509}],12508:[[12507,12441]],12509:[[12507,12442]],12527:[,,{12441:12535}],12528:[,,{12441:12536}],12529:[,,{12441:12537}],12530:[,,{12441:12538}],12532:[[12454,12441]],12535:[[12527,12441]],12536:[[12528,12441]],12537:[[12529,12441]],12538:[[12530,12441]],12541:[,,{12441:12542}],12542:[[12541,12441]],12543:[[12467,12488],256]},12544:{12593:[[4352],256],12594:[[4353],256],12595:[[4522],256],12596:[[4354],256],12597:[[4524],256],12598:[[4525],256],12599:[[4355],256],12600:[[4356],256],12601:[[4357],256],12602:[[4528],256],12603:[[4529],256],12604:[[4530],256],12605:[[4531],256],12606:[[4532],256],12607:[[4533],256],12608:[[4378],256],12609:[[4358],256],12610:[[4359],256],12611:[[4360],256],12612:[[4385],256],12613:[[4361],256],12614:[[4362],256],12615:[[4363],256],12616:[[4364],256],12617:[[4365],256],12618:[[4366],256],12619:[[4367],256],12620:[[4368],256],12621:[[4369],256],12622:[[4370],256],12623:[[4449],256],12624:[[4450],256],12625:[[4451],256],12626:[[4452],256],12627:[[4453],256],12628:[[4454],256],12629:[[4455],256],12630:[[4456],256],12631:[[4457],256],12632:[[4458],256],12633:[[4459],256],12634:[[4460],256],12635:[[4461],256],12636:[[4462],256],12637:[[4463],256],12638:[[4464],256],12639:[[4465],256],12640:[[4466],256],12641:[[4467],256],12642:[[4468],256],12643:[[4469],256],12644:[[4448],256],12645:[[4372],256],12646:[[4373],256],12647:[[4551],256],12648:[[4552],256],12649:[[4556],256],12650:[[4558],256],12651:[[4563],256],12652:[[4567],256],12653:[[4569],256],12654:[[4380],256],12655:[[4573],256],12656:[[4575],256],12657:[[4381],256],12658:[[4382],256],12659:[[4384],256],12660:[[4386],256],12661:[[4387],256],12662:[[4391],256],12663:[[4393],256],12664:[[4395],256],12665:[[4396],256],12666:[[4397],256],12667:[[4398],256],12668:[[4399],256],12669:[[4402],256],12670:[[4406],256],12671:[[4416],256],12672:[[4423],256],12673:[[4428],256],12674:[[4593],256],12675:[[4594],256],12676:[[4439],256],12677:[[4440],256],12678:[[4441],256],12679:[[4484],256],12680:[[4485],256],12681:[[4488],256],12682:[[4497],256],12683:[[4498],256],12684:[[4500],256],12685:[[4510],256],12686:[[4513],256],12690:[[19968],256],12691:[[20108],256],12692:[[19977],256],12693:[[22235],256],12694:[[19978],256],12695:[[20013],256],12696:[[19979],256],12697:[[30002],256],12698:[[20057],256],12699:[[19993],256],12700:[[19969],256],12701:[[22825],256],12702:[[22320],256],12703:[[20154],256]},12800:{12800:[[40,4352,41],256],12801:[[40,4354,41],256],12802:[[40,4355,41],256],12803:[[40,4357,41],256],12804:[[40,4358,41],256],12805:[[40,4359,41],256],12806:[[40,4361,41],256],12807:[[40,4363,41],256],12808:[[40,4364,41],256],12809:[[40,4366,41],256],12810:[[40,4367,41],256],12811:[[40,4368,41],256],12812:[[40,4369,41],256],12813:[[40,4370,41],256],12814:[[40,4352,4449,41],256],12815:[[40,4354,4449,41],256],12816:[[40,4355,4449,41],256],12817:[[40,4357,4449,41],256],12818:[[40,4358,4449,41],256],12819:[[40,4359,4449,41],256],12820:[[40,4361,4449,41],256],12821:[[40,4363,4449,41],256],12822:[[40,4364,4449,41],256],12823:[[40,4366,4449,41],256],12824:[[40,4367,4449,41],256],12825:[[40,4368,4449,41],256],12826:[[40,4369,4449,41],256],12827:[[40,4370,4449,41],256],12828:[[40,4364,4462,41],256],12829:[[40,4363,4457,4364,4453,4523,41],256],12830:[[40,4363,4457,4370,4462,41],256],12832:[[40,19968,41],256],12833:[[40,20108,41],256],12834:[[40,19977,41],256],12835:[[40,22235,41],256],12836:[[40,20116,41],256],12837:[[40,20845,41],256],12838:[[40,19971,41],256],12839:[[40,20843,41],256],12840:[[40,20061,41],256],12841:[[40,21313,41],256],12842:[[40,26376,41],256],12843:[[40,28779,41],256],12844:[[40,27700,41],256],12845:[[40,26408,41],256],12846:[[40,37329,41],256],12847:[[40,22303,41],256],12848:[[40,26085,41],256],12849:[[40,26666,41],256],12850:[[40,26377,41],256],12851:[[40,31038,41],256],12852:[[40,21517,41],256],12853:[[40,29305,41],256],12854:[[40,36001,41],256],12855:[[40,31069,41],256],12856:[[40,21172,41],256],12857:[[40,20195,41],256],12858:[[40,21628,41],256],12859:[[40,23398,41],256],12860:[[40,30435,41],256],12861:[[40,20225,41],256],12862:[[40,36039,41],256],12863:[[40,21332,41],256],12864:[[40,31085,41],256],12865:[[40,20241,41],256],12866:[[40,33258,41],256],12867:[[40,33267,41],256],12868:[[21839],256],12869:[[24188],256],12870:[[25991],256],12871:[[31631],256],12880:[[80,84,69],256],12881:[[50,49],256],12882:[[50,50],256],12883:[[50,51],256],12884:[[50,52],256],12885:[[50,53],256],12886:[[50,54],256],12887:[[50,55],256],12888:[[50,56],256],12889:[[50,57],256],12890:[[51,48],256],12891:[[51,49],256],12892:[[51,50],256],12893:[[51,51],256],12894:[[51,52],256],12895:[[51,53],256],12896:[[4352],256],12897:[[4354],256],12898:[[4355],256],12899:[[4357],256],12900:[[4358],256],12901:[[4359],256],12902:[[4361],256],12903:[[4363],256],12904:[[4364],256],12905:[[4366],256],12906:[[4367],256],12907:[[4368],256],12908:[[4369],256],12909:[[4370],256],12910:[[4352,4449],256],12911:[[4354,4449],256],12912:[[4355,4449],256],12913:[[4357,4449],256],12914:[[4358,4449],256],12915:[[4359,4449],256],12916:[[4361,4449],256],12917:[[4363,4449],256],12918:[[4364,4449],256],12919:[[4366,4449],256],12920:[[4367,4449],256],12921:[[4368,4449],256],12922:[[4369,4449],256],12923:[[4370,4449],256],12924:[[4366,4449,4535,4352,4457],256],12925:[[4364,4462,4363,4468],256],12926:[[4363,4462],256],12928:[[19968],256],12929:[[20108],256],12930:[[19977],256],12931:[[22235],256],12932:[[20116],256],12933:[[20845],256],12934:[[19971],256],12935:[[20843],256],12936:[[20061],256],12937:[[21313],256],12938:[[26376],256],12939:[[28779],256],12940:[[27700],256],12941:[[26408],256],12942:[[37329],256],12943:[[22303],256],12944:[[26085],256],12945:[[26666],256],12946:[[26377],256],12947:[[31038],256],12948:[[21517],256],12949:[[29305],256],12950:[[36001],256],12951:[[31069],256],12952:[[21172],256],12953:[[31192],256],12954:[[30007],256],12955:[[22899],256],12956:[[36969],256],12957:[[20778],256],12958:[[21360],256],12959:[[27880],256],12960:[[38917],256],12961:[[20241],256],12962:[[20889],256],12963:[[27491],256],12964:[[19978],256],12965:[[20013],256],12966:[[19979],256],12967:[[24038],256],12968:[[21491],256],12969:[[21307],256],12970:[[23447],256],12971:[[23398],256],12972:[[30435],256],12973:[[20225],256],12974:[[36039],256],12975:[[21332],256],12976:[[22812],256],12977:[[51,54],256],12978:[[51,55],256],12979:[[51,56],256],12980:[[51,57],256],12981:[[52,48],256],12982:[[52,49],256],12983:[[52,50],256],12984:[[52,51],256],12985:[[52,52],256],12986:[[52,53],256],12987:[[52,54],256],12988:[[52,55],256],12989:[[52,56],256],12990:[[52,57],256],12991:[[53,48],256],12992:[[49,26376],256],12993:[[50,26376],256],12994:[[51,26376],256],12995:[[52,26376],256],12996:[[53,26376],256],12997:[[54,26376],256],12998:[[55,26376],256],12999:[[56,26376],256],13e3:[[57,26376],256],13001:[[49,48,26376],256],13002:[[49,49,26376],256],13003:[[49,50,26376],256],13004:[[72,103],256],13005:[[101,114,103],256],13006:[[101,86],256],13007:[[76,84,68],256],13008:[[12450],256],13009:[[12452],256],13010:[[12454],256],13011:[[12456],256],13012:[[12458],256],13013:[[12459],256],13014:[[12461],256],13015:[[12463],256],13016:[[12465],256],13017:[[12467],256],13018:[[12469],256],13019:[[12471],256],13020:[[12473],256],13021:[[12475],256],13022:[[12477],256],13023:[[12479],256],13024:[[12481],256],13025:[[12484],256],13026:[[12486],256],13027:[[12488],256],13028:[[12490],256],13029:[[12491],256],13030:[[12492],256],13031:[[12493],256],13032:[[12494],256],13033:[[12495],256],13034:[[12498],256],13035:[[12501],256],13036:[[12504],256],13037:[[12507],256],13038:[[12510],256],13039:[[12511],256],13040:[[12512],256],13041:[[12513],256],13042:[[12514],256],13043:[[12516],256],13044:[[12518],256],13045:[[12520],256],13046:[[12521],256],13047:[[12522],256],13048:[[12523],256],13049:[[12524],256],13050:[[12525],256],13051:[[12527],256],13052:[[12528],256],13053:[[12529],256],13054:[[12530],256]},13056:{13056:[[12450,12497,12540,12488],256],13057:[[12450,12523,12501,12449],256],13058:[[12450,12531,12506,12450],256],13059:[[12450,12540,12523],256],13060:[[12452,12491,12531,12464],256],13061:[[12452,12531,12481],256],13062:[[12454,12457,12531],256],13063:[[12456,12473,12463,12540,12489],256],13064:[[12456,12540,12459,12540],256],13065:[[12458,12531,12473],256],13066:[[12458,12540,12512],256],13067:[[12459,12452,12522],256],13068:[[12459,12521,12483,12488],256],13069:[[12459,12525,12522,12540],256],13070:[[12460,12525,12531],256],13071:[[12460,12531,12510],256],13072:[[12462,12460],256],13073:[[12462,12491,12540],256],13074:[[12461,12517,12522,12540],256],13075:[[12462,12523,12480,12540],256],13076:[[12461,12525],256],13077:[[12461,12525,12464,12521,12512],256],13078:[[12461,12525,12513,12540,12488,12523],256],13079:[[12461,12525,12527,12483,12488],256],13080:[[12464,12521,12512],256],13081:[[12464,12521,12512,12488,12531],256],13082:[[12463,12523,12476,12452,12525],256],13083:[[12463,12525,12540,12493],256],13084:[[12465,12540,12473],256],13085:[[12467,12523,12490],256],13086:[[12467,12540,12509],256],13087:[[12469,12452,12463,12523],256],13088:[[12469,12531,12481,12540,12512],256],13089:[[12471,12522,12531,12464],256],13090:[[12475,12531,12481],256],13091:[[12475,12531,12488],256],13092:[[12480,12540,12473],256],13093:[[12487,12471],256],13094:[[12489,12523],256],13095:[[12488,12531],256],13096:[[12490,12494],256],13097:[[12494,12483,12488],256],13098:[[12495,12452,12484],256],13099:[[12497,12540,12475,12531,12488],256],13100:[[12497,12540,12484],256],13101:[[12496,12540,12524,12523],256],13102:[[12500,12450,12473,12488,12523],256],13103:[[12500,12463,12523],256],13104:[[12500,12467],256],13105:[[12499,12523],256],13106:[[12501,12449,12521,12483,12489],256],13107:[[12501,12451,12540,12488],256],13108:[[12502,12483,12471,12455,12523],256],13109:[[12501,12521,12531],256],13110:[[12504,12463,12479,12540,12523],256],13111:[[12506,12477],256],13112:[[12506,12491,12498],256],13113:[[12504,12523,12484],256],13114:[[12506,12531,12473],256],13115:[[12506,12540,12472],256],13116:[[12505,12540,12479],256],13117:[[12509,12452,12531,12488],256],13118:[[12508,12523,12488],256],13119:[[12507,12531],256],13120:[[12509,12531,12489],256],13121:[[12507,12540,12523],256],13122:[[12507,12540,12531],256],13123:[[12510,12452,12463,12525],256],13124:[[12510,12452,12523],256],13125:[[12510,12483,12495],256],13126:[[12510,12523,12463],256],13127:[[12510,12531,12471,12519,12531],256],13128:[[12511,12463,12525,12531],256],13129:[[12511,12522],256],13130:[[12511,12522,12496,12540,12523],256],13131:[[12513,12460],256],13132:[[12513,12460,12488,12531],256],13133:[[12513,12540,12488,12523],256],13134:[[12516,12540,12489],256],13135:[[12516,12540,12523],256],13136:[[12518,12450,12531],256],13137:[[12522,12483,12488,12523],256],13138:[[12522,12521],256],13139:[[12523,12500,12540],256],13140:[[12523,12540,12502,12523],256],13141:[[12524,12512],256],13142:[[12524,12531,12488,12466,12531],256],13143:[[12527,12483,12488],256],13144:[[48,28857],256],13145:[[49,28857],256],13146:[[50,28857],256],13147:[[51,28857],256],13148:[[52,28857],256],13149:[[53,28857],256],13150:[[54,28857],256],13151:[[55,28857],256],13152:[[56,28857],256],13153:[[57,28857],256],13154:[[49,48,28857],256],13155:[[49,49,28857],256],13156:[[49,50,28857],256],13157:[[49,51,28857],256],13158:[[49,52,28857],256],13159:[[49,53,28857],256],13160:[[49,54,28857],256],13161:[[49,55,28857],256],13162:[[49,56,28857],256],13163:[[49,57,28857],256],13164:[[50,48,28857],256],13165:[[50,49,28857],256],13166:[[50,50,28857],256],13167:[[50,51,28857],256],13168:[[50,52,28857],256],13169:[[104,80,97],256],13170:[[100,97],256],13171:[[65,85],256],13172:[[98,97,114],256],13173:[[111,86],256],13174:[[112,99],256],13175:[[100,109],256],13176:[[100,109,178],256],13177:[[100,109,179],256],13178:[[73,85],256],13179:[[24179,25104],256],13180:[[26157,21644],256],13181:[[22823,27491],256],13182:[[26126,27835],256],13183:[[26666,24335,20250,31038],256],13184:[[112,65],256],13185:[[110,65],256],13186:[[956,65],256],13187:[[109,65],256],13188:[[107,65],256],13189:[[75,66],256],13190:[[77,66],256],13191:[[71,66],256],13192:[[99,97,108],256],13193:[[107,99,97,108],256],13194:[[112,70],256],13195:[[110,70],256],13196:[[956,70],256],13197:[[956,103],256],13198:[[109,103],256],13199:[[107,103],256],13200:[[72,122],256],13201:[[107,72,122],256],13202:[[77,72,122],256],13203:[[71,72,122],256],13204:[[84,72,122],256],13205:[[956,8467],256],13206:[[109,8467],256],13207:[[100,8467],256],13208:[[107,8467],256],13209:[[102,109],256],13210:[[110,109],256],13211:[[956,109],256],13212:[[109,109],256],13213:[[99,109],256],13214:[[107,109],256],13215:[[109,109,178],256],13216:[[99,109,178],256],13217:[[109,178],256],13218:[[107,109,178],256],13219:[[109,109,179],256],13220:[[99,109,179],256],13221:[[109,179],256],13222:[[107,109,179],256],13223:[[109,8725,115],256],13224:[[109,8725,115,178],256],13225:[[80,97],256],13226:[[107,80,97],256],13227:[[77,80,97],256],13228:[[71,80,97],256],13229:[[114,97,100],256],13230:[[114,97,100,8725,115],256],13231:[[114,97,100,8725,115,178],256],13232:[[112,115],256],13233:[[110,115],256],13234:[[956,115],256],13235:[[109,115],256],13236:[[112,86],256],13237:[[110,86],256],13238:[[956,86],256],13239:[[109,86],256],13240:[[107,86],256],13241:[[77,86],256],13242:[[112,87],256],13243:[[110,87],256],13244:[[956,87],256],13245:[[109,87],256],13246:[[107,87],256],13247:[[77,87],256],13248:[[107,937],256],13249:[[77,937],256],13250:[[97,46,109,46],256],13251:[[66,113],256],13252:[[99,99],256],13253:[[99,100],256],13254:[[67,8725,107,103],256],13255:[[67,111,46],256],13256:[[100,66],256],13257:[[71,121],256],13258:[[104,97],256],13259:[[72,80],256],13260:[[105,110],256],13261:[[75,75],256],13262:[[75,77],256],13263:[[107,116],256],13264:[[108,109],256],13265:[[108,110],256],13266:[[108,111,103],256],13267:[[108,120],256],13268:[[109,98],256],13269:[[109,105,108],256],13270:[[109,111,108],256],13271:[[80,72],256],13272:[[112,46,109,46],256],13273:[[80,80,77],256],13274:[[80,82],256],13275:[[115,114],256],13276:[[83,118],256],13277:[[87,98],256],13278:[[86,8725,109],256],13279:[[65,8725,109],256],13280:[[49,26085],256],13281:[[50,26085],256],13282:[[51,26085],256],13283:[[52,26085],256],13284:[[53,26085],256],13285:[[54,26085],256],13286:[[55,26085],256],13287:[[56,26085],256],13288:[[57,26085],256],13289:[[49,48,26085],256],13290:[[49,49,26085],256],13291:[[49,50,26085],256],13292:[[49,51,26085],256],13293:[[49,52,26085],256],13294:[[49,53,26085],256],13295:[[49,54,26085],256],13296:[[49,55,26085],256],13297:[[49,56,26085],256],13298:[[49,57,26085],256],13299:[[50,48,26085],256],13300:[[50,49,26085],256],13301:[[50,50,26085],256],13302:[[50,51,26085],256],13303:[[50,52,26085],256],13304:[[50,53,26085],256],13305:[[50,54,26085],256],13306:[[50,55,26085],256],13307:[[50,56,26085],256],13308:[[50,57,26085],256],13309:[[51,48,26085],256],13310:[[51,49,26085],256],13311:[[103,97,108],256]},27136:{92912:[,1],92913:[,1],92914:[,1],92915:[,1],92916:[,1]},27392:{92976:[,230],92977:[,230],92978:[,230],92979:[,230],92980:[,230],92981:[,230],92982:[,230]},42496:{42607:[,230],42612:[,230],42613:[,230],42614:[,230],42615:[,230],42616:[,230],42617:[,230],42618:[,230],42619:[,230],42620:[,230],42621:[,230],42652:[[1098],256],42653:[[1100],256],42655:[,230],42736:[,230],42737:[,230]},42752:{42864:[[42863],256],43e3:[[294],256],43001:[[339],256]},43008:{43014:[,9],43204:[,9],43232:[,230],43233:[,230],43234:[,230],43235:[,230],43236:[,230],43237:[,230],43238:[,230],43239:[,230],43240:[,230],43241:[,230],43242:[,230],43243:[,230],43244:[,230],43245:[,230],43246:[,230],43247:[,230],43248:[,230],43249:[,230]},43264:{43307:[,220],43308:[,220],43309:[,220],43347:[,9],43443:[,7],43456:[,9]},43520:{43696:[,230],43698:[,230],43699:[,230],43700:[,220],43703:[,230],43704:[,230],43710:[,230],43711:[,230],43713:[,230],43766:[,9]},43776:{43868:[[42791],256],43869:[[43831],256],43870:[[619],256],43871:[[43858],256],44013:[,9]},48128:{113822:[,1]},53504:{119134:[[119127,119141],512],119135:[[119128,119141],512],119136:[[119135,119150],512],119137:[[119135,119151],512],119138:[[119135,119152],512],119139:[[119135,119153],512],119140:[[119135,119154],512],119141:[,216],119142:[,216],119143:[,1],119144:[,1],119145:[,1],119149:[,226],119150:[,216],119151:[,216],119152:[,216],119153:[,216],119154:[,216],119163:[,220],119164:[,220],119165:[,220],119166:[,220],119167:[,220],119168:[,220],119169:[,220],119170:[,220],119173:[,230],119174:[,230],119175:[,230],119176:[,230],119177:[,230],119178:[,220],119179:[,220],119210:[,230],119211:[,230],119212:[,230],119213:[,230],119227:[[119225,119141],512],119228:[[119226,119141],512],119229:[[119227,119150],512],119230:[[119228,119150],512],119231:[[119227,119151],512],119232:[[119228,119151],512]},53760:{119362:[,230],119363:[,230],119364:[,230]},54272:{119808:[[65],256],119809:[[66],256],119810:[[67],256],119811:[[68],256],119812:[[69],256],119813:[[70],256],119814:[[71],256],119815:[[72],256],119816:[[73],256],119817:[[74],256],119818:[[75],256],119819:[[76],256],119820:[[77],256],119821:[[78],256],119822:[[79],256],119823:[[80],256],119824:[[81],256],119825:[[82],256],119826:[[83],256],119827:[[84],256],119828:[[85],256],119829:[[86],256],119830:[[87],256],119831:[[88],256],119832:[[89],256],119833:[[90],256],119834:[[97],256],119835:[[98],256],119836:[[99],256],119837:[[100],256],119838:[[101],256],119839:[[102],256],119840:[[103],256],119841:[[104],256],119842:[[105],256],119843:[[106],256],119844:[[107],256],119845:[[108],256],119846:[[109],256],119847:[[110],256],119848:[[111],256],119849:[[112],256],119850:[[113],256],119851:[[114],256],119852:[[115],256],119853:[[116],256],119854:[[117],256],119855:[[118],256],119856:[[119],256],119857:[[120],256],119858:[[121],256],119859:[[122],256],119860:[[65],256],119861:[[66],256],119862:[[67],256],119863:[[68],256],119864:[[69],256],119865:[[70],256],119866:[[71],256],119867:[[72],256],119868:[[73],256],119869:[[74],256],119870:[[75],256],119871:[[76],256],119872:[[77],256],119873:[[78],256],119874:[[79],256],119875:[[80],256],119876:[[81],256],119877:[[82],256],119878:[[83],256],119879:[[84],256],119880:[[85],256],119881:[[86],256],119882:[[87],256],119883:[[88],256],119884:[[89],256],119885:[[90],256],119886:[[97],256],119887:[[98],256],119888:[[99],256],119889:[[100],256],119890:[[101],256],119891:[[102],256],119892:[[103],256],119894:[[105],256],119895:[[106],256],119896:[[107],256],119897:[[108],256],119898:[[109],256],119899:[[110],256],119900:[[111],256],119901:[[112],256],119902:[[113],256],119903:[[114],256],119904:[[115],256],119905:[[116],256],119906:[[117],256],119907:[[118],256],119908:[[119],256],119909:[[120],256],119910:[[121],256],119911:[[122],256],119912:[[65],256],119913:[[66],256],119914:[[67],256],119915:[[68],256],119916:[[69],256],119917:[[70],256],119918:[[71],256],119919:[[72],256],119920:[[73],256],119921:[[74],256],119922:[[75],256],119923:[[76],256],119924:[[77],256],119925:[[78],256],119926:[[79],256],119927:[[80],256],119928:[[81],256],119929:[[82],256],119930:[[83],256],119931:[[84],256],119932:[[85],256],119933:[[86],256],119934:[[87],256],119935:[[88],256],119936:[[89],256],119937:[[90],256],119938:[[97],256],119939:[[98],256],119940:[[99],256],119941:[[100],256],119942:[[101],256],119943:[[102],256],119944:[[103],256],119945:[[104],256],119946:[[105],256],119947:[[106],256],119948:[[107],256],119949:[[108],256],119950:[[109],256],119951:[[110],256],119952:[[111],256],119953:[[112],256],119954:[[113],256],119955:[[114],256],119956:[[115],256],119957:[[116],256],119958:[[117],256],119959:[[118],256],119960:[[119],256],119961:[[120],256],119962:[[121],256],119963:[[122],256],119964:[[65],256],119966:[[67],256],119967:[[68],256],119970:[[71],256],119973:[[74],256],119974:[[75],256],119977:[[78],256],119978:[[79],256],119979:[[80],256],119980:[[81],256],119982:[[83],256],119983:[[84],256],119984:[[85],256],119985:[[86],256],119986:[[87],256],119987:[[88],256],119988:[[89],256],119989:[[90],256],119990:[[97],256],119991:[[98],256],119992:[[99],256],119993:[[100],256],119995:[[102],256],119997:[[104],256],119998:[[105],256],119999:[[106],256],12e4:[[107],256],120001:[[108],256],120002:[[109],256],120003:[[110],256],120005:[[112],256],120006:[[113],256],120007:[[114],256],120008:[[115],256],120009:[[116],256],120010:[[117],256],120011:[[118],256],120012:[[119],256],120013:[[120],256],120014:[[121],256],120015:[[122],256],120016:[[65],256],120017:[[66],256],120018:[[67],256],120019:[[68],256],120020:[[69],256],120021:[[70],256],120022:[[71],256],120023:[[72],256],120024:[[73],256],120025:[[74],256],120026:[[75],256],120027:[[76],256],120028:[[77],256],120029:[[78],256],120030:[[79],256],120031:[[80],256],120032:[[81],256],120033:[[82],256],120034:[[83],256],120035:[[84],256],120036:[[85],256],120037:[[86],256],120038:[[87],256],120039:[[88],256],120040:[[89],256],120041:[[90],256],120042:[[97],256],120043:[[98],256],120044:[[99],256],120045:[[100],256],120046:[[101],256],120047:[[102],256],120048:[[103],256],120049:[[104],256],120050:[[105],256],120051:[[106],256],120052:[[107],256],120053:[[108],256],120054:[[109],256],120055:[[110],256],120056:[[111],256],120057:[[112],256],120058:[[113],256],120059:[[114],256],120060:[[115],256],120061:[[116],256],120062:[[117],256],120063:[[118],256]},54528:{120064:[[119],256],120065:[[120],256],120066:[[121],256],120067:[[122],256],120068:[[65],256],120069:[[66],256],120071:[[68],256],120072:[[69],256],120073:[[70],256],120074:[[71],256],120077:[[74],256],120078:[[75],256],120079:[[76],256],120080:[[77],256],120081:[[78],256],120082:[[79],256],120083:[[80],256],120084:[[81],256],120086:[[83],256],120087:[[84],256],120088:[[85],256],120089:[[86],256],120090:[[87],256],120091:[[88],256],120092:[[89],256],120094:[[97],256],120095:[[98],256],120096:[[99],256],120097:[[100],256],120098:[[101],256],120099:[[102],256],120100:[[103],256],120101:[[104],256],120102:[[105],256],120103:[[106],256],120104:[[107],256],120105:[[108],256],120106:[[109],256],120107:[[110],256],120108:[[111],256],120109:[[112],256],120110:[[113],256],120111:[[114],256],120112:[[115],256],120113:[[116],256],120114:[[117],256],120115:[[118],256],120116:[[119],256],120117:[[120],256],120118:[[121],256],120119:[[122],256],120120:[[65],256],120121:[[66],256],120123:[[68],256],120124:[[69],256],120125:[[70],256],120126:[[71],256],120128:[[73],256],120129:[[74],256],120130:[[75],256],120131:[[76],256],120132:[[77],256],120134:[[79],256],120138:[[83],256],120139:[[84],256],120140:[[85],256],120141:[[86],256],120142:[[87],256],120143:[[88],256],120144:[[89],256],120146:[[97],256],120147:[[98],256],120148:[[99],256],120149:[[100],256],120150:[[101],256],120151:[[102],256],120152:[[103],256],120153:[[104],256],120154:[[105],256],120155:[[106],256],120156:[[107],256],120157:[[108],256],120158:[[109],256],120159:[[110],256],120160:[[111],256],120161:[[112],256],120162:[[113],256],120163:[[114],256],120164:[[115],256],120165:[[116],256],120166:[[117],256],120167:[[118],256],120168:[[119],256],120169:[[120],256],120170:[[121],256],120171:[[122],256],120172:[[65],256],120173:[[66],256],120174:[[67],256],120175:[[68],256],120176:[[69],256],120177:[[70],256],120178:[[71],256],120179:[[72],256],120180:[[73],256],120181:[[74],256],120182:[[75],256],120183:[[76],256],120184:[[77],256],120185:[[78],256],120186:[[79],256],120187:[[80],256],120188:[[81],256],120189:[[82],256],120190:[[83],256],120191:[[84],256],120192:[[85],256],120193:[[86],256],120194:[[87],256],120195:[[88],256],120196:[[89],256],120197:[[90],256],120198:[[97],256],120199:[[98],256],120200:[[99],256],120201:[[100],256],120202:[[101],256],120203:[[102],256],120204:[[103],256],120205:[[104],256],120206:[[105],256],120207:[[106],256],120208:[[107],256],120209:[[108],256],120210:[[109],256],120211:[[110],256],120212:[[111],256],120213:[[112],256],120214:[[113],256],120215:[[114],256],120216:[[115],256],120217:[[116],256],120218:[[117],256],120219:[[118],256],120220:[[119],256],120221:[[120],256],120222:[[121],256],120223:[[122],256],120224:[[65],256],120225:[[66],256],120226:[[67],256],120227:[[68],256],120228:[[69],256],120229:[[70],256],120230:[[71],256],120231:[[72],256],120232:[[73],256],120233:[[74],256],120234:[[75],256],120235:[[76],256],120236:[[77],256],120237:[[78],256],120238:[[79],256],120239:[[80],256],120240:[[81],256],120241:[[82],256],120242:[[83],256],120243:[[84],256],120244:[[85],256],120245:[[86],256],120246:[[87],256],120247:[[88],256],120248:[[89],256],120249:[[90],256],120250:[[97],256],120251:[[98],256],120252:[[99],256],120253:[[100],256],120254:[[101],256],120255:[[102],256],120256:[[103],256],120257:[[104],256],120258:[[105],256],120259:[[106],256],120260:[[107],256],120261:[[108],256],120262:[[109],256],120263:[[110],256],120264:[[111],256],120265:[[112],256],120266:[[113],256],120267:[[114],256],120268:[[115],256],120269:[[116],256],120270:[[117],256],120271:[[118],256],120272:[[119],256],120273:[[120],256],120274:[[121],256],120275:[[122],256],120276:[[65],256],120277:[[66],256],120278:[[67],256],120279:[[68],256],120280:[[69],256],120281:[[70],256],120282:[[71],256],120283:[[72],256],120284:[[73],256],120285:[[74],256],120286:[[75],256],120287:[[76],256],120288:[[77],256],120289:[[78],256],120290:[[79],256],120291:[[80],256],120292:[[81],256],120293:[[82],256],120294:[[83],256],120295:[[84],256],120296:[[85],256],120297:[[86],256],120298:[[87],256],120299:[[88],256],120300:[[89],256],120301:[[90],256],120302:[[97],256],120303:[[98],256],120304:[[99],256],120305:[[100],256],120306:[[101],256],120307:[[102],256],120308:[[103],256],120309:[[104],256],120310:[[105],256],120311:[[106],256],120312:[[107],256],120313:[[108],256],120314:[[109],256],120315:[[110],256],120316:[[111],256],120317:[[112],256],120318:[[113],256],120319:[[114],256]},54784:{120320:[[115],256],120321:[[116],256],120322:[[117],256],120323:[[118],256],120324:[[119],256],120325:[[120],256],120326:[[121],256],120327:[[122],256],120328:[[65],256],120329:[[66],256],120330:[[67],256],120331:[[68],256],120332:[[69],256],120333:[[70],256],120334:[[71],256],120335:[[72],256],120336:[[73],256],120337:[[74],256],120338:[[75],256],120339:[[76],256],120340:[[77],256],120341:[[78],256],120342:[[79],256],120343:[[80],256],120344:[[81],256],120345:[[82],256],120346:[[83],256],120347:[[84],256],120348:[[85],256],120349:[[86],256],120350:[[87],256],120351:[[88],256],120352:[[89],256],120353:[[90],256],120354:[[97],256],120355:[[98],256],120356:[[99],256],120357:[[100],256],120358:[[101],256],120359:[[102],256],120360:[[103],256],120361:[[104],256],120362:[[105],256],120363:[[106],256],120364:[[107],256],120365:[[108],256],120366:[[109],256],120367:[[110],256],120368:[[111],256],120369:[[112],256],120370:[[113],256],120371:[[114],256],120372:[[115],256],120373:[[116],256],120374:[[117],256],120375:[[118],256],120376:[[119],256],120377:[[120],256],120378:[[121],256],120379:[[122],256],120380:[[65],256],120381:[[66],256],120382:[[67],256],120383:[[68],256],120384:[[69],256],120385:[[70],256],120386:[[71],256],120387:[[72],256],120388:[[73],256],120389:[[74],256],120390:[[75],256],120391:[[76],256],120392:[[77],256],120393:[[78],256],120394:[[79],256],120395:[[80],256],120396:[[81],256],120397:[[82],256],120398:[[83],256],120399:[[84],256],120400:[[85],256],120401:[[86],256],120402:[[87],256],120403:[[88],256],120404:[[89],256],120405:[[90],256],120406:[[97],256],120407:[[98],256],120408:[[99],256],120409:[[100],256],120410:[[101],256],120411:[[102],256],120412:[[103],256],120413:[[104],256],120414:[[105],256],120415:[[106],256],120416:[[107],256],120417:[[108],256],120418:[[109],256],120419:[[110],256],120420:[[111],256],120421:[[112],256],120422:[[113],256],120423:[[114],256],120424:[[115],256],120425:[[116],256],120426:[[117],256],120427:[[118],256],120428:[[119],256],120429:[[120],256],120430:[[121],256],120431:[[122],256],120432:[[65],256],120433:[[66],256],120434:[[67],256],120435:[[68],256],120436:[[69],256],120437:[[70],256],120438:[[71],256],120439:[[72],256],120440:[[73],256],120441:[[74],256],120442:[[75],256],120443:[[76],256],120444:[[77],256],120445:[[78],256],120446:[[79],256],120447:[[80],256],120448:[[81],256],120449:[[82],256],120450:[[83],256],120451:[[84],256],120452:[[85],256],120453:[[86],256],120454:[[87],256],120455:[[88],256],120456:[[89],256],120457:[[90],256],120458:[[97],256],120459:[[98],256],120460:[[99],256],120461:[[100],256],120462:[[101],256],120463:[[102],256],120464:[[103],256],120465:[[104],256],120466:[[105],256],120467:[[106],256],120468:[[107],256],120469:[[108],256],120470:[[109],256],120471:[[110],256],120472:[[111],256],120473:[[112],256],120474:[[113],256],120475:[[114],256],120476:[[115],256],120477:[[116],256],120478:[[117],256],120479:[[118],256],120480:[[119],256],120481:[[120],256],120482:[[121],256],120483:[[122],256],120484:[[305],256],120485:[[567],256],120488:[[913],256],120489:[[914],256],120490:[[915],256],120491:[[916],256],120492:[[917],256],120493:[[918],256],120494:[[919],256],120495:[[920],256],120496:[[921],256],120497:[[922],256],120498:[[923],256],120499:[[924],256],120500:[[925],256],120501:[[926],256],120502:[[927],256],120503:[[928],256],120504:[[929],256],120505:[[1012],256],120506:[[931],256],120507:[[932],256],120508:[[933],256],120509:[[934],256],120510:[[935],256],120511:[[936],256],120512:[[937],256],120513:[[8711],256],120514:[[945],256],120515:[[946],256],120516:[[947],256],120517:[[948],256],120518:[[949],256],120519:[[950],256],120520:[[951],256],120521:[[952],256],120522:[[953],256],120523:[[954],256],120524:[[955],256],120525:[[956],256],120526:[[957],256],120527:[[958],256],120528:[[959],256],120529:[[960],256],120530:[[961],256],120531:[[962],256],120532:[[963],256],120533:[[964],256],120534:[[965],256],120535:[[966],256],120536:[[967],256],120537:[[968],256],120538:[[969],256],120539:[[8706],256],120540:[[1013],256],120541:[[977],256],120542:[[1008],256],120543:[[981],256],120544:[[1009],256],120545:[[982],256],120546:[[913],256],120547:[[914],256],120548:[[915],256],120549:[[916],256],120550:[[917],256],120551:[[918],256],120552:[[919],256],120553:[[920],256],120554:[[921],256],120555:[[922],256],120556:[[923],256],120557:[[924],256],120558:[[925],256],120559:[[926],256],120560:[[927],256],120561:[[928],256],120562:[[929],256],120563:[[1012],256],120564:[[931],256],120565:[[932],256],120566:[[933],256],120567:[[934],256],120568:[[935],256],120569:[[936],256],120570:[[937],256],120571:[[8711],256],120572:[[945],256],120573:[[946],256],120574:[[947],256],120575:[[948],256]},55040:{120576:[[949],256],120577:[[950],256],120578:[[951],256],120579:[[952],256],120580:[[953],256],120581:[[954],256],120582:[[955],256],120583:[[956],256],120584:[[957],256],120585:[[958],256],120586:[[959],256],120587:[[960],256],120588:[[961],256],120589:[[962],256],120590:[[963],256],120591:[[964],256],120592:[[965],256],120593:[[966],256],120594:[[967],256],120595:[[968],256],120596:[[969],256],120597:[[8706],256],120598:[[1013],256],120599:[[977],256],120600:[[1008],256],120601:[[981],256],120602:[[1009],256],120603:[[982],256],120604:[[913],256],120605:[[914],256],120606:[[915],256],120607:[[916],256],120608:[[917],256],120609:[[918],256],120610:[[919],256],120611:[[920],256],120612:[[921],256],120613:[[922],256],120614:[[923],256],120615:[[924],256],120616:[[925],256],120617:[[926],256],120618:[[927],256],120619:[[928],256],120620:[[929],256],120621:[[1012],256],120622:[[931],256],120623:[[932],256],120624:[[933],256],120625:[[934],256],120626:[[935],256],120627:[[936],256],120628:[[937],256],120629:[[8711],256],120630:[[945],256],120631:[[946],256],120632:[[947],256],120633:[[948],256],120634:[[949],256],120635:[[950],256],120636:[[951],256],120637:[[952],256],120638:[[953],256],120639:[[954],256],120640:[[955],256],120641:[[956],256],120642:[[957],256],120643:[[958],256],120644:[[959],256],120645:[[960],256],120646:[[961],256],120647:[[962],256],120648:[[963],256],120649:[[964],256],120650:[[965],256],120651:[[966],256],120652:[[967],256],120653:[[968],256],120654:[[969],256],120655:[[8706],256],120656:[[1013],256],120657:[[977],256],120658:[[1008],256],120659:[[981],256],120660:[[1009],256],120661:[[982],256],120662:[[913],256],120663:[[914],256],120664:[[915],256],120665:[[916],256],120666:[[917],256],120667:[[918],256],120668:[[919],256],120669:[[920],256],120670:[[921],256],120671:[[922],256],120672:[[923],256],120673:[[924],256],120674:[[925],256],120675:[[926],256],120676:[[927],256],120677:[[928],256],120678:[[929],256],120679:[[1012],256],120680:[[931],256],120681:[[932],256],120682:[[933],256],120683:[[934],256],120684:[[935],256],120685:[[936],256],120686:[[937],256],120687:[[8711],256],120688:[[945],256],120689:[[946],256],120690:[[947],256],120691:[[948],256],120692:[[949],256],120693:[[950],256],120694:[[951],256],120695:[[952],256],120696:[[953],256],120697:[[954],256],120698:[[955],256],120699:[[956],256],120700:[[957],256],120701:[[958],256],120702:[[959],256],120703:[[960],256],120704:[[961],256],120705:[[962],256],120706:[[963],256],120707:[[964],256],120708:[[965],256],120709:[[966],256],120710:[[967],256],120711:[[968],256],120712:[[969],256],120713:[[8706],256],120714:[[1013],256],120715:[[977],256],120716:[[1008],256],120717:[[981],256],120718:[[1009],256],120719:[[982],256],120720:[[913],256],120721:[[914],256],120722:[[915],256],120723:[[916],256],120724:[[917],256],120725:[[918],256],120726:[[919],256],120727:[[920],256],120728:[[921],256],120729:[[922],256],120730:[[923],256],120731:[[924],256],120732:[[925],256],120733:[[926],256],120734:[[927],256],120735:[[928],256],120736:[[929],256],120737:[[1012],256],120738:[[931],256],120739:[[932],256],120740:[[933],256],120741:[[934],256],120742:[[935],256],120743:[[936],256],120744:[[937],256],120745:[[8711],256],120746:[[945],256],120747:[[946],256],120748:[[947],256],120749:[[948],256],120750:[[949],256],120751:[[950],256],120752:[[951],256],120753:[[952],256],120754:[[953],256],120755:[[954],256],120756:[[955],256],120757:[[956],256],120758:[[957],256],120759:[[958],256],120760:[[959],256],120761:[[960],256],120762:[[961],256],120763:[[962],256],120764:[[963],256],120765:[[964],256],120766:[[965],256],120767:[[966],256],120768:[[967],256],120769:[[968],256],120770:[[969],256],120771:[[8706],256],120772:[[1013],256],120773:[[977],256],120774:[[1008],256],120775:[[981],256],120776:[[1009],256],120777:[[982],256],120778:[[988],256],120779:[[989],256],120782:[[48],256],120783:[[49],256],120784:[[50],256],120785:[[51],256],120786:[[52],256],120787:[[53],256],120788:[[54],256],120789:[[55],256],120790:[[56],256],120791:[[57],256],120792:[[48],256],120793:[[49],256],120794:[[50],256],120795:[[51],256],120796:[[52],256],120797:[[53],256],120798:[[54],256],120799:[[55],256],120800:[[56],256],120801:[[57],256],120802:[[48],256],120803:[[49],256],120804:[[50],256],120805:[[51],256],120806:[[52],256],120807:[[53],256],120808:[[54],256],120809:[[55],256],120810:[[56],256],120811:[[57],256],120812:[[48],256],120813:[[49],256],120814:[[50],256],120815:[[51],256],120816:[[52],256],120817:[[53],256],120818:[[54],256],120819:[[55],256],120820:[[56],256],120821:[[57],256],120822:[[48],256],120823:[[49],256],120824:[[50],256],120825:[[51],256],120826:[[52],256],120827:[[53],256],120828:[[54],256],120829:[[55],256],120830:[[56],256],120831:[[57],256]},59392:{125136:[,220],125137:[,220],125138:[,220],125139:[,220],125140:[,220],125141:[,220],125142:[,220]},60928:{126464:[[1575],256],126465:[[1576],256],126466:[[1580],256],126467:[[1583],256],126469:[[1608],256],126470:[[1586],256],126471:[[1581],256],126472:[[1591],256],126473:[[1610],256],126474:[[1603],256],126475:[[1604],256],126476:[[1605],256],126477:[[1606],256],126478:[[1587],256],126479:[[1593],256],126480:[[1601],256],126481:[[1589],256],126482:[[1602],256],126483:[[1585],256],126484:[[1588],256],126485:[[1578],256],126486:[[1579],256],126487:[[1582],256],126488:[[1584],256],126489:[[1590],256],126490:[[1592],256],126491:[[1594],256],126492:[[1646],256],126493:[[1722],256],126494:[[1697],256],126495:[[1647],256],126497:[[1576],256],126498:[[1580],256],126500:[[1607],256],126503:[[1581],256],126505:[[1610],256],126506:[[1603],256],126507:[[1604],256],126508:[[1605],256],126509:[[1606],256],126510:[[1587],256],126511:[[1593],256],126512:[[1601],256],126513:[[1589],256],126514:[[1602],256],126516:[[1588],256],126517:[[1578],256],126518:[[1579],256],126519:[[1582],256],126521:[[1590],256],126523:[[1594],256],126530:[[1580],256],126535:[[1581],256],126537:[[1610],256],126539:[[1604],256],126541:[[1606],256],126542:[[1587],256],126543:[[1593],256],126545:[[1589],256],126546:[[1602],256],126548:[[1588],256],126551:[[1582],256],126553:[[1590],256],126555:[[1594],256],126557:[[1722],256],126559:[[1647],256],126561:[[1576],256],126562:[[1580],256],126564:[[1607],256],126567:[[1581],256],126568:[[1591],256],126569:[[1610],256],126570:[[1603],256],126572:[[1605],256],126573:[[1606],256],126574:[[1587],256],126575:[[1593],256],126576:[[1601],256],126577:[[1589],256],126578:[[1602],256],126580:[[1588],256],126581:[[1578],256],126582:[[1579],256],126583:[[1582],256],126585:[[1590],256],126586:[[1592],256],126587:[[1594],256],126588:[[1646],256],126590:[[1697],256],126592:[[1575],256],126593:[[1576],256],126594:[[1580],256],126595:[[1583],256],126596:[[1607],256],126597:[[1608],256],126598:[[1586],256],126599:[[1581],256],126600:[[1591],256],126601:[[1610],256],126603:[[1604],256],126604:[[1605],256],126605:[[1606],256],126606:[[1587],256],126607:[[1593],256],126608:[[1601],256],126609:[[1589],256],126610:[[1602],256],126611:[[1585],256],126612:[[1588],256],126613:[[1578],256],126614:[[1579],256],126615:[[1582],256],126616:[[1584],256],126617:[[1590],256],126618:[[1592],256],126619:[[1594],256],126625:[[1576],256],126626:[[1580],256],126627:[[1583],256],126629:[[1608],256],126630:[[1586],256],126631:[[1581],256],126632:[[1591],256],126633:[[1610],256],126635:[[1604],256],126636:[[1605],256],126637:[[1606],256],126638:[[1587],256],126639:[[1593],256],126640:[[1601],256],126641:[[1589],256],126642:[[1602],256],126643:[[1585],256],126644:[[1588],256],126645:[[1578],256],126646:[[1579],256],126647:[[1582],256],126648:[[1584],256],126649:[[1590],256],126650:[[1592],256],126651:[[1594],256]},61696:{127232:[[48,46],256],127233:[[48,44],256],127234:[[49,44],256],127235:[[50,44],256],127236:[[51,44],256],127237:[[52,44],256],127238:[[53,44],256],127239:[[54,44],256],127240:[[55,44],256],127241:[[56,44],256],127242:[[57,44],256],127248:[[40,65,41],256],127249:[[40,66,41],256],127250:[[40,67,41],256],127251:[[40,68,41],256],127252:[[40,69,41],256],127253:[[40,70,41],256],127254:[[40,71,41],256],127255:[[40,72,41],256],127256:[[40,73,41],256],127257:[[40,74,41],256],127258:[[40,75,41],256],127259:[[40,76,41],256],127260:[[40,77,41],256],127261:[[40,78,41],256],127262:[[40,79,41],256],127263:[[40,80,41],256],127264:[[40,81,41],256],127265:[[40,82,41],256],127266:[[40,83,41],256],127267:[[40,84,41],256],127268:[[40,85,41],256],127269:[[40,86,41],256],127270:[[40,87,41],256],127271:[[40,88,41],256],127272:[[40,89,41],256],127273:[[40,90,41],256],127274:[[12308,83,12309],256],127275:[[67],256],127276:[[82],256],127277:[[67,68],256],127278:[[87,90],256],127280:[[65],256],127281:[[66],256],127282:[[67],256],127283:[[68],256],127284:[[69],256],127285:[[70],256],127286:[[71],256],127287:[[72],256],127288:[[73],256],127289:[[74],256],127290:[[75],256],127291:[[76],256],127292:[[77],256],127293:[[78],256],127294:[[79],256],127295:[[80],256],127296:[[81],256],127297:[[82],256],127298:[[83],256],127299:[[84],256],127300:[[85],256],127301:[[86],256],127302:[[87],256],127303:[[88],256],127304:[[89],256],127305:[[90],256],127306:[[72,86],256],127307:[[77,86],256],127308:[[83,68],256],127309:[[83,83],256],127310:[[80,80,86],256],127311:[[87,67],256],127338:[[77,67],256],127339:[[77,68],256],127376:[[68,74],256]},61952:{127488:[[12411,12363],256],127489:[[12467,12467],256],127490:[[12469],256],127504:[[25163],256],127505:[[23383],256],127506:[[21452],256],127507:[[12487],256],127508:[[20108],256],127509:[[22810],256],127510:[[35299],256],127511:[[22825],256],127512:[[20132],256],127513:[[26144],256],127514:[[28961],256],127515:[[26009],256],127516:[[21069],256],127517:[[24460],256],127518:[[20877],256],127519:[[26032],256],127520:[[21021],256],127521:[[32066],256],127522:[[29983],256],127523:[[36009],256],127524:[[22768],256],127525:[[21561],256],127526:[[28436],256],127527:[[25237],256],127528:[[25429],256],127529:[[19968],256],127530:[[19977],256],127531:[[36938],256],127532:[[24038],256],127533:[[20013],256],127534:[[21491],256],127535:[[25351],256],127536:[[36208],256],127537:[[25171],256],127538:[[31105],256],127539:[[31354],256],127540:[[21512],256],127541:[[28288],256],127542:[[26377],256],127543:[[26376],256],127544:[[30003],256],127545:[[21106],256],127546:[[21942],256],127552:[[12308,26412,12309],256],127553:[[12308,19977,12309],256],127554:[[12308,20108,12309],256],127555:[[12308,23433,12309],256],127556:[[12308,28857,12309],256],127557:[[12308,25171,12309],256],127558:[[12308,30423,12309],256],127559:[[12308,21213,12309],256],127560:[[12308,25943,12309],256],127568:[[24471],256],127569:[[21487],256]},63488:{194560:[[20029]],194561:[[20024]],194562:[[20033]],194563:[[131362]],194564:[[20320]],194565:[[20398]],194566:[[20411]],194567:[[20482]],194568:[[20602]],194569:[[20633]],194570:[[20711]],194571:[[20687]],194572:[[13470]],194573:[[132666]],194574:[[20813]],194575:[[20820]],194576:[[20836]],194577:[[20855]],194578:[[132380]],194579:[[13497]],194580:[[20839]],194581:[[20877]],194582:[[132427]],194583:[[20887]],194584:[[20900]],194585:[[20172]],194586:[[20908]],194587:[[20917]],194588:[[168415]],194589:[[20981]],194590:[[20995]],194591:[[13535]],194592:[[21051]],194593:[[21062]],194594:[[21106]],194595:[[21111]],194596:[[13589]],194597:[[21191]],194598:[[21193]],194599:[[21220]],194600:[[21242]],194601:[[21253]],194602:[[21254]],194603:[[21271]],194604:[[21321]],194605:[[21329]],194606:[[21338]],194607:[[21363]],194608:[[21373]],194609:[[21375]],194610:[[21375]],194611:[[21375]],194612:[[133676]],194613:[[28784]],194614:[[21450]],194615:[[21471]],194616:[[133987]],194617:[[21483]],194618:[[21489]],194619:[[21510]],194620:[[21662]],194621:[[21560]],194622:[[21576]],194623:[[21608]],194624:[[21666]],194625:[[21750]],194626:[[21776]],194627:[[21843]],194628:[[21859]],194629:[[21892]],194630:[[21892]],194631:[[21913]],194632:[[21931]],194633:[[21939]],194634:[[21954]],194635:[[22294]],194636:[[22022]],194637:[[22295]],194638:[[22097]],194639:[[22132]],194640:[[20999]],194641:[[22766]],194642:[[22478]],194643:[[22516]],194644:[[22541]],194645:[[22411]],194646:[[22578]],194647:[[22577]],194648:[[22700]],194649:[[136420]],194650:[[22770]],194651:[[22775]],194652:[[22790]],194653:[[22810]],194654:[[22818]],194655:[[22882]],194656:[[136872]],194657:[[136938]],194658:[[23020]],194659:[[23067]],194660:[[23079]],194661:[[23e3]],194662:[[23142]],194663:[[14062]],194664:[[14076]],194665:[[23304]],194666:[[23358]],194667:[[23358]],194668:[[137672]],194669:[[23491]],194670:[[23512]],194671:[[23527]],194672:[[23539]],194673:[[138008]],194674:[[23551]],194675:[[23558]],194676:[[24403]],194677:[[23586]],194678:[[14209]],194679:[[23648]],194680:[[23662]],194681:[[23744]],194682:[[23693]],194683:[[138724]],194684:[[23875]],194685:[[138726]],194686:[[23918]],194687:[[23915]],194688:[[23932]],194689:[[24033]],194690:[[24034]],194691:[[14383]],194692:[[24061]],194693:[[24104]],194694:[[24125]],194695:[[24169]],194696:[[14434]],194697:[[139651]],194698:[[14460]],194699:[[24240]],194700:[[24243]],194701:[[24246]],194702:[[24266]],194703:[[172946]],194704:[[24318]],194705:[[140081]],194706:[[140081]],194707:[[33281]],194708:[[24354]],194709:[[24354]],194710:[[14535]],194711:[[144056]],194712:[[156122]],194713:[[24418]],194714:[[24427]],194715:[[14563]],194716:[[24474]],194717:[[24525]],194718:[[24535]],194719:[[24569]],194720:[[24705]],194721:[[14650]],194722:[[14620]],194723:[[24724]],194724:[[141012]],194725:[[24775]],194726:[[24904]],194727:[[24908]],194728:[[24910]],194729:[[24908]],194730:[[24954]],194731:[[24974]],194732:[[25010]],194733:[[24996]],194734:[[25007]],194735:[[25054]],194736:[[25074]],194737:[[25078]],194738:[[25104]],194739:[[25115]],194740:[[25181]],194741:[[25265]],194742:[[25300]],194743:[[25424]],194744:[[142092]],194745:[[25405]],194746:[[25340]],194747:[[25448]],194748:[[25475]],194749:[[25572]],194750:[[142321]],194751:[[25634]],194752:[[25541]],194753:[[25513]],194754:[[14894]],194755:[[25705]],194756:[[25726]],194757:[[25757]],194758:[[25719]],194759:[[14956]],194760:[[25935]],194761:[[25964]],194762:[[143370]],194763:[[26083]],194764:[[26360]],194765:[[26185]],194766:[[15129]],194767:[[26257]],194768:[[15112]],194769:[[15076]],194770:[[20882]],194771:[[20885]],194772:[[26368]],194773:[[26268]],194774:[[32941]],194775:[[17369]],194776:[[26391]],194777:[[26395]],194778:[[26401]],194779:[[26462]],194780:[[26451]],194781:[[144323]],194782:[[15177]],194783:[[26618]],194784:[[26501]],194785:[[26706]],194786:[[26757]],194787:[[144493]],194788:[[26766]],194789:[[26655]],194790:[[26900]],194791:[[15261]],194792:[[26946]],194793:[[27043]],194794:[[27114]],194795:[[27304]],194796:[[145059]],194797:[[27355]],194798:[[15384]],194799:[[27425]],194800:[[145575]],194801:[[27476]],194802:[[15438]],194803:[[27506]],194804:[[27551]],194805:[[27578]],194806:[[27579]],194807:[[146061]],194808:[[138507]],194809:[[146170]],194810:[[27726]],194811:[[146620]],194812:[[27839]],194813:[[27853]],194814:[[27751]],194815:[[27926]]},63744:{63744:[[35912]],63745:[[26356]],63746:[[36554]],63747:[[36040]],63748:[[28369]],63749:[[20018]],63750:[[21477]],63751:[[40860]],63752:[[40860]],63753:[[22865]],63754:[[37329]],63755:[[21895]],63756:[[22856]],63757:[[25078]],63758:[[30313]],63759:[[32645]],63760:[[34367]],63761:[[34746]],63762:[[35064]],63763:[[37007]],63764:[[27138]],63765:[[27931]],63766:[[28889]],63767:[[29662]],63768:[[33853]],63769:[[37226]],63770:[[39409]],63771:[[20098]],63772:[[21365]],63773:[[27396]],63774:[[29211]],63775:[[34349]],63776:[[40478]],63777:[[23888]],63778:[[28651]],63779:[[34253]],63780:[[35172]],63781:[[25289]],63782:[[33240]],63783:[[34847]],63784:[[24266]],63785:[[26391]],63786:[[28010]],63787:[[29436]],63788:[[37070]],63789:[[20358]],63790:[[20919]],63791:[[21214]],63792:[[25796]],63793:[[27347]],63794:[[29200]],63795:[[30439]],63796:[[32769]],63797:[[34310]],63798:[[34396]],63799:[[36335]],63800:[[38706]],63801:[[39791]],63802:[[40442]],63803:[[30860]],63804:[[31103]],63805:[[32160]],63806:[[33737]],63807:[[37636]],63808:[[40575]],63809:[[35542]],63810:[[22751]],63811:[[24324]],63812:[[31840]],63813:[[32894]],63814:[[29282]],63815:[[30922]],63816:[[36034]],63817:[[38647]],63818:[[22744]],63819:[[23650]],63820:[[27155]],63821:[[28122]],63822:[[28431]],63823:[[32047]],63824:[[32311]],63825:[[38475]],63826:[[21202]],63827:[[32907]],63828:[[20956]],63829:[[20940]],63830:[[31260]],63831:[[32190]],63832:[[33777]],63833:[[38517]],63834:[[35712]],63835:[[25295]],63836:[[27138]],63837:[[35582]],63838:[[20025]],63839:[[23527]],63840:[[24594]],63841:[[29575]],63842:[[30064]],63843:[[21271]],63844:[[30971]],63845:[[20415]],63846:[[24489]],63847:[[19981]],63848:[[27852]],63849:[[25976]],63850:[[32034]],63851:[[21443]],63852:[[22622]],63853:[[30465]],63854:[[33865]],63855:[[35498]],63856:[[27578]],63857:[[36784]],63858:[[27784]],63859:[[25342]],63860:[[33509]],63861:[[25504]],63862:[[30053]],63863:[[20142]],63864:[[20841]],63865:[[20937]],63866:[[26753]],63867:[[31975]],63868:[[33391]],63869:[[35538]],63870:[[37327]],63871:[[21237]],63872:[[21570]],63873:[[22899]],63874:[[24300]],63875:[[26053]],63876:[[28670]],63877:[[31018]],63878:[[38317]],63879:[[39530]],63880:[[40599]],63881:[[40654]],63882:[[21147]],63883:[[26310]],63884:[[27511]],63885:[[36706]],63886:[[24180]],63887:[[24976]],63888:[[25088]],63889:[[25754]],63890:[[28451]],63891:[[29001]],63892:[[29833]],63893:[[31178]],63894:[[32244]],63895:[[32879]],63896:[[36646]],63897:[[34030]],63898:[[36899]],63899:[[37706]],63900:[[21015]],63901:[[21155]],63902:[[21693]],63903:[[28872]],63904:[[35010]],63905:[[35498]],63906:[[24265]],63907:[[24565]],63908:[[25467]],63909:[[27566]],63910:[[31806]],63911:[[29557]],63912:[[20196]],63913:[[22265]],63914:[[23527]],63915:[[23994]],63916:[[24604]],63917:[[29618]],63918:[[29801]],63919:[[32666]],63920:[[32838]],63921:[[37428]],63922:[[38646]],63923:[[38728]],63924:[[38936]],63925:[[20363]],63926:[[31150]],63927:[[37300]],63928:[[38584]],63929:[[24801]],63930:[[20102]],63931:[[20698]],63932:[[23534]],63933:[[23615]],63934:[[26009]],63935:[[27138]],63936:[[29134]],63937:[[30274]],63938:[[34044]],63939:[[36988]],63940:[[40845]],63941:[[26248]],63942:[[38446]],63943:[[21129]],63944:[[26491]],63945:[[26611]],63946:[[27969]],63947:[[28316]],63948:[[29705]],63949:[[30041]],63950:[[30827]],63951:[[32016]],63952:[[39006]],63953:[[20845]],63954:[[25134]],63955:[[38520]],63956:[[20523]],63957:[[23833]],63958:[[28138]],63959:[[36650]],63960:[[24459]],63961:[[24900]],63962:[[26647]],63963:[[29575]],63964:[[38534]],63965:[[21033]],63966:[[21519]],63967:[[23653]],63968:[[26131]],63969:[[26446]],63970:[[26792]],63971:[[27877]],63972:[[29702]],63973:[[30178]],63974:[[32633]],63975:[[35023]],63976:[[35041]],63977:[[37324]],63978:[[38626]],63979:[[21311]],63980:[[28346]],63981:[[21533]],63982:[[29136]],63983:[[29848]],63984:[[34298]],63985:[[38563]],63986:[[40023]],63987:[[40607]],63988:[[26519]],63989:[[28107]],63990:[[33256]],63991:[[31435]],63992:[[31520]],63993:[[31890]],63994:[[29376]],63995:[[28825]],63996:[[35672]],63997:[[20160]],63998:[[33590]],63999:[[21050]],194816:[[27966]],194817:[[28023]],194818:[[27969]],194819:[[28009]],194820:[[28024]],194821:[[28037]],194822:[[146718]],194823:[[27956]],194824:[[28207]],194825:[[28270]],194826:[[15667]],194827:[[28363]],194828:[[28359]],194829:[[147153]],194830:[[28153]],194831:[[28526]],194832:[[147294]],194833:[[147342]],194834:[[28614]],194835:[[28729]],194836:[[28702]],194837:[[28699]],194838:[[15766]],194839:[[28746]],194840:[[28797]],194841:[[28791]],194842:[[28845]],194843:[[132389]],194844:[[28997]],194845:[[148067]],194846:[[29084]],194847:[[148395]],194848:[[29224]],194849:[[29237]],194850:[[29264]],194851:[[149e3]],194852:[[29312]],194853:[[29333]],194854:[[149301]],194855:[[149524]],194856:[[29562]],194857:[[29579]],194858:[[16044]],194859:[[29605]],194860:[[16056]],194861:[[16056]],194862:[[29767]],194863:[[29788]],194864:[[29809]],194865:[[29829]],194866:[[29898]],194867:[[16155]],194868:[[29988]],194869:[[150582]],194870:[[30014]],194871:[[150674]],194872:[[30064]],194873:[[139679]],194874:[[30224]],194875:[[151457]],194876:[[151480]],194877:[[151620]],194878:[[16380]],194879:[[16392]],194880:[[30452]],194881:[[151795]],194882:[[151794]],194883:[[151833]],194884:[[151859]],194885:[[30494]],194886:[[30495]],194887:[[30495]],194888:[[30538]],194889:[[16441]],194890:[[30603]],194891:[[16454]],194892:[[16534]],194893:[[152605]],194894:[[30798]],194895:[[30860]],194896:[[30924]],194897:[[16611]],194898:[[153126]],194899:[[31062]],194900:[[153242]],194901:[[153285]],194902:[[31119]],194903:[[31211]],194904:[[16687]],194905:[[31296]],194906:[[31306]],194907:[[31311]],194908:[[153980]],194909:[[154279]],194910:[[154279]],194911:[[31470]],194912:[[16898]],194913:[[154539]],194914:[[31686]],194915:[[31689]],194916:[[16935]],194917:[[154752]],194918:[[31954]],194919:[[17056]],194920:[[31976]],194921:[[31971]],194922:[[32e3]],194923:[[155526]],194924:[[32099]],194925:[[17153]],194926:[[32199]],194927:[[32258]],194928:[[32325]],194929:[[17204]],194930:[[156200]],194931:[[156231]],194932:[[17241]],194933:[[156377]],194934:[[32634]],194935:[[156478]],194936:[[32661]],194937:[[32762]],194938:[[32773]],194939:[[156890]],194940:[[156963]],194941:[[32864]],194942:[[157096]],194943:[[32880]],194944:[[144223]],194945:[[17365]],194946:[[32946]],194947:[[33027]],194948:[[17419]],194949:[[33086]],194950:[[23221]],194951:[[157607]],194952:[[157621]],194953:[[144275]],194954:[[144284]],194955:[[33281]],194956:[[33284]],194957:[[36766]],194958:[[17515]],194959:[[33425]],194960:[[33419]],194961:[[33437]],194962:[[21171]],194963:[[33457]],194964:[[33459]],194965:[[33469]],194966:[[33510]],194967:[[158524]],194968:[[33509]],194969:[[33565]],194970:[[33635]],194971:[[33709]],194972:[[33571]],194973:[[33725]],194974:[[33767]],194975:[[33879]],194976:[[33619]],194977:[[33738]],194978:[[33740]],194979:[[33756]],194980:[[158774]],194981:[[159083]],194982:[[158933]],194983:[[17707]],194984:[[34033]],194985:[[34035]],194986:[[34070]],194987:[[160714]],194988:[[34148]],194989:[[159532]],194990:[[17757]],194991:[[17761]],194992:[[159665]],194993:[[159954]],194994:[[17771]],194995:[[34384]],194996:[[34396]],194997:[[34407]],194998:[[34409]],194999:[[34473]],195e3:[[34440]],195001:[[34574]],195002:[[34530]],195003:[[34681]],195004:[[34600]],195005:[[34667]],195006:[[34694]],195007:[[17879]],195008:[[34785]],195009:[[34817]],195010:[[17913]],195011:[[34912]],195012:[[34915]],195013:[[161383]],195014:[[35031]],195015:[[35038]],195016:[[17973]],195017:[[35066]],195018:[[13499]],195019:[[161966]],195020:[[162150]],195021:[[18110]],195022:[[18119]],195023:[[35488]],195024:[[35565]],195025:[[35722]],195026:[[35925]],195027:[[162984]],195028:[[36011]],195029:[[36033]],195030:[[36123]],195031:[[36215]],195032:[[163631]],195033:[[133124]],195034:[[36299]],195035:[[36284]],195036:[[36336]],195037:[[133342]],195038:[[36564]],195039:[[36664]],195040:[[165330]],195041:[[165357]],195042:[[37012]],195043:[[37105]],195044:[[37137]],195045:[[165678]],195046:[[37147]],195047:[[37432]],195048:[[37591]],195049:[[37592]],195050:[[37500]],195051:[[37881]],195052:[[37909]],195053:[[166906]],195054:[[38283]],195055:[[18837]],195056:[[38327]],195057:[[167287]],195058:[[18918]],195059:[[38595]],195060:[[23986]],195061:[[38691]],195062:[[168261]],195063:[[168474]],195064:[[19054]],195065:[[19062]],195066:[[38880]],195067:[[168970]],195068:[[19122]],195069:[[169110]],195070:[[38923]],195071:[[38923]]},64e3:{64e3:[[20999]],64001:[[24230]],64002:[[25299]],64003:[[31958]],64004:[[23429]],64005:[[27934]],64006:[[26292]],64007:[[36667]],64008:[[34892]],64009:[[38477]],64010:[[35211]],64011:[[24275]],64012:[[20800]],64013:[[21952]],64016:[[22618]],64018:[[26228]],64021:[[20958]],64022:[[29482]],64023:[[30410]],64024:[[31036]],64025:[[31070]],64026:[[31077]],64027:[[31119]],64028:[[38742]],64029:[[31934]],64030:[[32701]],64032:[[34322]],64034:[[35576]],64037:[[36920]],64038:[[37117]],64042:[[39151]],64043:[[39164]],64044:[[39208]],64045:[[40372]],64046:[[37086]],64047:[[38583]],64048:[[20398]],64049:[[20711]],64050:[[20813]],64051:[[21193]],64052:[[21220]],64053:[[21329]],64054:[[21917]],64055:[[22022]],64056:[[22120]],64057:[[22592]],64058:[[22696]],64059:[[23652]],64060:[[23662]],64061:[[24724]],64062:[[24936]],64063:[[24974]],64064:[[25074]],64065:[[25935]],64066:[[26082]],64067:[[26257]],64068:[[26757]],64069:[[28023]],64070:[[28186]],64071:[[28450]],64072:[[29038]],64073:[[29227]],64074:[[29730]],64075:[[30865]],64076:[[31038]],64077:[[31049]],64078:[[31048]],64079:[[31056]],64080:[[31062]],64081:[[31069]],64082:[[31117]],64083:[[31118]],64084:[[31296]],64085:[[31361]],64086:[[31680]],64087:[[32244]],64088:[[32265]],64089:[[32321]],64090:[[32626]],64091:[[32773]],64092:[[33261]],64093:[[33401]],64094:[[33401]],64095:[[33879]],64096:[[35088]],64097:[[35222]],64098:[[35585]],64099:[[35641]],64100:[[36051]],64101:[[36104]],64102:[[36790]],64103:[[36920]],64104:[[38627]],64105:[[38911]],64106:[[38971]],64107:[[24693]],64108:[[148206]],64109:[[33304]],64112:[[20006]],64113:[[20917]],64114:[[20840]],64115:[[20352]],64116:[[20805]],64117:[[20864]],64118:[[21191]],64119:[[21242]],64120:[[21917]],64121:[[21845]],64122:[[21913]],64123:[[21986]],64124:[[22618]],64125:[[22707]],64126:[[22852]],64127:[[22868]],64128:[[23138]],64129:[[23336]],64130:[[24274]],64131:[[24281]],64132:[[24425]],64133:[[24493]],64134:[[24792]],64135:[[24910]],64136:[[24840]],64137:[[24974]],64138:[[24928]],64139:[[25074]],64140:[[25140]],64141:[[25540]],64142:[[25628]],64143:[[25682]],64144:[[25942]],64145:[[26228]],64146:[[26391]],64147:[[26395]],64148:[[26454]],64149:[[27513]],64150:[[27578]],64151:[[27969]],64152:[[28379]],64153:[[28363]],64154:[[28450]],64155:[[28702]],64156:[[29038]],64157:[[30631]],64158:[[29237]],64159:[[29359]],64160:[[29482]],64161:[[29809]],64162:[[29958]],64163:[[30011]],64164:[[30237]],64165:[[30239]],64166:[[30410]],64167:[[30427]],64168:[[30452]],64169:[[30538]],64170:[[30528]],64171:[[30924]],64172:[[31409]],64173:[[31680]],64174:[[31867]],64175:[[32091]],64176:[[32244]],64177:[[32574]],64178:[[32773]],64179:[[33618]],64180:[[33775]],64181:[[34681]],64182:[[35137]],64183:[[35206]],64184:[[35222]],64185:[[35519]],64186:[[35576]],64187:[[35531]],64188:[[35585]],64189:[[35582]],64190:[[35565]],64191:[[35641]],64192:[[35722]],64193:[[36104]],64194:[[36664]],64195:[[36978]],64196:[[37273]],64197:[[37494]],64198:[[38524]],64199:[[38627]],64200:[[38742]],64201:[[38875]],64202:[[38911]],64203:[[38923]],64204:[[38971]],64205:[[39698]],64206:[[40860]],64207:[[141386]],64208:[[141380]],64209:[[144341]],64210:[[15261]],64211:[[16408]],64212:[[16441]],64213:[[152137]],64214:[[154832]],64215:[[163539]],64216:[[40771]],64217:[[40846]],195072:[[38953]],195073:[[169398]],195074:[[39138]],195075:[[19251]],195076:[[39209]],195077:[[39335]],195078:[[39362]],195079:[[39422]],195080:[[19406]],195081:[[170800]],195082:[[39698]],195083:[[4e4]],195084:[[40189]],195085:[[19662]],195086:[[19693]],195087:[[40295]],195088:[[172238]],195089:[[19704]],195090:[[172293]],195091:[[172558]],195092:[[172689]],195093:[[40635]],195094:[[19798]],195095:[[40697]],195096:[[40702]],195097:[[40709]],195098:[[40719]],195099:[[40726]],195100:[[40763]],195101:[[173568]]},64256:{64256:[[102,102],256],64257:[[102,105],256],64258:[[102,108],256],64259:[[102,102,105],256],64260:[[102,102,108],256],64261:[[383,116],256],64262:[[115,116],256],64275:[[1396,1398],256],64276:[[1396,1381],256],64277:[[1396,1387],256],64278:[[1406,1398],256],64279:[[1396,1389],256],64285:[[1497,1460],512],64286:[,26],64287:[[1522,1463],512],64288:[[1506],256],64289:[[1488],256],64290:[[1491],256],64291:[[1492],256],64292:[[1499],256],64293:[[1500],256],64294:[[1501],256],64295:[[1512],256],64296:[[1514],256],64297:[[43],256],64298:[[1513,1473],512],64299:[[1513,1474],512],64300:[[64329,1473],512],64301:[[64329,1474],512],64302:[[1488,1463],512],64303:[[1488,1464],512],64304:[[1488,1468],512],64305:[[1489,1468],512],64306:[[1490,1468],512],64307:[[1491,1468],512],64308:[[1492,1468],512],64309:[[1493,1468],512],64310:[[1494,1468],512],64312:[[1496,1468],512],64313:[[1497,1468],512],64314:[[1498,1468],512],64315:[[1499,1468],512],64316:[[1500,1468],512],64318:[[1502,1468],512],64320:[[1504,1468],512],64321:[[1505,1468],512],64323:[[1507,1468],512],64324:[[1508,1468],512],64326:[[1510,1468],512],64327:[[1511,1468],512],64328:[[1512,1468],512],64329:[[1513,1468],512],64330:[[1514,1468],512],64331:[[1493,1465],512],64332:[[1489,1471],512],64333:[[1499,1471],512],64334:[[1508,1471],512],64335:[[1488,1500],256],64336:[[1649],256],64337:[[1649],256],64338:[[1659],256],64339:[[1659],256],64340:[[1659],256],64341:[[1659],256],64342:[[1662],256],64343:[[1662],256],64344:[[1662],256],64345:[[1662],256],64346:[[1664],256],64347:[[1664],256],64348:[[1664],256],64349:[[1664],256],64350:[[1658],256],64351:[[1658],256],64352:[[1658],256],64353:[[1658],256],64354:[[1663],256],64355:[[1663],256],64356:[[1663],256],64357:[[1663],256],64358:[[1657],256],64359:[[1657],256],64360:[[1657],256],64361:[[1657],256],64362:[[1700],256],64363:[[1700],256],64364:[[1700],256],64365:[[1700],256],64366:[[1702],256],64367:[[1702],256],64368:[[1702],256],64369:[[1702],256],64370:[[1668],256],64371:[[1668],256],64372:[[1668],256],64373:[[1668],256],64374:[[1667],256],64375:[[1667],256],64376:[[1667],256],64377:[[1667],256],64378:[[1670],256],64379:[[1670],256],64380:[[1670],256],64381:[[1670],256],64382:[[1671],256],64383:[[1671],256],64384:[[1671],256],64385:[[1671],256],64386:[[1677],256],64387:[[1677],256],64388:[[1676],256],64389:[[1676],256],64390:[[1678],256],64391:[[1678],256],64392:[[1672],256],64393:[[1672],256],64394:[[1688],256],64395:[[1688],256],64396:[[1681],256],64397:[[1681],256],64398:[[1705],256],64399:[[1705],256],64400:[[1705],256],64401:[[1705],256],64402:[[1711],256],64403:[[1711],256],64404:[[1711],256],64405:[[1711],256],64406:[[1715],256],64407:[[1715],256],64408:[[1715],256],64409:[[1715],256],64410:[[1713],256],64411:[[1713],256],64412:[[1713],256],64413:[[1713],256],64414:[[1722],256],64415:[[1722],256],64416:[[1723],256],64417:[[1723],256],64418:[[1723],256],64419:[[1723],256],64420:[[1728],256],64421:[[1728],256],64422:[[1729],256],64423:[[1729],256],64424:[[1729],256],64425:[[1729],256],64426:[[1726],256],64427:[[1726],256],64428:[[1726],256],64429:[[1726],256],64430:[[1746],256],64431:[[1746],256],64432:[[1747],256],64433:[[1747],256],64467:[[1709],256],64468:[[1709],256],64469:[[1709],256],64470:[[1709],256],64471:[[1735],256],64472:[[1735],256],64473:[[1734],256],64474:[[1734],256],64475:[[1736],256],64476:[[1736],256],64477:[[1655],256],64478:[[1739],256],64479:[[1739],256],64480:[[1733],256],64481:[[1733],256],64482:[[1737],256],64483:[[1737],256],64484:[[1744],256],64485:[[1744],256],64486:[[1744],256],64487:[[1744],256],64488:[[1609],256],64489:[[1609],256],64490:[[1574,1575],256],64491:[[1574,1575],256],64492:[[1574,1749],256],64493:[[1574,1749],256],64494:[[1574,1608],256],64495:[[1574,1608],256],64496:[[1574,1735],256],64497:[[1574,1735],256],64498:[[1574,1734],256],64499:[[1574,1734],256],64500:[[1574,1736],256],64501:[[1574,1736],256],64502:[[1574,1744],256],64503:[[1574,1744],256],64504:[[1574,1744],256],64505:[[1574,1609],256],64506:[[1574,1609],256],64507:[[1574,1609],256],64508:[[1740],256],64509:[[1740],256],64510:[[1740],256],64511:[[1740],256]},64512:{64512:[[1574,1580],256],64513:[[1574,1581],256],64514:[[1574,1605],256],64515:[[1574,1609],256],64516:[[1574,1610],256],64517:[[1576,1580],256],64518:[[1576,1581],256],64519:[[1576,1582],256],64520:[[1576,1605],256],64521:[[1576,1609],256],64522:[[1576,1610],256],64523:[[1578,1580],256],64524:[[1578,1581],256],64525:[[1578,1582],256],64526:[[1578,1605],256],64527:[[1578,1609],256],64528:[[1578,1610],256],64529:[[1579,1580],256],64530:[[1579,1605],256],64531:[[1579,1609],256],64532:[[1579,1610],256],64533:[[1580,1581],256],64534:[[1580,1605],256],64535:[[1581,1580],256],64536:[[1581,1605],256],64537:[[1582,1580],256],64538:[[1582,1581],256],64539:[[1582,1605],256],64540:[[1587,1580],256],64541:[[1587,1581],256],64542:[[1587,1582],256],64543:[[1587,1605],256],64544:[[1589,1581],256],64545:[[1589,1605],256],64546:[[1590,1580],256],64547:[[1590,1581],256],64548:[[1590,1582],256],64549:[[1590,1605],256],64550:[[1591,1581],256],64551:[[1591,1605],256],64552:[[1592,1605],256],64553:[[1593,1580],256],64554:[[1593,1605],256],64555:[[1594,1580],256],64556:[[1594,1605],256],64557:[[1601,1580],256],64558:[[1601,1581],256],64559:[[1601,1582],256],64560:[[1601,1605],256],64561:[[1601,1609],256],64562:[[1601,1610],256],64563:[[1602,1581],256],64564:[[1602,1605],256],64565:[[1602,1609],256],64566:[[1602,1610],256],64567:[[1603,1575],256],64568:[[1603,1580],256],64569:[[1603,1581],256],64570:[[1603,1582],256],64571:[[1603,1604],256],64572:[[1603,1605],256],64573:[[1603,1609],256],64574:[[1603,1610],256],64575:[[1604,1580],256],64576:[[1604,1581],256],64577:[[1604,1582],256],64578:[[1604,1605],256],64579:[[1604,1609],256],64580:[[1604,1610],256],64581:[[1605,1580],256],64582:[[1605,1581],256],64583:[[1605,1582],256],64584:[[1605,1605],256],64585:[[1605,1609],256],64586:[[1605,1610],256],64587:[[1606,1580],256],64588:[[1606,1581],256],64589:[[1606,1582],256],64590:[[1606,1605],256],64591:[[1606,1609],256],64592:[[1606,1610],256],64593:[[1607,1580],256],64594:[[1607,1605],256],64595:[[1607,1609],256],64596:[[1607,1610],256],64597:[[1610,1580],256],64598:[[1610,1581],256],64599:[[1610,1582],256],64600:[[1610,1605],256],64601:[[1610,1609],256],64602:[[1610,1610],256],64603:[[1584,1648],256],64604:[[1585,1648],256],64605:[[1609,1648],256],64606:[[32,1612,1617],256],64607:[[32,1613,1617],256],64608:[[32,1614,1617],256],64609:[[32,1615,1617],256],64610:[[32,1616,1617],256],64611:[[32,1617,1648],256],64612:[[1574,1585],256],64613:[[1574,1586],256],64614:[[1574,1605],256],64615:[[1574,1606],256],64616:[[1574,1609],256],64617:[[1574,1610],256],64618:[[1576,1585],256],64619:[[1576,1586],256],64620:[[1576,1605],256],64621:[[1576,1606],256],64622:[[1576,1609],256],64623:[[1576,1610],256],64624:[[1578,1585],256],64625:[[1578,1586],256],64626:[[1578,1605],256],64627:[[1578,1606],256],64628:[[1578,1609],256],64629:[[1578,1610],256],64630:[[1579,1585],256],64631:[[1579,1586],256],64632:[[1579,1605],256],64633:[[1579,1606],256],64634:[[1579,1609],256],64635:[[1579,1610],256],64636:[[1601,1609],256],64637:[[1601,1610],256],64638:[[1602,1609],256],64639:[[1602,1610],256],64640:[[1603,1575],256],64641:[[1603,1604],256],64642:[[1603,1605],256],64643:[[1603,1609],256],64644:[[1603,1610],256],64645:[[1604,1605],256],64646:[[1604,1609],256],64647:[[1604,1610],256],64648:[[1605,1575],256],64649:[[1605,1605],256],64650:[[1606,1585],256],64651:[[1606,1586],256],64652:[[1606,1605],256],64653:[[1606,1606],256],64654:[[1606,1609],256],64655:[[1606,1610],256],64656:[[1609,1648],256],64657:[[1610,1585],256],64658:[[1610,1586],256],64659:[[1610,1605],256],64660:[[1610,1606],256],64661:[[1610,1609],256],64662:[[1610,1610],256],64663:[[1574,1580],256],64664:[[1574,1581],256],64665:[[1574,1582],256],64666:[[1574,1605],256],64667:[[1574,1607],256],64668:[[1576,1580],256],64669:[[1576,1581],256],64670:[[1576,1582],256],64671:[[1576,1605],256],64672:[[1576,1607],256],64673:[[1578,1580],256],64674:[[1578,1581],256],64675:[[1578,1582],256],64676:[[1578,1605],256],64677:[[1578,1607],256],64678:[[1579,1605],256],64679:[[1580,1581],256],64680:[[1580,1605],256],64681:[[1581,1580],256],64682:[[1581,1605],256],64683:[[1582,1580],256],64684:[[1582,1605],256],64685:[[1587,1580],256],64686:[[1587,1581],256],64687:[[1587,1582],256],64688:[[1587,1605],256],64689:[[1589,1581],256],64690:[[1589,1582],256],64691:[[1589,1605],256],64692:[[1590,1580],256],64693:[[1590,1581],256],64694:[[1590,1582],256],64695:[[1590,1605],256],64696:[[1591,1581],256],64697:[[1592,1605],256],64698:[[1593,1580],256],64699:[[1593,1605],256],64700:[[1594,1580],256],64701:[[1594,1605],256],64702:[[1601,1580],256],64703:[[1601,1581],256],64704:[[1601,1582],256],64705:[[1601,1605],256],64706:[[1602,1581],256],64707:[[1602,1605],256],64708:[[1603,1580],256],64709:[[1603,1581],256],64710:[[1603,1582],256],64711:[[1603,1604],256],64712:[[1603,1605],256],64713:[[1604,1580],256],64714:[[1604,1581],256],64715:[[1604,1582],256],64716:[[1604,1605],256],64717:[[1604,1607],256],64718:[[1605,1580],256],64719:[[1605,1581],256],64720:[[1605,1582],256],64721:[[1605,1605],256],64722:[[1606,1580],256],64723:[[1606,1581],256],64724:[[1606,1582],256],64725:[[1606,1605],256],64726:[[1606,1607],256],64727:[[1607,1580],256],64728:[[1607,1605],256],64729:[[1607,1648],256],64730:[[1610,1580],256],64731:[[1610,1581],256],64732:[[1610,1582],256],64733:[[1610,1605],256],64734:[[1610,1607],256],64735:[[1574,1605],256],64736:[[1574,1607],256],64737:[[1576,1605],256],64738:[[1576,1607],256],64739:[[1578,1605],256],64740:[[1578,1607],256],64741:[[1579,1605],256],64742:[[1579,1607],256],64743:[[1587,1605],256],64744:[[1587,1607],256],64745:[[1588,1605],256],64746:[[1588,1607],256],64747:[[1603,1604],256],64748:[[1603,1605],256],64749:[[1604,1605],256],64750:[[1606,1605],256],64751:[[1606,1607],256],64752:[[1610,1605],256],64753:[[1610,1607],256],64754:[[1600,1614,1617],256],64755:[[1600,1615,1617],256],64756:[[1600,1616,1617],256],64757:[[1591,1609],256],64758:[[1591,1610],256],64759:[[1593,1609],256],64760:[[1593,1610],256],64761:[[1594,1609],256],64762:[[1594,1610],256],64763:[[1587,1609],256],64764:[[1587,1610],256],64765:[[1588,1609],256],64766:[[1588,1610],256],64767:[[1581,1609],256]},64768:{64768:[[1581,1610],256],64769:[[1580,1609],256],64770:[[1580,1610],256],64771:[[1582,1609],256],64772:[[1582,1610],256],64773:[[1589,1609],256],64774:[[1589,1610],256],64775:[[1590,1609],256],64776:[[1590,1610],256],64777:[[1588,1580],256],64778:[[1588,1581],256],64779:[[1588,1582],256],64780:[[1588,1605],256],64781:[[1588,1585],256],64782:[[1587,1585],256],64783:[[1589,1585],256],64784:[[1590,1585],256],64785:[[1591,1609],256],64786:[[1591,1610],256],64787:[[1593,1609],256],64788:[[1593,1610],256],64789:[[1594,1609],256],64790:[[1594,1610],256],64791:[[1587,1609],256],64792:[[1587,1610],256],64793:[[1588,1609],256],64794:[[1588,1610],256],64795:[[1581,1609],256],64796:[[1581,1610],256],64797:[[1580,1609],256],64798:[[1580,1610],256],64799:[[1582,1609],256],64800:[[1582,1610],256],64801:[[1589,1609],256],64802:[[1589,1610],256],64803:[[1590,1609],256],64804:[[1590,1610],256],64805:[[1588,1580],256],64806:[[1588,1581],256],64807:[[1588,1582],256],64808:[[1588,1605],256],64809:[[1588,1585],256],64810:[[1587,1585],256],64811:[[1589,1585],256],64812:[[1590,1585],256],64813:[[1588,1580],256],64814:[[1588,1581],256],64815:[[1588,1582],256],64816:[[1588,1605],256],64817:[[1587,1607],256],64818:[[1588,1607],256],64819:[[1591,1605],256],64820:[[1587,1580],256],64821:[[1587,1581],256],64822:[[1587,1582],256],64823:[[1588,1580],256],64824:[[1588,1581],256],64825:[[1588,1582],256],64826:[[1591,1605],256],64827:[[1592,1605],256],64828:[[1575,1611],256],64829:[[1575,1611],256],64848:[[1578,1580,1605],256],64849:[[1578,1581,1580],256],64850:[[1578,1581,1580],256],64851:[[1578,1581,1605],256],64852:[[1578,1582,1605],256],64853:[[1578,1605,1580],256],64854:[[1578,1605,1581],256],64855:[[1578,1605,1582],256],64856:[[1580,1605,1581],256],64857:[[1580,1605,1581],256],64858:[[1581,1605,1610],256],64859:[[1581,1605,1609],256],64860:[[1587,1581,1580],256],64861:[[1587,1580,1581],256],64862:[[1587,1580,1609],256],64863:[[1587,1605,1581],256],64864:[[1587,1605,1581],256],64865:[[1587,1605,1580],256],64866:[[1587,1605,1605],256],64867:[[1587,1605,1605],256],64868:[[1589,1581,1581],256],64869:[[1589,1581,1581],256],64870:[[1589,1605,1605],256],64871:[[1588,1581,1605],256],64872:[[1588,1581,1605],256],64873:[[1588,1580,1610],256],64874:[[1588,1605,1582],256],64875:[[1588,1605,1582],256],64876:[[1588,1605,1605],256],64877:[[1588,1605,1605],256],64878:[[1590,1581,1609],256],64879:[[1590,1582,1605],256],64880:[[1590,1582,1605],256],64881:[[1591,1605,1581],256],64882:[[1591,1605,1581],256],64883:[[1591,1605,1605],256],64884:[[1591,1605,1610],256],64885:[[1593,1580,1605],256],64886:[[1593,1605,1605],256],64887:[[1593,1605,1605],256],64888:[[1593,1605,1609],256],64889:[[1594,1605,1605],256],64890:[[1594,1605,1610],256],64891:[[1594,1605,1609],256],64892:[[1601,1582,1605],256],64893:[[1601,1582,1605],256],64894:[[1602,1605,1581],256],64895:[[1602,1605,1605],256],64896:[[1604,1581,1605],256],64897:[[1604,1581,1610],256],64898:[[1604,1581,1609],256],64899:[[1604,1580,1580],256],64900:[[1604,1580,1580],256],64901:[[1604,1582,1605],256],64902:[[1604,1582,1605],256],64903:[[1604,1605,1581],256],64904:[[1604,1605,1581],256],64905:[[1605,1581,1580],256],64906:[[1605,1581,1605],256],64907:[[1605,1581,1610],256],64908:[[1605,1580,1581],256],64909:[[1605,1580,1605],256],64910:[[1605,1582,1580],256],64911:[[1605,1582,1605],256],64914:[[1605,1580,1582],256],64915:[[1607,1605,1580],256],64916:[[1607,1605,1605],256],64917:[[1606,1581,1605],256],64918:[[1606,1581,1609],256],64919:[[1606,1580,1605],256],64920:[[1606,1580,1605],256],64921:[[1606,1580,1609],256],64922:[[1606,1605,1610],256],64923:[[1606,1605,1609],256],64924:[[1610,1605,1605],256],64925:[[1610,1605,1605],256],64926:[[1576,1582,1610],256],64927:[[1578,1580,1610],256],64928:[[1578,1580,1609],256],64929:[[1578,1582,1610],256],64930:[[1578,1582,1609],256],64931:[[1578,1605,1610],256],64932:[[1578,1605,1609],256],64933:[[1580,1605,1610],256],64934:[[1580,1581,1609],256],64935:[[1580,1605,1609],256],64936:[[1587,1582,1609],256],64937:[[1589,1581,1610],256],64938:[[1588,1581,1610],256],64939:[[1590,1581,1610],256],64940:[[1604,1580,1610],256],64941:[[1604,1605,1610],256],64942:[[1610,1581,1610],256],64943:[[1610,1580,1610],256],64944:[[1610,1605,1610],256],64945:[[1605,1605,1610],256],64946:[[1602,1605,1610],256],64947:[[1606,1581,1610],256],64948:[[1602,1605,1581],256],64949:[[1604,1581,1605],256],64950:[[1593,1605,1610],256],64951:[[1603,1605,1610],256],64952:[[1606,1580,1581],256],64953:[[1605,1582,1610],256],64954:[[1604,1580,1605],256],64955:[[1603,1605,1605],256],64956:[[1604,1580,1605],256],64957:[[1606,1580,1581],256],64958:[[1580,1581,1610],256],64959:[[1581,1580,1610],256],64960:[[1605,1580,1610],256],64961:[[1601,1605,1610],256],64962:[[1576,1581,1610],256],64963:[[1603,1605,1605],256],64964:[[1593,1580,1605],256],64965:[[1589,1605,1605],256],64966:[[1587,1582,1610],256],64967:[[1606,1580,1610],256],65008:[[1589,1604,1746],256],65009:[[1602,1604,1746],256],65010:[[1575,1604,1604,1607],256],65011:[[1575,1603,1576,1585],256],65012:[[1605,1581,1605,1583],256],65013:[[1589,1604,1593,1605],256],65014:[[1585,1587,1608,1604],256],65015:[[1593,1604,1610,1607],256],65016:[[1608,1587,1604,1605],256],65017:[[1589,1604,1609],256],65018:[[1589,1604,1609,32,1575,1604,1604,1607,32,1593,1604,1610,1607,32,1608,1587,1604,1605],256],65019:[[1580,1604,32,1580,1604,1575,1604,1607],256],65020:[[1585,1740,1575,1604],256]},65024:{65040:[[44],256],65041:[[12289],256],65042:[[12290],256],65043:[[58],256],65044:[[59],256],65045:[[33],256],65046:[[63],256],65047:[[12310],256],65048:[[12311],256],65049:[[8230],256],65056:[,230],65057:[,230],65058:[,230],65059:[,230],65060:[,230],65061:[,230],65062:[,230],65063:[,220],65064:[,220],65065:[,220],65066:[,220],65067:[,220],65068:[,220],65069:[,220],65072:[[8229],256],65073:[[8212],256],65074:[[8211],256],65075:[[95],256],65076:[[95],256],65077:[[40],256],65078:[[41],256],65079:[[123],256],65080:[[125],256],65081:[[12308],256],65082:[[12309],256],65083:[[12304],256],65084:[[12305],256],65085:[[12298],256],65086:[[12299],256],65087:[[12296],256],65088:[[12297],256],65089:[[12300],256],65090:[[12301],256],65091:[[12302],256],65092:[[12303],256],65095:[[91],256],65096:[[93],256],65097:[[8254],256],65098:[[8254],256],65099:[[8254],256],65100:[[8254],256],65101:[[95],256],65102:[[95],256],65103:[[95],256],65104:[[44],256],65105:[[12289],256],65106:[[46],256],65108:[[59],256],65109:[[58],256],65110:[[63],256],65111:[[33],256],65112:[[8212],256],65113:[[40],256],65114:[[41],256],65115:[[123],256],65116:[[125],256],65117:[[12308],256],65118:[[12309],256],65119:[[35],256],65120:[[38],256],65121:[[42],256],65122:[[43],256],65123:[[45],256],65124:[[60],256],65125:[[62],256],65126:[[61],256],65128:[[92],256],65129:[[36],256],65130:[[37],256],65131:[[64],256],65136:[[32,1611],256],65137:[[1600,1611],256],65138:[[32,1612],256],65140:[[32,1613],256],65142:[[32,1614],256],65143:[[1600,1614],256],65144:[[32,1615],256],65145:[[1600,1615],256],65146:[[32,1616],256],65147:[[1600,1616],256],65148:[[32,1617],256],65149:[[1600,1617],256],65150:[[32,1618],256],65151:[[1600,1618],256],65152:[[1569],256],65153:[[1570],256],65154:[[1570],256],65155:[[1571],256],65156:[[1571],256],65157:[[1572],256],65158:[[1572],256],65159:[[1573],256],65160:[[1573],256],65161:[[1574],256],65162:[[1574],256],65163:[[1574],256],65164:[[1574],256],65165:[[1575],256],65166:[[1575],256],65167:[[1576],256],65168:[[1576],256],65169:[[1576],256],65170:[[1576],256],65171:[[1577],256],65172:[[1577],256],65173:[[1578],256],65174:[[1578],256],65175:[[1578],256],65176:[[1578],256],65177:[[1579],256],65178:[[1579],256],65179:[[1579],256],65180:[[1579],256],65181:[[1580],256],65182:[[1580],256],65183:[[1580],256],65184:[[1580],256],65185:[[1581],256],65186:[[1581],256],65187:[[1581],256],65188:[[1581],256],65189:[[1582],256],65190:[[1582],256],65191:[[1582],256],65192:[[1582],256],65193:[[1583],256],65194:[[1583],256],65195:[[1584],256],65196:[[1584],256],65197:[[1585],256],65198:[[1585],256],65199:[[1586],256],65200:[[1586],256],65201:[[1587],256],65202:[[1587],256],65203:[[1587],256],65204:[[1587],256],65205:[[1588],256],65206:[[1588],256],65207:[[1588],256],65208:[[1588],256],65209:[[1589],256],65210:[[1589],256],65211:[[1589],256],65212:[[1589],256],65213:[[1590],256],65214:[[1590],256],65215:[[1590],256],65216:[[1590],256],65217:[[1591],256],65218:[[1591],256],65219:[[1591],256],65220:[[1591],256],65221:[[1592],256],65222:[[1592],256],65223:[[1592],256],65224:[[1592],256],65225:[[1593],256],65226:[[1593],256],65227:[[1593],256],65228:[[1593],256],65229:[[1594],256],65230:[[1594],256],65231:[[1594],256],65232:[[1594],256],65233:[[1601],256],65234:[[1601],256],65235:[[1601],256],65236:[[1601],256],65237:[[1602],256],65238:[[1602],256],65239:[[1602],256],65240:[[1602],256],65241:[[1603],256],65242:[[1603],256],65243:[[1603],256],65244:[[1603],256],65245:[[1604],256],65246:[[1604],256],65247:[[1604],256],65248:[[1604],256],65249:[[1605],256],65250:[[1605],256],65251:[[1605],256],65252:[[1605],256],65253:[[1606],256],65254:[[1606],256],65255:[[1606],256],65256:[[1606],256],65257:[[1607],256],65258:[[1607],256],65259:[[1607],256],65260:[[1607],256],65261:[[1608],256],65262:[[1608],256],65263:[[1609],256],65264:[[1609],256],65265:[[1610],256],65266:[[1610],256],65267:[[1610],256],65268:[[1610],256],65269:[[1604,1570],256],65270:[[1604,1570],256],65271:[[1604,1571],256],65272:[[1604,1571],256],65273:[[1604,1573],256],65274:[[1604,1573],256],65275:[[1604,1575],256],65276:[[1604,1575],256]},65280:{65281:[[33],256],65282:[[34],256],65283:[[35],256],65284:[[36],256],65285:[[37],256],65286:[[38],256],65287:[[39],256],65288:[[40],256],65289:[[41],256],65290:[[42],256],65291:[[43],256],65292:[[44],256],65293:[[45],256],65294:[[46],256],65295:[[47],256],65296:[[48],256],65297:[[49],256],65298:[[50],256],65299:[[51],256],65300:[[52],256],65301:[[53],256],65302:[[54],256],65303:[[55],256],65304:[[56],256],65305:[[57],256],65306:[[58],256],65307:[[59],256],65308:[[60],256],65309:[[61],256],65310:[[62],256],65311:[[63],256],65312:[[64],256],65313:[[65],256],65314:[[66],256],65315:[[67],256],65316:[[68],256],65317:[[69],256],65318:[[70],256],65319:[[71],256],65320:[[72],256],65321:[[73],256],65322:[[74],256],65323:[[75],256],65324:[[76],256],65325:[[77],256],65326:[[78],256],65327:[[79],256],65328:[[80],256],65329:[[81],256],65330:[[82],256],65331:[[83],256],65332:[[84],256],65333:[[85],256],65334:[[86],256],65335:[[87],256],65336:[[88],256],65337:[[89],256],65338:[[90],256],65339:[[91],256],65340:[[92],256],65341:[[93],256],65342:[[94],256],65343:[[95],256],65344:[[96],256],65345:[[97],256],65346:[[98],256],65347:[[99],256],65348:[[100],256],65349:[[101],256],65350:[[102],256],65351:[[103],256],65352:[[104],256],65353:[[105],256],65354:[[106],256],65355:[[107],256],65356:[[108],256],65357:[[109],256],65358:[[110],256],65359:[[111],256],65360:[[112],256],65361:[[113],256],65362:[[114],256],65363:[[115],256],65364:[[116],256],65365:[[117],256],65366:[[118],256],65367:[[119],256],65368:[[120],256],65369:[[121],256],65370:[[122],256],65371:[[123],256],65372:[[124],256],65373:[[125],256],65374:[[126],256],65375:[[10629],256],65376:[[10630],256],65377:[[12290],256],65378:[[12300],256],65379:[[12301],256],65380:[[12289],256],65381:[[12539],256],65382:[[12530],256],65383:[[12449],256],65384:[[12451],256],65385:[[12453],256],65386:[[12455],256],65387:[[12457],256],65388:[[12515],256],65389:[[12517],256],65390:[[12519],256],65391:[[12483],256],65392:[[12540],256],65393:[[12450],256],65394:[[12452],256],65395:[[12454],256],65396:[[12456],256],65397:[[12458],256],65398:[[12459],256],65399:[[12461],256],65400:[[12463],256],65401:[[12465],256],65402:[[12467],256],65403:[[12469],256],65404:[[12471],256],65405:[[12473],256],65406:[[12475],256],65407:[[12477],256],65408:[[12479],256],65409:[[12481],256],65410:[[12484],256],65411:[[12486],256],65412:[[12488],256],65413:[[12490],256],65414:[[12491],256],65415:[[12492],256],65416:[[12493],256],65417:[[12494],256],65418:[[12495],256],65419:[[12498],256],65420:[[12501],256],65421:[[12504],256],65422:[[12507],256],65423:[[12510],256],65424:[[12511],256],65425:[[12512],256],65426:[[12513],256],65427:[[12514],256],65428:[[12516],256],65429:[[12518],256],65430:[[12520],256],65431:[[12521],256],65432:[[12522],256],65433:[[12523],256],65434:[[12524],256],65435:[[12525],256],65436:[[12527],256],65437:[[12531],256],65438:[[12441],256],65439:[[12442],256],65440:[[12644],256],65441:[[12593],256],65442:[[12594],256],65443:[[12595],256],65444:[[12596],256],65445:[[12597],256],65446:[[12598],256],65447:[[12599],256],65448:[[12600],256],65449:[[12601],256],65450:[[12602],256],65451:[[12603],256],65452:[[12604],256],65453:[[12605],256],65454:[[12606],256],65455:[[12607],256],65456:[[12608],256],65457:[[12609],256],65458:[[12610],256],65459:[[12611],256],65460:[[12612],256],65461:[[12613],256],65462:[[12614],256],65463:[[12615],256],65464:[[12616],256],65465:[[12617],256],65466:[[12618],256],65467:[[12619],256],65468:[[12620],256],65469:[[12621],256],65470:[[12622],256],65474:[[12623],256],65475:[[12624],256],65476:[[12625],256],65477:[[12626],256],65478:[[12627],256],65479:[[12628],256],65482:[[12629],256],65483:[[12630],256],65484:[[12631],256],65485:[[12632],256],65486:[[12633],256],65487:[[12634],256],65490:[[12635],256],65491:[[12636],256],65492:[[12637],256],65493:[[12638],256],65494:[[12639],256],65495:[[12640],256],65498:[[12641],256],65499:[[12642],256],65500:[[12643],256],65504:[[162],256],65505:[[163],256],65506:[[172],256],65507:[[175],256],65508:[[166],256],65509:[[165],256],65510:[[8361],256],65512:[[9474],256],65513:[[8592],256],65514:[[8593],256],65515:[[8594],256],65516:[[8595],256],65517:[[9632],256],65518:[[9675],256]}};var b={nfc:function(e){return w("NFC",e)},nfd:function(e){return w("NFD",e)},nfkc:function(e){return w("NFKC",e)},nfkd:function(e){return w("NFKD",e)}};e.exports=b,b.shimApplied=!1,String.prototype.normalize||(Object.defineProperty(String.prototype,"normalize",{enumerable:!1,configurable:!0,writable:!0,value:function(){var e=""+this,t=void 0===arguments[0]?"NFC":arguments[0];if(null==this)throw new TypeError("Cannot call method on "+Object.prototype.toString.call(this));if("NFC"===t)return b.nfc(e);if("NFD"===t)return b.nfd(e);if("NFKC"===t)return b.nfkc(e);if("NFKD"===t)return b.nfkd(e);throw new RangeError("Invalid normalization form: "+t)}}),b.shimApplied=!0)}()},function(e,t){t.onOuterClick=function(e){return function(){e.setState({searchQuery:""})}}},function(e,t,i){e.exports=i(36)},function(e,t,i){"use strict";function s(){}function r(){}var n=i(15);r.resetWarningCache=s,e.exports=function(){function e(e,t,i,s,r,a){if(a!==n){var o=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw o.name="Invariant Violation",o}}function t(){return e}e.isRequired=e;var i={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:r,resetWarningCache:s};return i.PropTypes=i,i}},function(e,t,i){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,i){"use strict";function s(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case a:switch(e=e.type){case w:case b:case c:case d:case h:case g:return e;default:switch(e=e&&e.$$typeof){case l:case p:case u:return e;default:return t}}case f:case z:case o:return t}}}function r(e){return s(e)===b}Object.defineProperty(t,"__esModule",{value:!0});var n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,c=n?Symbol.for("react.fragment"):60107,h=n?Symbol.for("react.strict_mode"):60108,d=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,w=n?Symbol.for("react.async_mode"):60111,b=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,g=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,z=n?Symbol.for("react.memo"):60115,f=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.fundamental"):60117,v=n?Symbol.for("react.responder"):60118,k=n?Symbol.for("react.scope"):60119;t.typeOf=s,t.AsyncMode=w,t.ConcurrentMode=b,t.ContextConsumer=l,t.ContextProvider=u,t.Element=a,t.ForwardRef=p,t.Fragment=c,t.Lazy=f,t.Memo=z,t.Portal=o,t.Profiler=d,t.StrictMode=h,t.Suspense=g,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===c||e===b||e===d||e===h||e===g||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===f||e.$$typeof===z||e.$$typeof===u||e.$$typeof===l||e.$$typeof===p||e.$$typeof===y||e.$$typeof===v||e.$$typeof===k)},t.isAsyncMode=function(e){return r(e)||s(e)===w},t.isConcurrentMode=r,t.isContextConsumer=function(e){return s(e)===l},t.isContextProvider=function(e){return s(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},t.isForwardRef=function(e){return s(e)===p},t.isFragment=function(e){return s(e)===c},t.isLazy=function(e){return s(e)===f},t.isMemo=function(e){return s(e)===z},t.isPortal=function(e){return s(e)===o},t.isProfiler=function(e){return s(e)===d},t.isStrictMode=function(e){return s(e)===h},t.isSuspense=function(e){return s(e)===g}},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=i(0).PropTypes||i(1),a=function(e){var t=e.className;return r.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},r.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};a.propTypes={className:n.string},a.defaultProps={className:""};var o=a;t.default=o},function(e,t,i){"use strict";var s=i(8),r=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r(i(3)),a=r(i(4)),o=r(i(5)),c=r(i(6)),h=r(i(7)),d=s(i(0)),u=i(0).PropTypes||i(1),l=function(e){function t(){return(0,n.default)(this,t),(0,o.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,h.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this,t=this.props.className;return d.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},d.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))}}]),t}(d.Component);l.propTypes={className:u.string},l.defaultProps={className:""};var w=l;t.default=w},function(e,t){function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(t){return"function"==typeof Symbol&&"symbol"===i(Symbol.iterator)?e.exports=s=function(e){return i(e)}:e.exports=s=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":i(e)},s(t)}e.exports=s},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){function i(t,s){return e.exports=i=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},i(t,s)}e.exports=i},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(3)),n=s(i(4)),a=s(i(5)),o=s(i(6)),c=s(i(7)),h=s(i(0)),d=function(e){function t(){return(0,r.default)(this,t),(0,a.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,n.default)(t,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return h.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(t){e.node=t}},h.default.createElement("polygon",{points:"32,3.5 28.5,0 16,12.5 3.5,0 0,3.5 12.5,16 0,28.5 3.5,32 16,19.5 28.5,32 32,28.5 19.5,16"}))}}]),t}(h.default.Component);t.default=d},function(e,t,i){"use strict";var s=i(8),r=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r(i(3)),a=r(i(4)),o=r(i(5)),c=r(i(6)),h=r(i(7)),d=s(i(0)),u=function(e){function t(){return(0,n.default)(this,t),(0,o.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,h.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},d.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),d.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),d.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(d.Component);t.default=u},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=function(){return r.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),r.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))};t.default=n},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=i(0).PropTypes||i(1),a=function(e){var t=e.className;return r.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("title",null,"listen"),r.default.createElement("path",{d:"M21.4,4.8,20,6.2a14,14,0,0,1,0,19.6l1.4,1.4a16,16,0,0,0,0-22.4Z"}),r.default.createElement("path",{d:"M25.6.5,24.2,2a19.9,19.9,0,0,1,0,28.1l1.4,1.4A22,22,0,0,0,25.6.5Z"}),r.default.createElement("polygon",{points:"16 4 10 10 0 10 0 22 10 22 16 28 16 4"}))};a.propTypes={className:n.string},a.defaultProps={className:""};var o=a;t.default=o},function(e,t,i){"use strict";var s=i(8),r=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r(i(3)),a=r(i(4)),o=r(i(5)),c=r(i(6)),h=r(i(7)),d=s(i(0)),u=function(e){function t(){return(0,n.default)(this,t),(0,o.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,h.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},d.default.createElement("title",{id:"next-chevron-title"},"Next"),d.default.createElement("desc",null,"Move to the next page"),d.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(d.Component);t.default=u},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=function(){return r.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("title",null,"no"),r.default.createElement("polygon",{points:"32 3.5 28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32 32 28.5 19.5 16 32 3.5"}))};t.default=n},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=i(0).PropTypes||i(1),a=function(e){var t=e.className;return r.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("title",null,"play"),r.default.createElement("polygon",{points:"3 32 29 16 3 0 3 32"}))};a.propTypes={className:n.string},a.defaultProps={className:""};var o=a;t.default=o},function(e,t,i){"use strict";var s=i(8),r=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r(i(3)),a=r(i(4)),o=r(i(5)),c=r(i(6)),h=r(i(7)),d=s(i(0)),u=function(e){function t(){return(0,n.default)(this,t),(0,o.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,h.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},d.default.createElement("title",{id:"previous-chevron-title"},"Previous"),d.default.createElement("desc",null,"Move to the previous page"),d.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(d.Component);t.default=u},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=i(0).PropTypes||i(1),a=function(e){var t=e.className;return r.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),r.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),r.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),r.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),r.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))};a.propTypes={className:n.string},a.defaultProps={className:""};var o=a;t.default=o},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=i(0).PropTypes||i(1),a=function(e){var t=e.className,i=e.height,s=e.width;return r.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:s,height:i,viewBox:"0 0 ".concat(s," ").concat(i)},r.default.createElement("title",null,"stop"),r.default.createElement("rect",{width:s,height:i}))};a.propTypes={className:n.string,height:n.number,width:n.number},a.defaultProps={className:"",height:32,width:32};var o=a;t.default=o},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=function(){return r.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("title",null,"search"),r.default.createElement("path",{d:"M32,28.5l-8.2-8.2a13,13,0,1,0-3.5,3.5L28.5,32ZM6.6,19.4A9,9,0,1,1,13,22,8.9,8.9,0,0,1,6.6,19.4Z"}))};t.default=n},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(0)),n=function(){return r.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},r.default.createElement("title",null,"yes"),r.default.createElement("polygon",{points:"12.9 28.9 31.9 6.3 28.1 3.1 12.3 21.9 3.3 14.4 0.1 18.2 12.9 28.9"}))};t.default=n},function(e,t,i){"use strict";var s=i(8),r=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r(i(3)),a=r(i(4)),o=r(i(5)),c=r(i(6)),h=r(i(7)),d=s(i(0)),u=function(e){function t(){return(0,n.default)(this,t),(0,o.default)(this,(0,c.default)(t).apply(this,arguments))}return(0,h.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.svg.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return d.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.svg=t}},d.default.createElement("path",{d:"M29.8 8l-3.5 2c1 1.8 1.6 3.8 1.6 6 0 6.6-5.4 12-12 12S4 22.6 4 16 9.4 4 16 4V0C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16c0-2.9-.8-5.6-2.2-8z"}))}}]),t}(d.Component);t.default=u},function(e,t,i){"use strict";var s=i(2);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(i(3)),n=s(i(4)),a=s(i(5)),o=s(i(6)),c=s(i(7)),h=s(i(0)),d=function(e){function t(){return(0,r.default)(this,t),(0,a.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,n.default)(t,[{key:"componentDidMount",value:function(){this.node.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return h.default.createElement("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:"32px",height:"32px",viewBox:"0 0 32 32",enableBackground:"new 0 0 32 32",xmlSpace:"preserve",ref:function(t){e.node=t}},h.default.createElement("g",{id:"Grid"}),h.default.createElement("g",{id:"Layer_2"},h.default.createElement("g",null,h.default.createElement("path",{d:"M16,2L0,30h32L16,2z M18,27h-4v-4h4V27z M14,21V11h4v10H14z"}))))}}]),t}(h.default.Component);t.default=d},function(e,t,i){"use strict";function s(e,t){if(null==e)return{};var i,s,r={},n=Object.keys(e);for(s=0;s<n.length;s++)i=n[s],t.indexOf(i)>=0||(r[i]=e[i]);return r}function r(){return(r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(e[s]=i[s])}return e}).apply(this,arguments)}function n(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a(e){return null!=e&&"object"==typeof e&&1===e.nodeType}function o(e,t){return(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e}function c(e,t){if(e.clientHeight<e.scrollHeight||e.clientWidth<e.scrollWidth){var i=getComputedStyle(e,null);return o(i.overflowY,t)||o(i.overflowX,t)}return!1}function h(e,t,i,s,r,n,a,o){return n<e&&a>t||n>e&&a<t?0:n<=e&&o<=i||a>=t&&o>=i?n-e-s:a>t&&o<i||n<e&&o>i?a-t+r:0}function d(e){return"function"==typeof e?e:u}function u(){}function l(e,t){null!==e&&Q(e,{boundary:t,block:"nearest",scrollMode:"if-needed"}).forEach(function(e){var t=e.el,i=e.top,s=e.left;t.scrollTop=i,t.scrollLeft=s})}function w(e,t){return e===t||e.contains&&e.contains(t)}function b(e,t){function i(){r&&clearTimeout(r)}function s(){for(var s=arguments.length,n=new Array(s),a=0;a<s;a++)n[a]=arguments[a];i(),r=setTimeout(function(){r=null,e.apply(void 0,n)},t)}var r;return s.cancel=i,s}function p(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return function(e){for(var i=arguments.length,s=new Array(i>1?i-1:0),r=1;r<i;r++)s[r-1]=arguments[r];return t.some(function(t){return t&&t.apply(void 0,[e].concat(s)),e.preventDownshiftDefault||e.hasOwnProperty("nativeEvent")&&e.nativeEvent.preventDownshiftDefault})}}function g(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return function(){for(var e=arguments.length,i=new Array(e),s=0;s<e;s++)i[s]=arguments[s];t.forEach(function(e){e&&e.apply(void 0,i)})}}function m(e,t){return!(e=Array.isArray(e)?e[0]:e)&&t?t:e}function z(e){return"string"==typeof e.type}function f(e){return e.props}function y(e){void 0===e&&(e={});var t={};return ee.forEach(function(i){e.hasOwnProperty(i)&&(t[i]=e[i])}),t}function v(e){var t=e.key,i=e.keyCode;return i>=37&&i<=40&&0!==t.indexOf("Arrow")?"Arrow"+t:t}function k(e,t,i){var s=i-1;("number"!=typeof t||t<0||t>=i)&&(t=e>0?-1:s+1);var r=t+e;return r<0?r=s:r>s&&(r=0),r}function x(e,t){var i=j(t);e&&(i.textContent=e,te())}function j(e){void 0===e&&(e=document);var t=e.getElementById("a11y-status-message");return t||((t=e.createElement("div")).setAttribute("id","a11y-status-message"),t.setAttribute("role","status"),t.setAttribute("aria-live","polite"),t.setAttribute("aria-relevant","additions text"),Object.assign(t.style,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px"}),e.body.appendChild(t),t)}function q(e,t,i,s){if(-1===t)return e>0?0:i-1;var r=t+e;return r<0?s?i-1:0:r>=i?s?0:i-1:r}function T(e,t,i,s){var r,n=i.map(function(e){return s(e).toLowerCase()}),a=t+1;return(r=n.slice(a).findIndex(function(t){return t.startsWith(e)}))>-1?r+a:n.slice(0,a).findIndex(function(t){return t.startsWith(e)})}function I(e,t){return Object.keys(e).reduce(function(i,s){return i[s]=s in t?t[s]:e[s],i},{})}function S(e){return/^\S{1}$/.test(e)}function P(e){return""+e.slice(0,1).toUpperCase()+e.slice(1)}function M(e,t,i){Object.keys(t).forEach(function(s){!function(e,t,i,s){var r="on"+P(e)+"Change";t[r]&&void 0!==s[e]&&s[e]!==i[e]&&t[r](s)}(s,e,t,i)}),e.onStateChange&&void 0!==i&&e.onStateChange(i)}function C(e,t,i){var s=e.items,r=e.initialHighlightedIndex,n=e.defaultHighlightedIndex,a=t.selectedItem,o=t.highlightedIndex;return void 0!==r&&o>-1?r:void 0!==n?n:a?0===i?s.indexOf(a):q(i,s.indexOf(a),s.length,!1):0===i?-1:i<0?s.length-1:0}function A(e,t){var i="default"+P(t);return i in e?e[i]:ve[t]}function H(e,t){if(t in e)return e[t];var i="initial"+P(t);return i in e?e[i]:A(e,t)}function R(e,t){var i,s=t.type,n=t.props,a=t.shiftKey;switch(s){case Ce:i={highlightedIndex:t.index};break;case Ae:i={isOpen:A(n,"isOpen"),highlightedIndex:A(n,"highlightedIndex"),selectedItem:n.items[t.index]};break;case Me:i=r({isOpen:!1,highlightedIndex:-1},e.highlightedIndex>=0&&{selectedItem:n.items[e.highlightedIndex]});break;case xe:i={highlightedIndex:q(a?5:1,e.highlightedIndex,n.items.length,n.circularNavigation)};break;case je:i={highlightedIndex:q(a?-5:-1,e.highlightedIndex,n.items.length,n.circularNavigation)};break;case Te:i={highlightedIndex:0};break;case Ie:i={highlightedIndex:n.items.length-1};break;case qe:i={isOpen:!1,highlightedIndex:-1};break;case Se:i=r({isOpen:A(n,"isOpen"),highlightedIndex:A(n,"highlightedIndex")},e.highlightedIndex>=0&&{selectedItem:n.items[e.highlightedIndex]});break;case Pe:var o=t.key,c=""+e.keysSoFar+o,h=T(c,e.highlightedIndex,n.items,n.itemToString);i=r({keysSoFar:c},h>=0&&{highlightedIndex:h});break;case He:var d=t.key,u=""+e.keysSoFar+d,l=T(u,e.selectedItem?n.items.indexOf(e.selectedItem):-1,n.items,n.itemToString);i=r({keysSoFar:u},l>=0&&{selectedItem:n.items[l]});break;case Re:i={isOpen:!0,highlightedIndex:C(n,e,1)};break;case Ee:i={isOpen:!0,highlightedIndex:C(n,e,-1)};break;case We:case Oe:i={isOpen:!e.isOpen,highlightedIndex:e.isOpen?-1:C(n,e,0)};break;case De:i={isOpen:!0,highlightedIndex:C(n,e,0)};break;case Ne:i={isOpen:!1};break;case Le:i={highlightedIndex:t.highlightedIndex};break;case Be:i={selectedItem:t.selectedItem};break;case Ke:i={keysSoFar:""};break;case Fe:i={highlightedIndex:A(n,"highlightedIndex"),isOpen:A(n,"isOpen"),selectedItem:A(n,"selectedItem")};break;default:throw new Error("Reducer called without proper action type.")}return r({},e,{},i)}function E(e){void 0===e&&(e={}),_e(e);var t=r({},Ve,{},e),i=t.items,n=t.itemToString,a=t.getA11yStatusMessage,o=t.getA11ySelectionMessage,c=t.initialIsOpen,h=t.defaultIsOpen,d=t.scrollIntoView,u=t.environment,l=function(e,t,i){var s=J.a.useCallback(function(t,i){t=I(t,i.props);var s=(0,i.props.stateReducer)(t,r({},i,{changes:e(t,i)}));return M(i.props,t,s),s},[e]),n=J.a.useReducer(s,t),a=n[0],o=n[1];return[I(a,i),o]}(R,function(e){var t=H(e,"selectedItem"),i=H(e,"highlightedIndex"),s=H(e,"isOpen");return{highlightedIndex:i<0&&t?e.items.indexOf(t):i,isOpen:s,selectedItem:t,keysSoFar:""}}(t),t),w=l[0],m=w.isOpen,z=w.highlightedIndex,f=w.selectedItem,y=w.keysSoFar,k=l[1],j=function(e){return k(r({props:t},e))},q=function(e,t){var i=void 0===t?{}:t,s=i.id,r=i.labelId,n=i.menuId,a=i.getItemId,o=i.toggleButtonId,c=void 0===s?"downshift-"+e():s;return{labelId:r||c+"-label",menuId:n||c+"-menu",getItemId:a||function(e){return c+"-item-"+e},toggleButtonId:o||c+"-toggle-button"}}(Z,t),T=q.labelId,P=q.getItemId,C=q.menuId,A=q.toggleButtonId,E=Object(V.useRef)(null),W=Object(V.useRef)(null),O=Object(V.useRef)();O.current=[];var D=Object(V.useRef)(!0),N=Object(V.useRef)(!0);Object(V.useEffect)(function(){D.current||x(a({isOpen:m,items:i,selectedItem:f,itemToString:n}),u.document)},[m]),Object(V.useEffect)(function(){D.current||x(o({isOpen:m,items:i,selectedItem:f,itemToString:n}),u.document)},[f]),Object(V.useEffect)(function(){D.current&&(ye=b(function(){j({type:Ke})},500)),y&&ye()},[y]),Object(V.useEffect)(function(){D.current?(c||h||m)&&W.current.focus():m?W.current.focus():u.document.activeElement===W.current&&E.current.focus()},[m]),Object(V.useEffect)(function(){z<0||!m||!O.current.length||(!1===N.current?N.current=!0:d(O.current[z],W.current))},[z]),Object(V.useEffect)(function(){D.current=!1},[]);var L={ArrowDown:function(e){e.preventDefault(),j({type:xe,shiftKey:e.shiftKey})},ArrowUp:function(e){e.preventDefault(),j({type:je,shiftKey:e.shiftKey})},Home:function(e){e.preventDefault(),j({type:Te})},End:function(e){e.preventDefault(),j({type:Ie})},Escape:function(){j({type:qe})},Enter:function(e){e.preventDefault(),j({type:Se})},Tab:function(e){e.shiftKey&&j({type:Me})}},B={ArrowDown:function(e){e.preventDefault(),j({type:Re})},ArrowUp:function(e){e.preventDefault(),j({type:Ee})}},K=function(e){var t=v(e);t&&L[t]?L[t](e):S(t)&&j({type:Pe,key:t})},F=function(e){e.relatedTarget!==E.current&&j({type:Me})},U=function(){j({type:We})},_=function(e){var t=v(e);t&&B[t]?B[t](e):S(t)&&j({type:He,key:t})};return{getToggleButtonProps:function(e){var t,i=void 0===e?{}:e,n=i.onClick,a=i.onKeyDown,o=i.refKey,c=void 0===o?"ref":o,h=i.ref,d=s(i,["onClick","onKeyDown","refKey","ref"]);return r(((t={})[c]=g(h,function(e){E.current=e}),t.id=A,t["aria-haspopup"]="listbox",t["aria-expanded"]=m,t["aria-labelledby"]=T+" "+A,t.onClick=p(n,U),t.onKeyDown=p(a,_),t),d)},getLabelProps:function(e){return r({id:T},e)},getMenuProps:function(e){var t,i=void 0===e?{}:e,n=i.onKeyDown,a=i.onBlur,o=i.refKey,c=void 0===o?"ref":o,h=i.ref,d=s(i,["onKeyDown","onBlur","refKey","ref"]);return r(((t={})[c]=g(h,function(e){W.current=e}),t.id=C,t.role="listbox",t["aria-labelledby"]=T,t.tabIndex=-1,t),z>-1&&{"aria-activedescendant":P(z)},{onKeyDown:p(n,K),onBlur:p(a,F)},d)},getItemProps:function(e){var t,n=void 0===e?{}:e,a=n.item,o=n.index,c=n.refKey,h=void 0===c?"ref":c,d=n.ref,u=n.onMouseMove,l=n.onClick,w=s(n,["item","index","refKey","ref","onMouseMove","onClick"]),b=function(e,t,i){return void 0!==e?e:0===i.length?-1:i.indexOf(t)}(o,a,i);if(b<0)throw new Error("Pass either item or item index in getItemProps!");return r(((t={})[h]=g(d,function(e){e&&O.current.push(e)}),t.role="option",t),b===z&&{"aria-selected":!0},{id:P(b),onMouseMove:p(u,function(){return function(e){e!==z&&(N.current=!1,j({type:Ce,index:e}))}(b)}),onClick:p(l,function(){return function(e){j({type:Ae,index:e})}(b)})},w)},toggleMenu:function(){j({type:Oe})},openMenu:function(){j({type:De})},closeMenu:function(){j({type:Ne})},setHighlightedIndex:function(e){j({type:Le,highlightedIndex:e})},selectItem:function(e){j({type:Be,selectedItem:e})},reset:function(){j({type:Fe})},highlightedIndex:z,isOpen:m,selectedItem:f}}function W(){return(W=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(e[s]=i[s])}return e}).apply(this,arguments)}function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function D(){return(D=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(e[s]=i[s])}return e}).apply(this,arguments)}function N(e,t){for(var i=0;i<t.length;i++){var s=t[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(e,s.key,s)}}function L(e,t){return!t||"object"!==O(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function B(e){return(B=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function K(e,t){return(K=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function F(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),i.push.apply(i,s)}return i}function U(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function _(e,t){switch(t.type){case Je.stateChangeTypes.keyDownEnter:case Je.stateChangeTypes.clickItem:return function(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?F(i,!0).forEach(function(t){U(e,t,i[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):F(i).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))})}return e}({},t,{isOpen:e.isOpen,highlightedIndex:e.highlightedIndex});default:return t}}i.r(t);var V=i(0),J=i.n(V),G=i(1),$=i.n(G);i(9);var Q=function(e,t){var i=t.scrollMode,s=t.block,r=t.inline,n=t.boundary,o=t.skipOverflowHiddenElements,d="function"==typeof n?n:function(e){return e!==n};if(!a(e))throw new TypeError("Invalid target");for(var u=document.scrollingElement||document.documentElement,l=[],w=e;a(w)&&d(w);){if((w=w.parentNode)===u){l.push(w);break}w===document.body&&c(w)&&!c(document.documentElement)||c(w,o)&&l.push(w)}for(var b=window.visualViewport?visualViewport.width:innerWidth,p=window.visualViewport?visualViewport.height:innerHeight,g=window.scrollX||pageXOffset,m=window.scrollY||pageYOffset,z=e.getBoundingClientRect(),f=z.height,y=z.width,v=z.top,k=z.right,x=z.bottom,j=z.left,q="start"===s||"nearest"===s?v:"end"===s?x:v+f/2,T="center"===r?j+y/2:"end"===r?k:j,I=[],S=0;S<l.length;S++){var P=l[S],M=P.getBoundingClientRect(),C=M.height,A=M.width,H=M.top,R=M.right,E=M.bottom,W=M.left;if("if-needed"===i&&v>=0&&j>=0&&x<=p&&k<=b&&v>=H&&x<=E&&j>=W&&k<=R)return I;var O=getComputedStyle(P),D=parseInt(O.borderLeftWidth,10),N=parseInt(O.borderTopWidth,10),L=parseInt(O.borderRightWidth,10),B=parseInt(O.borderBottomWidth,10),K=0,F=0,U="offsetWidth"in P?P.offsetWidth-P.clientWidth-D-L:0,_="offsetHeight"in P?P.offsetHeight-P.clientHeight-N-B:0;if(u===P)K="start"===s?q:"end"===s?q-p:"nearest"===s?h(m,m+p,p,N,B,m+q,m+q+f,f):q-p/2,F="start"===r?T:"center"===r?T-b/2:"end"===r?T-b:h(g,g+b,b,D,L,g+T,g+T+y,y),K=Math.max(0,K+m),F=Math.max(0,F+g);else{K="start"===s?q-H-N:"end"===s?q-E+B+_:"nearest"===s?h(H,E,C,N,B+_,q,q+f,f):q-(H+C/2)+_/2,F="start"===r?T-W-D:"center"===r?T-(W+A/2)+U/2:"end"===r?T-R+L+U:h(W,R,A,D,L+U,T,T+y,y);var V=P.scrollLeft,J=P.scrollTop;q+=J-(K=Math.max(0,Math.min(J+K,P.scrollHeight-C+_))),T+=V-(F=Math.max(0,Math.min(V+F,P.scrollWidth-A+U)))}I.push({el:P,top:K,left:F})}return I},Y=0,Z=function(){var e=Object(V.useState)(null),t=e[0],i=e[1];return Object(V.useEffect)(function(){return i(++Y)},[]),t},X=0,ee=["highlightedIndex","inputValue","isOpen","selectedItem","type"],te=b(function(){j().textContent=""},500),ie=0,se=2,re=3,ne=4,ae=5,oe=6,ce=7,he=8,de=9,ue=10,le=11,we=12,be=13,pe=14,ge=Object.freeze({unknown:ie,mouseUp:1,itemMouseEnter:se,keyDownArrowUp:re,keyDownArrowDown:ne,keyDownEscape:ae,keyDownEnter:oe,keyDownHome:ce,keyDownEnd:he,clickItem:de,blurInput:ue,changeInput:le,keyDownSpaceButton:we,clickButton:be,blurButton:pe,controlledPropUpdatedSelectedItem:15,touchEnd:16}),me=function(e){function t(t){var i=e.call(this,t)||this;i.id=i.props.id||"downshift-"+String(X++),i.menuId=i.props.menuId||i.id+"-menu",i.labelId=i.props.labelId||i.id+"-label",i.inputId=i.props.inputId||i.id+"-input",i.getItemId=i.props.getItemId||function(e){return i.id+"-item-"+e},i.input=null,i.items=[],i.itemCount=null,i.previousResultCount=0,i.timeoutIds=[],i.internalSetTimeout=function(e,t){var s=setTimeout(function(){i.timeoutIds=i.timeoutIds.filter(function(e){return e!==s}),e()},t);i.timeoutIds.push(s)},i.setItemCount=function(e){i.itemCount=e},i.unsetItemCount=function(){i.itemCount=null},i.setHighlightedIndex=function(e,t){void 0===e&&(e=i.props.defaultHighlightedIndex),void 0===t&&(t={}),t=y(t),i.internalSetState(r({highlightedIndex:e},t))},i.clearSelection=function(e){i.internalSetState({selectedItem:null,inputValue:"",highlightedIndex:i.props.defaultHighlightedIndex,isOpen:i.props.defaultIsOpen},e)},i.selectItem=function(e,t,s){t=y(t),i.internalSetState(r({isOpen:i.props.defaultIsOpen,highlightedIndex:i.props.defaultHighlightedIndex,selectedItem:e,inputValue:i.props.itemToString(e)},t),s)},i.selectItemAtIndex=function(e,t,s){var r=i.items[e];null!=r&&i.selectItem(r,t,s)},i.selectHighlightedItem=function(e,t){return i.selectItemAtIndex(i.getState().highlightedIndex,e,t)},i.internalSetState=function(e,t){var s,n,a={},o="function"==typeof e;return!o&&e.hasOwnProperty("inputValue")&&i.props.onInputValueChange(e.inputValue,r({},i.getStateAndHelpers(),{},e)),i.setState(function(t){t=i.getState(t);var c=o?e(t):e;c=i.props.stateReducer(t,c),s=c.hasOwnProperty("selectedItem");var h={},d={};return s&&c.selectedItem!==t.selectedItem&&(n=c.selectedItem),c.type=c.type||ie,Object.keys(c).forEach(function(e){t[e]!==c[e]&&(a[e]=c[e]),"type"!==e&&(d[e]=c[e],i.isControlledProp(e)||(h[e]=c[e]))}),o&&c.hasOwnProperty("inputValue")&&i.props.onInputValueChange(c.inputValue,r({},i.getStateAndHelpers(),{},c)),h},function(){d(t)(),Object.keys(a).length>1&&i.props.onStateChange(a,i.getStateAndHelpers()),s&&i.props.onSelect(e.selectedItem,i.getStateAndHelpers()),void 0!==n&&i.props.onChange(n,i.getStateAndHelpers()),i.props.onUserAction(a,i.getStateAndHelpers())})},i.rootRef=function(e){return i._rootNode=e},i.getRootProps=function(e,t){var n,a=void 0===e?{}:e,o=a.refKey,c=void 0===o?"ref":o,h=a.ref,d=s(a,["refKey","ref"]),u=(void 0===t?{}:t).suppressRefError,l=void 0!==u&&u;i.getRootProps.called=!0,i.getRootProps.refKey=c,i.getRootProps.suppressRefError=l;var w=i.getState().isOpen;return r(((n={})[c]=g(h,i.rootRef),n.role="combobox",n["aria-expanded"]=w,n["aria-haspopup"]="listbox",n["aria-owns"]=w?i.menuId:null,n["aria-labelledby"]=i.labelId,n),d)},i.keyDownHandlers={ArrowDown:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var i=e.shiftKey?5:1;this.moveHighlightedIndex(i,{type:ne})}else this.internalSetState({isOpen:!0,type:ne},function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(k(1,t.getState().highlightedIndex,e),{type:ne})})},ArrowUp:function(e){var t=this;if(e.preventDefault(),this.getState().isOpen){var i=e.shiftKey?-5:-1;this.moveHighlightedIndex(i,{type:re})}else this.internalSetState({isOpen:!0,type:re},function(){var e=t.getItemCount();e>0&&t.setHighlightedIndex(k(-1,t.getState().highlightedIndex,e),{type:ne})})},Enter:function(e){var t=this.getState(),i=t.isOpen,s=t.highlightedIndex;if(i&&null!=s){e.preventDefault();var r=this.items[s],n=this.getItemNodeFromIndex(s);if(null==r||n&&n.hasAttribute("disabled"))return;this.selectHighlightedItem({type:oe})}},Escape:function(e){e.preventDefault(),this.reset({type:ae,selectedItem:null,inputValue:""})}},i.buttonKeyDownHandlers=r({},i.keyDownHandlers,{" ":function(e){e.preventDefault(),this.toggleMenu({type:we})}}),i.inputKeyDownHandlers=r({},i.keyDownHandlers,{Home:function(e){this.highlightFirstOrLastIndex(e,!0,{type:ce})},End:function(e){this.highlightFirstOrLastIndex(e,!1,{type:he})}}),i.getToggleButtonProps=function(e){var t=void 0===e?{}:e,n=t.onClick,a=(t.onPress,t.onKeyDown),o=t.onKeyUp,c=t.onBlur,h=s(t,["onClick","onPress","onKeyDown","onKeyUp","onBlur"]),d=i.getState().isOpen,u={onClick:p(n,i.buttonHandleClick),onKeyDown:p(a,i.buttonHandleKeyDown),onKeyUp:p(o,i.buttonHandleKeyUp),onBlur:p(c,i.buttonHandleBlur)};return r({type:"button",role:"button","aria-label":d?"close menu":"open menu","aria-haspopup":!0,"data-toggle":!0},h.disabled?{}:u,{},h)},i.buttonHandleKeyUp=function(e){e.preventDefault()},i.buttonHandleKeyDown=function(e){var t=v(e);i.buttonKeyDownHandlers[t]&&i.buttonKeyDownHandlers[t].call(n(i),e)},i.buttonHandleClick=function(e){e.preventDefault(),i.props.environment.document.activeElement===i.props.environment.document.body&&e.target.focus(),i.internalSetTimeout(function(){return i.toggleMenu({type:be})})},i.buttonHandleBlur=function(e){var t=e.target;i.internalSetTimeout(function(){i.isMouseDown||null!=i.props.environment.document.activeElement&&i.props.environment.document.activeElement.id===i.inputId||i.props.environment.document.activeElement===t||i.reset({type:pe})})},i.getLabelProps=function(e){return r({htmlFor:i.inputId,id:i.labelId},e)},i.getInputProps=function(e){var t,n=void 0===e?{}:e,a=n.onKeyDown,o=n.onBlur,c=n.onChange,h=n.onInput,d=(n.onChangeText,s(n,["onKeyDown","onBlur","onChange","onInput","onChangeText"])),u={},l=i.getState(),w=l.inputValue,b=l.isOpen,g=l.highlightedIndex;return d.disabled||((t={}).onChange=p(c,h,i.inputHandleChange),t.onKeyDown=p(a,i.inputHandleKeyDown),t.onBlur=p(o,i.inputHandleBlur),u=t),r({"aria-autocomplete":"list","aria-activedescendant":b&&"number"==typeof g&&g>=0?i.getItemId(g):null,"aria-controls":b?i.menuId:null,"aria-labelledby":i.labelId,autoComplete:"off",value:w,id:i.inputId},u,{},d)},i.inputHandleKeyDown=function(e){var t=v(e);t&&i.inputKeyDownHandlers[t]&&i.inputKeyDownHandlers[t].call(n(i),e)},i.inputHandleChange=function(e){i.internalSetState({type:le,isOpen:!0,inputValue:e.target.value,highlightedIndex:i.props.defaultHighlightedIndex})},i.inputHandleBlur=function(){i.internalSetTimeout(function(){var e=i.props.environment.document&&!!i.props.environment.document.activeElement&&!!i.props.environment.document.activeElement.dataset&&i.props.environment.document.activeElement.dataset.toggle&&i._rootNode&&i._rootNode.contains(i.props.environment.document.activeElement);i.isMouseDown||e||i.reset({type:ue})})},i.menuRef=function(e){i._menuNode=e},i.getMenuProps=function(e,t){var n,a=void 0===e?{}:e,o=a.refKey,c=void 0===o?"ref":o,h=a.ref,d=s(a,["refKey","ref"]),u=(void 0===t?{}:t).suppressRefError,l=void 0!==u&&u;return i.getMenuProps.called=!0,i.getMenuProps.refKey=c,i.getMenuProps.suppressRefError=l,r(((n={})[c]=g(h,i.menuRef),n.role="listbox",n["aria-labelledby"]=d&&d["aria-label"]?null:i.labelId,n.id=i.menuId,n),d)},i.getItemProps=function(e){var t,n=void 0===e?{}:e,a=n.onMouseMove,o=n.onMouseDown,c=n.onClick,h=(n.onPress,n.index),d=n.item,u=void 0===d?void 0:d,l=s(n,["onMouseMove","onMouseDown","onClick","onPress","index","item"]);void 0===h?(i.items.push(u),h=i.items.indexOf(u)):i.items[h]=u;var w=c,b=((t={onMouseMove:p(a,function(){h!==i.getState().highlightedIndex&&(i.setHighlightedIndex(h,{type:se}),i.avoidScrolling=!0,i.internalSetTimeout(function(){return i.avoidScrolling=!1},250))}),onMouseDown:p(o,function(e){e.preventDefault()})}).onClick=p(w,function(){i.selectItemAtIndex(h,{type:de})}),t),g=l.disabled?{onMouseDown:b.onMouseDown}:b;return r({id:i.getItemId(h),role:"option","aria-selected":i.getState().highlightedIndex===h},g,{},l)},i.clearItems=function(){i.items=[]},i.reset=function(e,t){void 0===e&&(e={}),e=y(e),i.internalSetState(function(t){var s=t.selectedItem;return r({isOpen:i.props.defaultIsOpen,highlightedIndex:i.props.defaultHighlightedIndex,inputValue:i.props.itemToString(s)},e)},t)},i.toggleMenu=function(e,t){void 0===e&&(e={}),e=y(e),i.internalSetState(function(t){var s=t.isOpen;return r({isOpen:!s},s&&{highlightedIndex:i.props.defaultHighlightedIndex},{},e)},function(){var s=i.getState(),r=s.isOpen,n=s.highlightedIndex;r&&i.getItemCount()>0&&"number"==typeof n&&i.setHighlightedIndex(n,e),d(t)()})},i.openMenu=function(e){i.internalSetState({isOpen:!0},e)},i.closeMenu=function(e){i.internalSetState({isOpen:!1},e)},i.updateStatus=b(function(){var e=i.getState(),t=i.items[e.highlightedIndex],s=i.getItemCount(),n=i.props.getA11yStatusMessage(r({itemToString:i.props.itemToString,previousResultCount:i.previousResultCount,resultCount:s,highlightedItem:t},e));i.previousResultCount=s,x(n,i.props.environment.document)},200);var a=i.props,o=a.defaultHighlightedIndex,c=a.initialHighlightedIndex,h=void 0===c?o:c,u=a.defaultIsOpen,l=a.initialIsOpen,w=void 0===l?u:l,m=a.initialInputValue,z=void 0===m?"":m,f=a.initialSelectedItem,j=void 0===f?null:f,q=i.getState({highlightedIndex:h,isOpen:w,inputValue:z,selectedItem:j});return null!=q.selectedItem&&void 0===i.props.initialInputValue&&(q.inputValue=i.props.itemToString(q.selectedItem)),i.state=q,i}var i,a;a=e,(i=t).prototype=Object.create(a.prototype),i.prototype.constructor=i,i.__proto__=a;var o=t.prototype;return o.internalClearTimeouts=function(){this.timeoutIds.forEach(function(e){clearTimeout(e)}),this.timeoutIds=[]},o.getState=function(e){var t=this;return void 0===e&&(e=this.state),Object.keys(e).reduce(function(i,s){return i[s]=t.isControlledProp(s)?t.props[s]:e[s],i},{})},o.isControlledProp=function(e){return void 0!==this.props[e]},o.getItemCount=function(){var e=this.items.length;return null!=this.itemCount?e=this.itemCount:void 0!==this.props.itemCount&&(e=this.props.itemCount),e},o.getItemNodeFromIndex=function(e){return this.props.environment.document.getElementById(this.getItemId(e))},o.scrollHighlightedItemIntoView=function(){var e=this.getItemNodeFromIndex(this.getState().highlightedIndex);this.props.scrollIntoView(e,this._menuNode)},o.moveHighlightedIndex=function(e,t){var i=this.getItemCount();if(i>0){var s=k(e,this.getState().highlightedIndex,i);this.setHighlightedIndex(s,t)}},o.highlightFirstOrLastIndex=function(e,t,i){var s=this.getItemCount()-1;s<0||!this.getState().isOpen||(e.preventDefault(),this.setHighlightedIndex(t?0:s,i))},o.getStateAndHelpers=function(){var e=this.getState(),t=e.highlightedIndex,i=e.inputValue,s=e.selectedItem,r=e.isOpen,n=this.props.itemToString,a=this.id,o=this.getRootProps,c=this.getToggleButtonProps,h=this.getLabelProps,d=this.getMenuProps,u=this.getInputProps,l=this.getItemProps,w=this.openMenu,b=this.closeMenu,p=this.toggleMenu,g=this.selectItem,m=this.selectItemAtIndex,z=this.selectHighlightedItem,f=this.setHighlightedIndex,y=this.clearSelection,v=this.clearItems;return{getRootProps:o,getToggleButtonProps:c,getLabelProps:h,getMenuProps:d,getInputProps:u,getItemProps:l,reset:this.reset,openMenu:w,closeMenu:b,toggleMenu:p,selectItem:g,selectItemAtIndex:m,selectHighlightedItem:z,setHighlightedIndex:f,clearSelection:y,clearItems:v,setItemCount:this.setItemCount,unsetItemCount:this.unsetItemCount,setState:this.internalSetState,itemToString:n,id:a,highlightedIndex:t,inputValue:i,isOpen:r,selectedItem:s}},o.componentDidMount=function(){var e=this,t=function(t,i){void 0===i&&(i=!0);var s=e.props.environment.document;return[e._rootNode,e._menuNode].some(function(e){return e&&(w(e,t)||i&&w(e,s.activeElement))})},i=function(){e.isMouseDown=!0},s=function(i){e.isMouseDown=!1,!t(i.target)&&e.getState().isOpen&&e.reset({type:1},function(){return e.props.onOuterClick(e.getStateAndHelpers())})},r=function(){e.isTouchMove=!1},n=function(){e.isTouchMove=!0},a=function(i){var s=t(i.target,!1);e.isTouchMove||s||!e.getState().isOpen||e.reset({type:16},function(){return e.props.onOuterClick(e.getStateAndHelpers())})},o=this.props.environment;o.addEventListener("mousedown",i),o.addEventListener("mouseup",s),o.addEventListener("touchstart",r),o.addEventListener("touchmove",n),o.addEventListener("touchend",a),this.cleanup=function(){e.internalClearTimeouts(),e.updateStatus.cancel(),o.removeEventListener("mousedown",i),o.removeEventListener("mouseup",s),o.removeEventListener("touchstart",r),o.removeEventListener("touchmove",n),o.removeEventListener("touchend",a)}},o.shouldScroll=function(e,t){var i=(void 0===this.props.highlightedIndex?this.getState():this.props).highlightedIndex,s=(void 0===t.highlightedIndex?e:t).highlightedIndex;return i&&this.getState().isOpen&&!e.isOpen||i!==s},o.componentDidUpdate=function(e,t){this.isControlledProp("selectedItem")&&this.props.selectedItemChanged(e.selectedItem,this.props.selectedItem)&&this.internalSetState({type:15,inputValue:this.props.itemToString(this.props.selectedItem)}),!this.avoidScrolling&&this.shouldScroll(t,e)&&this.scrollHighlightedItemIntoView(),this.updateStatus()},o.componentWillUnmount=function(){this.cleanup()},o.render=function(){var e=m(this.props.children,u);this.clearItems(),this.getRootProps.called=!1,this.getRootProps.refKey=void 0,this.getRootProps.suppressRefError=void 0,this.getMenuProps.called=!1,this.getMenuProps.refKey=void 0,this.getMenuProps.suppressRefError=void 0,this.getLabelProps.called=!1,this.getInputProps.called=!1;var t=m(e(this.getStateAndHelpers()));return t?this.getRootProps.called||this.props.suppressRefError?t:z(t)?J.a.cloneElement(t,this.getRootProps(f(t))):void 0:null},t}(V.Component);me.defaultProps={defaultHighlightedIndex:null,defaultIsOpen:!1,getA11yStatusMessage:function(e){var t=e.isOpen,i=e.selectedItem,s=e.resultCount,r=e.previousResultCount,n=e.itemToString;return t?s?s!==r?s+" result"+(1===s?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":"":"No results are available.":i?n(i):""},itemToString:function(e){return null==e?"":String(e)},onStateChange:u,onInputValueChange:u,onUserAction:u,onChange:u,onSelect:u,onOuterClick:u,selectedItemChanged:function(e,t){return e!==t},environment:"undefined"==typeof window?{}:window,stateReducer:function(e,t){return t},suppressRefError:!1,scrollIntoView:l},me.stateChangeTypes=ge;var ze,fe,ye,ve={highlightedIndex:-1,isOpen:!1,selectedItem:null},ke={items:$.a.array.isRequired,itemToString:$.a.func,getA11yStatusMessage:$.a.func,getA11ySelectionMessage:$.a.func,circularNavigation:$.a.bool,highlightedIndex:$.a.number,defaultHighlightedIndex:$.a.number,initialHighlightedIndex:$.a.number,isOpen:$.a.bool,defaultIsOpen:$.a.bool,initialIsOpen:$.a.bool,selectedItem:$.a.any,initialSelectedItem:$.a.any,defaultSelectedItem:$.a.any,id:$.a.string,labelId:$.a.string,menuId:$.a.string,getItemId:$.a.func,toggleButtonId:$.a.string,stateReducer:$.a.func,onSelectedItemChange:$.a.func,onHighlightedIndexChange:$.a.func,onStateChange:$.a.func,onIsOpenChange:$.a.func,environment:$.a.shape({addEventListener:$.a.func,removeEventListener:$.a.func,document:$.a.shape({getElementById:$.a.func,activeElement:$.a.any,body:$.a.any})})},xe=0,je=1,qe=2,Te=3,Ie=4,Se=5,Pe=6,Me=7,Ce=8,Ae=9,He=10,Re=11,Ee=12,We=13,Oe=14,De=15,Ne=16,Le=17,Be=18,Ke=19,Fe=20,Ue=Object.freeze({MenuKeyDownArrowDown:xe,MenuKeyDownArrowUp:je,MenuKeyDownEscape:qe,MenuKeyDownHome:Te,MenuKeyDownEnd:Ie,MenuKeyDownEnter:Se,MenuKeyDownCharacter:Pe,MenuBlur:Me,ItemMouseMove:Ce,ItemClick:Ae,ToggleButtonKeyDownCharacter:He,ToggleButtonKeyDownArrowDown:Re,ToggleButtonKeyDownArrowUp:Ee,ToggleButtonClick:We,FunctionToggleMenu:Oe,FunctionOpenMenu:De,FunctionCloseMenu:Ne,FunctionSetHighlightedIndex:Le,FunctionSelectItem:Be,FunctionClearKeysSoFar:Ke,FunctionReset:Fe}),_e=(ze=E,fe=ke,function(e){void 0===e&&(e={}),Object.entries(fe).forEach(function(t){var i=t[0];$.a.checkPropTypes(fe,e,i,ze.name)})}),Ve={itemToString:function(e){return e?String(e):""},stateReducer:function(e,t){return t.changes},getA11yStatusMessage:function(e){var t=e.isOpen,i=e.items;if(!i)return"";var s=i.length;return t?0===s?"No results are available":s+" result"+(1===s?" is":"s are")+" available, use up and down arrow keys to navigate. Press Enter key to select.":""},getA11ySelectionMessage:function(e){var t=e.selectedItem;return(0,e.itemToString)(t)+" has been selected."},scrollIntoView:l,environment:"undefined"==typeof window?{}:window};E.stateChangeTypes=Ue;var Je=me,Ge=i(10),$e=i(11),Qe=i.n($e),Ye=function(e){return Qe.a.nfd(e.toLowerCase().trim().replace(/[^\w\s]|_/g,"").replace(/\s{2,}/g," ").substring(0,100))},Ze=function(e,t){var i=e.split(new RegExp("(".concat(t,")"),"gi"));return J.a.createElement("span",null,i.map(function(e,i){return J.a.createElement("span",{key:i,style:e.toLowerCase()===t.toLowerCase()?{fontWeight:"bold"}:{}},e)}))},Xe=function(e){var t=e.getItemProps,i=e.getItemClassName,s=e.children;return J.a.createElement("li",W({className:"ec-search-bar__result-item ".concat(i())},t()),s)},et=Xe;Xe.displayName="SearchResultItem",Xe.propTypes={getItemProps:$.a.func.isRequired,getItemClassName:$.a.func.isRequired,children:$.a.node};var tt=i(12),it={container:"free-text-content-filter",label:"start-filter",isClick:"true"},st=function(){return J.a.createElement("div",{className:"ec-search-bar__icon"},J.a.createElement(Ge.GelSearchIcon,null))},rt=function(e){var t=e.clearSelection,i=e.closeMenu;return J.a.createElement("button",{className:"ec-search-bar__close-button",onClick:function(e){e.preventDefault(),t(),i()},"aria-label":"Clear search results"},J.a.createElement(Ge.GelCloseIcon,null))},nt=function(e){function t(e){var i;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(i=L(this,B(t).call(this,e))).timeout=0,i.state={searchResults:[],searchQuery:""},i}var i,s;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&K(e,t)}(t,J.a.Component),i=t,(s=[{key:"dispatchCustomEvent",value:function(e){document.dispatchEvent(new CustomEvent("bbc-user-event",{detail:e}))}},{key:"triggerDelayedEvent",value:function(e,t){var i=this;this.timeout&&clearTimeout(this.timeout),this.timeout=setTimeout(function(){i.dispatchCustomEvent({container:"free-text-content-filter",label:"query-results",metadata:{RES:"".concat(e)},personalisation:{QRY:"".concat(t)}})},2e3)}},{key:"componentDidUpdate",value:function(e,t){var i=this,s=this.state.searchQuery;if(t.searchQuery!==s){var r=this.props,n=r.searchRequest,a=r.maxResults,o=Ye(s);o.trim()?n(o).then(function(e){i.setState({searchResults:e.slice(0,a)},function(){if(o&&o.length>=2){var e=i.state.searchResults;i.triggerDelayedEvent(e.length,o)}})}):this.setState({searchResults:[]})}}},{key:"render",value:function(){var e=this,t=this.props,i=t.placeholderText,s=t.minInputLength,r=this.state,n=r.searchResults,a=r.searchQuery;return J.a.createElement(Je,{inputValue:a,itemToString:function(){return a},onChange:function(e){return window.location.assign(e.url)},isOpen:!!a,onInputValueChange:function(t){e.setState({searchQuery:t})},onOuterClick:Object(tt.onOuterClick)(this),stateReducer:_,scrollIntoView:function(e){e&&e.scrollIntoView({behavior:"smooth",block:"end",inline:"nearest"})}},function(t){var r=t.getInputProps,o=t.getItemProps,c=t.inputValue,h=t.getLabelProps,d=t.getMenuProps,u=t.highlightedIndex,l=t.closeMenu,w=t.clearSelection;return J.a.createElement("div",{className:"ec-search-bar"},J.a.createElement("form",{className:"ec-search-bar__form"},J.a.createElement("label",D({},h(),{className:"ec-search-bar__label"}),i),J.a.createElement("input",D({className:"ec-search-bar__querybox",placeholder:i,onFocus:function(){return e.dispatchCustomEvent(it)}},r())),c?J.a.createElement(rt,{clearSelection:w,closeMenu:l}):J.a.createElement(st,null),J.a.createElement("ul",D({className:"ec-search-bar__results"},d()),c.length>=s?n.map(function(t,i){return J.a.createElement(et,{key:t.id,getItemProps:function(){return o({key:t.id,index:i,item:t})},getItemClassName:function(){return u===i?"ec-search-bar__result-item--active":""}},J.a.createElement("a",{key:t.id,className:u===i?"ec-search-bar__result-item-link--active":"ec-search-bar__result-item-link",href:t.url,onClick:function(s){s.preventDefault(),e.dispatchCustomEvent({container:"free-text-content-filter",label:t.headline,metadata:{RES:"".concat(n.length),POS:"".concat(i+1)},personalisation:{QRY:"".concat(Ye(a))},result:t.url,isClick:"true"})}},Ze(t.headline,c)))}):null),c.length>=s&&0===n.length?J.a.createElement("label",D({},h(),{className:"ec-search-bar__no-results-label"}),"We couldn't find results for \"",c,'"'):null))})}}])&&N(i.prototype,s),t}();rt.propTypes={clearSelection:$.a.func.isRequired,closeMenu:$.a.func.isRequired},nt.propTypes={searchRequest:$.a.func.isRequired,placeholderText:$.a.string,maxResults:$.a.number,minInputLength:$.a.number},nt.defaultProps={maxResults:25,minInputLength:2};var at=nt;t.default=at}])}]); //# sourceMappingURL=bundle.js.map; });</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-baseplate-content-view@5.25.0"]={"@bbc/education-link":"1.0.1","@bbc/education-pagination":"0.1.0","bbc-morph-baseplate-data":"5.6.3","bbc-morph-bitesize-dynamic-index-data":"1.9.0","bbc-morph-bitesize-search-view":"1.17.1","bbc-morph-gel-icons":"3.0.0","bbc-morph-istats":"1.3.0","bbc-morph-superagent":"2.0.0","imager.js":"0.5.1",lodash:"4.17.15","morph-container":"4.0.0","morph-static-prefix":"3.0.0",react:"0.14.7"},function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return e[r].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){Morph.modules["bbc-morph-baseplate-content-view@5.25.0"]=n(1)},function(e,t,n){e.exports=function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=11)}([function(e,t){e.exports=n(2)},function(e,t,n){"use strict";var r=n(0);e.exports=r.PropTypes.shape({title:r.PropTypes.string.isRequired,synopsis:r.PropTypes.string,attribution:r.PropTypes.string,label:r.PropTypes.string,url:r.PropTypes.string.isRequired,image:r.PropTypes.shape({pid:r.PropTypes.string,recipe:r.PropTypes.string}).isRequired,icon:r.PropTypes.string,isExtLink:r.PropTypes.boolean})},function(e,t){e.exports=n(3)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),c=r(l),s=n(4),f=r(s),p=n(15),d=n(1),h=r(d),y=n(6),g=r(y),v=n(17),m=r(v),b=n(19),_=r(b),x=12,w=(0,g.default)(function(e){return c.default.createElement("a",e,e.children)}),j=function(e){var t=e.recipe;return t?"https://"+t.replace("$recipe","{width}xn"):""},E=function(e){function t(){return o(this,t),i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),u(t,[{key:"componentDidMount",value:function(){(0,m.default)(".promo-image--lazyload","promo-image--lazyloaded")}},{key:"render",value:function(){var e=this.props,t=e.project,n=e.className,r=e.columnSpan,o=e.collectionIndex,i=e.promoIndex,a=e.body,u=a.image,l=a.title,s=a.synopsis,d=a.attribution,h=a.label,y=a.url,g=a.icon,v=a.isExtLink,m=e.tabbable,b=["promo",n||"gel-"+r+"/12"],x=u&&j(u),E=(0,p.getIconName)(g,v);return c.default.createElement("div",{className:b.join(" ")},c.default.createElement(w,{className:"promo-link",href:y,iStatsAction:"kl."+t+".collection-"+(o+1)+".promo-"+(i+1),iStatsOptions:{title:l},iStatsType:"click",tabIndex:m?"0":"-1","aria-hidden":!m},c.default.createElement("div",{className:"promo-image-container","aria-hidden":!0},x&&c.default.createElement("div",{className:"promo-image--lazyload","data-src":x,"data-alt":l,"data-class":"promo-image"}),h&&c.default.createElement("div",{className:"promo-label-container"},"live"===h?c.default.createElement("div",null,c.default.createElement(_.default,null),c.default.createElement("div",{className:"promo-label--live"},h)):c.default.createElement("div",{className:"promo-label"},h)),E&&c.default.createElement(f.default,{iconName:E})),c.default.createElement("div",{className:"promo-footer"},c.default.createElement("h2",{className:"promo-title"},l),s?c.default.createElement("p",{className:"promo-synopsis"},s):null,d?c.default.createElement("h5",{className:"promo-attribution"},d):null)))}}]),t}(l.Component);t.default=E,E.propTypes={project:l.PropTypes.string.isRequired,collectionIndex:l.PropTypes.number.isRequired,promoIndex:l.PropTypes.number.isRequired,body:h.default.isRequired,className:l.PropTypes.string,tabbable:l.PropTypes.bool,columnSpan:l.PropTypes.number},E.defaultProps={className:"",tabbable:!0,columnSpan:x},e.exports=t.default},function(e,t){e.exports=n(9)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i=n(0),a=r(i),u=n(14),l=r(u),c=n(20),s=r(c),f=n(21),p=r(f),d=n(9),h=r(d),y=n(22),g=r(y),v=n(23),m=r(v),b=n(25),_=r(b),x=n(1),w=r(x),j=function(e){return"primary-index"===e?m.default:h.default},E=function(e,t){return{"layout-hero-2":s.default,"layout-branding-colour-3":j(t),"layout-branding-image-3":g.default,"layout-pocket":_.default,"layout-row-4":l.default,"layout-2-with-links":p.default}[e]||l.default},P=function(e){var t=e.body,n=e.collectionIndex,r=e.project,i=e.pageType,u=E(t.layout,i);return a.default.createElement("div",{className:"collection"},a.default.createElement(u,o({collectionIndex:n,project:r},t)))};P.propTypes={body:i.PropTypes.shape({promos:i.PropTypes.arrayOf(w.default),title:i.PropTypes.string,layout:i.PropTypes.string,brandingColour:i.PropTypes.string,brandingImage:i.PropTypes.shape({pid:i.PropTypes.string,recipe:i.PropTypes.string})}).isRequired,collectionIndex:i.PropTypes.number.isRequired,project:i.PropTypes.string.isRequired,pageType:i.PropTypes.string},P.defaultProps={body:{promos:[],title:"",layout:"layout-row-4",brandingColour:null,brandingImage:null},pageType:null},t.default=P,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}Object.defineProperty(t,"__esModule",{value:!0});var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a=n(0),u=r(a),l=n(7),c=r(l),s=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments[3];return function(){(0,c.default)(e,t,n),r.apply(void 0,arguments)}};t.default=function(e){function t(t){var n=t.onClick,r=t.iStatsAction,a=t.iStatsType,l=t.iStatsOptions,c=o(t,["onClick","iStatsAction","iStatsType","iStatsOptions"]);return u.default.createElement(e,i({},c,{onClick:s(r,a,l,n)}))}return t.propTypes={onClick:a.PropTypes.func,iStatsAction:a.PropTypes.string.isRequired,iStatsType:a.PropTypes.string,iStatsOptions:a.PropTypes.object},t.defaultProps={onClick:function(){return null},iStatsType:"",iStatsOptions:{}},t.displayName="iStatsOnClick("+(e.displayName||e.name||"Component")+")",t},e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(16),i=r(o),a=n(2),u=(0,a.flow)([a.deburr,(0,a.replace)(/,|\(|\)/g,""),(0,a.replace)(/\s+/g,"_"),(0,a.replace)(/'|’/g,"_039_"),(0,a.replace)("–","-")]),l=(0,a.flow)([a.toLower,u]),c=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};i.default.track(l(e),l(t),(0,a.mapValues)(l,n))};t.default=c,e.exports=t.default},function(e,t,n){"use strict";e.exports={normalizeProjectName:function(e){return e.replace("baseplate-","").replace("blocks-","")}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(2),u=n(3),l=r(u),c=n(1),s=r(c),f=function(e){var t=e.brandingColour,n=e.titleColour,r=e.title,o=e.promos,u=e.collectionIndex,c=e.project,s=e.children;return i.default.createElement("div",{className:"layout-branding-colour-3",style:{backgroundColor:t}},i.default.createElement("div",{className:"collection-content"},i.default.createElement("div",{className:"gel-layout gel-layout--center"},r&&i.default.createElement("h2",{className:"collection-title collection-title--"+n+" gel-layout__item"},r)),i.default.createElement("div",{className:"gel-layout gel-layout--center gel-layout--equal"},(0,a.take)(3)(o).map(function(e,t){return i.default.createElement(l.default,{project:c,body:e,key:"promo-"+e.id+"-"+t,className:"gel-layout__item",collectionIndex:u,promoIndex:t})})),s))};f.propTypes={project:o.PropTypes.string.isRequired,title:o.PropTypes.string,titleColour:o.PropTypes.string,promos:o.PropTypes.arrayOf(s.default),brandingColour:o.PropTypes.string.isRequired,collectionIndex:o.PropTypes.number.isRequired,children:o.PropTypes.node},f.defaultProps={title:void 0,titleColour:"dark",promos:[],children:void 0},t.default=f,e.exports=t.default},function(e,t){e.exports=n(10)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(12),i=r(o),a=n(13),u=r(a),l=27;t.default=i.default.create(u.default,{data:function(e){return"error"===e.type?{}:"collection-index"===e.type?{data:{uri:{data:"bbc-morph-bitesize-dynamic-index-data",slug:e.id,language:e.language,page:e.page||1,pageSize:l,type:e.type},updates:!1,requireSuccess:!0}}:"tags"===e.type?{data:{uri:{data:"bbc-morph-bitesize-dynamic-index-data",id:e.id,language:e.language,page:e.page||1,pageSize:l,type:e.type},updates:!1,requireSuccess:!0}}:{data:{uri:{data:"bbc-morph-baseplate-data",id:e.id,type:e.type||"index-page",project:e.project,preview:e.preview===!0||"true"===e.preview,language:e.language,page:e.page||1,pageSize:l,pageType:e.pageType},updates:!1,requireSuccess:!0}}}}),e.exports=t.default},function(e,t){e.exports=n(11)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(5),u=r(a),l=n(26),c=r(l),s=n(30),f=r(s),p=n(3),d=r(p),h=n(31),y=r(h),g=n(8),v=function(e){var t=e.data.body,n=e.type,r=e.project,o=e.code,a=e.urlTemplate,l=e.page,s=e.pageType,p=(0,g.normalizeProjectName)(r);switch(n){case"collection":return i.default.createElement("div",{className:"gel-wrap"},i.default.createElement(u.default,{project:p,body:t,collectionIndex:0}));case"error":return i.default.createElement(c.default,{project:p,code:parseInt(o,10)});case"promo":return i.default.createElement(d.default,{project:p,body:t,columnSpan:6,collectionIndex:0,promoIndex:0});case"tags":case"collection-index":return i.default.createElement(y.default,{project:p,urlTemplate:a,title:t.title,description:t.description,items:t.items,pageData:l&&t.pageData,section:t.section});default:return i.default.createElement(f.default,{project:p,collections:t.collections,showTitle:t.showTitle,title:t.title,shortDescription:t.shortDescription,callToAction:t.callToAction,pageType:s})}};v.propTypes={project:o.PropTypes.string,type:o.PropTypes.string,code:o.PropTypes.string,urlTemplate:o.PropTypes.string,data:o.PropTypes.shape({body:o.PropTypes.object}),page:o.PropTypes.number,pageType:o.PropTypes.string},v.defaultProps={project:"Error",type:"index-page",code:"500",urlTemplate:"/{project}/articles/{zid}",data:{body:{}},page:null,pageType:null},t.default=v,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(2),u=n(3),l=r(u),c=n(1),s=r(c),f=function(e){var t=e.title,n=e.promos,r=e.collectionIndex,o=e.project,u=(0,a.take)(4)(n),c=t?i.default.createElement("h2",{className:"collection-title"},t):"";return i.default.createElement("div",{className:"collection-content"},c,i.default.createElement("div",{className:"gel-layout gel-layout--equal layout-row-4"},u.map(function(e,t){return i.default.createElement(l.default,{project:o,body:e,key:"promo-"+e.id+"-"+t,className:"gel-layout__item",collectionIndex:r,promoIndex:t})})))};f.propTypes={project:o.PropTypes.string.isRequired,title:o.PropTypes.string,promos:o.PropTypes.arrayOf(s.default),collectionIndex:o.PropTypes.number.isRequired},f.defaultProps={title:void 0,promos:[]},t.default=f,e.exports=t.default},function(e,t,n){"use strict";var r="external-link",o={"[none]":null,video:"video",audio:"audio",image:"image",list:"list",document:"document",podcast:"podcast",slideshow:"slideshow",activity:"activity",quiz:"quiz",newsletter:"newsletter",interactive:"interactive","revision-guide":"revision-guide",timeline:"timeline",map:"map",collection:"collection",upload:"upload","video-collection":"video-collection"},i=function(e){return"true"===e||e===!0};e.exports={getIconName:function(e,t){return i(t)?r:o[e]}}},function(e,t){e.exports=n(12)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:".lazyload",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"lazyloaded",r=n(18),o=window.document.querySelector("[data-class]");o&&new r(e,{availableWidths:[160,208,240,288,320,336,448,480,576,608,688,832],className:t,lazyload:!0,lazyloadOffset:200,scrollDelay:100})};t.default=r,e.exports=t.default},function(e,t){e.exports=n(13)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=function(){return i.default.createElement("svg",{focusable:"false","aria-hidden":"true",fill:"#fff",height:"12px",viewBox:"0 0 32 32",className:"promo-label--live__icon-outer"},i.default.createElement("path",{d:"M16 4c6.6 0 12 5.4 12 12s-5.4 12-12 12S4 22.6 4 16 9.4 4 16 4zm0-4C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16S24.8 0 16 0z"}),i.default.createElement("circle",{className:"promo-label--live__icon-center",cx:"16",cy:"16",r:"8.5"}))};t.default=a,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(2),u=n(3),l=r(u),c=n(1),s=r(c),f=function(e){var t=e.title,n=e.promos,r=e.collectionIndex,o=e.project;return i.default.createElement("div",{className:"collection-content"},t&&i.default.createElement("h2",{className:"collection-title"},t),i.default.createElement("div",{className:"gel-layout gel-layout--equal layout-hero-2"},(0,a.take)(3)(n).map(function(e,t){return i.default.createElement(l.default,{project:o,body:e,key:"promo-"+e.id+"-"+t,className:"gel-layout__item",collectionIndex:r,promoIndex:t})})))};f.propTypes={project:o.PropTypes.string.isRequired,title:o.PropTypes.string,promos:o.PropTypes.arrayOf(s.default),collectionIndex:o.PropTypes.number.isRequired},f.defaultProps={title:void 0,promos:[]},t.default=f,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(2),u=n(4),l=r(u),c=n(6),s=r(c),f=n(3),p=r(f),d=n(1),h=r(d),y=(0,s.default)(function(e){return i.default.createElement("a",e,e.children)}),g=function(e){var t=e.promos,n=e.title1,r=e.title2,o=e.collectionIndex,u=e.project;return i.default.createElement("div",{className:"collection-content"},i.default.createElement("div",{className:"gel-layout gel-layout--equal layout-2-with-links"},(0,a.take)(2)(t).map(function(e,t){return{promo:e,title:0===t?n:r}}).map(function(e,t){var a=e.promo,c=e.title,s=c.text,f=c.url;return i.default.createElement("div",{className:"gel-layout__item promo-container",key:"promo-"+a.id+"-"+t},n.text||r.text?i.default.createElement("h2",{className:"collection-title"},s&&f?i.default.createElement(y,{className:"collection-title-link",href:f,iStatsAction:"kl."+u+".collection-"+(o+1)+".title-"+(t+1),iStatsOptions:{title:s},iStatsType:"click"},i.default.createElement("span",null,s),i.default.createElement(l.default,{iconName:"next"})):s):null,i.default.createElement(p.default,{project:u,body:a,collectionIndex:o,promoIndex:t}))})))};g.propTypes={project:o.PropTypes.string.isRequired,promos:o.PropTypes.arrayOf(h.default),title1:o.PropTypes.shape({text:o.PropTypes.string,url:o.PropTypes.string}),title2:o.PropTypes.shape({text:o.PropTypes.string,url:o.PropTypes.string}),collectionIndex:o.PropTypes.number.isRequired},g.defaultProps={promos:[],title1:{},title2:{}},t.default=g,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(2),u=n(3),l=r(u),c=n(1),s=r(c),f=function(e){var t=e&&e.recipe?'url("https://'+e.recipe.replace("$recipe","1200xn")+'")':null;return t?{backgroundImage:t}:null},p=function(e){var t=e.title,n=e.titleColour,r=e.promos,o=e.brandingImage,u=e.collectionIndex,c=e.project;return i.default.createElement("div",{className:"layout-branding-image-3",style:f(o)},i.default.createElement("div",{className:"collection-content"},i.default.createElement("div",{className:"gel-layout gel-layout--center"},t&&i.default.createElement("h2",{className:"collection-title collection-title--"+n+" gel-layout__item"},t)),i.default.createElement("div",{className:"gel-layout gel-layout--center gel-layout--equal"},(0,a.take)(3)(r).map(function(e,t){return i.default.createElement(l.default,{project:c,body:e,key:"promo-"+e.id+"-"+t,className:"gel-layout__item",collectionIndex:u,promoIndex:t})}))))};p.propTypes={project:o.PropTypes.string.isRequired,title:o.PropTypes.string,titleColour:o.PropTypes.string,promos:o.PropTypes.arrayOf(s.default),brandingImage:o.PropTypes.shape({pid:o.PropTypes.string,recipe:o.PropTypes.string}).isRequired,collectionIndex:o.PropTypes.number.isRequired},p.defaultProps={title:void 0,titleColour:"dark",promos:[]},t.default=p,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(24),u=r(a),l=n(9),c=r(l),s=n(1),f=r(s),p=function(e){var t=e.title,n=e.titleColour,r=e.promos,o=e.collectionIndex,a=e.project,l=e.link,s=i.default.createElement("div",{className:"link-container"},i.default.createElement(u.default,{title:l.text,url:l.url,brand:"my-bitesize"}));return i.default.createElement("div",{className:"layout-branding-colour-three-with-link"},i.default.createElement(c.default,{title:t,titleColour:n,promos:r,collectionIndex:o,project:a},s))};p.propTypes={project:o.PropTypes.string.isRequired,title:o.PropTypes.string,titleColour:o.PropTypes.string,promos:o.PropTypes.arrayOf(f.default),collectionIndex:o.PropTypes.number.isRequired,link:o.PropTypes.shape({text:o.PropTypes.string.isRequired,url:o.PropTypes.string.isRequired}).isRequired},p.defaultProps={title:void 0,titleColour:"dark",promos:[]},t.default=p,e.exports=t.default},function(e,t){e.exports=n(14)},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),c=r(l),s=n(2),f=n(4),p=r(f),d=n(3),h=r(d),y=n(1),g=r(y),v=n(6),m=r(v),b=function(e){var t=e.onClick;return c.default.createElement("div",{className:"layout-pocket__mask",onClick:t,role:"presentation"},c.default.createElement("button",{className:"layout-pocket__show-more",onClick:t},"Show More",c.default.createElement(p.default,{iconName:"down"})))};b.propTypes={onClick:l.PropTypes.func.isRequired};var _=(0,m.default)(function(e){return c.default.createElement(b,e)}),x=function(e){function t(e){o(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e)),r=(0,s.chunk)(4)(n.props.promos),a=2,u=r.length-a>0,l=0;return n.state={allRows:r,visibleRows:a,moreToShow:u,showMoreClicked:l},n}return a(t,e),u(t,[{key:"showMore",value:function(){var e=this.state.visibleRows+2,t=this.state.allRows.length-e>0,n=this.state.showMoreClicked+1,r=this["collectionRow"+this.state.visibleRows].querySelector("a");r&&r.focus(),this.setState({visibleRows:e,moreToShow:t,showMoreClicked:n})}},{key:"render",value:function(){var e=this,t=this.props,n=t.title,r=t.collectionIndex,o=t.project,i=this.state,a=i.allRows,u=i.visibleRows,l=i.moreToShow,s=i.showMoreClicked,f=function(e){return e>u?"layout-pocket__row--hidden":"gel-layout gel-layout--equal layout-row-4 layout-pocket__row "+(l&&e===u?"layout-pocket__row--last":"")};return c.default.createElement("div",{className:"collection-content layout-pocket"},n&&c.default.createElement("h2",{className:"collection-title"},n),a.map(function(t,n){return c.default.createElement("div",{key:r+"-row-"+n,className:f(n),ref:function(t){e["collectionRow"+n]=t}},t.map(function(e,t){return c.default.createElement(h.default,{project:o,body:e,key:"promo-"+e.id+"-"+t,className:"gel-layout__item",collectionIndex:r,promoIndex:n,tabbable:!l||n<u})}))}),l&&c.default.createElement(_,{onClick:this.showMore.bind(this),iStatsType:"click",iStatsAction:"kl."+o+".collection-"+r,iStatsOptions:{showMoreClicked:s+1}}))}}]),t}(l.Component);x.propTypes={project:l.PropTypes.string.isRequired,title:l.PropTypes.string,promos:l.PropTypes.arrayOf(g.default),collectionIndex:l.PropTypes.number.isRequired},x.defaultProps={title:void 0,promos:[]},t.default=x,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),c=r(l),s=n(4),f=r(s),p=n(27),d=r(p),h=n(7),y=r(h),g=n(8),v=function(e){try{return n(28)("./"+(0,g.normalizeProjectName)(e)+".json")}catch(e){return[]}},m=function(e){var t=e.suggestionLinks;return c.default.createElement("div",{className:"error-container"},c.default.createElement("h2",null,"Sorry, but we’re having difficulties showing you the page you asked for."),c.default.createElement("p",null,"The content might have been moved or deleted, or you may have mis-typed the link."),t.length>0&&c.default.createElement("div",null,c.default.createElement("p",null,"Please try one of the following options instead:"),c.default.createElement("ul",null,t.map(function(e,t){return c.default.createElement("li",{key:t.toString()},c.default.createElement("a",{href:e.link},e.title))}))))};m.propTypes={suggestionLinks:l.PropTypes.arrayOf(l.PropTypes.shape({title:l.PropTypes.string.isRequired,link:l.PropTypes.string.isRequired})).isRequired};var b=function(e){var t=e.suggestionLinks;return c.default.createElement("div",{className:"error-container"},c.default.createElement("h2",null,"Sorry, but we’re having difficulties showing you the page you asked for."),c.default.createElement("p",null,"Please check back later..."),t.length>0&&c.default.createElement("div",null,c.default.createElement("p",null,"Please try one of the following options instead:"),c.default.createElement("ul",null,t.map(function(e,t){return c.default.createElement("li",{key:t.toString()},c.default.createElement("a",{href:e.link},e.title))}))))};b.propTypes={suggestionLinks:l.PropTypes.arrayOf(l.PropTypes.shape({title:l.PropTypes.string.isRequired,link:l.PropTypes.string.isRequired})).isRequired};var _=function(e){var t=new DOMParser,n=t.parseFromString(e,"text/html");return n.title},x=function(e,t,n){var r=n?{wait_time_secs:n}:null;(0,y.default)("kl."+e+".202",t,r)},w=function(){return setTimeout(function(){return window.location.replace(window.location.href)},250)},j=function(e){return(new Date-e)/1e3},E=function(e){function t(){return o(this,t),i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),u(t,[{key:"componentDidMount",value:function(){var e=this,t=new Date;x(this.props.project,"load"),setInterval(function(){d.default.get(window.location.href).end(function(n,r){var o=j(t);r.ok?_(r.text)?(x(e.props.project,"morph_cache_hit",o),w()):x(e.props.project,"morph_cache_miss",o):(x(e.props.project,"morph_request_fail",o),w())})},1500)}},{key:"render",value:function(){return c.default.createElement("div",{className:"error-container"},c.default.createElement("h2",null,"We are just waiting for the page to load..."),c.default.createElement(f.default,{iconName:"loading"}),c.default.createElement("h3",null,"Don't refresh! We'll load your page when it's ready!"))}}]),t}(l.Component);E.propTypes={project:l.PropTypes.string.isRequired};var P=function(e){var t=e.code,n=e.project;return{202:c.default.createElement(E,{project:n}),404:c.default.createElement(m,{suggestionLinks:v(n)}),500:c.default.createElement(b,{suggestionLinks:v(n)})}[t]||c.default.createElement(b,{suggestionLinks:v(n)})};P.propTypes={code:l.PropTypes.number,project:l.PropTypes.string.isRequired},P.defaultProps={code:500},t.default=P,e.exports=t.default},function(e,t){e.exports=n(46)},function(e,t,n){function r(e){return n(o(e))}function o(e){var t=i[e];if(!(t+1))throw new Error("Cannot find module '"+e+"'.");return t}var i={"./teach.json":29};r.keys=function(){return Object.keys(i)},r.resolve=o,e.exports=r,r.id=28},function(e,t){e.exports=[{title:"Primary Resources",link:"/teach/primary/zd7p47h"},{title:"Secondary Resources",link:"/teach/secondary/zkqp47h"}]},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),l=n(0),c=r(l),s=n(10),f=r(s),p=n(7),d=r(p),h=n(8),y=n(5),g=r(y),v=function(e){function t(){return o(this,t),i(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),u(t,[{key:"componentDidMount",value:function(){(0,d.default)("kl."+this.props.project,"load")}},{key:"render",value:function(){var e=this.props,t=e.title,n=e.shortDescription,r=e.collections,o=e.showTitle,i=e.project,a=e.callToAction,u=e.pageType,l=o||"teach"===(0,h.normalizeProjectName)(i);return c.default.createElement("div",{className:"index-page"},l&&c.default.createElement("h1",{className:o?"index-page-title":"index-page-title sr-only"},t),n&&c.default.createElement("p",{className:"index-page__short-description"},n),a&&a.url&&a.text&&c.default.createElement("p",{className:"index-page__call-to-action"},a.intro,c.default.createElement("a",{className:"index-page__cta-button",href:a.url},a.text)),"careers"===u&&c.default.createElement("div",{className:"index-page__search-bar-wrapper"},c.default.createElement(f.default,null)),r.map(function(e,t){return c.default.createElement(g.default,{project:i,body:e,key:"collection-"+e.id+"-"+t,collectionIndex:t,pageType:u})}))}}]),t}(l.Component);v.propTypes={showTitle:l.PropTypes.bool,collections:l.PropTypes.arrayOf(l.PropTypes.shape({id:l.PropTypes.string.isRequired})),title:l.PropTypes.string,shortDescription:l.PropTypes.string,callToAction:l.PropTypes.shape({intro:l.PropTypes.string,text:l.PropTypes.string,url:l.PropTypes.string}),project:l.PropTypes.string.isRequired,pageType:l.PropTypes.string},v.defaultProps={showTitle:!0,collections:[],title:"",shortDescription:null,callToAction:void 0,pageType:null},t.default=v,e.exports=t.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),i=r(o),a=n(10),u=r(a),l=n(32),c=n(33),s=r(c),f=n(34),p=r(f),d=n(5),h=r(d),y=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=e.split(" ");return t.map(function(e){return""+e.slice(0,1).toUpperCase()+e.slice(1)}).join(" ")},g=function(e){var t=e.language,n=e.project,r=e.title,o=y(n),i=r.toLowerCase(),a={"en-GB":"Come back soon for "+o+" content about "+i};return a[t]||a["en-GB"]},v=function(e){var t=e.project,n=e.title,r=e.description,o=e.section,a=e.items,c=e.pageData,f=e.urlTemplate,d=a.map(function(e){return(0,s.default)(f,e,t)}),y=(0,p.default)(d),v=a.length>0?r:g(e);return i.default.createElement("div",{className:"index-page"},i.default.createElement("h1",{className:"index-page-title"},n),v&&i.default.createElement("p",{className:"index-page__short-description"},v),"careers"===o&&i.default.createElement("div",{className:"index-page__collection-search-bar-wrapper"},i.default.createElement(u.default,null)),y.map(function(e,n){return i.default.createElement(h.default,{project:t,body:e,collectionIndex:n,key:"collection-"+n})}),c&&i.default.createElement(l.Pagination,{pageData:c,project:t,linkGenerator:function(e){return""+e}}))};v.propTypes={project:o.PropTypes.string.isRequired,urlTemplate:o.PropTypes.string.isRequired,title:o.PropTypes.string.isRequired,description:o.PropTypes.string,section:o.PropTypes.string,items:o.PropTypes.arrayOf(o.PropTypes.shape({id:o.PropTypes.string.isRequired,title:o.PropTypes.string.isRequired,synopsis:o.PropTypes.string,image:o.PropTypes.shape({pid:o.PropTypes.string.isRequired,recipe:o.PropTypes.string.isRequired}).isRequired})).isRequired,pageData:o.PropTypes.shape({page:o.PropTypes.number.isRequired,pageSize:o.PropTypes.number.isRequired,totalResults:o.PropTypes.number.isRequired})},v.defaultProps={description:null,pageData:null,section:null},t.default=v,e.exports=t.default},function(e,t){e.exports=n(47)},function(e,t,n){ "use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t,n){var r=n.replace("blocks-",""),o=e.replace("{project}",r).replace("{zid}",t.id);return Object.assign({},t,{url:o})},e.exports=t.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){for(var t="layout-hero-2",n=3,r="layout-row-4",o=4,i=e.slice(0,n),a=e.slice(n),u=[{id:"hero",promos:i,layout:t}],l=0;l<a.length;l+=o){var c=a.slice(l,l+o);u.push({id:(l/o).toString(),promos:c,layout:r})}return u},e.exports=t.default}])},function(e,t){e.exports=React},function(e,t,n){var r=n(4).runInContext();e.exports=n(6)(r,r)},function(e,t,n){var r;(function(e,o){(function(){function i(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function a(e,t,n,r){for(var o=-1,i=null==e?0:e.length;++o<i;){var a=e[o];t(r,a,n(a),e)}return r}function u(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););return e}function l(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}function c(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(!t(e[n],n,e))return!1;return!0}function s(e,t){for(var n=-1,r=null==e?0:e.length,o=0,i=[];++n<r;){var a=e[n];t(a,n,e)&&(i[o++]=a)}return i}function f(e,t){return!(null==e||!e.length)&&-1<_(e,t,0)}function p(e,t,n){for(var r=-1,o=null==e?0:e.length;++r<o;)if(n(t,e[r]))return!0;return!1}function d(e,t){for(var n=-1,r=null==e?0:e.length,o=Array(r);++n<r;)o[n]=t(e[n],n,e);return o}function h(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e}function y(e,t,n,r){var o=-1,i=null==e?0:e.length;for(r&&i&&(n=e[++o]);++o<i;)n=t(n,e[o],o,e);return n}function g(e,t,n,r){var o=null==e?0:e.length;for(r&&o&&(n=e[--o]);o--;)n=t(n,e[o],o,e);return n}function v(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}function m(e,t,n){var r;return n(e,function(e,n,o){if(t(e,n,o))return r=n,!1}),r}function b(e,t,n,r){var o=e.length;for(n+=r?1:-1;r?n--:++n<o;)if(t(e[n],n,e))return n;return-1}function _(e,t,n){if(t===t)e:{--n;for(var r=e.length;++n<r;)if(e[n]===t){e=n;break e}e=-1}else e=b(e,w,n);return e}function x(e,t,n,r){--n;for(var o=e.length;++n<o;)if(r(e[n],t))return n;return-1}function w(e){return e!==e}function j(e,t){var n=null==e?0:e.length;return n?O(e,t)/n:G}function E(e){return function(t){return null==t?U:t[e]}}function P(e){return function(t){return null==e?U:e[t]}}function k(e,t,n,r,o){return o(e,function(e,o,i){n=r?(r=!1,e):t(n,e,o,i)}),n}function T(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].c;return e}function O(e,t){for(var n,r=-1,o=e.length;++r<o;){var i=t(e[r]);i!==U&&(n=n===U?i:n+i)}return n}function A(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}function R(e,t){return d(t,function(t){return[t,e[t]]})}function I(e){return function(t){return e(t)}}function S(e,t){return d(t,function(t){return e[t]})}function N(e,t){return e.has(t)}function M(e,t){for(var n=-1,r=e.length;++n<r&&-1<_(t,e[n],0););return n}function C(e,t){for(var n=e.length;n--&&-1<_(t,e[n],0););return n}function W(e){return"\\"+De[e]}function z(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n}function q(e,t){return function(n){return e(t(n))}}function D(e,t){for(var n=-1,r=e.length,o=0,i=[];++n<r;){var a=e[n];a!==t&&"__lodash_placeholder__"!==a||(e[n]="__lodash_placeholder__",i[o++]=n)}return i}function L(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n}function B(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=[e,e]}),n}function $(e){if(Me.test(e)){for(var t=Se.lastIndex=0;Se.test(e);)++t;e=t}else e=nt(e);return e}function F(e){return Me.test(e)?e.match(Se)||[]:e.split("")}var U,V=1/0,G=NaN,K=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],Z=/\b__p\+='';/g,H=/\b(__p\+=)''\+/g,Y=/(__e\(.*?\)|\b__t\))\+'';/g,J=/&(?:amp|lt|gt|quot|#39);/g,Q=/[&<>"']/g,X=RegExp(J.source),ee=RegExp(Q.source),te=/<%-([\s\S]+?)%>/g,ne=/<%([\s\S]+?)%>/g,re=/<%=([\s\S]+?)%>/g,oe=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ie=/^\w*$/,ae=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ue=/[\\^$.*+?()[\]{}|]/g,le=RegExp(ue.source),ce=/^\s+|\s+$/g,se=/^\s+/,fe=/\s+$/,pe=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,de=/\{\n\/\* \[wrapped with (.+)\] \*/,he=/,? & /,ye=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ge=/\\(\\)?/g,ve=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,me=/\w*$/,be=/^[-+]0x[0-9a-f]+$/i,_e=/^0b[01]+$/i,xe=/^\[object .+?Constructor\]$/,we=/^0o[0-7]+$/i,je=/^(?:0|[1-9]\d*)$/,Ee=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Pe=/($^)/,ke=/['\n\r\u2028\u2029\\]/g,Te="[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?(?:\\u200d(?:[^\\ud800-\\udfff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])[\\ufe0e\\ufe0f]?(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?)*",Oe="(?:[\\u2700-\\u27bf]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff])"+Te,Ae="(?:[^\\ud800-\\udfff][\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]?|[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|(?:\\ud83c[\\udde6-\\uddff]){2}|[\\ud800-\\udbff][\\udc00-\\udfff]|[\\ud800-\\udfff])",Re=RegExp("['’]","g"),Ie=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g"),Se=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|"+Ae+Te,"g"),Ne=RegExp(["[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+(?:['’](?:d|ll|m|re|s|t|ve))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde]|$)|(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?=[\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000]|[A-Z\\xc0-\\xd6\\xd8-\\xde](?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])|$)|[A-Z\\xc0-\\xd6\\xd8-\\xde]?(?:[a-z\\xdf-\\xf6\\xf8-\\xff]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:d|ll|m|re|s|t|ve))?|[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?:['’](?:D|LL|M|RE|S|T|VE))?|\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])|\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])|\\d+",Oe].join("|"),"g"),Me=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]"),Ce=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,We="Array Buffer DataView Date Error Float32Array Float64Array Function Int8Array Int16Array Int32Array Map Math Object Promise RegExp Set String Symbol TypeError Uint8Array Uint8ClampedArray Uint16Array Uint32Array WeakMap _ clearTimeout isFinite parseInt setTimeout".split(" "),ze={};ze["[object Float32Array]"]=ze["[object Float64Array]"]=ze["[object Int8Array]"]=ze["[object Int16Array]"]=ze["[object Int32Array]"]=ze["[object Uint8Array]"]=ze["[object Uint8ClampedArray]"]=ze["[object Uint16Array]"]=ze["[object Uint32Array]"]=!0,ze["[object Arguments]"]=ze["[object Array]"]=ze["[object ArrayBuffer]"]=ze["[object Boolean]"]=ze["[object DataView]"]=ze["[object Date]"]=ze["[object Error]"]=ze["[object Function]"]=ze["[object Map]"]=ze["[object Number]"]=ze["[object Object]"]=ze["[object RegExp]"]=ze["[object Set]"]=ze["[object String]"]=ze["[object WeakMap]"]=!1;var qe={};qe["[object Arguments]"]=qe["[object Array]"]=qe["[object ArrayBuffer]"]=qe["[object DataView]"]=qe["[object Boolean]"]=qe["[object Date]"]=qe["[object Float32Array]"]=qe["[object Float64Array]"]=qe["[object Int8Array]"]=qe["[object Int16Array]"]=qe["[object Int32Array]"]=qe["[object Map]"]=qe["[object Number]"]=qe["[object Object]"]=qe["[object RegExp]"]=qe["[object Set]"]=qe["[object String]"]=qe["[object Symbol]"]=qe["[object Uint8Array]"]=qe["[object Uint8ClampedArray]"]=qe["[object Uint16Array]"]=qe["[object Uint32Array]"]=!0,qe["[object Error]"]=qe["[object Function]"]=qe["[object WeakMap]"]=!1;var De={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Le=parseFloat,Be=parseInt,$e="object"==typeof e&&e&&e.Object===Object&&e,Fe="object"==typeof self&&self&&self.Object===Object&&self,Ue=$e||Fe||Function("return this")(),Ve="object"==typeof t&&t&&!t.nodeType&&t,Ge=Ve&&"object"==typeof o&&o&&!o.nodeType&&o,Ke=Ge&&Ge.exports===Ve,Ze=Ke&&$e.process,He=function(){try{var e=Ge&&Ge.f&&Ge.f("util").types;return e?e:Ze&&Ze.binding&&Ze.binding("util")}catch(e){}}(),Ye=He&&He.isArrayBuffer,Je=He&&He.isDate,Qe=He&&He.isMap,Xe=He&&He.isRegExp,et=He&&He.isSet,tt=He&&He.isTypedArray,nt=E("length"),rt=P({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),ot=P({"&":"&","<":"<",">":">",'"':""","'":"'"}),it=P({"&":"&","<":"<",">":">",""":'"',"'":"'"}),at=function e(t){function n(e){if(bo(e)&&!au(e)&&!(e instanceof P)){if(e instanceof o)return e;if(ui.call(e,"__wrapped__"))return Br(e)}return new o(e)}function r(){}function o(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=U}function P(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Te(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Oe(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Ae(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Se(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Ae;++t<n;)this.add(e[t])}function De(e){this.size=(this.__data__=new Oe(e)).size}function $e(e,t){var n,r=au(e),o=!r&&iu(e),i=!r&&!o&&lu(e),a=!r&&!o&&!i&&du(e),o=(r=r||o||i||a)?A(e.length,ti):[],u=o.length;for(n in e)!t&&!ui.call(e,n)||r&&("length"==n||i&&("offset"==n||"parent"==n)||a&&("buffer"==n||"byteLength"==n||"byteOffset"==n)||Tr(n,u))||o.push(n);return o}function Fe(e){var t=e.length;return t?e[on(0,t-1)]:U}function Ve(e,t){return zr(Cn(e),pt(t,0,e.length))}function Ge(e){return zr(Cn(e))}function Ze(e,t,n){(n===U||so(e[t],n))&&(n!==U||t in e)||st(e,t,n)}function He(e,t,n){var r=e[t];ui.call(e,t)&&so(r,n)&&(n!==U||t in e)||st(e,t,n)}function nt(e,t){for(var n=e.length;n--;)if(so(e[n][0],t))return n;return-1}function ut(e,t,n,r){return ia(e,function(e,o,i){t(r,e,n(e),i)}),r}function lt(e,t){return e&&Wn(t,No(t),e)}function ct(e,t){return e&&Wn(t,Mo(t),e)}function st(e,t,n){"__proto__"==t&&Pi?Pi(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}function ft(e,t){for(var n=-1,r=t.length,o=Zo(r),i=null==e;++n<r;)o[n]=i?U:Io(e,t[n]);return o}function pt(e,t,n){return e===e&&(n!==U&&(e=e<=n?e:n),t!==U&&(e=e>=t?e:t)),e}function dt(e,t,n,r,o,i){var a,l=1&t,c=2&t,s=4&t;if(n&&(a=o?n(e,r,o,i):n(e)),a!==U)return a;if(!mo(e))return e;if(r=au(e)){if(a=jr(e),!l)return Cn(e,a)}else{var f=ga(e),p="[object Function]"==f||"[object GeneratorFunction]"==f;if(lu(e))return An(e,l);if("[object Object]"==f||"[object Arguments]"==f||p&&!o){if(a=c||p?{}:Er(e),!l)return c?qn(e,ct(a,e)):zn(e,lt(a,e))}else{if(!qe[f])return o?e:{};a=Pr(e,f,l)}}if(i||(i=new De),o=i.get(e))return o;i.set(e,a),pu(e)?e.forEach(function(r){a.add(dt(r,t,n,r,e,i))}):su(e)&&e.forEach(function(r,o){a.set(o,dt(r,t,n,o,e,i))});var c=s?c?yr:hr:c?Mo:No,d=r?U:c(e);return u(d||e,function(r,o){d&&(o=r,r=e[o]),He(a,o,dt(r,t,n,o,e,i))}),a}function ht(e){var t=No(e);return function(n){return yt(n,e,t)}}function yt(e,t,n){var r=n.length;if(null==e)return!r;for(e=Xo(e);r--;){var o=n[r],i=t[o],a=e[o];if(a===U&&!(o in e)||!i(a))return!1}return!0}function gt(e,t,n){if("function"!=typeof e)throw new ni("Expected a function");return ba(function(){e.apply(U,n)},t)}function vt(e,t,n,r){var o=-1,i=f,a=!0,u=e.length,l=[],c=t.length;if(!u)return l;n&&(t=d(t,I(n))),r?(i=p,a=!1):200<=t.length&&(i=N,a=!1,t=new Se(t));e:for(;++o<u;){var s=e[o],h=null==n?s:n(s),s=r||0!==s?s:0;if(a&&h===h){for(var y=c;y--;)if(t[y]===h)continue e;l.push(s)}else i(t,h,r)||l.push(s)}return l}function mt(e,t){var n=!0;return ia(e,function(e,r,o){return n=!!t(e,r,o)}),n}function bt(e,t,n){for(var r=-1,o=e.length;++r<o;){var i=e[r],a=t(i);if(null!=a&&(u===U?a===a&&!jo(a):n(a,u)))var u=a,l=i}return l}function _t(e,t){var n=[];return ia(e,function(e,r,o){t(e,r,o)&&n.push(e)}),n}function xt(e,t,n,r,o){var i=-1,a=e.length;for(n||(n=kr),o||(o=[]);++i<a;){var u=e[i];0<t&&n(u)?1<t?xt(u,t-1,n,r,o):h(o,u):r||(o[o.length]=u)}return o}function wt(e,t){return e&&ua(e,t,No)}function jt(e,t){return e&&la(e,t,No)}function Et(e,t){return s(t,function(t){return yo(e[t])})}function Pt(e,t){t=Tn(t,e);for(var n=0,r=t.length;null!=e&&n<r;)e=e[qr(t[n++])];return n&&n==r?e:U}function kt(e,t,n){return t=t(e),au(e)?t:h(t,n(e))}function Tt(e){if(null==e)e=e===U?"[object Undefined]":"[object Null]";else if(Ei&&Ei in Xo(e)){var t=ui.call(e,Ei),n=e[Ei];try{e[Ei]=U;var r=!0}catch(e){}var o=si.call(e);r&&(t?e[Ei]=n:delete e[Ei]),e=o}else e=si.call(e);return e}function Ot(e,t){return e>t}function At(e,t){return null!=e&&ui.call(e,t)}function Rt(e,t){return null!=e&&t in Xo(e)}function It(e,t,n){for(var r=n?p:f,o=e[0].length,i=e.length,a=i,u=Zo(i),l=1/0,c=[];a--;){var s=e[a];a&&t&&(s=d(s,I(t))),l=zi(s.length,l),u[a]=!n&&(t||120<=o&&120<=s.length)?new Se(a&&s):U}var s=e[0],h=-1,y=u[0];e:for(;++h<o&&c.length<l;){var g=s[h],v=t?t(g):g,g=n||0!==g?g:0;if(y?!N(y,v):!r(c,v,n)){for(a=i;--a;){var m=u[a];if(m?!N(m,v):!r(e[a],v,n))continue e}y&&y.push(v),c.push(g)}}return c}function St(e,t,n){var r={};return wt(e,function(e,o,i){t(r,n(e),o,i)}),r}function Nt(e,t,n){return t=Tn(t,e),e=2>t.length?e:Pt(e,pn(t,0,-1)),t=null==e?e:e[qr(Gr(t))],null==t?U:i(t,e,n)}function Mt(e){return bo(e)&&"[object Arguments]"==Tt(e)}function Ct(e){return bo(e)&&"[object ArrayBuffer]"==Tt(e)}function Wt(e){return bo(e)&&"[object Date]"==Tt(e)}function zt(e,t,n,r,o){if(e===t)t=!0;else if(null==e||null==t||!bo(e)&&!bo(t))t=e!==e&&t!==t;else e:{var i=au(e),a=au(t),u=i?"[object Array]":ga(e),l=a?"[object Array]":ga(t),u="[object Arguments]"==u?"[object Object]":u,l="[object Arguments]"==l?"[object Object]":l,c="[object Object]"==u,a="[object Object]"==l;if((l=u==l)&&lu(e)){if(!lu(t)){t=!1;break e}i=!0,c=!1}if(l&&!c)o||(o=new De),t=i||du(e)?fr(e,t,n,r,zt,o):pr(e,t,u,n,r,zt,o);else{if(!(1&n)&&(i=c&&ui.call(e,"__wrapped__"),u=a&&ui.call(t,"__wrapped__"),i||u)){e=i?e.value():e,t=u?t.value():t,o||(o=new De),t=zt(e,t,n,r,o);break e}if(l)t:if(o||(o=new De),i=1&n,u=hr(e),a=u.length,l=hr(t).length,a==l||i){for(c=a;c--;){var s=u[c];if(!(i?s in t:ui.call(t,s))){t=!1;break t}}if((l=o.get(e))&&o.get(t))t=l==t;else{l=!0,o.set(e,t),o.set(t,e);for(var f=i;++c<a;){var s=u[c],p=e[s],d=t[s];if(r)var h=i?r(d,p,s,t,e,o):r(p,d,s,e,t,o);if(h===U?p!==d&&!zt(p,d,n,r,o):!h){l=!1;break}f||(f="constructor"==s)}l&&!f&&(n=e.constructor,r=t.constructor,n!=r&&"constructor"in e&&"constructor"in t&&!("function"==typeof n&&n instanceof n&&"function"==typeof r&&r instanceof r)&&(l=!1)),o.delete(e),o.delete(t),t=l}}else t=!1;else t=!1}}return t}function qt(e){return bo(e)&&"[object Map]"==ga(e)}function Dt(e,t,n,r){var o=n.length,i=o,a=!r;if(null==e)return!i;for(e=Xo(e);o--;){var u=n[o];if(a&&u[2]?u[1]!==e[u[0]]:!(u[0]in e))return!1}for(;++o<i;){var u=n[o],l=u[0],c=e[l],s=u[1];if(a&&u[2]){if(c===U&&!(l in e))return!1}else{if(u=new De,r)var f=r(c,s,l,e,t,u);if(f===U?!zt(s,c,3,r,u):!f)return!1}}return!0}function Lt(e){return!(!mo(e)||ci&&ci in e)&&(yo(e)?di:xe).test(Dr(e))}function Bt(e){return bo(e)&&"[object RegExp]"==Tt(e)}function $t(e){return bo(e)&&"[object Set]"==ga(e)}function Ft(e){return bo(e)&&vo(e.length)&&!!ze[Tt(e)]}function Ut(e){return"function"==typeof e?e:null==e?Bo:"object"==typeof e?au(e)?Ht(e[0],e[1]):Zt(e):Vo(e)}function Vt(e){if(!Ir(e))return Ci(e);var t,n=[];for(t in Xo(e))ui.call(e,t)&&"constructor"!=t&&n.push(t);return n}function Gt(e,t){return e<t}function Kt(e,t){var n=-1,r=fo(e)?Zo(e.length):[];return ia(e,function(e,o,i){r[++n]=t(e,o,i)}),r}function Zt(e){var t=_r(e);return 1==t.length&&t[0][2]?Sr(t[0][0],t[0][1]):function(n){return n===e||Dt(n,e,t)}}function Ht(e,t){return Ar(e)&&t===t&&!mo(t)?Sr(qr(e),t):function(n){var r=Io(n,e);return r===U&&r===t?So(n,e):zt(t,r,3)}}function Yt(e,t,n,r,o){e!==t&&ua(t,function(i,a){if(o||(o=new De),mo(i)){var u=o,l=Mr(e,a),c=Mr(t,a),s=u.get(c);if(s)Ze(e,a,s);else{var s=r?r(l,c,a+"",e,t,u):U,f=s===U;if(f){var p=au(c),d=!p&&lu(c),h=!p&&!d&&du(c),s=c;p||d||h?au(l)?s=l:po(l)?s=Cn(l):d?(f=!1,s=An(c,!0)):h?(f=!1,s=In(c,!0)):s=[]:xo(c)||iu(c)?(s=l,iu(l)?s=Ao(l):mo(l)&&!yo(l)||(s=Er(c))):f=!1}f&&(u.set(c,s),Yt(s,c,n,r,u),u.delete(c)),Ze(e,a,s)}}else u=r?r(Mr(e,a),i,a+"",e,t,o):U,u===U&&(u=i),Ze(e,a,u)},Mo)}function Jt(e,t){var n=e.length;if(n)return t+=0>t?n:0,Tr(t,n)?e[t]:U}function Qt(e,t,n){var r=-1;return t=d(t.length?t:[Bo],I(mr())),e=Kt(e,function(e){return{a:d(t,function(t){return t(e)}),b:++r,c:e}}),T(e,function(e,t){var r;e:{r=-1;for(var o=e.a,i=t.a,a=o.length,u=n.length;++r<a;){var l=Sn(o[r],i[r]);if(l){r=r>=u?l:l*("desc"==n[r]?-1:1);break e}}r=e.b-t.b}return r})}function Xt(e,t){return en(e,t,function(t,n){return So(e,n)})}function en(e,t,n){for(var r=-1,o=t.length,i={};++r<o;){var a=t[r],u=Pt(e,a);n(u,a)&&sn(i,Tn(a,e),u)}return i}function tn(e){return function(t){return Pt(t,e)}}function nn(e,t,n,r){var o=r?x:_,i=-1,a=t.length,u=e;for(e===t&&(t=Cn(t)),n&&(u=d(e,I(n)));++i<a;)for(var l=0,c=t[i],c=n?n(c):c;-1<(l=o(u,c,l,r));)u!==e&&xi.call(u,l,1),xi.call(e,l,1);return e}function rn(e,t){for(var n=e?t.length:0,r=n-1;n--;){var o=t[n];if(n==r||o!==i){var i=o;Tr(o)?xi.call(e,o,1):_n(e,o)}}}function on(e,t){return e+Ri(Li()*(t-e+1))}function an(e,t){var n="";if(!e||1>t||9007199254740991<t)return n;do t%2&&(n+=e),(t=Ri(t/2))&&(e+=e);while(t);return n}function un(e,t){return _a(Nr(e,t,Bo),e+"")}function ln(e){return Fe(Wo(e))}function cn(e,t){var n=Wo(e);return zr(n,pt(t,0,n.length))}function sn(e,t,n,r){if(!mo(e))return e;t=Tn(t,e);for(var o=-1,i=t.length,a=i-1,u=e;null!=u&&++o<i;){var l=qr(t[o]),c=n;if(o!=a){var s=u[l],c=r?r(s,l,u):U;c===U&&(c=mo(s)?s:Tr(t[o+1])?[]:{})}He(u,l,c),u=u[l]}return e}function fn(e){return zr(Wo(e))}function pn(e,t,n){var r=-1,o=e.length;for(0>t&&(t=-t>o?0:o+t),n=n>o?o:n,0>n&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0,n=Zo(o);++r<o;)n[r]=e[r+t];return n}function dn(e,t){var n;return ia(e,function(e,r,o){return n=t(e,r,o),!n}),!!n}function hn(e,t,n){var r=0,o=null==e?r:e.length;if("number"==typeof t&&t===t&&2147483647>=o){for(;r<o;){var i=r+o>>>1,a=e[i];null!==a&&!jo(a)&&(n?a<=t:a<t)?r=i+1:o=i}return o}return yn(e,t,Bo,n)}function yn(e,t,n,r){t=n(t);for(var o=0,i=null==e?0:e.length,a=t!==t,u=null===t,l=jo(t),c=t===U;o<i;){var s=Ri((o+i)/2),f=n(e[s]),p=f!==U,d=null===f,h=f===f,y=jo(f);(a?r||h:c?h&&(r||p):u?h&&p&&(r||!d):l?h&&p&&!d&&(r||!y):d||y?0:r?f<=t:f<t)?o=s+1:i=s}return zi(i,4294967294)}function gn(e,t){for(var n=-1,r=e.length,o=0,i=[];++n<r;){var a=e[n],u=t?t(a):a;if(!n||!so(u,l)){var l=u;i[o++]=0===a?0:a}}return i}function vn(e){return"number"==typeof e?e:jo(e)?G:+e}function mn(e){if("string"==typeof e)return e;if(au(e))return d(e,mn)+"";if(jo(e))return ra?ra.call(e):"";var t=e+"";return"0"==t&&1/e==-V?"-0":t}function bn(e,t,n){var r=-1,o=f,i=e.length,a=!0,u=[],l=u;if(n)a=!1,o=p;else if(200<=i){if(o=t?null:pa(e))return L(o);a=!1,o=N,l=new Se}else l=t?[]:u;e:for(;++r<i;){var c=e[r],s=t?t(c):c,c=n||0!==c?c:0;if(a&&s===s){for(var d=l.length;d--;)if(l[d]===s)continue e;t&&l.push(s),u.push(c)}else o(l,s,n)||(l!==u&&l.push(s),u.push(c))}return u}function _n(e,t){return t=Tn(t,e),e=2>t.length?e:Pt(e,pn(t,0,-1)),null==e||delete e[qr(Gr(t))]}function xn(e,t,n,r){for(var o=e.length,i=r?o:-1;(r?i--:++i<o)&&t(e[i],i,e););return n?pn(e,r?0:i,r?i+1:o):pn(e,r?i+1:0,r?o:i)}function wn(e,t){var n=e;return n instanceof P&&(n=n.value()),y(t,function(e,t){return t.func.apply(t.thisArg,h([e],t.args))},n)}function jn(e,t,n){var r=e.length;if(2>r)return r?bn(e[0]):[];for(var o=-1,i=Zo(r);++o<r;)for(var a=e[o],u=-1;++u<r;)u!=o&&(i[o]=vt(i[o]||a,e[u],t,n));return bn(xt(i,1),t,n)}function En(e,t,n){for(var r=-1,o=e.length,i=t.length,a={};++r<o;)n(a,e[r],r<i?t[r]:U);return a}function Pn(e){return po(e)?e:[]}function kn(e){return"function"==typeof e?e:Bo}function Tn(e,t){return au(e)?e:Ar(e,t)?[e]:xa(Ro(e))}function On(e,t,n){var r=e.length;return n=n===U?r:n,!t&&n>=r?e:pn(e,t,n)}function An(e,t){if(t)return e.slice();var n=e.length,n=vi?vi(n):new e.constructor(n);return e.copy(n),n}function Rn(e){var t=new e.constructor(e.byteLength);return new gi(t).set(new gi(e)),t}function In(e,t){return new e.constructor(t?Rn(e.buffer):e.buffer,e.byteOffset,e.length)}function Sn(e,t){if(e!==t){var n=e!==U,r=null===e,o=e===e,i=jo(e),a=t!==U,u=null===t,l=t===t,c=jo(t);if(!u&&!c&&!i&&e>t||i&&a&&l&&!u&&!c||r&&a&&l||!n&&l||!o)return 1;if(!r&&!i&&!c&&e<t||c&&n&&o&&!r&&!i||u&&n&&o||!a&&o||!l)return-1}return 0}function Nn(e,t,n,r){var o=-1,i=e.length,a=n.length,u=-1,l=t.length,c=Wi(i-a,0),s=Zo(l+c);for(r=!r;++u<l;)s[u]=t[u];for(;++o<a;)(r||o<i)&&(s[n[o]]=e[o]);for(;c--;)s[u++]=e[o++];return s}function Mn(e,t,n,r){var o=-1,i=e.length,a=-1,u=n.length,l=-1,c=t.length,s=Wi(i-u,0),f=Zo(s+c);for(r=!r;++o<s;)f[o]=e[o];for(s=o;++l<c;)f[s+l]=t[l];for(;++a<u;)(r||o<i)&&(f[s+n[a]]=e[o++]);return f}function Cn(e,t){var n=-1,r=e.length;for(t||(t=Zo(r));++n<r;)t[n]=e[n];return t}function Wn(e,t,n,r){var o=!n;n||(n={});for(var i=-1,a=t.length;++i<a;){var u=t[i],l=r?r(n[u],e[u],u,n,e):U;l===U&&(l=e[u]),o?st(n,u,l):He(n,u,l)}return n}function zn(e,t){return Wn(e,ha(e),t)}function qn(e,t){return Wn(e,ya(e),t)}function Dn(e,t){return function(n,r){var o=au(n)?a:ut,i=t?t():{};return o(n,e,mr(r,2),i)}}function Ln(e){return un(function(t,n){var r=-1,o=n.length,i=1<o?n[o-1]:U,a=2<o?n[2]:U,i=3<e.length&&"function"==typeof i?(o--,i):U;for(a&&Or(n[0],n[1],a)&&(i=3>o?U:i,o=1),t=Xo(t);++r<o;)(a=n[r])&&e(t,a,r,i);return t})}function Bn(e,t){return function(n,r){if(null==n)return n;if(!fo(n))return e(n,r);for(var o=n.length,i=t?o:-1,a=Xo(n);(t?i--:++i<o)&&!1!==r(a[i],i,a););return n}}function $n(e){return function(t,n,r){var o=-1,i=Xo(t);r=r(t);for(var a=r.length;a--;){var u=r[e?a:++o];if(!1===n(i[u],u,i))break}return t}}function Fn(e,t,n){function r(){return(this&&this!==Ue&&this instanceof r?i:e).apply(o?n:this,arguments)}var o=1&t,i=Gn(e);return r}function Un(e){return function(t){t=Ro(t);var n=Me.test(t)?F(t):U,r=n?n[0]:t.charAt(0);return t=n?On(n,1).join(""):t.slice(1),r[e]()+t}}function Vn(e){return function(t){return y(Do(qo(t).replace(Re,"")),e,"")}}function Gn(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=oa(e.prototype),t=e.apply(n,t);return mo(t)?t:n}}function Kn(e,t,n){function r(){for(var a=arguments.length,u=Zo(a),l=a,c=vr(r);l--;)u[l]=arguments[l];return l=3>a&&u[0]!==c&&u[a-1]!==c?[]:D(u,c),a-=l.length,a<n?or(e,t,Yn,r.placeholder,U,u,l,U,U,n-a):i(this&&this!==Ue&&this instanceof r?o:e,this,u)}var o=Gn(e);return r}function Zn(e){return function(t,n,r){var o=Xo(t);if(!fo(t)){var i=mr(n,3);t=No(t),n=function(e){return i(o[e],e,o)}}return n=e(t,n,r),-1<n?o[i?t[n]:n]:U}}function Hn(e){return dr(function(t){var n=t.length,r=n,i=o.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ni("Expected a function");if(i&&!u&&"wrapper"==gr(a))var u=new o([],!0)}for(r=u?r:n;++r<n;)var a=t[r],i=gr(a),l="wrapper"==i?da(a):U,u=l&&Rr(l[0])&&424==l[1]&&!l[4].length&&1==l[9]?u[gr(l[0])].apply(u,l[3]):1==a.length&&Rr(a)?u[i]():u.thru(a);return function(){var e=arguments,r=e[0];if(u&&1==e.length&&au(r))return u.plant(r).value();for(var o=0,e=n?t[o].apply(this,e):r;++o<n;)e=t[o].call(this,e);return e}})}function Yn(e,t,n,r,o,i,a,u,l,c){function s(){for(var v=arguments.length,m=Zo(v),b=v;b--;)m[b]=arguments[b];if(h){var _,x=vr(s),b=m.length;for(_=0;b--;)m[b]===x&&++_}if(r&&(m=Nn(m,r,o,h)),i&&(m=Mn(m,i,a,h)),v-=_,h&&v<c)return x=D(m,x),or(e,t,Yn,s.placeholder,n,m,x,u,l,c-v);if(x=p?n:this,b=d?x[e]:e,v=m.length,u){_=m.length;for(var w=zi(u.length,_),j=Cn(m);w--;){var E=u[w];m[w]=Tr(E,_)?j[E]:U}}else y&&1<v&&m.reverse();return f&&l<v&&(m.length=l),this&&this!==Ue&&this instanceof s&&(b=g||Gn(b)),b.apply(x,m)}var f=128&t,p=1&t,d=2&t,h=24&t,y=512&t,g=d?U:Gn(e);return s}function Jn(e,t){return function(n,r){return St(n,e,t(r))}}function Qn(e,t){return function(n,r){var o;if(n===U&&r===U)return t;if(n!==U&&(o=n),r!==U){if(o===U)return r;"string"==typeof n||"string"==typeof r?(n=mn(n),r=mn(r)):(n=vn(n),r=vn(r)),o=e(n,r)}return o}}function Xn(e){return dr(function(t){return t=d(t,I(mr())),un(function(n){var r=this;return e(t,function(e){return i(e,r,n)})})})}function er(e,t){t=t===U?" ":mn(t);var n=t.length;return 2>n?n?an(t,e):t:(n=an(t,Ai(e/$(t))),Me.test(t)?On(F(n),0,e).join(""):n.slice(0,e))}function tr(e,t,n,r){function o(){for(var t=-1,l=arguments.length,c=-1,s=r.length,f=Zo(s+l),p=this&&this!==Ue&&this instanceof o?u:e;++c<s;)f[c]=r[c];for(;l--;)f[c++]=arguments[++t];return i(p,a?n:this,f)}var a=1&t,u=Gn(e);return o}function nr(e){return function(t,n,r){r&&"number"!=typeof r&&Or(t,n,r)&&(n=r=U),t=Po(t),n===U?(n=t,t=0):n=Po(n),r=r===U?t<n?1:-1:Po(r);var o=-1;n=Wi(Ai((n-t)/(r||1)),0);for(var i=Zo(n);n--;)i[e?n:++o]=t,t+=r;return i}}function rr(e){return function(t,n){return"string"==typeof t&&"string"==typeof n||(t=Oo(t),n=Oo(n)),e(t,n)}}function or(e,t,n,r,o,i,a,u,l,c){var s=8&t,f=s?a:U;a=s?U:a;var p=s?i:U;return i=s?U:i,t=(t|(s?32:64))&~(s?64:32),4&t||(t&=-4),o=[e,t,o,p,f,i,a,u,l,c],n=n.apply(U,o),Rr(e)&&ma(n,o),n.placeholder=r,Cr(n,e,t)}function ir(e){var t=Qo[e];return function(e,n){if(e=Oo(e),(n=null==n?0:zi(ko(n),292))&&Ni(e)){var r=(Ro(e)+"e").split("e"),r=t(r[0]+"e"+(+r[1]+n)),r=(Ro(r)+"e").split("e");return+(r[0]+"e"+(+r[1]-n))}return t(e)}}function ar(e){return function(t){var n=ga(t);return"[object Map]"==n?z(t):"[object Set]"==n?B(t):R(t,e(t))}}function ur(e,t,n,r,o,i,a,u){var l=2&t;if(!l&&"function"!=typeof e)throw new ni("Expected a function");var c=r?r.length:0;if(c||(t&=-97,r=o=U),a=a===U?a:Wi(ko(a),0),u=u===U?u:ko(u),c-=o?o.length:0,64&t){var s=r,f=o;r=o=U}var p=l?U:da(e);return i=[e,t,n,r,o,s,f,i,a,u],p&&(n=i[1],e=p[1],t=n|e,r=128==e&&8==n||128==e&&256==n&&i[7].length<=p[8]||384==e&&p[7].length<=p[8]&&8==n,131>t||r)&&(1&e&&(i[2]=p[2],t|=1&n?0:4),(n=p[3])&&(r=i[3],i[3]=r?Nn(r,n,p[4]):n,i[4]=r?D(i[3],"__lodash_placeholder__"):p[4]),(n=p[5])&&(r=i[5],i[5]=r?Mn(r,n,p[6]):n,i[6]=r?D(i[5],"__lodash_placeholder__"):p[6]),(n=p[7])&&(i[7]=n),128&e&&(i[8]=null==i[8]?p[8]:zi(i[8],p[8])),null==i[9]&&(i[9]=p[9]),i[0]=p[0],i[1]=t),e=i[0],t=i[1],n=i[2],r=i[3],o=i[4],u=i[9]=i[9]===U?l?0:e.length:Wi(i[9]-c,0),!u&&24&t&&(t&=-25),Cr((p?ca:ma)(t&&1!=t?8==t||16==t?Kn(e,t,u):32!=t&&33!=t||o.length?Yn.apply(U,i):tr(e,t,n,r):Fn(e,t,n),i),e,t)}function lr(e,t,n,r){return e===U||so(e,oi[n])&&!ui.call(r,n)?t:e}function cr(e,t,n,r,o,i){return mo(e)&&mo(t)&&(i.set(t,e),Yt(e,t,U,cr,i),i.delete(t)),e}function sr(e){return xo(e)?U:e}function fr(e,t,n,r,o,i){var a=1&n,u=e.length,l=t.length;if(u!=l&&!(a&&l>u))return!1;if((l=i.get(e))&&i.get(t))return l==t;var l=-1,c=!0,s=2&n?new Se:U;for(i.set(e,t),i.set(t,e);++l<u;){var f=e[l],p=t[l];if(r)var d=a?r(p,f,l,t,e,i):r(f,p,l,e,t,i);if(d!==U){if(d)continue;c=!1;break}if(s){if(!v(t,function(e,t){if(!N(s,t)&&(f===e||o(f,e,n,r,i)))return s.push(t)})){c=!1;break}}else if(f!==p&&!o(f,p,n,r,i)){c=!1;break}}return i.delete(e),i.delete(t),c}function pr(e,t,n,r,o,i,a){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)break;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":if(e.byteLength!=t.byteLength||!i(new gi(e),new gi(t)))break;return!0;case"[object Boolean]":case"[object Date]":case"[object Number]":return so(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var u=z;case"[object Set]":if(u||(u=L),e.size!=t.size&&!(1&r))break;return(n=a.get(e))?n==t:(r|=2,a.set(e,t),t=fr(u(e),u(t),r,o,i,a),a.delete(e),t);case"[object Symbol]":if(na)return na.call(e)==na.call(t)}return!1}function dr(e){return _a(Nr(e,U,Ur),e+"")}function hr(e){return kt(e,No,ha)}function yr(e){return kt(e,Mo,ya)}function gr(e){for(var t=e.name+"",n=Hi[t],r=ui.call(Hi,t)?n.length:0;r--;){var o=n[r],i=o.func;if(null==i||i==e)return o.name}return t}function vr(e){return(ui.call(n,"placeholder")?n:e).placeholder}function mr(){var e=n.iteratee||$o,e=e===$o?Ut:e;return arguments.length?e(arguments[0],arguments[1]):e}function br(e,t){var n=e.__data__,r=typeof t;return("string"==r||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==t:null===t)?n["string"==typeof t?"string":"hash"]:n.map}function _r(e){for(var t=No(e),n=t.length;n--;){var r=t[n],o=e[r];t[n]=[r,o,o===o&&!mo(o)]}return t}function xr(e,t){var n=null==e?U:e[t];return Lt(n)?n:U}function wr(e,t,n){t=Tn(t,e);for(var r=-1,o=t.length,i=!1;++r<o;){var a=qr(t[r]);if(!(i=null!=e&&n(e,a)))break;e=e[a]}return i||++r!=o?i:(o=null==e?0:e.length,!!o&&vo(o)&&Tr(a,o)&&(au(e)||iu(e)))}function jr(e){ var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&ui.call(e,"index")&&(n.index=e.index,n.input=e.input),n}function Er(e){return"function"!=typeof e.constructor||Ir(e)?{}:oa(mi(e))}function Pr(e,t,n){var r=e.constructor;switch(t){case"[object ArrayBuffer]":return Rn(e);case"[object Boolean]":case"[object Date]":return new r(+e);case"[object DataView]":return t=n?Rn(e.buffer):e.buffer,new e.constructor(t,e.byteOffset,e.byteLength);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return In(e,n);case"[object Map]":return new r;case"[object Number]":case"[object String]":return new r(e);case"[object RegExp]":return t=new e.constructor(e.source,me.exec(e)),t.lastIndex=e.lastIndex,t;case"[object Set]":return new r;case"[object Symbol]":return na?Xo(na.call(e)):{}}}function kr(e){return au(e)||iu(e)||!!(wi&&e&&e[wi])}function Tr(e,t){var n=typeof e;return t=null==t?9007199254740991:t,!!t&&("number"==n||"symbol"!=n&&je.test(e))&&-1<e&&0==e%1&&e<t}function Or(e,t,n){if(!mo(n))return!1;var r=typeof t;return!!("number"==r?fo(n)&&Tr(t,n.length):"string"==r&&t in n)&&so(n[t],e)}function Ar(e,t){if(au(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!jo(e))||ie.test(e)||!oe.test(e)||null!=t&&e in Xo(t)}function Rr(e){var t=gr(e),r=n[t];return"function"==typeof r&&t in P.prototype&&(e===r||(t=da(r),!!t&&e===t[0]))}function Ir(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||oi)}function Sr(e,t){return function(n){return null!=n&&n[e]===t&&(t!==U||e in Xo(n))}}function Nr(e,t,n){return t=Wi(t===U?e.length-1:t,0),function(){for(var r=arguments,o=-1,a=Wi(r.length-t,0),u=Zo(a);++o<a;)u[o]=r[t+o];for(o=-1,a=Zo(t+1);++o<t;)a[o]=r[o];return a[t]=n(u),i(e,this,a)}}function Mr(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}function Cr(e,t,n){var r=t+"";t=_a;var o,i=Lr;return o=(o=r.match(de))?o[1].split(he):[],n=i(o,n),(i=n.length)&&(o=i-1,n[o]=(1<i?"& ":"")+n[o],n=n.join(2<i?", ":" "),r=r.replace(pe,"{\n/* [wrapped with "+n+"] */\n")),t(e,r)}function Wr(e){var t=0,n=0;return function(){var r=qi(),o=16-(r-n);if(n=r,0<o){if(800<=++t)return arguments[0]}else t=0;return e.apply(U,arguments)}}function zr(e,t){var n=-1,r=e.length,o=r-1;for(t=t===U?r:t;++n<t;){var r=on(n,o),i=e[r];e[r]=e[n],e[n]=i}return e.length=t,e}function qr(e){if("string"==typeof e||jo(e))return e;var t=e+"";return"0"==t&&1/e==-V?"-0":t}function Dr(e){if(null!=e){try{return ai.call(e)}catch(e){}return e+""}return""}function Lr(e,t){return u(K,function(n){var r="_."+n[0];t&n[1]&&!f(e,r)&&e.push(r)}),e.sort()}function Br(e){if(e instanceof P)return e.clone();var t=new o(e.__wrapped__,e.__chain__);return t.__actions__=Cn(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}function $r(e,t,n){var r=null==e?0:e.length;return r?(n=null==n?0:ko(n),0>n&&(n=Wi(r+n,0)),b(e,mr(t,3),n)):-1}function Fr(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var o=r-1;return n!==U&&(o=ko(n),o=0>n?Wi(r+o,0):zi(o,r-1)),b(e,mr(t,3),o,!0)}function Ur(e){return(null==e?0:e.length)?xt(e,1):[]}function Vr(e){return e&&e.length?e[0]:U}function Gr(e){var t=null==e?0:e.length;return t?e[t-1]:U}function Kr(e,t){return e&&e.length&&t&&t.length?nn(e,t):e}function Zr(e){return null==e?e:Bi.call(e)}function Hr(e){if(!e||!e.length)return[];var t=0;return e=s(e,function(e){if(po(e))return t=Wi(e.length,t),!0}),A(t,function(t){return d(e,E(t))})}function Yr(e,t){if(!e||!e.length)return[];var n=Hr(e);return null==t?n:d(n,function(e){return i(t,U,e)})}function Jr(e){return e=n(e),e.__chain__=!0,e}function Qr(e,t){return t(e)}function Xr(){return this}function eo(e,t){return(au(e)?u:ia)(e,mr(t,3))}function to(e,t){return(au(e)?l:aa)(e,mr(t,3))}function no(e,t){return(au(e)?d:Kt)(e,mr(t,3))}function ro(e,t,n){return t=n?U:t,t=e&&null==t?e.length:t,ur(e,128,U,U,U,U,t)}function oo(e,t){var n;if("function"!=typeof t)throw new ni("Expected a function");return e=ko(e),function(){return 0<--e&&(n=t.apply(this,arguments)),1>=e&&(t=U),n}}function io(e,t,n){return t=n?U:t,e=ur(e,8,U,U,U,U,U,t),e.placeholder=io.placeholder,e}function ao(e,t,n){return t=n?U:t,e=ur(e,16,U,U,U,U,U,t),e.placeholder=ao.placeholder,e}function uo(e,t,n){function r(t){var n=l,r=c;return l=c=U,h=t,f=e.apply(r,n)}function o(e){var n=e-d;return e-=h,d===U||n>=t||0>n||g&&e>=s}function i(){var e=Za();if(o(e))return a(e);var n,r=ba;n=e-h,e=t-(e-d),n=g?zi(e,s-n):e,p=r(i,n)}function a(e){return p=U,v&&l?r(e):(l=c=U,f)}function u(){var e=Za(),n=o(e);if(l=arguments,c=this,d=e,n){if(p===U)return h=e=d,p=ba(i,t),y?r(e):f;if(g)return fa(p),p=ba(i,t),r(d)}return p===U&&(p=ba(i,t)),f}var l,c,s,f,p,d,h=0,y=!1,g=!1,v=!0;if("function"!=typeof e)throw new ni("Expected a function");return t=Oo(t)||0,mo(n)&&(y=!!n.leading,s=(g="maxWait"in n)?Wi(Oo(n.maxWait)||0,t):s,v="trailing"in n?!!n.trailing:v),u.cancel=function(){p!==U&&fa(p),h=0,l=d=c=p=U},u.flush=function(){return p===U?f:a(Za())},u}function lo(e,t){function n(){var r=arguments,o=t?t.apply(this,r):r[0],i=n.cache;return i.has(o)?i.get(o):(r=e.apply(this,r),n.cache=i.set(o,r)||i,r)}if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ni("Expected a function");return n.cache=new(lo.Cache||Ae),n}function co(e){if("function"!=typeof e)throw new ni("Expected a function");return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function so(e,t){return e===t||e!==e&&t!==t}function fo(e){return null!=e&&vo(e.length)&&!yo(e)}function po(e){return bo(e)&&fo(e)}function ho(e){if(!bo(e))return!1;var t=Tt(e);return"[object Error]"==t||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!xo(e)}function yo(e){return!!mo(e)&&(e=Tt(e),"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e)}function go(e){return"number"==typeof e&&e==ko(e)}function vo(e){return"number"==typeof e&&-1<e&&0==e%1&&9007199254740991>=e}function mo(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function bo(e){return null!=e&&"object"==typeof e}function _o(e){return"number"==typeof e||bo(e)&&"[object Number]"==Tt(e)}function xo(e){return!(!bo(e)||"[object Object]"!=Tt(e))&&(e=mi(e),null===e||(e=ui.call(e,"constructor")&&e.constructor,"function"==typeof e&&e instanceof e&&ai.call(e)==fi))}function wo(e){return"string"==typeof e||!au(e)&&bo(e)&&"[object String]"==Tt(e)}function jo(e){return"symbol"==typeof e||bo(e)&&"[object Symbol]"==Tt(e)}function Eo(e){if(!e)return[];if(fo(e))return wo(e)?F(e):Cn(e);if(ji&&e[ji]){e=e[ji]();for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}return t=ga(e),("[object Map]"==t?z:"[object Set]"==t?L:Wo)(e)}function Po(e){return e?(e=Oo(e),e===V||e===-V?1.7976931348623157e308*(0>e?-1:1):e===e?e:0):0===e?e:0}function ko(e){e=Po(e);var t=e%1;return e===e?t?e-t:e:0}function To(e){return e?pt(ko(e),0,4294967295):0}function Oo(e){if("number"==typeof e)return e;if(jo(e))return G;if(mo(e)&&(e="function"==typeof e.valueOf?e.valueOf():e,e=mo(e)?e+"":e),"string"!=typeof e)return 0===e?e:+e;e=e.replace(ce,"");var t=_e.test(e);return t||we.test(e)?Be(e.slice(2),t?2:8):be.test(e)?G:+e}function Ao(e){return Wn(e,Mo(e))}function Ro(e){return null==e?"":mn(e)}function Io(e,t,n){return e=null==e?U:Pt(e,t),e===U?n:e}function So(e,t){return null!=e&&wr(e,t,Rt)}function No(e){return fo(e)?$e(e):Vt(e)}function Mo(e){if(fo(e))e=$e(e,!0);else if(mo(e)){var t,n=Ir(e),r=[];for(t in e)("constructor"!=t||!n&&ui.call(e,t))&&r.push(t);e=r}else{if(t=[],null!=e)for(n in Xo(e))t.push(n);e=t}return e}function Co(e,t){if(null==e)return{};var n=d(yr(e),function(e){return[e]});return t=mr(t),en(e,n,function(e,n){return t(e,n[0])})}function Wo(e){return null==e?[]:S(e,No(e))}function zo(e){return Du(Ro(e).toLowerCase())}function qo(e){return(e=Ro(e))&&e.replace(Ee,rt).replace(Ie,"")}function Do(e,t,n){return e=Ro(e),t=n?U:t,t===U?Ce.test(e)?e.match(Ne)||[]:e.match(ye)||[]:e.match(t)||[]}function Lo(e){return function(){return e}}function Bo(e){return e}function $o(e){return Ut("function"==typeof e?e:dt(e,1))}function Fo(e,t,n){var r=No(t),o=Et(t,r);null!=n||mo(t)&&(o.length||!r.length)||(n=t,t=e,e=this,o=Et(t,No(t)));var i=!(mo(n)&&"chain"in n&&!n.chain),a=yo(e);return u(o,function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(i||t){var n=e(this.__wrapped__);return(n.__actions__=Cn(this.__actions__)).push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,h([this.value()],arguments))})}),e}function Uo(){}function Vo(e){return Ar(e)?E(qr(e)):tn(e)}function Go(){return[]}function Ko(){return!1}t=null==t?Ue:at.defaults(Ue.Object(),t,at.pick(Ue,We));var Zo=t.Array,Ho=t.Date,Yo=t.Error,Jo=t.Function,Qo=t.Math,Xo=t.Object,ei=t.RegExp,ti=t.String,ni=t.TypeError,ri=Zo.prototype,oi=Xo.prototype,ii=t["__core-js_shared__"],ai=Jo.prototype.toString,ui=oi.hasOwnProperty,li=0,ci=function(){var e=/[^.]+$/.exec(ii&&ii.keys&&ii.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),si=oi.toString,fi=ai.call(Xo),pi=Ue._,di=ei("^"+ai.call(ui).replace(ue,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),hi=Ke?t.Buffer:U,yi=t.Symbol,gi=t.Uint8Array,vi=hi?hi.g:U,mi=q(Xo.getPrototypeOf,Xo),bi=Xo.create,_i=oi.propertyIsEnumerable,xi=ri.splice,wi=yi?yi.isConcatSpreadable:U,ji=yi?yi.iterator:U,Ei=yi?yi.toStringTag:U,Pi=function(){try{var e=xr(Xo,"defineProperty");return e({},"",{}),e}catch(e){}}(),ki=t.clearTimeout!==Ue.clearTimeout&&t.clearTimeout,Ti=Ho&&Ho.now!==Ue.Date.now&&Ho.now,Oi=t.setTimeout!==Ue.setTimeout&&t.setTimeout,Ai=Qo.ceil,Ri=Qo.floor,Ii=Xo.getOwnPropertySymbols,Si=hi?hi.isBuffer:U,Ni=t.isFinite,Mi=ri.join,Ci=q(Xo.keys,Xo),Wi=Qo.max,zi=Qo.min,qi=Ho.now,Di=t.parseInt,Li=Qo.random,Bi=ri.reverse,$i=xr(t,"DataView"),Fi=xr(t,"Map"),Ui=xr(t,"Promise"),Vi=xr(t,"Set"),Gi=xr(t,"WeakMap"),Ki=xr(Xo,"create"),Zi=Gi&&new Gi,Hi={},Yi=Dr($i),Ji=Dr(Fi),Qi=Dr(Ui),Xi=Dr(Vi),ea=Dr(Gi),ta=yi?yi.prototype:U,na=ta?ta.valueOf:U,ra=ta?ta.toString:U,oa=function(){function e(){}return function(t){return mo(t)?bi?bi(t):(e.prototype=t,t=new e,e.prototype=U,t):{}}}();n.templateSettings={escape:te,evaluate:ne,interpolate:re,variable:"",imports:{_:n}},n.prototype=r.prototype,n.prototype.constructor=n,o.prototype=oa(r.prototype),o.prototype.constructor=o,P.prototype=oa(r.prototype),P.prototype.constructor=P,Te.prototype.clear=function(){this.__data__=Ki?Ki(null):{},this.size=0},Te.prototype.delete=function(e){return e=this.has(e)&&delete this.__data__[e],this.size-=e?1:0,e},Te.prototype.get=function(e){var t=this.__data__;return Ki?(e=t[e],"__lodash_hash_undefined__"===e?U:e):ui.call(t,e)?t[e]:U},Te.prototype.has=function(e){var t=this.__data__;return Ki?t[e]!==U:ui.call(t,e)},Te.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=Ki&&t===U?"__lodash_hash_undefined__":t,this},Oe.prototype.clear=function(){this.__data__=[],this.size=0},Oe.prototype.delete=function(e){var t=this.__data__;return e=nt(t,e),!(0>e||(e==t.length-1?t.pop():xi.call(t,e,1),--this.size,0))},Oe.prototype.get=function(e){var t=this.__data__;return e=nt(t,e),0>e?U:t[e][1]},Oe.prototype.has=function(e){return-1<nt(this.__data__,e)},Oe.prototype.set=function(e,t){var n=this.__data__,r=nt(n,e);return 0>r?(++this.size,n.push([e,t])):n[r][1]=t,this},Ae.prototype.clear=function(){this.size=0,this.__data__={hash:new Te,map:new(Fi||Oe),string:new Te}},Ae.prototype.delete=function(e){return e=br(this,e).delete(e),this.size-=e?1:0,e},Ae.prototype.get=function(e){return br(this,e).get(e)},Ae.prototype.has=function(e){return br(this,e).has(e)},Ae.prototype.set=function(e,t){var n=br(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Se.prototype.add=Se.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Se.prototype.has=function(e){return this.__data__.has(e)},De.prototype.clear=function(){this.__data__=new Oe,this.size=0},De.prototype.delete=function(e){var t=this.__data__;return e=t.delete(e),this.size=t.size,e},De.prototype.get=function(e){return this.__data__.get(e)},De.prototype.has=function(e){return this.__data__.has(e)},De.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Oe){var r=n.__data__;if(!Fi||199>r.length)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Ae(r)}return n.set(e,t),this.size=n.size,this};var ia=Bn(wt),aa=Bn(jt,!0),ua=$n(),la=$n(!0),ca=Zi?function(e,t){return Zi.set(e,t),e}:Bo,sa=Pi?function(e,t){return Pi(e,"toString",{configurable:!0,enumerable:!1,value:Lo(t),writable:!0})}:Bo,fa=ki||function(e){return Ue.clearTimeout(e)},pa=Vi&&1/L(new Vi([,-0]))[1]==V?function(e){return new Vi(e)}:Uo,da=Zi?function(e){return Zi.get(e)}:Uo,ha=Ii?function(e){return null==e?[]:(e=Xo(e),s(Ii(e),function(t){return _i.call(e,t)}))}:Go,ya=Ii?function(e){for(var t=[];e;)h(t,ha(e)),e=mi(e);return t}:Go,ga=Tt;($i&&"[object DataView]"!=ga(new $i(new ArrayBuffer(1)))||Fi&&"[object Map]"!=ga(new Fi)||Ui&&"[object Promise]"!=ga(Ui.resolve())||Vi&&"[object Set]"!=ga(new Vi)||Gi&&"[object WeakMap]"!=ga(new Gi))&&(ga=function(e){var t=Tt(e);if(e=(e="[object Object]"==t?e.constructor:U)?Dr(e):"")switch(e){case Yi:return"[object DataView]";case Ji:return"[object Map]";case Qi:return"[object Promise]";case Xi:return"[object Set]";case ea:return"[object WeakMap]"}return t});var va=ii?yo:Ko,ma=Wr(ca),ba=Oi||function(e,t){return Ue.setTimeout(e,t)},_a=Wr(sa),xa=function(e){e=lo(e,function(e){return 500===t.size&&t.clear(),e});var t=e.cache;return e}(function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(ae,function(e,n,r,o){t.push(r?o.replace(ge,"$1"):n||e)}),t}),wa=un(function(e,t){return po(e)?vt(e,xt(t,1,po,!0)):[]}),ja=un(function(e,t){var n=Gr(t);return po(n)&&(n=U),po(e)?vt(e,xt(t,1,po,!0),mr(n,2)):[]}),Ea=un(function(e,t){var n=Gr(t);return po(n)&&(n=U),po(e)?vt(e,xt(t,1,po,!0),U,n):[]}),Pa=un(function(e){var t=d(e,Pn);return t.length&&t[0]===e[0]?It(t):[]}),ka=un(function(e){var t=Gr(e),n=d(e,Pn);return t===Gr(n)?t=U:n.pop(),n.length&&n[0]===e[0]?It(n,mr(t,2)):[]}),Ta=un(function(e){var t=Gr(e),n=d(e,Pn);return(t="function"==typeof t?t:U)&&n.pop(),n.length&&n[0]===e[0]?It(n,U,t):[]}),Oa=un(Kr),Aa=dr(function(e,t){var n=null==e?0:e.length,r=ft(e,t);return rn(e,d(t,function(e){return Tr(e,n)?+e:e}).sort(Sn)),r}),Ra=un(function(e){return bn(xt(e,1,po,!0))}),Ia=un(function(e){var t=Gr(e);return po(t)&&(t=U),bn(xt(e,1,po,!0),mr(t,2))}),Sa=un(function(e){var t=Gr(e),t="function"==typeof t?t:U;return bn(xt(e,1,po,!0),U,t)}),Na=un(function(e,t){return po(e)?vt(e,t):[]}),Ma=un(function(e){return jn(s(e,po))}),Ca=un(function(e){var t=Gr(e);return po(t)&&(t=U),jn(s(e,po),mr(t,2))}),Wa=un(function(e){var t=Gr(e),t="function"==typeof t?t:U;return jn(s(e,po),U,t)}),za=un(Hr),qa=un(function(e){var t=e.length,t=1<t?e[t-1]:U,t="function"==typeof t?(e.pop(),t):U;return Yr(e,t)}),Da=dr(function(e){function t(t){return ft(t,e)}var n=e.length,r=n?e[0]:0,i=this.__wrapped__;return!(1<n||this.__actions__.length)&&i instanceof P&&Tr(r)?(i=i.slice(r,+r+(n?1:0)),i.__actions__.push({func:Qr,args:[t],thisArg:U}),new o(i,this.__chain__).thru(function(e){return n&&!e.length&&e.push(U),e})):this.thru(t)}),La=Dn(function(e,t,n){ui.call(e,n)?++e[n]:st(e,n,1)}),Ba=Zn($r),$a=Zn(Fr),Fa=Dn(function(e,t,n){ui.call(e,n)?e[n].push(t):st(e,n,[t])}),Ua=un(function(e,t,n){var r=-1,o="function"==typeof t,a=fo(e)?Zo(e.length):[];return ia(e,function(e){a[++r]=o?i(t,e,n):Nt(e,t,n)}),a}),Va=Dn(function(e,t,n){st(e,n,t)}),Ga=Dn(function(e,t,n){e[n?0:1].push(t)},function(){return[[],[]]}),Ka=un(function(e,t){if(null==e)return[];var n=t.length;return 1<n&&Or(e,t[0],t[1])?t=[]:2<n&&Or(t[0],t[1],t[2])&&(t=[t[0]]),Qt(e,xt(t,1),[])}),Za=Ti||function(){return Ue.Date.now()},Ha=un(function(e,t,n){var r=1;if(n.length)var o=D(n,vr(Ha)),r=32|r;return ur(e,r,t,n,o)}),Ya=un(function(e,t,n){var r=3;if(n.length)var o=D(n,vr(Ya)),r=32|r;return ur(t,r,e,n,o)}),Ja=un(function(e,t){return gt(e,1,t)}),Qa=un(function(e,t,n){return gt(e,Oo(t)||0,n)});lo.Cache=Ae;var Xa=un(function(e,t){t=1==t.length&&au(t[0])?d(t[0],I(mr())):d(xt(t,1),I(mr()));var n=t.length;return un(function(r){for(var o=-1,a=zi(r.length,n);++o<a;)r[o]=t[o].call(this,r[o]);return i(e,this,r)})}),eu=un(function(e,t){return ur(e,32,U,t,D(t,vr(eu)))}),tu=un(function(e,t){return ur(e,64,U,t,D(t,vr(tu)))}),nu=dr(function(e,t){return ur(e,256,U,U,U,t)}),ru=rr(Ot),ou=rr(function(e,t){return e>=t}),iu=Mt(function(){return arguments}())?Mt:function(e){return bo(e)&&ui.call(e,"callee")&&!_i.call(e,"callee")},au=Zo.isArray,uu=Ye?I(Ye):Ct,lu=Si||Ko,cu=Je?I(Je):Wt,su=Qe?I(Qe):qt,fu=Xe?I(Xe):Bt,pu=et?I(et):$t,du=tt?I(tt):Ft,hu=rr(Gt),yu=rr(function(e,t){return e<=t}),gu=Ln(function(e,t){if(Ir(t)||fo(t))Wn(t,No(t),e);else for(var n in t)ui.call(t,n)&&He(e,n,t[n])}),vu=Ln(function(e,t){Wn(t,Mo(t),e)}),mu=Ln(function(e,t,n,r){Wn(t,Mo(t),e,r)}),bu=Ln(function(e,t,n,r){Wn(t,No(t),e,r)}),_u=dr(ft),xu=un(function(e,t){e=Xo(e);var n=-1,r=t.length,o=2<r?t[2]:U;for(o&&Or(t[0],t[1],o)&&(r=1);++n<r;)for(var o=t[n],i=Mo(o),a=-1,u=i.length;++a<u;){var l=i[a],c=e[l];(c===U||so(c,oi[l])&&!ui.call(e,l))&&(e[l]=o[l])}return e}),wu=un(function(e){return e.push(U,cr),i(Tu,U,e)}),ju=Jn(function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=si.call(t)),e[t]=n},Lo(Bo)),Eu=Jn(function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=si.call(t)),ui.call(e,t)?e[t].push(n):e[t]=[n]},mr),Pu=un(Nt),ku=Ln(function(e,t,n){Yt(e,t,n)}),Tu=Ln(function(e,t,n,r){Yt(e,t,n,r)}),Ou=dr(function(e,t){var n={};if(null==e)return n;var r=!1;t=d(t,function(t){return t=Tn(t,e),r||(r=1<t.length),t}),Wn(e,yr(e),n),r&&(n=dt(n,7,sr));for(var o=t.length;o--;)_n(n,t[o]);return n}),Au=dr(function(e,t){return null==e?{}:Xt(e,t)}),Ru=ar(No),Iu=ar(Mo),Su=Vn(function(e,t,n){return t=t.toLowerCase(),e+(n?zo(t):t)}),Nu=Vn(function(e,t,n){return e+(n?"-":"")+t.toLowerCase()}),Mu=Vn(function(e,t,n){return e+(n?" ":"")+t.toLowerCase()}),Cu=Un("toLowerCase"),Wu=Vn(function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}),zu=Vn(function(e,t,n){return e+(n?" ":"")+Du(t)}),qu=Vn(function(e,t,n){return e+(n?" ":"")+t.toUpperCase()}),Du=Un("toUpperCase"),Lu=un(function(e,t){try{return i(e,U,t)}catch(e){return ho(e)?e:new Yo(e)}}),Bu=dr(function(e,t){return u(t,function(t){t=qr(t),st(e,t,Ha(e[t],e))}),e}),$u=Hn(),Fu=Hn(!0),Uu=un(function(e,t){return function(n){return Nt(n,e,t)}}),Vu=un(function(e,t){return function(n){return Nt(e,n,t)}}),Gu=Xn(d),Ku=Xn(c),Zu=Xn(v),Hu=nr(),Yu=nr(!0),Ju=Qn(function(e,t){return e+t},0),Qu=ir("ceil"),Xu=Qn(function(e,t){return e/t},1),el=ir("floor"),tl=Qn(function(e,t){return e*t},1),nl=ir("round"),rl=Qn(function(e,t){return e-t},0);return n.after=function(e,t){if("function"!=typeof t)throw new ni("Expected a function");return e=ko(e),function(){if(1>--e)return t.apply(this,arguments)}},n.ary=ro,n.assign=gu,n.assignIn=vu,n.assignInWith=mu,n.assignWith=bu,n.at=_u,n.before=oo,n.bind=Ha,n.bindAll=Bu,n.bindKey=Ya,n.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return au(e)?e:[e]},n.chain=Jr,n.chunk=function(e,t,n){if(t=(n?Or(e,t,n):t===U)?1:Wi(ko(t),0),n=null==e?0:e.length,!n||1>t)return[];for(var r=0,o=0,i=Zo(Ai(n/t));r<n;)i[o++]=pn(e,r,r+=t);return i},n.compact=function(e){for(var t=-1,n=null==e?0:e.length,r=0,o=[];++t<n;){var i=e[t];i&&(o[r++]=i)}return o},n.concat=function(){var e=arguments.length;if(!e)return[];for(var t=Zo(e-1),n=arguments[0];e--;)t[e-1]=arguments[e];return h(au(n)?Cn(n):[n],xt(t,1))},n.cond=function(e){var t=null==e?0:e.length,n=mr();return e=t?d(e,function(e){if("function"!=typeof e[1])throw new ni("Expected a function");return[n(e[0]),e[1]]}):[],un(function(n){for(var r=-1;++r<t;){var o=e[r];if(i(o[0],this,n))return i(o[1],this,n)}})},n.conforms=function(e){return ht(dt(e,1))},n.constant=Lo,n.countBy=La,n.create=function(e,t){var n=oa(e);return null==t?n:lt(n,t)},n.curry=io,n.curryRight=ao,n.debounce=uo,n.defaults=xu,n.defaultsDeep=wu,n.defer=Ja,n.delay=Qa,n.difference=wa,n.differenceBy=ja,n.differenceWith=Ea,n.drop=function(e,t,n){var r=null==e?0:e.length;return r?(t=n||t===U?1:ko(t),pn(e,0>t?0:t,r)):[]},n.dropRight=function(e,t,n){var r=null==e?0:e.length;return r?(t=n||t===U?1:ko(t),t=r-t,pn(e,0,0>t?0:t)):[]},n.dropRightWhile=function(e,t){return e&&e.length?xn(e,mr(t,3),!0,!0):[]},n.dropWhile=function(e,t){return e&&e.length?xn(e,mr(t,3),!0):[]},n.fill=function(e,t,n,r){var o=null==e?0:e.length;if(!o)return[];for(n&&"number"!=typeof n&&Or(e,t,n)&&(n=0,r=o),o=e.length,n=ko(n),0>n&&(n=-n>o?0:o+n),r=r===U||r>o?o:ko(r),0>r&&(r+=o),r=n>r?0:To(r);n<r;)e[n++]=t;return e},n.filter=function(e,t){return(au(e)?s:_t)(e,mr(t,3))},n.flatMap=function(e,t){return xt(no(e,t),1)},n.flatMapDeep=function(e,t){return xt(no(e,t),V)},n.flatMapDepth=function(e,t,n){return n=n===U?1:ko(n),xt(no(e,t),n)},n.flatten=Ur,n.flattenDeep=function(e){return(null==e?0:e.length)?xt(e,V):[]},n.flattenDepth=function(e,t){return null!=e&&e.length?(t=t===U?1:ko(t),xt(e,t)):[]},n.flip=function(e){return ur(e,512)},n.flow=$u,n.flowRight=Fu,n.fromPairs=function(e){for(var t=-1,n=null==e?0:e.length,r={};++t<n;){var o=e[t];r[o[0]]=o[1]}return r},n.functions=function(e){return null==e?[]:Et(e,No(e))},n.functionsIn=function(e){return null==e?[]:Et(e,Mo(e))},n.groupBy=Fa,n.initial=function(e){return(null==e?0:e.length)?pn(e,0,-1):[]},n.intersection=Pa,n.intersectionBy=ka,n.intersectionWith=Ta,n.invert=ju,n.invertBy=Eu,n.invokeMap=Ua,n.iteratee=$o,n.keyBy=Va,n.keys=No,n.keysIn=Mo,n.map=no,n.mapKeys=function(e,t){var n={};return t=mr(t,3),wt(e,function(e,r,o){st(n,t(e,r,o),e)}),n},n.mapValues=function(e,t){var n={};return t=mr(t,3),wt(e,function(e,r,o){st(n,r,t(e,r,o))}),n},n.matches=function(e){return Zt(dt(e,1))},n.matchesProperty=function(e,t){return Ht(e,dt(t,1))},n.memoize=lo,n.merge=ku,n.mergeWith=Tu,n.method=Uu,n.methodOf=Vu,n.mixin=Fo,n.negate=co,n.nthArg=function(e){return e=ko(e),un(function(t){return Jt(t,e)})},n.omit=Ou,n.omitBy=function(e,t){return Co(e,co(mr(t)))},n.once=function(e){return oo(2,e)},n.orderBy=function(e,t,n,r){return null==e?[]:(au(t)||(t=null==t?[]:[t]),n=r?U:n,au(n)||(n=null==n?[]:[n]),Qt(e,t,n))},n.over=Gu,n.overArgs=Xa,n.overEvery=Ku,n.overSome=Zu,n.partial=eu,n.partialRight=tu,n.partition=Ga,n.pick=Au,n.pickBy=Co,n.property=Vo,n.propertyOf=function(e){return function(t){return null==e?U:Pt(e,t)}},n.pull=Oa,n.pullAll=Kr,n.pullAllBy=function(e,t,n){return e&&e.length&&t&&t.length?nn(e,t,mr(n,2)):e},n.pullAllWith=function(e,t,n){return e&&e.length&&t&&t.length?nn(e,t,U,n):e},n.pullAt=Aa,n.range=Hu,n.rangeRight=Yu,n.rearg=nu,n.reject=function(e,t){return(au(e)?s:_t)(e,co(mr(t,3)))},n.remove=function(e,t){var n=[];if(!e||!e.length)return n;var r=-1,o=[],i=e.length;for(t=mr(t,3);++r<i;){var a=e[r];t(a,r,e)&&(n.push(a),o.push(r))}return rn(e,o),n},n.rest=function(e,t){if("function"!=typeof e)throw new ni("Expected a function");return t=t===U?t:ko(t),un(e,t)},n.reverse=Zr,n.sampleSize=function(e,t,n){return t=(n?Or(e,t,n):t===U)?1:ko(t),(au(e)?Ve:cn)(e,t)},n.set=function(e,t,n){return null==e?e:sn(e,t,n)},n.setWith=function(e,t,n,r){return r="function"==typeof r?r:U,null==e?e:sn(e,t,n,r)},n.shuffle=function(e){return(au(e)?Ge:fn)(e)},n.slice=function(e,t,n){var r=null==e?0:e.length;return r?(n&&"number"!=typeof n&&Or(e,t,n)?(t=0,n=r):(t=null==t?0:ko(t),n=n===U?r:ko(n)),pn(e,t,n)):[]},n.sortBy=Ka,n.sortedUniq=function(e){return e&&e.length?gn(e):[]},n.sortedUniqBy=function(e,t){return e&&e.length?gn(e,mr(t,2)):[]},n.split=function(e,t,n){return n&&"number"!=typeof n&&Or(e,t,n)&&(t=n=U),n=n===U?4294967295:n>>>0,n?(e=Ro(e))&&("string"==typeof t||null!=t&&!fu(t))&&(t=mn(t),!t&&Me.test(e))?On(F(e),0,n):e.split(t,n):[]},n.spread=function(e,t){if("function"!=typeof e)throw new ni("Expected a function");return t=null==t?0:Wi(ko(t),0),un(function(n){var r=n[t];return n=On(n,0,t),r&&h(n,r),i(e,this,n)})},n.tail=function(e){var t=null==e?0:e.length;return t?pn(e,1,t):[]},n.take=function(e,t,n){return e&&e.length?(t=n||t===U?1:ko(t),pn(e,0,0>t?0:t)):[]},n.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?(t=n||t===U?1:ko(t),t=r-t,pn(e,0>t?0:t,r)):[]},n.takeRightWhile=function(e,t){return e&&e.length?xn(e,mr(t,3),!1,!0):[]},n.takeWhile=function(e,t){return e&&e.length?xn(e,mr(t,3)):[]},n.tap=function(e,t){return t(e),e},n.throttle=function(e,t,n){var r=!0,o=!0;if("function"!=typeof e)throw new ni("Expected a function");return mo(n)&&(r="leading"in n?!!n.leading:r,o="trailing"in n?!!n.trailing:o),uo(e,t,{leading:r,maxWait:t,trailing:o})},n.thru=Qr,n.toArray=Eo,n.toPairs=Ru,n.toPairsIn=Iu,n.toPath=function(e){return au(e)?d(e,qr):jo(e)?[e]:Cn(xa(Ro(e)))},n.toPlainObject=Ao,n.transform=function(e,t,n){var r=au(e),o=r||lu(e)||du(e);if(t=mr(t,4),null==n){var i=e&&e.constructor;n=o?r?new i:[]:mo(e)&&yo(i)?oa(mi(e)):{}}return(o?u:wt)(e,function(e,r,o){return t(n,e,r,o)}),n},n.unary=function(e){return ro(e,1)},n.union=Ra,n.unionBy=Ia,n.unionWith=Sa,n.uniq=function(e){return e&&e.length?bn(e):[]},n.uniqBy=function(e,t){return e&&e.length?bn(e,mr(t,2)):[]},n.uniqWith=function(e,t){return t="function"==typeof t?t:U,e&&e.length?bn(e,U,t):[]},n.unset=function(e,t){return null==e||_n(e,t)},n.unzip=Hr,n.unzipWith=Yr,n.update=function(e,t,n){return null==e?e:sn(e,t,kn(n)(Pt(e,t)),void 0)},n.updateWith=function(e,t,n,r){return r="function"==typeof r?r:U,null!=e&&(e=sn(e,t,kn(n)(Pt(e,t)),r)),e},n.values=Wo,n.valuesIn=function(e){return null==e?[]:S(e,Mo(e))},n.without=Na,n.words=Do,n.wrap=function(e,t){return eu(kn(t),e)},n.xor=Ma,n.xorBy=Ca,n.xorWith=Wa,n.zip=za,n.zipObject=function(e,t){return En(e||[],t||[],He)},n.zipObjectDeep=function(e,t){return En(e||[],t||[],sn)},n.zipWith=qa,n.entries=Ru,n.entriesIn=Iu,n.extend=vu,n.extendWith=mu,Fo(n,n),n.add=Ju,n.attempt=Lu,n.camelCase=Su,n.capitalize=zo,n.ceil=Qu,n.clamp=function(e,t,n){return n===U&&(n=t,t=U),n!==U&&(n=Oo(n),n=n===n?n:0),t!==U&&(t=Oo(t),t=t===t?t:0),pt(Oo(e),t,n)},n.clone=function(e){return dt(e,4)},n.cloneDeep=function(e){return dt(e,5)},n.cloneDeepWith=function(e,t){return t="function"==typeof t?t:U,dt(e,5,t)},n.cloneWith=function(e,t){return t="function"==typeof t?t:U,dt(e,4,t)},n.conformsTo=function(e,t){return null==t||yt(e,t,No(t))},n.deburr=qo,n.defaultTo=function(e,t){return null==e||e!==e?t:e},n.divide=Xu,n.endsWith=function(e,t,n){e=Ro(e),t=mn(t);var r=e.length,r=n=n===U?r:pt(ko(n),0,r);return n-=t.length,0<=n&&e.slice(n,r)==t},n.eq=so,n.escape=function(e){return(e=Ro(e))&&ee.test(e)?e.replace(Q,ot):e},n.escapeRegExp=function(e){return(e=Ro(e))&&le.test(e)?e.replace(ue,"\\$&"):e},n.every=function(e,t,n){var r=au(e)?c:mt;return n&&Or(e,t,n)&&(t=U),r(e,mr(t,3))},n.find=Ba,n.findIndex=$r,n.findKey=function(e,t){return m(e,mr(t,3),wt)},n.findLast=$a,n.findLastIndex=Fr,n.findLastKey=function(e,t){return m(e,mr(t,3),jt)},n.floor=el,n.forEach=eo,n.forEachRight=to,n.forIn=function(e,t){return null==e?e:ua(e,mr(t,3),Mo)},n.forInRight=function(e,t){return null==e?e:la(e,mr(t,3),Mo)},n.forOwn=function(e,t){return e&&wt(e,mr(t,3))},n.forOwnRight=function(e,t){return e&&jt(e,mr(t,3))},n.get=Io,n.gt=ru,n.gte=ou,n.has=function(e,t){return null!=e&&wr(e,t,At)},n.hasIn=So,n.head=Vr,n.identity=Bo,n.includes=function(e,t,n,r){return e=fo(e)?e:Wo(e),n=n&&!r?ko(n):0,r=e.length,0>n&&(n=Wi(r+n,0)),wo(e)?n<=r&&-1<e.indexOf(t,n):!!r&&-1<_(e,t,n)},n.indexOf=function(e,t,n){var r=null==e?0:e.length;return r?(n=null==n?0:ko(n),0>n&&(n=Wi(r+n,0)),_(e,t,n)):-1},n.inRange=function(e,t,n){return t=Po(t),n===U?(n=t,t=0):n=Po(n),e=Oo(e),e>=zi(t,n)&&e<Wi(t,n)},n.invoke=Pu,n.isArguments=iu,n.isArray=au,n.isArrayBuffer=uu,n.isArrayLike=fo,n.isArrayLikeObject=po,n.isBoolean=function(e){return!0===e||!1===e||bo(e)&&"[object Boolean]"==Tt(e)},n.isBuffer=lu,n.isDate=cu,n.isElement=function(e){return bo(e)&&1===e.nodeType&&!xo(e)},n.isEmpty=function(e){if(null==e)return!0;if(fo(e)&&(au(e)||"string"==typeof e||"function"==typeof e.splice||lu(e)||du(e)||iu(e)))return!e.length;var t=ga(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(Ir(e))return!Vt(e).length;for(var n in e)if(ui.call(e,n))return!1;return!0},n.isEqual=function(e,t){return zt(e,t)},n.isEqualWith=function(e,t,n){var r=(n="function"==typeof n?n:U)?n(e,t):U;return r===U?zt(e,t,U,n):!!r},n.isError=ho,n.isFinite=function(e){return"number"==typeof e&&Ni(e)},n.isFunction=yo,n.isInteger=go,n.isLength=vo,n.isMap=su,n.isMatch=function(e,t){return e===t||Dt(e,t,_r(t))},n.isMatchWith=function(e,t,n){return n="function"==typeof n?n:U,Dt(e,t,_r(t),n)},n.isNaN=function(e){return _o(e)&&e!=+e},n.isNative=function(e){if(va(e))throw new Yo("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return Lt(e)},n.isNil=function(e){return null==e},n.isNull=function(e){return null===e},n.isNumber=_o,n.isObject=mo,n.isObjectLike=bo,n.isPlainObject=xo,n.isRegExp=fu,n.isSafeInteger=function(e){return go(e)&&-9007199254740991<=e&&9007199254740991>=e},n.isSet=pu,n.isString=wo,n.isSymbol=jo,n.isTypedArray=du,n.isUndefined=function(e){return e===U},n.isWeakMap=function(e){return bo(e)&&"[object WeakMap]"==ga(e)},n.isWeakSet=function(e){return bo(e)&&"[object WeakSet]"==Tt(e)},n.join=function(e,t){return null==e?"":Mi.call(e,t)},n.kebabCase=Nu,n.last=Gr,n.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var o=r;if(n!==U&&(o=ko(n),o=0>o?Wi(r+o,0):zi(o,r-1)),t===t){for(n=o+1;n--&&e[n]!==t;);e=n}else e=b(e,w,o,!0);return e},n.lowerCase=Mu,n.lowerFirst=Cu,n.lt=hu,n.lte=yu,n.max=function(e){return e&&e.length?bt(e,Bo,Ot):U},n.maxBy=function(e,t){return e&&e.length?bt(e,mr(t,2),Ot):U},n.mean=function(e){return j(e,Bo)},n.meanBy=function(e,t){return j(e,mr(t,2))},n.min=function(e){return e&&e.length?bt(e,Bo,Gt):U},n.minBy=function(e,t){return e&&e.length?bt(e,mr(t,2),Gt):U},n.stubArray=Go,n.stubFalse=Ko,n.stubObject=function(){return{}},n.stubString=function(){return""},n.stubTrue=function(){return!0},n.multiply=tl,n.nth=function(e,t){return e&&e.length?Jt(e,ko(t)):U},n.noConflict=function(){return Ue._===this&&(Ue._=pi),this},n.noop=Uo,n.now=Za,n.pad=function(e,t,n){e=Ro(e);var r=(t=ko(t))?$(e):0;return!t||r>=t?e:(t=(t-r)/2,er(Ri(t),n)+e+er(Ai(t),n))},n.padEnd=function(e,t,n){e=Ro(e);var r=(t=ko(t))?$(e):0;return t&&r<t?e+er(t-r,n):e},n.padStart=function(e,t,n){e=Ro(e);var r=(t=ko(t))?$(e):0;return t&&r<t?er(t-r,n)+e:e},n.parseInt=function(e,t,n){return n||null==t?t=0:t&&(t=+t),Di(Ro(e).replace(se,""),t||0)},n.random=function(e,t,n){if(n&&"boolean"!=typeof n&&Or(e,t,n)&&(t=n=U),n===U&&("boolean"==typeof t?(n=t,t=U):"boolean"==typeof e&&(n=e,e=U)),e===U&&t===U?(e=0,t=1):(e=Po(e),t===U?(t=e,e=0):t=Po(t)),e>t){var r=e;e=t,t=r}return n||e%1||t%1?(n=Li(),zi(e+n*(t-e+Le("1e-"+((n+"").length-1))),t)):on(e,t)},n.reduce=function(e,t,n){var r=au(e)?y:k,o=3>arguments.length;return r(e,mr(t,4),n,o,ia)},n.reduceRight=function(e,t,n){var r=au(e)?g:k,o=3>arguments.length;return r(e,mr(t,4),n,o,aa)},n.repeat=function(e,t,n){return t=(n?Or(e,t,n):t===U)?1:ko(t),an(Ro(e),t)},n.replace=function(){var e=arguments,t=Ro(e[0]);return 3>e.length?t:t.replace(e[1],e[2])},n.result=function(e,t,n){t=Tn(t,e);var r=-1,o=t.length;for(o||(o=1,e=U);++r<o;){var i=null==e?U:e[qr(t[r])];i===U&&(r=o,i=n),e=yo(i)?i.call(e):i}return e},n.round=nl,n.runInContext=e,n.sample=function(e){return(au(e)?Fe:ln)(e)},n.size=function(e){if(null==e)return 0;if(fo(e))return wo(e)?$(e):e.length;var t=ga(e);return"[object Map]"==t||"[object Set]"==t?e.size:Vt(e).length},n.snakeCase=Wu,n.some=function(e,t,n){var r=au(e)?v:dn;return n&&Or(e,t,n)&&(t=U),r(e,mr(t,3))},n.sortedIndex=function(e,t){return hn(e,t)},n.sortedIndexBy=function(e,t,n){return yn(e,t,mr(n,2))},n.sortedIndexOf=function(e,t){var n=null==e?0:e.length;if(n){ var r=hn(e,t);if(r<n&&so(e[r],t))return r}return-1},n.sortedLastIndex=function(e,t){return hn(e,t,!0)},n.sortedLastIndexBy=function(e,t,n){return yn(e,t,mr(n,2),!0)},n.sortedLastIndexOf=function(e,t){if(null==e?0:e.length){var n=hn(e,t,!0)-1;if(so(e[n],t))return n}return-1},n.startCase=zu,n.startsWith=function(e,t,n){return e=Ro(e),n=null==n?0:pt(ko(n),0,e.length),t=mn(t),e.slice(n,n+t.length)==t},n.subtract=rl,n.sum=function(e){return e&&e.length?O(e,Bo):0},n.sumBy=function(e,t){return e&&e.length?O(e,mr(t,2)):0},n.template=function(e,t,r){var o=n.templateSettings;r&&Or(e,t,r)&&(t=U),e=Ro(e),t=mu({},t,o,lr),r=mu({},t.imports,o.imports,lr);var i,a,u=No(r),l=S(r,u),c=0;r=t.interpolate||Pe;var s="__p+='";r=ei((t.escape||Pe).source+"|"+r.source+"|"+(r===re?ve:Pe).source+"|"+(t.evaluate||Pe).source+"|$","g");var f=ui.call(t,"sourceURL")?"//# sourceURL="+(t.sourceURL+"").replace(/[\r\n]/g," ")+"\n":"";if(e.replace(r,function(t,n,r,o,u,l){return r||(r=o),s+=e.slice(c,l).replace(ke,W),n&&(i=!0,s+="'+__e("+n+")+'"),u&&(a=!0,s+="';"+u+";\n__p+='"),r&&(s+="'+((__t=("+r+"))==null?'':__t)+'"),c=l+t.length,t}),s+="';",(t=ui.call(t,"variable")&&t.variable)||(s="with(obj){"+s+"}"),s=(a?s.replace(Z,""):s).replace(H,"$1").replace(Y,"$1;"),s="function("+(t||"obj")+"){"+(t?"":"obj||(obj={});")+"var __t,__p=''"+(i?",__e=_.escape":"")+(a?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+s+"return __p}",t=Lu(function(){return Jo(u,f+"return "+s).apply(U,l)}),t.source=s,ho(t))throw t;return t},n.times=function(e,t){if(e=ko(e),1>e||9007199254740991<e)return[];var n=4294967295,r=zi(e,4294967295);for(t=mr(t),e-=4294967295,r=A(r,t);++n<e;)t(n);return r},n.toFinite=Po,n.toInteger=ko,n.toLength=To,n.toLower=function(e){return Ro(e).toLowerCase()},n.toNumber=Oo,n.toSafeInteger=function(e){return e?pt(ko(e),-9007199254740991,9007199254740991):0===e?e:0},n.toString=Ro,n.toUpper=function(e){return Ro(e).toUpperCase()},n.trim=function(e,t,n){return(e=Ro(e))&&(n||t===U)?e.replace(ce,""):e&&(t=mn(t))?(e=F(e),n=F(t),t=M(e,n),n=C(e,n)+1,On(e,t,n).join("")):e},n.trimEnd=function(e,t,n){return(e=Ro(e))&&(n||t===U)?e.replace(fe,""):e&&(t=mn(t))?(e=F(e),t=C(e,F(t))+1,On(e,0,t).join("")):e},n.trimStart=function(e,t,n){return(e=Ro(e))&&(n||t===U)?e.replace(se,""):e&&(t=mn(t))?(e=F(e),t=M(e,F(t)),On(e,t).join("")):e},n.truncate=function(e,t){var n=30,r="...";if(mo(t))var o="separator"in t?t.separator:o,n="length"in t?ko(t.length):n,r="omission"in t?mn(t.omission):r;e=Ro(e);var i=e.length;if(Me.test(e))var a=F(e),i=a.length;if(n>=i)return e;if(i=n-$(r),1>i)return r;if(n=a?On(a,0,i).join(""):e.slice(0,i),o===U)return n+r;if(a&&(i+=n.length-i),fu(o)){if(e.slice(i).search(o)){var u=n;for(o.global||(o=ei(o.source,Ro(me.exec(o))+"g")),o.lastIndex=0;a=o.exec(u);)var l=a.index;n=n.slice(0,l===U?i:l)}}else e.indexOf(mn(o),i)!=i&&(o=n.lastIndexOf(o),-1<o&&(n=n.slice(0,o)));return n+r},n.unescape=function(e){return(e=Ro(e))&&X.test(e)?e.replace(J,it):e},n.uniqueId=function(e){var t=++li;return Ro(e)+t},n.upperCase=qu,n.upperFirst=Du,n.each=eo,n.eachRight=to,n.first=Vr,Fo(n,function(){var e={};return wt(n,function(t,r){ui.call(n.prototype,r)||(e[r]=t)}),e}(),{chain:!1}),n.VERSION="4.17.15",u("bind bindKey curry curryRight partial partialRight".split(" "),function(e){n[e].placeholder=n}),u(["drop","take"],function(e,t){P.prototype[e]=function(n){n=n===U?1:Wi(ko(n),0);var r=this.__filtered__&&!t?new P(this):this.clone();return r.__filtered__?r.__takeCount__=zi(n,r.__takeCount__):r.__views__.push({size:zi(n,4294967295),type:e+(0>r.__dir__?"Right":"")}),r},P.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}}),u(["filter","map","takeWhile"],function(e,t){var n=t+1,r=1==n||3==n;P.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:mr(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}}),u(["head","last"],function(e,t){var n="take"+(t?"Right":"");P.prototype[e]=function(){return this[n](1).value()[0]}}),u(["initial","tail"],function(e,t){var n="drop"+(t?"":"Right");P.prototype[e]=function(){return this.__filtered__?new P(this):this[n](1)}}),P.prototype.compact=function(){return this.filter(Bo)},P.prototype.find=function(e){return this.filter(e).head()},P.prototype.findLast=function(e){return this.reverse().find(e)},P.prototype.invokeMap=un(function(e,t){return"function"==typeof e?new P(this):this.map(function(n){return Nt(n,e,t)})}),P.prototype.reject=function(e){return this.filter(co(mr(e)))},P.prototype.slice=function(e,t){e=ko(e);var n=this;return n.__filtered__&&(0<e||0>t)?new P(n):(0>e?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==U&&(t=ko(t),n=0>t?n.dropRight(-t):n.take(t-e)),n)},P.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},P.prototype.toArray=function(){return this.take(4294967295)},wt(P.prototype,function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),i=/^(?:head|last)$/.test(t),a=n[i?"take"+("last"==t?"Right":""):t],u=i||/^find/.test(t);a&&(n.prototype[t]=function(){function t(e){return e=a.apply(n,h([e],c)),i&&d?e[0]:e}var l=this.__wrapped__,c=i?[1]:arguments,s=l instanceof P,f=c[0],p=s||au(l);p&&r&&"function"==typeof f&&1!=f.length&&(s=p=!1);var d=this.__chain__,y=!!this.__actions__.length,f=u&&!d,s=s&&!y;return!u&&p?(l=s?l:new P(this),l=e.apply(l,c),l.__actions__.push({func:Qr,args:[t],thisArg:U}),new o(l,d)):f&&s?e.apply(this,c):(l=this.thru(t),f?i?l.value()[0]:l.value():l)})}),u("pop push shift sort splice unshift".split(" "),function(e){var t=ri[e],r=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",o=/^(?:pop|shift)$/.test(e);n.prototype[e]=function(){var e=arguments;if(o&&!this.__chain__){var n=this.value();return t.apply(au(n)?n:[],e)}return this[r](function(n){return t.apply(au(n)?n:[],e)})}}),wt(P.prototype,function(e,t){var r=n[t];if(r){var o=r.name+"";ui.call(Hi,o)||(Hi[o]=[]),Hi[o].push({name:t,func:r})}}),Hi[Yn(U,2).name]=[{name:"wrapper",func:U}],P.prototype.clone=function(){var e=new P(this.__wrapped__);return e.__actions__=Cn(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Cn(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Cn(this.__views__),e},P.prototype.reverse=function(){if(this.__filtered__){var e=new P(this);e.__dir__=-1,e.__filtered__=!0}else e=this.clone(),e.__dir__*=-1;return e},P.prototype.value=function(){var e,t=this.__wrapped__.value(),n=this.__dir__,r=au(t),o=0>n,i=r?t.length:0;e=i;for(var a=this.__views__,u=0,l=-1,c=a.length;++l<c;){var s=a[l],f=s.size;switch(s.type){case"drop":u+=f;break;case"dropRight":e-=f;break;case"take":e=zi(e,u+f);break;case"takeRight":u=Wi(u,e-f)}}if(e={start:u,end:e},a=e.start,u=e.end,e=u-a,a=o?u:a-1,u=this.__iteratees__,l=u.length,c=0,s=zi(e,this.__takeCount__),!r||!o&&i==e&&s==e)return wn(t,this.__actions__);r=[];e:for(;e--&&c<s;){for(a+=n,o=-1,i=t[a];++o<l;){var p=u[o],f=p.type,p=(0,p.iteratee)(i);if(2==f)i=p;else if(!p){if(1==f)continue e;break e}}r[c++]=i}return r},n.prototype.at=Da,n.prototype.chain=function(){return Jr(this)},n.prototype.commit=function(){return new o(this.value(),this.__chain__)},n.prototype.next=function(){this.__values__===U&&(this.__values__=Eo(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?U:this.__values__[this.__index__++]}},n.prototype.plant=function(e){for(var t,n=this;n instanceof r;){var o=Br(n);o.__index__=0,o.__values__=U,t?i.__wrapped__=o:t=o;var i=o,n=n.__wrapped__}return i.__wrapped__=e,t},n.prototype.reverse=function(){var e=this.__wrapped__;return e instanceof P?(this.__actions__.length&&(e=new P(this)),e=e.reverse(),e.__actions__.push({func:Qr,args:[Zr],thisArg:U}),new o(e,this.__chain__)):this.thru(Zr)},n.prototype.toJSON=n.prototype.valueOf=n.prototype.value=function(){return wn(this.__wrapped__,this.__actions__)},n.prototype.first=n.prototype.head,ji&&(n.prototype[ji]=Xr),n}();Ue._=at,r=function(){return at}.call(t,n,t,o),!(void 0!==r&&(o.exports=r))}).call(this)}).call(t,function(){return this}(),n(5)(e))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children=[],e.webpackPolyfill=1),e}},function(e,t,n){function r(e,t){return 2==t?function(t,n){return e.apply(void 0,arguments)}:function(t){return e.apply(void 0,arguments)}}function o(e,t){return 2==t?function(t,n){return e(t,n)}:function(t){return e(t)}}function i(e){for(var t=e?e.length:0,n=Array(t);t--;)n[t]=e[t];return n}function a(e){return function(t){return e({},t)}}function u(e,t){return function(){for(var n=arguments.length,r=n-1,o=Array(n);n--;)o[n]=arguments[n];var i=o[t],a=o.slice(0,t);return i&&p.apply(a,i),t!=r&&p.apply(a,o.slice(t+1)),e.apply(this,a)}}function l(e,t){return function(){var n=arguments.length;if(n){for(var r=Array(n);n--;)r[n]=arguments[n];var o=r[0]=t.apply(void 0,r);return e.apply(void 0,r),o}}}function c(e,t,n,p){function d(e,t){if(k.cap){var n=s.iterateeRearg[e];if(n)return x(t,n);var r=!E&&s.iterateeAry[e];if(r)return _(t,r)}return t}function h(e,t,n){return O||k.curry&&n>1?W(t,n):t}function y(e,t,n){if(k.fixed&&(A||!s.skipFixed[e])){var r=s.methodSpread[e],o=r&&r.start;return void 0===o?N(t,n):u(t,o)}return t}function g(e,t,n){return k.rearg&&n>1&&(R||!s.skipRearg[e])?F(t,s.methodRearg[e]||s.aryRearg[n]):t}function v(e,t){t=V(t);for(var n=-1,r=t.length,o=r-1,i=C(Object(e)),a=i;null!=a&&++n<r;){var u=t[n],l=a[u];null==l||L(l)||D(l)||B(l)||(a[u]=C(n==o?l:Object(l))),a=a[u]}return i}function m(e){return Z.runInContext.convert(e)(void 0)}function b(e,t){var n=s.aliasToReal[e]||e,r=s.remap[n]||n,o=p;return function(e){var i=E?I:S,a=E?I[r]:t,u=M(M({},o),e);return c(i,n,a,u)}}function _(e,t){return w(e,function(e){return"function"==typeof e?o(e,t):e})}function x(e,t){return w(e,function(e){var n=t.length;return r(F(o(e,n),t),n)})}function w(e,t){return function(){var n=arguments.length;if(!n)return e();for(var r=Array(n);n--;)r[n]=arguments[n];var o=k.rearg?0:n-1;return r[o]=t(r[o]),e.apply(void 0,r)}}function j(e,t,n){var r,o=s.aliasToReal[e]||e,u=t,c=K[o];return c?u=c(t):k.immutable&&(s.mutate.array[o]?u=l(t,i):s.mutate.object[o]?u=l(t,a(t)):s.mutate.set[o]&&(u=l(t,v))),z(G,function(e){return z(s.aryMethod[e],function(t){if(o==t){var n=s.methodSpread[o],i=n&&n.afterRearg;return r=i?y(o,g(o,u,e),e):g(o,y(o,u,e),e),r=d(o,r),r=h(o,r,e),!1}}),!r}),r||(r=u),r==t&&(r=O?W(r,1):function(){return t.apply(this,arguments)}),r.convert=b(o,t),r.placeholder=t.placeholder=n,r}var E="function"==typeof t,P=t===Object(t);if(P&&(p=n,n=t,t=void 0),null==n)throw new TypeError;p||(p={});var k={cap:!("cap"in p)||p.cap,curry:!("curry"in p)||p.curry,fixed:!("fixed"in p)||p.fixed,immutable:!("immutable"in p)||p.immutable,rearg:!("rearg"in p)||p.rearg},T=E?n:f,O="curry"in p&&p.curry,A="fixed"in p&&p.fixed,R="rearg"in p&&p.rearg,I=E?n.runInContext():void 0,S=E?n:{ary:e.ary,assign:e.assign,clone:e.clone,curry:e.curry,forEach:e.forEach,isArray:e.isArray,isError:e.isError,isFunction:e.isFunction,isWeakMap:e.isWeakMap,iteratee:e.iteratee,keys:e.keys,rearg:e.rearg,toInteger:e.toInteger,toPath:e.toPath},N=S.ary,M=S.assign,C=S.clone,W=S.curry,z=S.forEach,q=S.isArray,D=S.isError,L=S.isFunction,B=S.isWeakMap,$=S.keys,F=S.rearg,U=S.toInteger,V=S.toPath,G=$(s.aryMethod),K={castArray:function(e){return function(){var t=arguments[0];return q(t)?e(i(t)):e.apply(void 0,arguments)}},iteratee:function(e){return function(){var t=arguments[0],n=arguments[1],r=e(t,n),i=r.length;return k.cap&&"number"==typeof n?(n=n>2?n-2:1,i&&i<=n?r:o(r,n)):r}},mixin:function(e){return function(t){var n=this;if(!L(n))return e(n,Object(t));var r=[];return z($(t),function(e){L(t[e])&&r.push([e,n.prototype[e]])}),e(n,Object(t)),z(r,function(e){var t=e[1];L(t)?n.prototype[e[0]]=t:delete n.prototype[e[0]]}),n}},nthArg:function(e){return function(t){var n=t<0?1:U(t)+1;return W(e(t),n)}},rearg:function(e){return function(t,n){var r=n?n.length:0;return W(e(t,n),r)}},runInContext:function(t){return function(n){return c(e,t(n),p)}}};if(!P)return j(t,n,T);var Z=n,H=[];return z(G,function(e){z(s.aryMethod[e],function(e){var t=Z[s.remap[e]||e];t&&H.push([e,j(e,t,Z)])})}),z($(Z),function(e){var t=Z[e];if("function"==typeof t){for(var n=H.length;n--;)if(H[n][0]==e)return;t.convert=b(e,t),H.push([e,t])}}),z(H,function(e){Z[e[0]]=e[1]}),Z.convert=m,Z.placeholder=Z,z($(Z),function(e){z(s.realToAlias[e]||[],function(t){Z[t]=Z[e]})}),Z}var s=n(7),f=n(8),p=Array.prototype.push;e.exports=c},function(e,t){t.aliasToReal={each:"forEach",eachRight:"forEachRight",entries:"toPairs",entriesIn:"toPairsIn",extend:"assignIn",extendAll:"assignInAll",extendAllWith:"assignInAllWith",extendWith:"assignInWith",first:"head",conforms:"conformsTo",matches:"isMatch",property:"get",__:"placeholder",F:"stubFalse",T:"stubTrue",all:"every",allPass:"overEvery",always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",complement:"negate",compose:"flowRight",contains:"includes",dissoc:"unset",dissocPath:"unset",dropLast:"dropRight",dropLastWhile:"dropRightWhile",equals:"isEqual",identical:"eq",indexBy:"keyBy",init:"initial",invertObj:"invert",juxt:"over",omitAll:"omit",nAry:"ary",path:"get",pathEq:"matchesProperty",pathOr:"getOr",paths:"at",pickAll:"pick",pipe:"flow",pluck:"map",prop:"get",propEq:"matchesProperty",propOr:"getOr",props:"at",symmetricDifference:"xor",symmetricDifferenceBy:"xorBy",symmetricDifferenceWith:"xorWith",takeLast:"takeRight",takeLastWhile:"takeRightWhile",unapply:"rest",unnest:"flatten",useWith:"overArgs",where:"conformsTo",whereEq:"isMatch",zipObj:"zipObject"},t.aryMethod={1:["assignAll","assignInAll","attempt","castArray","ceil","create","curry","curryRight","defaultsAll","defaultsDeepAll","floor","flow","flowRight","fromPairs","invert","iteratee","memoize","method","mergeAll","methodOf","mixin","nthArg","over","overEvery","overSome","rest","reverse","round","runInContext","spread","template","trim","trimEnd","trimStart","uniqueId","words","zipAll"],2:["add","after","ary","assign","assignAllWith","assignIn","assignInAllWith","at","before","bind","bindAll","bindKey","chunk","cloneDeepWith","cloneWith","concat","conformsTo","countBy","curryN","curryRightN","debounce","defaults","defaultsDeep","defaultTo","delay","difference","divide","drop","dropRight","dropRightWhile","dropWhile","endsWith","eq","every","filter","find","findIndex","findKey","findLast","findLastIndex","findLastKey","flatMap","flatMapDeep","flattenDepth","forEach","forEachRight","forIn","forInRight","forOwn","forOwnRight","get","groupBy","gt","gte","has","hasIn","includes","indexOf","intersection","invertBy","invoke","invokeMap","isEqual","isMatch","join","keyBy","lastIndexOf","lt","lte","map","mapKeys","mapValues","matchesProperty","maxBy","meanBy","merge","mergeAllWith","minBy","multiply","nth","omit","omitBy","overArgs","pad","padEnd","padStart","parseInt","partial","partialRight","partition","pick","pickBy","propertyOf","pull","pullAll","pullAt","random","range","rangeRight","rearg","reject","remove","repeat","restFrom","result","sampleSize","some","sortBy","sortedIndex","sortedIndexOf","sortedLastIndex","sortedLastIndexOf","sortedUniqBy","split","spreadFrom","startsWith","subtract","sumBy","take","takeRight","takeRightWhile","takeWhile","tap","throttle","thru","times","trimChars","trimCharsEnd","trimCharsStart","truncate","union","uniqBy","uniqWith","unset","unzipWith","without","wrap","xor","zip","zipObject","zipObjectDeep"],3:["assignInWith","assignWith","clamp","differenceBy","differenceWith","findFrom","findIndexFrom","findLastFrom","findLastIndexFrom","getOr","includesFrom","indexOfFrom","inRange","intersectionBy","intersectionWith","invokeArgs","invokeArgsMap","isEqualWith","isMatchWith","flatMapDepth","lastIndexOfFrom","mergeWith","orderBy","padChars","padCharsEnd","padCharsStart","pullAllBy","pullAllWith","rangeStep","rangeStepRight","reduce","reduceRight","replace","set","slice","sortedIndexBy","sortedLastIndexBy","transform","unionBy","unionWith","update","xorBy","xorWith","zipWith"],4:["fill","setWith","updateWith"]},t.aryRearg={2:[1,0],3:[2,0,1],4:[3,2,0,1]},t.iterateeAry={dropRightWhile:1,dropWhile:1,every:1,filter:1,find:1,findFrom:1,findIndex:1,findIndexFrom:1,findKey:1,findLast:1,findLastFrom:1,findLastIndex:1,findLastIndexFrom:1,findLastKey:1,flatMap:1,flatMapDeep:1,flatMapDepth:1,forEach:1,forEachRight:1,forIn:1,forInRight:1,forOwn:1,forOwnRight:1,map:1,mapKeys:1,mapValues:1,partition:1,reduce:2,reduceRight:2,reject:1,remove:1,some:1,takeRightWhile:1,takeWhile:1,times:1,transform:2},t.iterateeRearg={mapKeys:[1],reduceRight:[1,0]},t.methodRearg={assignInAllWith:[1,0],assignInWith:[1,2,0],assignAllWith:[1,0],assignWith:[1,2,0],differenceBy:[1,2,0],differenceWith:[1,2,0],getOr:[2,1,0],intersectionBy:[1,2,0],intersectionWith:[1,2,0],isEqualWith:[1,2,0],isMatchWith:[2,1,0],mergeAllWith:[1,0],mergeWith:[1,2,0],padChars:[2,1,0],padCharsEnd:[2,1,0],padCharsStart:[2,1,0],pullAllBy:[2,1,0],pullAllWith:[2,1,0],rangeStep:[1,2,0],rangeStepRight:[1,2,0],setWith:[3,1,2,0],sortedIndexBy:[2,1,0],sortedLastIndexBy:[2,1,0],unionBy:[1,2,0],unionWith:[1,2,0],updateWith:[3,1,2,0],xorBy:[1,2,0],xorWith:[1,2,0],zipWith:[1,2,0]},t.methodSpread={assignAll:{start:0},assignAllWith:{start:0},assignInAll:{start:0},assignInAllWith:{start:0},defaultsAll:{start:0},defaultsDeepAll:{start:0},invokeArgs:{start:2},invokeArgsMap:{start:2},mergeAll:{start:0},mergeAllWith:{start:0},partial:{start:1},partialRight:{start:1},without:{start:1},zipAll:{start:0}},t.mutate={array:{fill:!0,pull:!0,pullAll:!0,pullAllBy:!0,pullAllWith:!0,pullAt:!0,remove:!0,reverse:!0},object:{assign:!0,assignAll:!0,assignAllWith:!0,assignIn:!0,assignInAll:!0,assignInAllWith:!0,assignInWith:!0,assignWith:!0,defaults:!0,defaultsAll:!0,defaultsDeep:!0,defaultsDeepAll:!0,merge:!0,mergeAll:!0,mergeAllWith:!0,mergeWith:!0},set:{set:!0,setWith:!0,unset:!0,update:!0,updateWith:!0}},t.realToAlias=function(){var e=Object.prototype.hasOwnProperty,n=t.aliasToReal,r={};for(var o in n){var i=n[o];e.call(r,i)?r[i].push(o):r[i]=[o]}return r}(),t.remap={assignAll:"assign",assignAllWith:"assignWith",assignInAll:"assignIn",assignInAllWith:"assignInWith",curryN:"curry",curryRightN:"curryRight",defaultsAll:"defaults",defaultsDeepAll:"defaultsDeep",findFrom:"find",findIndexFrom:"findIndex",findLastFrom:"findLast",findLastIndexFrom:"findLastIndex",getOr:"get",includesFrom:"includes",indexOfFrom:"indexOf",invokeArgs:"invoke",invokeArgsMap:"invokeMap",lastIndexOfFrom:"lastIndexOf",mergeAll:"merge",mergeAllWith:"mergeWith",padChars:"pad",padCharsEnd:"padEnd",padCharsStart:"padStart",propertyOf:"get",rangeStep:"range",rangeStepRight:"rangeRight",restFrom:"rest",spreadFrom:"spread",trimChars:"trim",trimCharsEnd:"trimEnd",trimCharsStart:"trimStart",zipAll:"zip"},t.skipFixed={castArray:!0,flow:!0,flowRight:!0,iteratee:!0,mixin:!0,rearg:!0,runInContext:!0},t.skipRearg={add:!0,assign:!0,assignIn:!0,bind:!0,bindKey:!0,concat:!0,difference:!0,divide:!0,eq:!0,gt:!0,gte:!0,isEqual:!0,lt:!0,lte:!0,matchesProperty:!0,merge:!0,multiply:!0,overArgs:!0,partial:!0,partialRight:!0,propertyOf:!0,random:!0,range:!0,rangeRight:!0,subtract:!0,zip:!0,zipObject:!0,zipObjectDeep:!0}},function(e,t){e.exports={}},function(e,t){e.exports=Morph.modules["bbc-morph-gel-icons@3.0.0"]},function(e,t){e.exports=Morph.modules["bbc-morph-bitesize-search-view@1.17.1"]},function(e,t){e.exports={create:function(e,t){return Morph.createContainerWithCaller("bbc-morph-baseplate-content-view@5.25.0",e,t)}}},function(e,t){e.exports=Morph.modules["bbc-morph-istats@1.3.0"]},function(e,t,n){var r;!function(o,i){"use strict";var a=function(){return i.addEventListener?function(e,t,n){return e.addEventListener(t,n,!1)}:function(e,t,n){return e.attachEvent("on"+t,n)}}(),u=[96,130,165,200,235,270,304,340,375,410,445,485,520,555,590,625,660,695,736],l="function"==typeof Object.keys?Object.keys:function(e){var t,n=[];for(t in e)n.push(t);return n},c=function(e,t){for(var n=0,r=e.length,o=[];n<r;n++)o[n]=t(e[n],n);return o},s=function(e){return e},f=function(){},p=function(){return!0},d=function(e,t){var n;return function(){var r=this,o=arguments,i=function(){n=null,e.apply(r,o)};clearTimeout(n),n=setTimeout(i,t)}},h=function(e,t){var n=this,r=i;t=t||{},void 0!==e&&("string"==typeof e?(t.selector=e,e=void 0):"undefined"==typeof e.length&&(t=e,e=void 0)),this.viewportHeight=r.documentElement.clientHeight,this.selector=e?null:t.selector||".delayed-image-load",this.className=t.className||"image-replace",this.gif=r.createElement("img"),this.gif.src="data:image/gif;base64,R0lGODlhEAAJAIAAAP///wAAACH5BAEAAAAALAAAAAAQAAkAAAIKhI+py+0Po5yUFQA7",this.gif.className=this.className,this.gif.alt="",this.lazyloadOffset=t.lazyloadOffset||0,this.scrollDelay=t.scrollDelay||250,this.onResize=!t.hasOwnProperty("onResize")||t.onResize,this.lazyload=!!t.hasOwnProperty("lazyload")&&t.lazyload,this.scrolled=!1,this.availablePixelRatios=t.availablePixelRatios||[1,2],this.availableWidths=t.availableWidths||u,this.onImagesReplaced=t.onImagesReplaced||f,this.widthsMap={},this.refreshPixelRatio(),this.widthInterpolator=t.widthInterpolator||s,this.gif.removeAttribute("height"),this.gif.removeAttribute("width"),"function"!=typeof this.availableWidths&&("number"==typeof this.availableWidths.length?this.widthsMap=h.createWidthsMap(this.availableWidths,this.widthInterpolator,this.devicePixelRatio):(this.widthsMap=this.availableWidths,this.availableWidths=l(this.availableWidths)),this.availableWidths=this.availableWidths.sort(function(e,t){return e-t})),this.divs=[],this.add(e||this.selector),this.ready(t.onReady),setTimeout(function(){n.init()},0)};h.prototype.add=function(e){e=e||this.selector;var t="string"==typeof e?i.querySelectorAll(e):e;if(t&&t.length){var n=c(t,s);this.changeDivsToEmptyImages(n),this.divs=this.divs.concat(n)}},h.prototype.scrollCheck=function(){var e=this,t=0,n=[];this.scrolled&&(c(this.divs,function(r){e.isPlaceholder(r)&&(++t,e.isThisElementOnScreen(r)&&n.push(r))}),0===t&&o.clearInterval(e.interval),this.changeDivsToEmptyImages(n),this.scrolled=!1)},h.prototype.init=function(){var e=this;this.initialized=!0;var t=p;this.lazyload?(this.registerScrollEvent(),this.scrolled=!0,e.scrollCheck(),t=function(t){return e.isPlaceholder(t)===!1}):this.checkImagesNeedReplacing(this.divs),this.onResize&&this.registerResizeEvent(t),this.onReady()},h.prototype.ready=function(e){this.onReady=e||f},h.prototype.createGif=function(e){if(e.className.match(new RegExp("(^| )"+this.className+"( |$)")))return e;var t=e.getAttribute("data-class"),n=e.getAttribute("data-width"),r=this.gif.cloneNode(!1);return n&&(r.width=n,r.setAttribute("data-width",n)),r.className=(t?t+" ":"")+this.className,r.setAttribute("data-src",e.getAttribute("data-src")),r.setAttribute("alt",e.getAttribute("data-alt")||e.alt||this.gif.alt),e.parentNode.replaceChild(r,e),r},h.prototype.changeDivsToEmptyImages=function(e){var t=this;c(e,function(n,r){e[r]=t.createGif(n)}),this.initialized&&this.checkImagesNeedReplacing(e)},h.prototype.isPlaceholder=function(e){return e.src===this.gif.src},h.prototype.isThisElementOnScreen=function(e){var t=0,n=h.getPageOffset()+this.lazyloadOffset;if(e.offsetParent)do t+=e.offsetTop;while(e=e.offsetParent);return t<this.viewportHeight+n},h.prototype.checkImagesNeedReplacing=function(e,t){var n=this;t=t||p,this.isResizing||(this.isResizing=!0,this.refreshPixelRatio(),c(e,function(e){t(e)&&n.replaceImagesBasedOnScreenDimensions(e)}),this.isResizing=!1,this.onImagesReplaced(e))},h.prototype.replaceImagesBasedOnScreenDimensions=function(e){var t,n;n=h.getNaturalWidth(e),t="function"==typeof this.availableWidths?this.availableWidths(e):this.determineAppropriateResolution(e),e.width=t,!this.isPlaceholder(e)&&t<=n||(e.src=this.changeImageSrcToUseNewImageDimensions(e.getAttribute("data-src"),t),e.removeAttribute("width"),e.removeAttribute("height"))},h.prototype.determineAppropriateResolution=function(e){return h.getClosestValue(e.getAttribute("data-width")||e.parentNode.clientWidth,this.availableWidths)},h.prototype.refreshPixelRatio=function(){this.devicePixelRatio=h.getClosestValue(h.getPixelRatio(),this.availablePixelRatios)},h.prototype.changeImageSrcToUseNewImageDimensions=function(e,t){return e.replace(/{width}/g,h.transforms.width(t,this.widthsMap)).replace(/{pixel_ratio}/g,h.transforms.pixelRatio(this.devicePixelRatio))},h.getPixelRatio=function(e){return(e||o).devicePixelRatio||1},h.createWidthsMap=function(e,t,n){for(var r={},o=e.length;o--;)r[e[o]]=t(e[o],n);return r},h.transforms={pixelRatio:function(e){return 1===e?"":"-"+e+"x"},width:function(e,t){return t[e]||e}},h.getClosestValue=function(e,t){var n=t.length,r=t[n-1];for(e=parseFloat(e);n--;)e<=t[n]&&(r=t[n]);return r},h.prototype.registerResizeEvent=function(e){var t=this;a(o,"resize",d(function(){t.checkImagesNeedReplacing(t.divs,e)},100))},h.prototype.registerScrollEvent=function(){var e=this;this.scrolled=!1,this.interval=o.setInterval(function(){e.scrollCheck()},e.scrollDelay),a(o,"scroll",function(){e.scrolled=!0}),a(o,"resize",function(){e.viewportHeight=i.documentElement.clientHeight,e.scrolled=!0})},h.getPageOffsetGenerator=function(e){return e?function(){return o.pageYOffset}:function(){return i.documentElement.scrollTop}},h.getNaturalWidth=function(){return"naturalWidth"in new Image?function(e){return e.naturalWidth}:function(e){var t=i.createElement("img");return t.src=e.src,t.width}}(),h.getPageOffset=h.getPageOffsetGenerator(Object.prototype.hasOwnProperty.call(o,"pageYOffset")),h.applyEach=c,h.addEvent=a,h.debounce=d,"object"==typeof e&&"object"==typeof e.exports?e.exports=t=h:(r=function(){return h}.call(t,n,t,e),!(void 0!==r&&(e.exports=r)))}(window,document)},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(16)),i=o.default;t.default=i},function(e,t){function n(e){return e&&e.__esModule?e:{default:e}}e.exports=n},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(17),a=n(2).PropTypes||n(19),u=function(e){var t=e.title,n=e.subtitle,r=e.url,a=e.brand;return o.default.createElement("a",{className:"education-link__link--".concat(a),href:r},o.default.createElement("div",{className:"education-link__link-panel--".concat(a)},o.default.createElement("div",{className:"education-link__link-text-wrapper--".concat(a)},o.default.createElement("div",{"aria-hidden":!0,className:"education-link__link-title--".concat(a)},t),o.default.createElement("span",{className:"education-link__invisible--".concat(a)},"".concat(t,":")),n?o.default.createElement("div",{className:"education-link__link-subtitle--".concat(a)},n):null),o.default.createElement("div",{className:"education-link__link-icon-wrapper--".concat(a)},o.default.createElement(i.GelChevronRightIcon,{className:"education-link__link-icon--".concat(a)}))))};u.propTypes={title:a.string.isRequired,subtitle:a.string,url:a.string.isRequired,brand:a.string},u.defaultProps={subtitle:"",brand:"default"};var l=u;t.default=l},function(e,t,n){"use strict";var r=n(15),o=r(n(18)),i=r(n(29)),a=r(n(39)),u=r(n(40)),l=r(n(41)),c=r(n(42)),s=r(n(43)),f=r(n(44)),p=r(n(45));e.exports={GelAddIcon:o.default,GelChevronRightIcon:i.default,GelDownIcon:a.default,GelIconDuration:u.default,GelNextIcon:l.default,GelNoIcon:c.default,GelPreviousIcon:s.default,GelRecentActivityIcon:f.default,GelYesIcon:p.default}},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},o.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};a.propTypes={className:i.string},a.defaultProps={className:""};var u=a;t.default=u},function(e,t,n){(function(t){if("production"!==t.env.NODE_ENV){var r=n(21),o=!0;e.exports=n(24)(r.isElement,o)}else e.exports=n(28)()}).call(t,n(20))},function(e,t){function n(){throw new Error("setTimeout has not been defined")}function r(){throw new Error("clearTimeout has not been defined")}function o(e){if(s===setTimeout)return setTimeout(e,0);if((s===n||!s)&&setTimeout)return s=setTimeout,setTimeout(e,0);try{return s(e,0)}catch(t){try{return s.call(null,e,0)}catch(t){return s.call(this,e,0)}}}function i(e){if(f===clearTimeout)return clearTimeout(e);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(e);try{return f(e)}catch(t){try{return f.call(null,e)}catch(t){return f.call(this,e)}}}function a(){y&&d&&(y=!1,d.length?h=d.concat(h):g=-1,h.length&&u())}function u(){if(!y){var e=o(a);y=!0;for(var t=h.length;t;){for(d=h,h=[];++g<t;)d&&d[g].run();g=-1,t=h.length}d=null,y=!1,i(e)}}function l(e,t){this.fun=e,this.array=t}function c(){}var s,f,p=e.exports={};!function(){try{s="function"==typeof setTimeout?setTimeout:n}catch(e){s=n}try{f="function"==typeof clearTimeout?clearTimeout:r}catch(e){f=r}}();var d,h=[],y=!1,g=-1;p.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];h.push(new l(e,t)),1!==h.length||y||o(u)},l.prototype.run=function(){this.fun.apply(null,this.array)},p.title="browser",p.browser=!0,p.env={},p.argv=[],p.version="",p.versions={},p.on=c,p.addListener=c,p.once=c,p.off=c,p.removeListener=c,p.removeAllListeners=c,p.emit=c,p.binding=function(e){throw new Error("process.binding is not supported")},p.cwd=function(){return"/"},p.chdir=function(e){throw new Error("process.chdir is not supported")},p.umask=function(){return 0}},function(e,t,n){(function(t){"use strict";"production"===t.env.NODE_ENV?e.exports=n(22):e.exports=n(23)}).call(t,n(20))},function(e,t){"use strict";function n(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case p:case d:case u:case c:case l:case y:return e;default:switch(e=e&&e.$$typeof){case f:case h:case m:case v:case s:return e;default:return t}}case a:return t}}}function r(e){return n(e)===d}var o="function"==typeof Symbol&&Symbol.for,i=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,u=o?Symbol.for("react.fragment"):60107,l=o?Symbol.for("react.strict_mode"):60108,c=o?Symbol.for("react.profiler"):60114,s=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,d=o?Symbol.for("react.concurrent_mode"):60111,h=o?Symbol.for("react.forward_ref"):60112,y=o?Symbol.for("react.suspense"):60113,g=o?Symbol.for("react.suspense_list"):60120,v=o?Symbol.for("react.memo"):60115,m=o?Symbol.for("react.lazy"):60116,b=o?Symbol.for("react.block"):60121,_=o?Symbol.for("react.fundamental"):60117,x=o?Symbol.for("react.responder"):60118,w=o?Symbol.for("react.scope"):60119;t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=f,t.ContextProvider=s,t.Element=i,t.ForwardRef=h,t.Fragment=u,t.Lazy=m,t.Memo=v,t.Portal=a,t.Profiler=c,t.StrictMode=l,t.Suspense=y,t.isAsyncMode=function(e){return r(e)||n(e)===p},t.isConcurrentMode=r,t.isContextConsumer=function(e){return n(e)===f},t.isContextProvider=function(e){return n(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return n(e)===h},t.isFragment=function(e){return n(e)===u},t.isLazy=function(e){return n(e)===m},t.isMemo=function(e){return n(e)===v},t.isPortal=function(e){return n(e)===a},t.isProfiler=function(e){return n(e)===c},t.isStrictMode=function(e){return n(e)===l},t.isSuspense=function(e){return n(e)===y},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===u||e===d||e===c||e===l||e===y||e===g||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===v||e.$$typeof===s||e.$$typeof===f||e.$$typeof===h||e.$$typeof===_||e.$$typeof===x||e.$$typeof===w||e.$$typeof===b)},t.typeOf=n; },function(e,t,n){(function(e){"use strict";"production"!==e.env.NODE_ENV&&!function(){function e(e){return"string"==typeof e||"function"==typeof e||e===b||e===P||e===x||e===_||e===T||e===O||"object"==typeof e&&null!==e&&(e.$$typeof===R||e.$$typeof===A||e.$$typeof===w||e.$$typeof===j||e.$$typeof===k||e.$$typeof===S||e.$$typeof===N||e.$$typeof===M||e.$$typeof===I)}function n(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case v:var n=e.type;switch(n){case E:case P:case b:case x:case _:case T:return n;default:var r=n&&n.$$typeof;switch(r){case j:case k:case R:case A:case w:return r;default:return t}}case m:return t}}}function r(e){return Z||(Z=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),o(e)||n(e)===E}function o(e){return n(e)===P}function i(e){return n(e)===j}function a(e){return n(e)===w}function u(e){return"object"==typeof e&&null!==e&&e.$$typeof===v}function l(e){return n(e)===k}function c(e){return n(e)===b}function s(e){return n(e)===R}function f(e){return n(e)===A}function p(e){return n(e)===m}function d(e){return n(e)===x}function h(e){return n(e)===_}function y(e){return n(e)===T}var g="function"==typeof Symbol&&Symbol.for,v=g?Symbol.for("react.element"):60103,m=g?Symbol.for("react.portal"):60106,b=g?Symbol.for("react.fragment"):60107,_=g?Symbol.for("react.strict_mode"):60108,x=g?Symbol.for("react.profiler"):60114,w=g?Symbol.for("react.provider"):60109,j=g?Symbol.for("react.context"):60110,E=g?Symbol.for("react.async_mode"):60111,P=g?Symbol.for("react.concurrent_mode"):60111,k=g?Symbol.for("react.forward_ref"):60112,T=g?Symbol.for("react.suspense"):60113,O=g?Symbol.for("react.suspense_list"):60120,A=g?Symbol.for("react.memo"):60115,R=g?Symbol.for("react.lazy"):60116,I=g?Symbol.for("react.block"):60121,S=g?Symbol.for("react.fundamental"):60117,N=g?Symbol.for("react.responder"):60118,M=g?Symbol.for("react.scope"):60119,C=E,W=P,z=j,q=w,D=v,L=k,B=b,$=R,F=A,U=m,V=x,G=_,K=T,Z=!1;t.AsyncMode=C,t.ConcurrentMode=W,t.ContextConsumer=z,t.ContextProvider=q,t.Element=D,t.ForwardRef=L,t.Fragment=B,t.Lazy=$,t.Memo=F,t.Portal=U,t.Profiler=V,t.StrictMode=G,t.Suspense=K,t.isAsyncMode=r,t.isConcurrentMode=o,t.isContextConsumer=i,t.isContextProvider=a,t.isElement=u,t.isForwardRef=l,t.isFragment=c,t.isLazy=s,t.isMemo=f,t.isPortal=p,t.isProfiler=d,t.isStrictMode=h,t.isSuspense=y,t.isValidElementType=e,t.typeOf=n}()}).call(t,n(20))},function(e,t,n){(function(t){"use strict";function r(){return null}var o=n(21),i=n(25),a=n(26),u=n(27),l=Function.call.bind(Object.prototype.hasOwnProperty),c=function(){};"production"!==t.env.NODE_ENV&&(c=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}),e.exports=function(e,n){function s(e){var t=e&&(S&&e[S]||e[N]);if("function"==typeof t)return t}function f(e,t){return e===t?0!==e||1/e===1/t:e!==e&&t!==t}function p(e){this.message=e,this.stack=""}function d(e){function r(r,u,l,s,f,d,h){if(s=s||M,d=d||l,h!==a){if(n){var y=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw y.name="Invariant Violation",y}if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var g=s+":"+l;!o[g]&&i<3&&(c("You are manually calling a React.PropTypes validation function for the `"+d+"` prop on `"+s+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),o[g]=!0,i++)}}return null==u[l]?r?new p(null===u[l]?"The "+f+" `"+d+"` is marked as required "+("in `"+s+"`, but its value is `null`."):"The "+f+" `"+d+"` is marked as required in "+("`"+s+"`, but its value is `undefined`.")):null:e(u,l,s,f,d)}if("production"!==t.env.NODE_ENV)var o={},i=0;var u=r.bind(null,!1);return u.isRequired=r.bind(null,!0),u}function h(e){function t(t,n,r,o,i,a){var u=t[n],l=O(u);if(l!==e){var c=A(u);return new p("Invalid "+o+" `"+i+"` of type "+("`"+c+"` supplied to `"+r+"`, expected ")+("`"+e+"`."))}return null}return d(t)}function y(){return d(r)}function g(e){function t(t,n,r,o,i){if("function"!=typeof e)return new p("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var u=t[n];if(!Array.isArray(u)){var l=O(u);return new p("Invalid "+o+" `"+i+"` of type "+("`"+l+"` supplied to `"+r+"`, expected an array."))}for(var c=0;c<u.length;c++){var s=e(u,c,r,o,i+"["+c+"]",a);if(s instanceof Error)return s}return null}return d(t)}function v(){function t(t,n,r,o,i){var a=t[n];if(!e(a)){var u=O(a);return new p("Invalid "+o+" `"+i+"` of type "+("`"+u+"` supplied to `"+r+"`, expected a single ReactElement."))}return null}return d(t)}function m(){function e(e,t,n,r,i){var a=e[t];if(!o.isValidElementType(a)){var u=O(a);return new p("Invalid "+r+" `"+i+"` of type "+("`"+u+"` supplied to `"+n+"`, expected a single ReactElement type."))}return null}return d(e)}function b(e){function t(t,n,r,o,i){if(!(t[n]instanceof e)){var a=e.name||M,u=I(t[n]);return new p("Invalid "+o+" `"+i+"` of type "+("`"+u+"` supplied to `"+r+"`, expected ")+("instance of `"+a+"`."))}return null}return d(t)}function _(e){function n(t,n,r,o,i){for(var a=t[n],u=0;u<e.length;u++)if(f(a,e[u]))return null;var l=JSON.stringify(e,function(e,t){var n=A(t);return"symbol"===n?String(t):t});return new p("Invalid "+o+" `"+i+"` of value `"+String(a)+"` "+("supplied to `"+r+"`, expected one of "+l+"."))}return Array.isArray(e)?d(n):("production"!==t.env.NODE_ENV&&c(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),r)}function x(e){function t(t,n,r,o,i){if("function"!=typeof e)return new p("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var u=t[n],c=O(u);if("object"!==c)return new p("Invalid "+o+" `"+i+"` of type "+("`"+c+"` supplied to `"+r+"`, expected an object."));for(var s in u)if(l(u,s)){var f=e(u,s,r,o,i+"."+s,a);if(f instanceof Error)return f}return null}return d(t)}function w(e){function n(t,n,r,o,i){for(var u=0;u<e.length;u++){var l=e[u];if(null==l(t,n,r,o,i,a))return null}return new p("Invalid "+o+" `"+i+"` supplied to "+("`"+r+"`."))}if(!Array.isArray(e))return"production"!==t.env.NODE_ENV?c("Invalid argument supplied to oneOfType, expected an instance of array."):void 0,r;for(var o=0;o<e.length;o++){var i=e[o];if("function"!=typeof i)return c("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+R(i)+" at index "+o+"."),r}return d(n)}function j(){function e(e,t,n,r,o){return k(e[t])?null:new p("Invalid "+r+" `"+o+"` supplied to "+("`"+n+"`, expected a ReactNode."))}return d(e)}function E(e){function t(t,n,r,o,i){var u=t[n],l=O(u);if("object"!==l)return new p("Invalid "+o+" `"+i+"` of type `"+l+"` "+("supplied to `"+r+"`, expected `object`."));for(var c in e){var s=e[c];if(s){var f=s(u,c,r,o,i+"."+c,a);if(f)return f}}return null}return d(t)}function P(e){function t(t,n,r,o,u){var l=t[n],c=O(l);if("object"!==c)return new p("Invalid "+o+" `"+u+"` of type `"+c+"` "+("supplied to `"+r+"`, expected `object`."));var s=i({},t[n],e);for(var f in s){var d=e[f];if(!d)return new p("Invalid "+o+" `"+u+"` key `"+f+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=d(l,f,r,o,u+"."+f,a);if(h)return h}return null}return d(t)}function k(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(k);if(null===t||e(t))return!0;var n=s(t);if(!n)return!1;var r,o=n.call(t);if(n!==t.entries){for(;!(r=o.next()).done;)if(!k(r.value))return!1}else for(;!(r=o.next()).done;){var i=r.value;if(i&&!k(i[1]))return!1}return!0;default:return!1}}function T(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}function O(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":T(t,e)?"symbol":t}function A(e){if("undefined"==typeof e||null===e)return""+e;var t=O(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function R(e){var t=A(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}function I(e){return e.constructor&&e.constructor.name?e.constructor.name:M}var S="function"==typeof Symbol&&Symbol.iterator,N="@@iterator",M="<<anonymous>>",C={array:h("array"),bool:h("boolean"),func:h("function"),number:h("number"),object:h("object"),string:h("string"),symbol:h("symbol"),any:y(),arrayOf:g,element:v(),elementType:m(),instanceOf:b,node:j(),objectOf:x,oneOf:_,oneOfType:w,shape:E,exact:P};return p.prototype=Error.prototype,C.checkPropTypes=u,C.resetWarningCache=u.resetWarningCache,C.PropTypes=C,C}}).call(t,n(20))},function(e,t){"use strict";function n(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}function r(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var r=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if("0123456789"!==r.join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach(function(e){o[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}var o=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=r()?Object.assign:function(e,t){for(var r,u,l=n(e),c=1;c<arguments.length;c++){r=Object(arguments[c]);for(var s in r)i.call(r,s)&&(l[s]=r[s]);if(o){u=o(r);for(var f=0;f<u.length;f++)a.call(r,u[f])&&(l[u[f]]=r[u[f]])}}return l}},function(e,t){"use strict";var n="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";e.exports=n},function(e,t,n){(function(t){"use strict";function r(e,n,r,l,c){if("production"!==t.env.NODE_ENV)for(var s in e)if(u(e,s)){var f;try{if("function"!=typeof e[s]){var p=Error((l||"React class")+": "+r+" type `"+s+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[s]+"`.");throw p.name="Invariant Violation",p}f=e[s](n,s,l,r,null,i)}catch(e){f=e}if(!f||f instanceof Error||o((l||"React class")+": type specification of "+r+" `"+s+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof f+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),f instanceof Error&&!(f.message in a)){a[f.message]=!0;var d=c?c():"";o("Failed "+r+" type: "+f.message+(null!=d?d:""))}}}var o=function(){};if("production"!==t.env.NODE_ENV){var i=n(26),a={},u=Function.call.bind(Object.prototype.hasOwnProperty);o=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}}r.resetWarningCache=function(){"production"!==t.env.NODE_ENV&&(a={})},e.exports=r}).call(t,n(20))},function(e,t,n){"use strict";function r(){}function o(){}var i=n(26);o.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,o,a){if(a!==i){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=n(2).PropTypes||n(19),p=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this,t=this.props.className;return s.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},s.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))}}]),t}(s.Component);p.propTypes={className:f.string},p.defaultProps={className:""};var d=p;t.default=d},function(e,t,n){function r(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return r=function(){return e},e}function o(e){if(e&&e.__esModule)return e;if(null===e||"object"!==i(e)&&"function"!=typeof e)return{default:e};var t=r();if(t&&t.has(e))return t.get(e);var n={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var u=o?Object.getOwnPropertyDescriptor(e,a):null;u&&(u.get||u.set)?Object.defineProperty(n,a,u):n[a]=e[a]}return n.default=e,t&&t.set(e,n),n}var i=n(31);e.exports=o},function(e,t){function n(t){"@babel/helpers - typeof";return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},function(e,t){function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}e.exports=n},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function r(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}e.exports=r},function(e,t,n){function r(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?i(e):t}var o=n(31),i=n(35);e.exports=r},function(e,t){function n(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}e.exports=n},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},function(e,t,n){function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}var o=n(38);e.exports=r},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},s.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),s.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),s.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),o.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))},a=i;t.default=a},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"next-chevron-title"},"Next"),s.default.createElement("desc",null,"Move to the next page"),s.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("title",null,"no"),o.default.createElement("polygon",{points:"32 3.5 28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32 32 28.5 19.5 16 32 3.5"}))},a=i;t.default=a},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"previous-chevron-title"},"Previous"),s.default.createElement("desc",null,"Move to the previous page"),s.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),o.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),o.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),o.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),o.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))};a.propTypes={className:i.string},a.defaultProps={className:""};var u=a;t.default=u},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("title",null,"yes"),o.default.createElement("polygon",{points:"12.9 28.9 31.9 6.3 28.1 3.1 12.3 21.9 3.3 14.4 0.1 18.2 12.9 28.9"}))},a=i;t.default=a},function(e,t){e.exports=Morph.modules["bbc-morph-superagent@2.0.0"]},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"Pagination",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(t,"PaginationSummary",{enumerable:!0,get:function(){return i.default}});var o=r(n(48)),i=r(n(69))},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(32)),i=r(n(33)),a=r(n(34)),u=r(n(36)),l=r(n(37)),c=r(n(2)),s=n(49),f=n(58),p=n(2).PropTypes||n(19),d=function(e){switch(e){case"bitesize":return" ec-pagination--bitesize";default:return""}},h=3,y=function(e){function t(){return(0,o.default)(this,t),(0,a.default)(this,(0,u.default)(t).apply(this,arguments))}return(0,l.default)(t,e),(0,i.default)(t,[{key:"calculatePageLinks",value:function(){var e=this.props.pageData,t=e.page,n=e.pageSize,r=e.totalResults;this.maxPageLinks=this.props.maxPageLinks<h?3:this.props.maxPageLinks,this.pageCount=Math.ceil(r/n),this.isLastPage=t>=this.pageCount,this.pageLinks=(0,f.generatePageLinks)(t,this.pageCount,this.maxPageLinks)}},{key:"render",value:function(){this.calculatePageLinks();var e=this.props.pageData.page,t=this.props,n=t.linkGenerator,r=t.project;return c.default.createElement("div",{className:"ec-pagination".concat(d(r))},this.pageCount>1&&c.default.createElement("ul",{className:"ec-pagination__list"},c.default.createElement(s.ArrowListItem,{direction:"prev",link:n(e-1),isDisabled:1===e}),this.pageLinks.map(function(t){var r=t.type,o=t.pageNumber,i=t.priority;return"ellipsis"===r?c.default.createElement(s.EllipsisListItem,{key:o,priority:i}):c.default.createElement(s.NumberedListItem,{pageNumber:o,priority:i,link:n(o),isSelected:e===o,key:o})}),c.default.createElement(s.ArrowListItem,{direction:"next",link:n(e+1),isDisabled:this.isLastPage})))}}]),t}(c.default.Component);y.propTypes={pageData:p.shape({page:p.number.isRequired,pageSize:p.number.isRequired,totalResults:p.number.isRequired}).isRequired,maxPageLinks:p.number,linkGenerator:p.func.isRequired,project:p.oneOf(["bitesize"])},y.defaultProps={maxPageLinks:9,project:null};var g=y;t.default=g},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.EllipsisListItem=t.NumberedListItem=t.ArrowListItem=t.ListItem=void 0;var o=r(n(2)),i=n(50),a=n(2).PropTypes||n(19),u=function(e){var t=e.classes,n=void 0===t?"":t,r=e.children;return o.default.createElement("span",{className:"ec-pagination__link ".concat(n).trim()},r)};u.propTypes={classes:a.string,children:a.node};var l=function(e){var t=e.classes,n=void 0===t?"":t,r=e.link,i=e.children;return o.default.createElement("a",{href:r,className:"ec-pagination__link ".concat(n).trim()},i)};l.propTypes={classes:a.string,link:a.string.isRequired,children:a.node};var c=function(e){var t=e.children,n=e.link,r=e.classModifier,i=e.priority,a=e.isDisabled,c=e.isSelected,s=r?"ec-pagination__link--".concat(r):"",f=a||c,p=[s];a?p.push("ec-pagination__link--disabled"):c&&p.push("ec-pagination__link--selected");var d=p.join(" ");return o.default.createElement("li",{className:"ec-pagination__list-item ec-pagination__priority--".concat(i)},f?o.default.createElement(u,{classes:d},t):o.default.createElement(l,{classes:d,link:n},t))};t.ListItem=c,c.propTypes={children:a.node,link:a.string,classModifier:a.string,priority:a.number,isDisabled:a.bool,isSelected:a.bool},c.defaultProps={isDisabled:!1,link:"",classModifier:"",isSelected:!1,priority:4};var s=function(e){var t=e.direction,n=e.link,r=e.isDisabled;return o.default.createElement(c,{isDisabled:r,link:n,priority:0,classModifier:"arrow"},"prev"===t&&o.default.createElement("span",{className:"ec-icon ec-icon--previous"},o.default.createElement(i.GelPreviousIcon,null)),"next"===t&&o.default.createElement("span",{className:"ec-icon ec-icon--next"},o.default.createElement(i.GelNextIcon,null)))};t.ArrowListItem=s,s.propTypes={direction:a.oneOf(["prev","next"]).isRequired,link:a.string,isDisabled:a.bool},s.defaultProps={isDisabled:!1,link:""};var f=function(e){var t=e.link,n=e.pageNumber,r=e.isSelected,i=e.priority;return o.default.createElement(c,{link:t,isSelected:r,priority:i,classModifier:"number"},n)};t.NumberedListItem=f,f.propTypes={link:a.string,pageNumber:a.number.isRequired,isSelected:a.bool,priority:a.number},f.defaultProps={link:"",isSelected:!1,priority:4};var p=function(e){var t=e.priority;return o.default.createElement("li",{className:"ec-pagination__list-item ec-pagination__ellipsis ec-pagination__ellipsis--priority-".concat(t)})};t.EllipsisListItem=p,p.propTypes={priority:a.number},p.defaultProps={priority:0}},function(e,t,n){"use strict";var r=n(15),o=r(n(51)),i=r(n(52)),a=r(n(53)),u=r(n(54)),l=r(n(55)),c=r(n(56)),s=r(n(57));e.exports={GelAddIcon:o.default,GelDownIcon:i.default,GelHeadingLinkIcon:a.default,GelIconDuration:u.default,GelNextIcon:l.default,GelPreviousIcon:c.default,GelRecentActivityIcon:s.default}},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},o.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};a.propTypes={className:i.string},a.defaultProps={className:""};var u=a;t.default=u},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},s.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),s.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),s.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.brand;return o.default.createElement("svg",{className:"ec-heading-link__icon--".concat(t),xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))};a.propTypes={brand:i.string},a.defaultProps={brand:"default"};var u=a;t.default=u},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=function(){return o.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",className:"bitesize-content-promo__duration-svg"},o.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),o.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))},a=i;t.default=a},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"next-chevron-title"},"Next"),s.default.createElement("desc",null,"Move to the next page"),s.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(30),o=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(n(32)),a=o(n(33)),u=o(n(34)),l=o(n(36)),c=o(n(37)),s=r(n(2)),f=function(e){function t(){return(0,i.default)(this,t),(0,u.default)(this,(0,l.default)(t).apply(this,arguments))}return(0,c.default)(t,e),(0,a.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},s.default.createElement("title",{id:"previous-chevron-title"},"Previous"),s.default.createElement("desc",null,"Move to the previous page"),s.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(s.Component),p=f;t.default=p},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.className;return o.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},o.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),o.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),o.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),o.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),o.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))};a.propTypes={className:i.string},a.defaultProps={className:""};var u=a;t.default=u},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.generatePageLinks=t.getPriority=t.getSurroundingPageNumbers=void 0;var o=r(n(59)),i=r(n(65)),a=function(e,t,n){return(0,i.default)(Array(2*n).keys()).map(function(t){return e+(t%2?-1:1)*Math.ceil((t+1)/2)}).filter(function(e){return e>1&&e<t}).slice(0,n)};t.getSurroundingPageNumbers=a;var u=function(e){return e<3?0:e<5?1:e<9?2:e<13?3:4};t.getPriority=u;var l=function(e,t){return e[0]-t[0]},c=function(e){if(e.length<3)return e;var t=e[0],n=e[1],r=n.pageNumber>t.pageNumber+1,o=r?0:4-n.priority;o<4&&e.splice(1,0,{type:"ellipsis",priority:o});var i=e[e.length-2],a=e[e.length-1],u=i.pageNumber<a.pageNumber-1,l=u?0:4-i.priority;return l<4&&e.splice(e.length-1,0,{type:"ellipsis",priority:l}),e},s=function(e,t,n){var r=new Set([e,1,t]),s=a(e,t,n-r.size),f=[].concat((0,i.default)(r),(0,i.default)(s)),p=f.map(function(e,t){return[e,u(t)]}),d=p.sort(l),h=d.map(function(e){var t=(0,o.default)(e,2),n=t[0],r=t[1];return{type:"number",pageNumber:n,priority:r}}),y=c(h);return y};t.generatePageLinks=s},function(e,t,n){function r(e,t){return o(e)||i(e,t)||a(e,t)||u()}var o=n(60),i=n(61),a=n(62),u=n(64);e.exports=r},function(e,t){function n(e){if(Array.isArray(e))return e}e.exports=n},function(e,t){function n(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,i=void 0;try{for(var a,u=e[Symbol.iterator]();!(r=(a=u.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return n}}e.exports=n},function(e,t,n){function r(e,t){if(e){if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1); return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?o(e,t):void 0}}var o=n(63);e.exports=r},function(e,t){function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}e.exports=n},function(e,t){function n(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}e.exports=n},function(e,t,n){function r(e){return o(e)||i(e)||a(e)||u()}var o=n(66),i=n(67),a=n(62),u=n(68);e.exports=r},function(e,t,n){function r(e){if(Array.isArray(e))return o(e)}var o=n(63);e.exports=r},function(e,t){function n(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}e.exports=n},function(e,t){function n(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}e.exports=n},function(e,t,n){"use strict";var r=n(15);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n(2)),i=n(2).PropTypes||n(19),a=function(e){var t=e.pageData,n=t.page,r=t.pageSize,i=t.totalResults,a=e.children,u=r-1,l=n*r-u,c=Math.min(i,l+u);return o.default.createElement("div",{className:"ec-pagination-summary"},o.default.createElement("span",{className:"ec-pagination-summary__text"},"Showing ".concat(l," - ").concat(c," of "),o.default.createElement("b",{className:"gel-pica-bold"},i),a&&o.default.createElement("span",null," ",a)))};a.propTypes={pageData:i.shape({page:i.number.isRequired,pageSize:i.number.isRequired,totalResults:i.number.isRequired}).isRequired,children:i.node};var u=a;t.default=u}]);; });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-baseplate-data/id/bitesize-primary-games-en-GB/language/en-GB/page/1/pageSize/27/pageType/primary-index/preview/false/project/baseplate-bitesize/type/index-page/version/5.6.3', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"content-type":"application\/json"}},"body":{"id":"znskbdm","title":"Bitesize Primary Homework Help | Online games for kids","showTitle":false,"slug":"bitesize-primary-games-en-GB","meta":{"description":"Explore Bitesize primary to discover articles, games and quizzes that support primary school children."},"callToAction":{"intro":"","text":"","url":""},"shortDescription":"","collections":[{"id":"zhs8gwx","name":"play-games","promos":[{"id":"z3nkbqt","title":"Back in time with... Exciting Explorers","url":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/www.bbc.co.uk\/bitesize\/topics\/zn3vvk7\/articles\/zsydr2p","synopsis":"Be an exciting explorer! Join Ibn, Amelia and Neil on their incredible journeys across the world... and beyond.","attribution":"Key Stage 1 - History","image":{"pid":"p08m1m2t","recipe":"ichef.bbci.co.uk\/images\/ic\/$recipe\/p08m1m2t.png"},"isExtLink":"false","icon":"","iconLabel":""},{"id":"zmqp2v4","title":"Back in time with... Astonishing Activists","url":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/www.bbc.co.uk\/bitesize\/topics\/zn3vvk7\/articles\/zh7m8hv","synopsis":"Be an astonishing activist! Help Nelson, Emmeline, Guy and Rosa to fight racism, campaign for women's rights and more.","attribution":"Key Stage 1 - History","image":{"pid":"p08kz0l8","recipe":"ichef.bbci.co.uk\/images\/ic\/$recipe\/p08kz0l8.png"},"isExtLink":"false","icon":"","iconLabel":""},{"id":"zkj78xs","title":"Galaxy Pugs","url":"https:\/\/web.archive.org\/web\/20200820050938\/https:\/\/www.bbc.co.uk\/bitesize\/topics\/zdp4382\/articles\/zn7bscw","synopsis":"Meet the Galaxy Pugs! Help them study and observe our planet's animals, plants and materials.","attribution":"Key Stage 1 - Science","image":{"pid":"p07qg547","recipe":"ichef.bbci.co.uk\/images\/ic\/$recipe\/p07qg547.png"},"isExtLink":"false","icon":"","iconLabel":""}],"layout":"layout-branding-colour-3","brandingColour":"#ffffff","title":"Play games","titleColour":"dark","link":{"text":"All games","url":"\/bitesize\/collections\/primary-games\/1"}}]}}); });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-baseplate-content-view","id":"bitesize-primary-games-en-GB","project":"baseplate-bitesize","type":"index-page","pageType":"primary-index","language":"en-GB","version":"5.25.0","_mrrVersion":"2.0.18"},'u28991960304970954'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u28991960304970954 */</script><script>Morph.toInit.bundles.push(function() { Morph.versions["bbc-morph-bitesize-primary-phonics-view@1.0.4"]={"@bbc/education-content-promo":"2.3.7","@bbc/education-content-panel":"0.2.2","gel-grid":"4.0.0","gel-sass-tools":"1.2.1","sass-mq":"5.0.1","morph-container":"4.0.0",react:"0.14.7"},function(e){function t(n){if(a[n])return a[n].exports;var s=a[n]={exports:{},id:n,loaded:!1};return e[n].call(s.exports,s,s.exports,t),s.loaded=!0,s.exports}var a={};t.m=e,t.c=a,t.p="",t(0)}([function(e,t,a){Morph.modules["bbc-morph-bitesize-primary-phonics-view@1.0.4"]=a(1)},function(e,t,a){e.exports=a(2)},function(e,t,a){e.exports=function(e){function t(n){if(a[n])return a[n].exports;var s=a[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,t),s.l=!0,s.exports}var a={};return t.m=e,t.c=a,t.d=function(e,a,n){t.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,a){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var s=a(1),r=n(s),i=a(2),d=n(i);t.default=r.default.create(d.default,{}),e.exports=t.default},function(e,t){e.exports=a(3)},function(e,t,a){"use strict";function n(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e},r=a(3),i=n(r),d=a(4),o=n(d),_=a(5),u=n(_),m={label:"Phonics Phase 3",synopsis:"Learn phonics by helping the wizards turn letters and sounds into words.",link:"/bitesize/topics/zvq9bdm",imageSrc:"https://web.archive.org/web/20200820050938/https://bitesize.files.bbci.co.uk/images/phases/primary/phonics-promo-wizards-primary-index.png",lang:"en-GB"},l=function(){return i.default.createElement("div",{className:"primary-phonics-view-wrapper"},i.default.createElement(o.default,null,i.default.createElement(u.default,s({},m,{brand:"bitesize-primary"}))))};t.default=l,e.exports=t.default},function(e,t){e.exports=a(4)},function(e,t){e.exports=a(5)},function(e,t){e.exports=a(18)}])},function(e,t){e.exports={create:function(e,t){return Morph.createContainerWithCaller("bbc-morph-bitesize-primary-phonics-view@1.0.4",e,t)}}},function(e,t){e.exports=React},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(7)),r=s.default;t.default=r},function(e,t){function a(e){return e&&e.__esModule?e:{default:e}}e.exports=a},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=a(4).PropTypes||a(8),i=function(e){var t=s.default.Children.map(e.children,function(t){return s.default.createElement("div",{className:"ec-content-panel__item--".concat(e.brand)},t)});return s.default.createElement("section",{className:"ec-content-panel--".concat(e.brand)},t)};i.propTypes={children:r.node.isRequired,brand:r.string},i.defaultProps={brand:"default"};var d=i;t.default=d},function(e,t,a){(function(t){if("production"!==t.env.NODE_ENV){var n=a(10);e.exports=a(13)(n.isElement,!0)}else e.exports=a(17)()}).call(t,a(9))},function(e,t){function a(){throw new Error("setTimeout has not been defined")}function n(){throw new Error("clearTimeout has not been defined")}function s(e){if(u===setTimeout)return setTimeout(e,0);if((u===a||!u)&&setTimeout)return u=setTimeout,setTimeout(e,0);try{return u(e,0)}catch(t){try{return u.call(null,e,0)}catch(t){return u.call(this,e,0)}}}function r(e){if(m===clearTimeout)return clearTimeout(e);if((m===n||!m)&&clearTimeout)return m=clearTimeout,clearTimeout(e);try{return m(e)}catch(t){try{return m.call(null,e)}catch(t){return m.call(this,e)}}}function i(){M&&c&&(M=!1,c.length?h=c.concat(h):f=-1,h.length&&d())}function d(){if(!M){var e=s(i);M=!0;for(var t=h.length;t;){for(c=h,h=[];++f<t;)c&&c[f].run();f=-1,t=h.length}c=null,M=!1,r(e)}}function o(e,t){this.fun=e,this.array=t}function _(){}var u,m,l=e.exports={};!function(){try{u="function"==typeof setTimeout?setTimeout:a}catch(e){u=a}try{m="function"==typeof clearTimeout?clearTimeout:n}catch(e){m=n}}();var c,h=[],M=!1,f=-1;l.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var a=1;a<arguments.length;a++)t[a-1]=arguments[a];h.push(new o(e,t)),1!==h.length||M||s(d)},o.prototype.run=function(){this.fun.apply(null,this.array)},l.title="browser",l.browser=!0,l.env={},l.argv=[],l.version="",l.versions={},l.on=_,l.addListener=_,l.once=_,l.off=_,l.removeListener=_,l.removeAllListeners=_,l.emit=_,l.prependListener=_,l.prependOnceListener=_,l.listeners=function(e){return[]},l.binding=function(e){throw new Error("process.binding is not supported")},l.cwd=function(){return"/"},l.chdir=function(e){throw new Error("process.chdir is not supported")},l.umask=function(){return 0}},function(e,t,a){(function(t){"use strict";"production"===t.env.NODE_ENV?e.exports=a(11):e.exports=a(12)}).call(t,a(9))},function(e,t){"use strict";function a(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case l:case c:case d:case _:case o:case M:return e;default:switch(e=e&&e.$$typeof){case m:case h:case L:case y:case u:return e;default:return t}}case i:return t}}}function n(e){return a(e)===c}Object.defineProperty(t,"__esModule",{value:!0});var s="function"==typeof Symbol&&Symbol.for,r=s?Symbol.for("react.element"):60103,i=s?Symbol.for("react.portal"):60106,d=s?Symbol.for("react.fragment"):60107,o=s?Symbol.for("react.strict_mode"):60108,_=s?Symbol.for("react.profiler"):60114,u=s?Symbol.for("react.provider"):60109,m=s?Symbol.for("react.context"):60110,l=s?Symbol.for("react.async_mode"):60111,c=s?Symbol.for("react.concurrent_mode"):60111,h=s?Symbol.for("react.forward_ref"):60112,M=s?Symbol.for("react.suspense"):60113,f=s?Symbol.for("react.suspense_list"):60120,y=s?Symbol.for("react.memo"):60115,L=s?Symbol.for("react.lazy"):60116,Y=s?Symbol.for("react.fundamental"):60117,p=s?Symbol.for("react.responder"):60118,k=s?Symbol.for("react.scope"):60119;t.typeOf=a,t.AsyncMode=l,t.ConcurrentMode=c,t.ContextConsumer=m,t.ContextProvider=u,t.Element=r,t.ForwardRef=h,t.Fragment=d,t.Lazy=L,t.Memo=y,t.Portal=i,t.Profiler=_,t.StrictMode=o,t.Suspense=M,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===d||e===c||e===_||e===o||e===M||e===f||"object"==typeof e&&null!==e&&(e.$$typeof===L||e.$$typeof===y||e.$$typeof===u||e.$$typeof===m||e.$$typeof===h||e.$$typeof===Y||e.$$typeof===p||e.$$typeof===k)},t.isAsyncMode=function(e){return n(e)||a(e)===l},t.isConcurrentMode=n,t.isContextConsumer=function(e){return a(e)===m},t.isContextProvider=function(e){return a(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return a(e)===h},t.isFragment=function(e){return a(e)===d},t.isLazy=function(e){return a(e)===L},t.isMemo=function(e){return a(e)===y},t.isPortal=function(e){return a(e)===i},t.isProfiler=function(e){return a(e)===_},t.isStrictMode=function(e){return a(e)===o},t.isSuspense=function(e){return a(e)===M}},function(e,t,a){(function(e){"use strict";"production"!==e.env.NODE_ENV&&function(){function e(e){return"string"==typeof e||"function"==typeof e||e===Y||e===w||e===k||e===p||e===b||e===S||"object"==typeof e&&null!==e&&(e.$$typeof===j||e.$$typeof===H||e.$$typeof===D||e.$$typeof===g||e.$$typeof===v||e.$$typeof===x||e.$$typeof===O||e.$$typeof===P)}function a(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case y:var a=e.type;switch(a){case T:case w:case Y:case k:case p:case b:return a;default:var n=a&&a.$$typeof;switch(n){case g:case v:case j:case H:case D:return n;default:return t}}case L:return t}}}function n(e){return K||(K=!0,A(!1,"The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),s(e)||a(e)===T}function s(e){return a(e)===w}function r(e){return a(e)===g}function i(e){return a(e)===D}function d(e){return"object"==typeof e&&null!==e&&e.$$typeof===y}function o(e){return a(e)===v}function _(e){return a(e)===Y}function u(e){return a(e)===j}function m(e){return a(e)===H}function l(e){return a(e)===L}function c(e){return a(e)===k}function h(e){return a(e)===p}function M(e){return a(e)===b}Object.defineProperty(t,"__esModule",{value:!0});var f="function"==typeof Symbol&&Symbol.for,y=f?Symbol.for("react.element"):60103,L=f?Symbol.for("react.portal"):60106,Y=f?Symbol.for("react.fragment"):60107,p=f?Symbol.for("react.strict_mode"):60108,k=f?Symbol.for("react.profiler"):60114,D=f?Symbol.for("react.provider"):60109,g=f?Symbol.for("react.context"):60110,T=f?Symbol.for("react.async_mode"):60111,w=f?Symbol.for("react.concurrent_mode"):60111,v=f?Symbol.for("react.forward_ref"):60112,b=f?Symbol.for("react.suspense"):60113,S=f?Symbol.for("react.suspense_list"):60120,H=f?Symbol.for("react.memo"):60115,j=f?Symbol.for("react.lazy"):60116,x=f?Symbol.for("react.fundamental"):60117,O=f?Symbol.for("react.responder"):60118,P=f?Symbol.for("react.scope"):60119,E=function(){},W=function(e){for(var t=arguments.length,a=new Array(t>1?t-1:0),n=1;n<t;n++)a[n-1]=arguments[n];var s=0,r="Warning: "+e.replace(/%s/g,function(){return a[s++]});"undefined"!=typeof console&&console.warn(r);try{throw new Error(r)}catch(e){}};E=function(e,t){if(void 0===t)throw new Error("`lowPriorityWarningWithoutStack(condition, format, ...args)` requires a warning message argument");if(!e){for(var a=arguments.length,n=new Array(a>2?a-2:0),s=2;s<a;s++)n[s-2]=arguments[s];W.apply(void 0,[t].concat(n))}};var A=E,F=T,z=w,N=g,J=D,C=y,I=v,R=Y,G=j,U=H,V=L,B=k,$=p,q=b,K=!1;t.typeOf=a,t.AsyncMode=F,t.ConcurrentMode=z,t.ContextConsumer=N,t.ContextProvider=J,t.Element=C,t.ForwardRef=I,t.Fragment=R,t.Lazy=G,t.Memo=U,t.Portal=V,t.Profiler=B,t.StrictMode=$,t.Suspense=q,t.isValidElementType=e,t.isAsyncMode=n,t.isConcurrentMode=s,t.isContextConsumer=r,t.isContextProvider=i,t.isElement=d,t.isForwardRef=o,t.isFragment=_,t.isLazy=u,t.isMemo=m,t.isPortal=l,t.isProfiler=c,t.isStrictMode=h,t.isSuspense=M}()}).call(t,a(9))},function(e,t,a){(function(t){"use strict";function n(){return null}var s=a(10),r=a(14),i=a(15),d=a(16),o=Function.call.bind(Object.prototype.hasOwnProperty),_=function(){};"production"!==t.env.NODE_ENV&&(_=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}),e.exports=function(e,a){function u(e){var t=e&&(S&&e[S]||e[H]);if("function"==typeof t)return t}function m(e,t){return e===t?0!==e||1/e==1/t:e!==e&&t!==t}function l(e){this.message=e,this.stack=""}function c(e){function n(n,d,o,u,m,c,h){if(u=u||j,c=c||o,h!==i){if(a){var M=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw M.name="Invariant Violation",M}if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var f=u+":"+o;!s[f]&&r<3&&(_("You are manually calling a React.PropTypes validation function for the `"+c+"` prop on `"+u+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),s[f]=!0,r++)}}return null==d[o]?n?new l(null===d[o]?"The "+m+" `"+c+"` is marked as required in `"+u+"`, but its value is `null`.":"The "+m+" `"+c+"` is marked as required in `"+u+"`, but its value is `undefined`."):null:e(d,o,u,m,c)}if("production"!==t.env.NODE_ENV)var s={},r=0;var d=n.bind(null,!1);return d.isRequired=n.bind(null,!0),d}function h(e){function t(t,a,n,s,r,i){var d=t[a];if(T(d)!==e)return new l("Invalid "+s+" `"+r+"` of type `"+w(d)+"` supplied to `"+n+"`, expected `"+e+"`.");return null}return c(t)}function M(e){function t(t,a,n,s,r){if("function"!=typeof e)return new l("Property `"+r+"` of component `"+n+"` has invalid PropType notation inside arrayOf.");var d=t[a];if(!Array.isArray(d)){return new l("Invalid "+s+" `"+r+"` of type `"+T(d)+"` supplied to `"+n+"`, expected an array.")}for(var o=0;o<d.length;o++){var _=e(d,o,n,s,r+"["+o+"]",i);if(_ instanceof Error)return _}return null}return c(t)}function f(e){function t(t,a,n,s,r){if(!(t[a]instanceof e)){var i=e.name||j;return new l("Invalid "+s+" `"+r+"` of type `"+b(t[a])+"` supplied to `"+n+"`, expected instance of `"+i+"`.")}return null}return c(t)}function y(e){function a(t,a,n,s,r){for(var i=t[a],d=0;d<e.length;d++)if(m(i,e[d]))return null;var o=JSON.stringify(e,function(e,t){return"symbol"===w(t)?String(t):t});return new l("Invalid "+s+" `"+r+"` of value `"+String(i)+"` supplied to `"+n+"`, expected one of "+o+".")}return Array.isArray(e)?c(a):("production"!==t.env.NODE_ENV&&_(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),n)}function L(e){function t(t,a,n,s,r){if("function"!=typeof e)return new l("Property `"+r+"` of component `"+n+"` has invalid PropType notation inside objectOf.");var d=t[a],_=T(d);if("object"!==_)return new l("Invalid "+s+" `"+r+"` of type `"+_+"` supplied to `"+n+"`, expected an object.");for(var u in d)if(o(d,u)){var m=e(d,u,n,s,r+"."+u,i);if(m instanceof Error)return m}return null}return c(t)}function Y(e){function a(t,a,n,s,r){for(var d=0;d<e.length;d++){if(null==(0,e[d])(t,a,n,s,r,i))return null}return new l("Invalid "+s+" `"+r+"` supplied to `"+n+"`.")}if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&_("Invalid argument supplied to oneOfType, expected an instance of array."),n;for(var s=0;s<e.length;s++){var r=e[s];if("function"!=typeof r)return _("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+v(r)+" at index "+s+"."),n}return c(a)}function p(e){function t(t,a,n,s,r){var d=t[a],o=T(d);if("object"!==o)return new l("Invalid "+s+" `"+r+"` of type `"+o+"` supplied to `"+n+"`, expected `object`.");for(var _ in e){var u=e[_];if(u){var m=u(d,_,n,s,r+"."+_,i);if(m)return m}}return null}return c(t)}function k(e){function t(t,a,n,s,d){var o=t[a],_=T(o);if("object"!==_)return new l("Invalid "+s+" `"+d+"` of type `"+_+"` supplied to `"+n+"`, expected `object`.");var u=r({},t[a],e);for(var m in u){var c=e[m];if(!c)return new l("Invalid "+s+" `"+d+"` key `"+m+"` supplied to `"+n+"`.\nBad object: "+JSON.stringify(t[a],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=c(o,m,n,s,d+"."+m,i);if(h)return h}return null}return c(t)}function D(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(D);if(null===t||e(t))return!0;var a=u(t);if(!a)return!1;var n,s=a.call(t);if(a!==t.entries){for(;!(n=s.next()).done;)if(!D(n.value))return!1}else for(;!(n=s.next()).done;){var r=n.value;if(r&&!D(r[1]))return!1}return!0;default:return!1}}function g(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}function T(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":g(t,e)?"symbol":t}function w(e){if(void 0===e||null===e)return""+e;var t=T(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function v(e){var t=w(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}function b(e){return e.constructor&&e.constructor.name?e.constructor.name:j}var S="function"==typeof Symbol&&Symbol.iterator,H="@@iterator",j="<<anonymous>>",x={array:h("array"),bool:h("boolean"),func:h("function"),number:h("number"),object:h("object"),string:h("string"),symbol:h("symbol"),any:function(){return c(n)}(),arrayOf:M,element:function(){function t(t,a,n,s,r){var i=t[a];if(!e(i)){return new l("Invalid "+s+" `"+r+"` of type `"+T(i)+"` supplied to `"+n+"`, expected a single ReactElement.")}return null}return c(t)}(),elementType:function(){function e(e,t,a,n,r){var i=e[t];if(!s.isValidElementType(i)){return new l("Invalid "+n+" `"+r+"` of type `"+T(i)+"` supplied to `"+a+"`, expected a single ReactElement type.")}return null}return c(e)}(),instanceOf:f,node:function(){function e(e,t,a,n,s){return D(e[t])?null:new l("Invalid "+n+" `"+s+"` supplied to `"+a+"`, expected a ReactNode.")}return c(e)}(),objectOf:L,oneOf:y,oneOfType:Y,shape:p,exact:k};return l.prototype=Error.prototype,x.checkPropTypes=d,x.resetWarningCache=d.resetWarningCache,x.PropTypes=x,x}}).call(t,a(9))},function(e,t){"use strict";function a(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}var n=Object.getOwnPropertySymbols,s=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},a=0;a<10;a++)t["_"+String.fromCharCode(a)]=a;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var i,d,o=a(e),_=1;_<arguments.length;_++){i=Object(arguments[_]);for(var u in i)s.call(i,u)&&(o[u]=i[u]);if(n){d=n(i);for(var m=0;m<d.length;m++)r.call(i,d[m])&&(o[d[m]]=i[d[m]])}}return o}},function(e,t){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,a){(function(t){"use strict";function n(e,a,n,o,_){if("production"!==t.env.NODE_ENV)for(var u in e)if(d(e,u)){var m;try{if("function"!=typeof e[u]){var l=Error((o||"React class")+": "+n+" type `"+u+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[u]+"`.");throw l.name="Invariant Violation",l}m=e[u](a,u,o,n,null,r)}catch(e){m=e}if(!m||m instanceof Error||s((o||"React class")+": type specification of "+n+" `"+u+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof m+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),m instanceof Error&&!(m.message in i)){i[m.message]=!0;var c=_?_():"";s("Failed "+n+" type: "+m.message+(null!=c?c:""))}}}var s=function(){};if("production"!==t.env.NODE_ENV){var r=a(15),i={},d=Function.call.bind(Object.prototype.hasOwnProperty);s=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}}}n.resetWarningCache=function(){"production"!==t.env.NODE_ENV&&(i={})},e.exports=n}).call(t,a(9))},function(e,t,a){"use strict";function n(){}function s(){}var r=a(15);s.resetWarningCache=n,e.exports=function(){function e(e,t,a,n,s,i){if(i!==r){var d=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw d.name="Invariant Violation",d}}function t(){return e}e.isRequired=e;var a={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:s,resetWarningCache:n};return a.PropTypes=a,a}},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(19)),r=s.default;t.default=r},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=n(a(20)),i=n(a(21)),d=n(a(174)),o=function(e){var t=e.label,a=e.link,n=e.imageSrc,r=e.context,o=e.date,_=e.lang,u=e.synopsis,m=e.phase,l=e.placeholderMessage,c=e.dataBbcContainer,h=e.dataBbcMetadataIndex,M=e.brand;if(!a)return s.default.createElement(d.default,{message:l,brand:M});var f,y="";return r&&(y=r.label,f=[{href:r.firstItem.url,label:r.firstItem.label,className:"education-content-promo__context-item-link--".concat(M),type:r.firstItem.type},{href:r.secondItem.url,label:r.secondItem.label,className:"education-content-promo__context-item-link--".concat(M),type:r.secondItem.type}]),s.default.createElement(i.default,{label:t,link:a,contextLabel:y,contextItems:f,synopsis:u,imageSrc:n,lastUpdated:o,lang:_,phase:m,dataBbcContainer:c,dataBbcMetadataIndex:h,brand:M})};o.defaultProps={context:null,date:null,synopsis:null,imageSrc:null,placeholderMessage:"",dataBbcMetadataIndex:1,phase:"",brand:"default"},o.propTypes={label:r.default.string.isRequired,link:r.default.string.isRequired,imageSrc:r.default.string,context:r.default.shape({label:r.default.string.isRequired,firstItem:r.default.shape({url:r.default.string.isRequired,label:r.default.string.isRequired,type:r.default.string.isRequired}).isRequired,secondItem:r.default.shape({url:r.default.string.isRequired,label:r.default.string.isRequired,type:r.default.string.isRequired}).isRequired}),synopsis:r.default.string,date:r.default.instanceOf(Date),lang:r.default.string.isRequired,phase:r.default.string,placeholderMessage:r.default.string,dataBbcContainer:r.default.string.isRequired,dataBbcMetadataIndex:r.default.number,brand:r.default.string};var _=o;t.default=_},function(e,t,a){"use strict";e.exports=a(4).PropTypes||a(8)},function(e,t,a){"use strict";var n=a(22),s=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(a(24)),i=s(a(25)),d=s(a(26)),o=s(a(28)),_=s(a(27)),u=s(a(29)),m=n(a(4)),l=a(31),c=s(a(20)),h=a(41),M=s(a(173)),f=function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"education-content-text-wrapper",n=a;return e||(n="".concat(n,"--").concat(t," ").concat(n,"--no-image")),n="".concat(n,"--").concat(t)},y=function(e){function t(e){var a;(0,r.default)(this,t),a=(0,d.default)(this,(0,o.default)(t).call(this,e));var n=e.brand;return a.state={containerClass:"education-content-promo--".concat(n)},a.addFocusToContainer=a.addFocusToContainer.bind((0,_.default)(a)),a.removeFocusFromContainer=a.removeFocusFromContainer.bind((0,_.default)(a)),a}return(0,u.default)(t,e),(0,i.default)(t,[{key:"addFocusToContainer",value:function(){var e=this.props.brand;this.setState({containerClass:"education-content-promo--".concat(e," education-content-promo--").concat(e,"--focus")})}},{key:"removeFocusFromContainer",value:function(){var e=this.props.brand;this.setState({containerClass:"education-content-promo--".concat(e)})}},{key:"render",value:function(){var e,t,a,n=this.props,s=n.label,r=n.lang,i=n.imageSrc,d=n.link,o=n.contextLabel,_=n.contextItems,u=n.synopsis,c=n.lastUpdated,y=n.phase,L=n.dataBbcContainer,Y=n.dataBbcMetadataIndex,p=n.brand,k="education-content-promo__image--".concat(p," ").concat(y),D="education-content-promo-container--".concat(p);return _&&(e=m.default.createElement(M.default,{addBackground:this.addFocusToContainer,removeBackground:this.removeFocusFromContainer,className:"education-content-promo-meta--".concat(p),dataBbcContainer:L,dataBbcMetadataIndex:Y,contextLabel:o,contextItems:_,brand:p})),u&&(t=m.default.createElement("div",{className:"education-content-promo__context-synopsis--".concat(p)},u)),c&&(a=m.default.createElement("div",{className:"education-content-promo__timestamp--".concat(p)},m.default.createElement(l.GelIconDuration,null),m.default.createElement("span",{className:"education-content-promo__timestamp-text--".concat(p)},(0,h.getTimestampFromDate)(c,r))),D+=" education-content-promo-container--date--".concat(p)),m.default.createElement("div",{className:this.state.containerClass},m.default.createElement("div",{className:D},i&&m.default.createElement("div",{className:"education-content-promo__image-wrapper--".concat(p)},m.default.createElement("img",{alt:"",src:i,className:k})),m.default.createElement("div",{className:f(i,p)},m.default.createElement("div",null,m.default.createElement("a",{"data-bbc-container":L,"data-bbc-title":s,"data-bbc-metadata":JSON.stringify({CHD:"card::".concat(Y)}),className:"education-content-promo__link--".concat(p),href:d,onFocus:this.addFocusToContainer,onBlur:this.removeFocusFromContainer},m.default.createElement("div",{className:"education-content-promo__title--".concat(p)},s)),e,t),a)))}}]),t}(m.Component);y.displayName="ContentPromo",y.defaultProps={contextLabel:null,contextItems:null,lastUpdated:null,synopsis:null,phase:"core",placeholderMessage:"",dataBbcMetadataIndex:1,brand:"default"},y.propTypes={label:c.default.string.isRequired,lang:c.default.string.isRequired,imageSrc:c.default.string.isRequired,link:c.default.string.isRequired,contextLabel:c.default.string,contextItems:c.default.arrayOf(c.default.shape({url:c.default.string,className:c.default.string.isRequired,label:c.default.string.isRequired})),synopsis:c.default.string,lastUpdated:c.default.instanceOf(Date),phase:c.default.string,placeholderMessage:c.default.string,dataBbcContainer:c.default.string.isRequired,dataBbcMetadataIndex:c.default.number,brand:c.default.string};var L=y;t.default=L},function(e,t,a){function n(){if("function"!=typeof WeakMap)return null;var e=new WeakMap;return n=function(){return e},e}function s(e){if(e&&e.__esModule)return e;if(null===e||"object"!==r(e)&&"function"!=typeof e)return{default:e};var t=n();if(t&&t.has(e))return t.get(e);var a={},s=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var d=s?Object.getOwnPropertyDescriptor(e,i):null;d&&(d.get||d.set)?Object.defineProperty(a,i,d):a[i]=e[i]}return a.default=e,t&&t.set(e,a),a}var r=a(23);e.exports=s},function(e,t){function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function n(t){return"function"==typeof Symbol&&"symbol"===a(Symbol.iterator)?e.exports=n=function(e){return a(e)}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":a(e)},n(t)}e.exports=n},function(e,t){function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}e.exports=a},function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var n=t[a];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function n(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),e}e.exports=n},function(e,t,a){function n(e,t){return!t||"object"!==s(t)&&"function"!=typeof t?r(e):t}var s=a(23),r=a(27);e.exports=n},function(e,t){function a(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}e.exports=a},function(e,t){function a(t){return e.exports=a=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},a(t)}e.exports=a},function(e,t,a){function n(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}var s=a(30);e.exports=n},function(e,t){function a(t,n){return e.exports=a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},a(t,n)}e.exports=a},function(e,t,a){"use strict";var n=a(6),s=n(a(32)),r=n(a(33)),i=n(a(34)),d=n(a(35)),o=n(a(36)),_=n(a(37)),u=n(a(38)),m=n(a(39)),l=n(a(40));e.exports={GelAddIcon:s.default,GelDownIcon:r.default,GelHeadingLinkIcon:i.default,GelIconDuration:d.default,GelNextIcon:o.default,GelNoIcon:_.default,GelPreviousIcon:u.default,GelRecentActivityIcon:m.default,GelYesIcon:l.default}},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=a(4).PropTypes||a(8),i=function(e){var t=e.className;return s.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",fill:"white"},s.default.createElement("polygon",{points:"31.5,13.5 18.5,13.5 18.5,0.5 13.5,0.5 13.5,13.5 0.5,13.5 0.5,18.5 13.5,18.5 13.5,31.5 18.5,31.5 18.5,18.5 31.5,18.5"}))};i.propTypes={className:r.string},i.defaultProps={className:""};var d=i;t.default=d},function(e,t,a){"use strict";var n=a(22),s=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(a(24)),i=s(a(25)),d=s(a(26)),o=s(a(28)),_=s(a(29)),u=n(a(4)),m=function(e){function t(){return(0,r.default)(this,t),(0,d.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,_.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{version:"1.1",x:"0px",y:"0px",width:"18px",height:"18px",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},u.default.createElement("g",{id:"Grid","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.0"}),u.default.createElement("g",{id:"Layer_2","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1"}),u.default.createElement("polygon",{points:"16,29 32,3 24.8,3 16,18.3 7.2,3 0,3","data-reactid":".2fuuqwria3c.1.0.1.0.0.3.1.0.0.$KS3.0.2.0.1.0"}))}}]),t}(u.Component),l=m;t.default=l},function(e,t,a){"use strict";var n=a(22),s=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(a(24)),i=s(a(25)),d=s(a(26)),o=s(a(28)),_=s(a(29)),u=n(a(4)),m=a(4).PropTypes||a(8),l=function(e){function t(){return(0,r.default)(this,t),(0,d.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,_.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{className:"ec-heading-link__icon--".concat(this.props.brand),xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32",ref:function(t){e.icon=t}},u.default.createElement("polygon",{points:"29 16 3 0 3 7.2 17.6 16 3 24.8 3 32 29 16"}))}}]),t}(u.Component);l.propTypes={brand:m.string},l.defaultProps={brand:"default"};var c=l;t.default=c},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=function(){return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},s.default.createElement("polygon",{points:"17 15.4 17 6 15 6 15 16.6 23.8 21.7 24.8 19.9 17 15.4"}),s.default.createElement("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-4A16,16,0,1,0,32,16,16,16,0,0,0,16,0Z"}))},i=r;t.default=i},function(e,t,a){"use strict";var n=a(22),s=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(a(24)),i=s(a(25)),d=s(a(26)),o=s(a(28)),_=s(a(29)),u=n(a(4)),m=function(e){function t(){return(0,r.default)(this,t),(0,d.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,_.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"next-chevron-title",ref:function(t){e.icon=t}},u.default.createElement("title",{id:"next-chevron-title"},"Next"),u.default.createElement("desc",null,"Move to the next page"),u.default.createElement("polygon",{points:"26,16 0,0 0,7.2 14.6,16 0,24.8 0,32"}))}}]),t}(u.Component),l=m;t.default=l},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=function(){ return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},s.default.createElement("title",null,"no"),s.default.createElement("polygon",{points:"32 3.5 28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32 32 28.5 19.5 16 32 3.5"}))},i=r;t.default=i},function(e,t,a){"use strict";var n=a(22),s=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=s(a(24)),i=s(a(25)),d=s(a(26)),o=s(a(28)),_=s(a(29)),u=n(a(4)),m=function(e){function t(){return(0,r.default)(this,t),(0,d.default)(this,(0,o.default)(t).apply(this,arguments))}return(0,_.default)(t,e),(0,i.default)(t,[{key:"componentDidMount",value:function(){this.icon.setAttribute("focusable","false")}},{key:"render",value:function(){var e=this;return u.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32","aria-labelledby":"previous-chevron-title",ref:function(t){e.icon=t}},u.default.createElement("title",{id:"previous-chevron-title"},"Previous"),u.default.createElement("desc",null,"Move to the previous page"),u.default.createElement("polygon",{points:"0,16 26,0 26,7.2 11.4,16 26,24.8 26,32"}))}}]),t}(u.Component),l=m;t.default=l},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=a(4).PropTypes||a(8),i=function(e){var t=e.className;return s.default.createElement("svg",{className:t,xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},s.default.createElement("path",{d:"M16 28C9.4 28 4 22.6 4 16S9.4 4 16 4c.3 0 .7 0 1 .1v-4c-.3-.1-.7-.1-1-.1C7.2 0 0 7.2 0 16s7.2 16 16 16c6.3 0 11.7-3.6 14.3-8.9l-3.5-2c-1.9 4.1-6 6.9-10.8 6.9z"}),s.default.createElement("path",{d:"M15 6v10.6l8.8 5.1 1-1.8-7.8-4.5V6"}),s.default.createElement("circle",{cx:"30",cy:"16",r:"2"}),s.default.createElement("circle",{cx:"28",cy:"9",r:"2"}),s.default.createElement("circle",{cx:"23",cy:"4",r:"2"}))};i.propTypes={className:r.string},i.defaultProps={className:""};var d=i;t.default=d},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=function(){return s.default.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 32 32"},s.default.createElement("title",null,"yes"),s.default.createElement("polygon",{points:"12.9 28.9 31.9 6.3 28.1 3.1 12.3 21.9 3.3 14.4 0.1 18.2 12.9 28.9"}))},i=r;t.default=i},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.getTimestampFromDate=void 0;var s=n(a(42)),r=n(a(172));s.default.suppressDeprecationWarnings=!0,s.default.updateLocale("cy",r.default["cy-GB"]),s.default.updateLocale("gd",r.default["gd-GB"]),s.default.defineLocale("ga",{parentLocale:"en",relativeTime:r.default["ga-GB"].relativeTime});var i=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"en-GB";if(!(0,s.default)(e).isValid())throw new Error("Not a valid date.");return(0,s.default)(e).locale(t).fromNow()};t.getTimestampFromDate=i},function(e,t,a){(function(e){!function(t,a){e.exports=a()}(0,function(){"use strict";function t(){return On.apply(null,arguments)}function n(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function s(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function r(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(e.hasOwnProperty(t))return!1;return!0}function i(e){return void 0===e}function d(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function o(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function _(e,t){var a,n=[];for(a=0;a<e.length;++a)n.push(t(e[a],a));return n}function u(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function m(e,t){for(var a in t)u(t,a)&&(e[a]=t[a]);return u(t,"toString")&&(e.toString=t.toString),u(t,"valueOf")&&(e.valueOf=t.valueOf),e}function l(e,t,a,n){return vt(e,t,a,n,!0).utc()}function c(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null,rfc2822:!1,weekdayMismatch:!1}}function h(e){return null==e._pf&&(e._pf=c()),e._pf}function M(e){if(null==e._isValid){var t=h(e),a=Pn.call(t.parsedDateParts,function(e){return null!=e}),n=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&a);if(e._strict&&(n=n&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return n;e._isValid=n}return e._isValid}function f(e){var t=l(NaN);return null!=e?m(h(t),e):h(t).userInvalidated=!0,t}function y(e,t){var a,n,s;if(i(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),i(t._i)||(e._i=t._i),i(t._f)||(e._f=t._f),i(t._l)||(e._l=t._l),i(t._strict)||(e._strict=t._strict),i(t._tzm)||(e._tzm=t._tzm),i(t._isUTC)||(e._isUTC=t._isUTC),i(t._offset)||(e._offset=t._offset),i(t._pf)||(e._pf=h(t)),i(t._locale)||(e._locale=t._locale),En.length>0)for(a=0;a<En.length;a++)n=En[a],s=t[n],i(s)||(e[n]=s);return e}function L(e){y(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===Wn&&(Wn=!0,t.updateOffset(this),Wn=!1)}function Y(e){return e instanceof L||null!=e&&null!=e._isAMomentObject}function p(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function k(e){var t=+e,a=0;return 0!==t&&isFinite(t)&&(a=p(t)),a}function D(e,t,a){var n,s=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),i=0;for(n=0;n<s;n++)(a&&e[n]!==t[n]||!a&&k(e[n])!==k(t[n]))&&i++;return i+r}function g(e){!1===t.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function T(e,a){var n=!0;return m(function(){if(null!=t.deprecationHandler&&t.deprecationHandler(null,e),n){for(var s,r=[],i=0;i<arguments.length;i++){if(s="","object"==typeof arguments[i]){s+="\n["+i+"] ";for(var d in arguments[0])s+=d+": "+arguments[0][d]+", ";s=s.slice(0,-2)}else s=arguments[i];r.push(s)}g(e+"\nArguments: "+Array.prototype.slice.call(r).join("")+"\n"+(new Error).stack),n=!1}return a.apply(this,arguments)},a)}function w(e,a){null!=t.deprecationHandler&&t.deprecationHandler(e,a),An[e]||(g(a),An[e]=!0)}function v(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function b(e){var t,a;for(a in e)t=e[a],v(t)?this[a]=t:this["_"+a]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)}function S(e,t){var a,n=m({},e);for(a in t)u(t,a)&&(s(e[a])&&s(t[a])?(n[a]={},m(n[a],e[a]),m(n[a],t[a])):null!=t[a]?n[a]=t[a]:delete n[a]);for(a in e)u(e,a)&&!u(t,a)&&s(e[a])&&(n[a]=m({},n[a]));return n}function H(e){null!=e&&this.set(e)}function j(e,t,a){var n=this._calendar[e]||this._calendar.sameElse;return v(n)?n.call(t,a):n}function x(e){var t=this._longDateFormat[e],a=this._longDateFormat[e.toUpperCase()];return t||!a?t:(this._longDateFormat[e]=a.replace(/MMMM|MM|DD|dddd/g,function(e){return e.slice(1)}),this._longDateFormat[e])}function O(){return this._invalidDate}function P(e){return this._ordinal.replace("%d",e)}function E(e,t,a,n){var s=this._relativeTime[a];return v(s)?s(e,t,a,n):s.replace(/%d/i,e)}function W(e,t){var a=this._relativeTime[e>0?"future":"past"];return v(a)?a(t):a.replace(/%s/i,t)}function A(e,t){var a=e.toLowerCase();In[a]=In[a+"s"]=In[t]=e}function F(e){return"string"==typeof e?In[e]||In[e.toLowerCase()]:void 0}function z(e){var t,a,n={};for(a in e)u(e,a)&&(t=F(a))&&(n[t]=e[a]);return n}function N(e,t){Rn[e]=t}function J(e){var t=[];for(var a in e)t.push({unit:a,priority:Rn[a]});return t.sort(function(e,t){return e.priority-t.priority}),t}function C(e,t,a){var n=""+Math.abs(e),s=t-n.length;return(e>=0?a?"+":"":"-")+Math.pow(10,Math.max(0,s)).toString().substr(1)+n}function I(e,t,a,n){var s=n;"string"==typeof n&&(s=function(){return this[n]()}),e&&(Bn[e]=s),t&&(Bn[t[0]]=function(){return C(s.apply(this,arguments),t[1],t[2])}),a&&(Bn[a]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function R(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function G(e){var t,a,n=e.match(Gn);for(t=0,a=n.length;t<a;t++)Bn[n[t]]?n[t]=Bn[n[t]]:n[t]=R(n[t]);return function(t){var s,r="";for(s=0;s<a;s++)r+=v(n[s])?n[s].call(t,e):n[s];return r}}function U(e,t){return e.isValid()?(t=V(t,e.localeData()),Vn[t]=Vn[t]||G(t),Vn[t](e)):e.localeData().invalidDate()}function V(e,t){function a(e){return t.longDateFormat(e)||e}var n=5;for(Un.lastIndex=0;n>=0&&Un.test(e);)e=e.replace(Un,a),Un.lastIndex=0,n-=1;return e}function B(e,t,a){ms[e]=v(t)?t:function(e,n){return e&&a?a:t}}function $(e,t){return u(ms,e)?ms[e](t._strict,t._locale):new RegExp(q(e))}function q(e){return K(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,a,n,s){return t||a||n||s}))}function K(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Z(e,t){var a,n=t;for("string"==typeof e&&(e=[e]),d(t)&&(n=function(e,a){a[t]=k(e)}),a=0;a<e.length;a++)ls[e[a]]=n}function Q(e,t){Z(e,function(e,a,n,s){n._w=n._w||{},t(e,n._w,n,s)})}function X(e,t,a){null!=t&&u(ls,e)&&ls[e](t,a._a,a,e)}function ee(e){return te(e)?366:365}function te(e){return e%4==0&&e%100!=0||e%400==0}function ae(){return te(this.year())}function ne(e,a){return function(n){return null!=n?(re(this,e,n),t.updateOffset(this,a),this):se(this,e)}}function se(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function re(e,t,a){e.isValid()&&!isNaN(a)&&("FullYear"===t&&te(e.year())&&1===e.month()&&29===e.date()?e._d["set"+(e._isUTC?"UTC":"")+t](a,e.month(),_e(a,e.month())):e._d["set"+(e._isUTC?"UTC":"")+t](a))}function ie(e){return e=F(e),v(this[e])?this[e]():this}function de(e,t){if("object"==typeof e){e=z(e);for(var a=J(e),n=0;n<a.length;n++)this[a[n].unit](e[a[n].unit])}else if(e=F(e),v(this[e]))return this[e](t);return this}function oe(e,t){return(e%t+t)%t}function _e(e,t){if(isNaN(e)||isNaN(t))return NaN;var a=oe(t,12);return e+=(t-a)/12,1===a?te(e)?29:28:31-a%7%2}function ue(e,t){return e?n(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Ts).test(t)?"format":"standalone"][e.month()]:n(this._months)?this._months:this._months.standalone}function me(e,t){return e?n(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Ts.test(t)?"format":"standalone"][e.month()]:n(this._monthsShort)?this._monthsShort:this._monthsShort.standalone}function le(e,t,a){var n,s,r,i=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],n=0;n<12;++n)r=l([2e3,n]),this._shortMonthsParse[n]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[n]=this.months(r,"").toLocaleLowerCase();return a?"MMM"===t?(s=Ds.call(this._shortMonthsParse,i),-1!==s?s:null):(s=Ds.call(this._longMonthsParse,i),-1!==s?s:null):"MMM"===t?-1!==(s=Ds.call(this._shortMonthsParse,i))?s:(s=Ds.call(this._longMonthsParse,i),-1!==s?s:null):-1!==(s=Ds.call(this._longMonthsParse,i))?s:(s=Ds.call(this._shortMonthsParse,i),-1!==s?s:null)}function ce(e,t,a){var n,s,r;if(this._monthsParseExact)return le.call(this,e,t,a);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),n=0;n<12;n++){if(s=l([2e3,n]),a&&!this._longMonthsParse[n]&&(this._longMonthsParse[n]=new RegExp("^"+this.months(s,"").replace(".","")+"$","i"),this._shortMonthsParse[n]=new RegExp("^"+this.monthsShort(s,"").replace(".","")+"$","i")),a||this._monthsParse[n]||(r="^"+this.months(s,"")+"|^"+this.monthsShort(s,""),this._monthsParse[n]=new RegExp(r.replace(".",""),"i")),a&&"MMMM"===t&&this._longMonthsParse[n].test(e))return n;if(a&&"MMM"===t&&this._shortMonthsParse[n].test(e))return n;if(!a&&this._monthsParse[n].test(e))return n}}function he(e,t){var a;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=k(t);else if(t=e.localeData().monthsParse(t),!d(t))return e;return a=Math.min(e.date(),_e(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,a),e}function Me(e){return null!=e?(he(this,e),t.updateOffset(this,!0),this):se(this,"Month")}function fe(){return _e(this.year(),this.month())}function ye(e){return this._monthsParseExact?(u(this,"_monthsRegex")||Ye.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,"_monthsShortRegex")||(this._monthsShortRegex=bs),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)}function Le(e){return this._monthsParseExact?(u(this,"_monthsRegex")||Ye.call(this),e?this._monthsStrictRegex:this._monthsRegex):(u(this,"_monthsRegex")||(this._monthsRegex=Ss),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)}function Ye(){function e(e,t){return t.length-e.length}var t,a,n=[],s=[],r=[];for(t=0;t<12;t++)a=l([2e3,t]),n.push(this.monthsShort(a,"")),s.push(this.months(a,"")),r.push(this.months(a,"")),r.push(this.monthsShort(a,""));for(n.sort(e),s.sort(e),r.sort(e),t=0;t<12;t++)n[t]=K(n[t]),s[t]=K(s[t]);for(t=0;t<24;t++)r[t]=K(r[t]);this._monthsRegex=new RegExp("^("+r.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+n.join("|")+")","i")}function pe(e,t,a,n,s,r,i){var d;return e<100&&e>=0?(d=new Date(e+400,t,a,n,s,r,i),isFinite(d.getFullYear())&&d.setFullYear(e)):d=new Date(e,t,a,n,s,r,i),d}function ke(e){var t;if(e<100&&e>=0){var a=Array.prototype.slice.call(arguments);a[0]=e+400,t=new Date(Date.UTC.apply(null,a)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function De(e,t,a){var n=7+t-a;return-(7+ke(e,0,n).getUTCDay()-t)%7+n-1}function ge(e,t,a,n,s){var r,i,d=(7+a-n)%7,o=De(e,n,s),_=1+7*(t-1)+d+o;return _<=0?(r=e-1,i=ee(r)+_):_>ee(e)?(r=e+1,i=_-ee(e)):(r=e,i=_),{year:r,dayOfYear:i}}function Te(e,t,a){var n,s,r=De(e.year(),t,a),i=Math.floor((e.dayOfYear()-r-1)/7)+1;return i<1?(s=e.year()-1,n=i+we(s,t,a)):i>we(e.year(),t,a)?(n=i-we(e.year(),t,a),s=e.year()+1):(s=e.year(),n=i),{week:n,year:s}}function we(e,t,a){var n=De(e,t,a),s=De(e+1,t,a);return(ee(e)-n+s)/7}function ve(e){return Te(e,this._week.dow,this._week.doy).week}function be(){return this._week.dow}function Se(){return this._week.doy}function He(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function je(e){var t=Te(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function xe(e,t){return"string"!=typeof e?e:isNaN(e)?(e=t.weekdaysParse(e),"number"==typeof e?e:null):parseInt(e,10)}function Oe(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Pe(e,t){return e.slice(t,7).concat(e.slice(0,t))}function Ee(e,t){var a=n(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Pe(a,this._week.dow):e?a[e.day()]:a}function We(e){return!0===e?Pe(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Ae(e){return!0===e?Pe(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Fe(e,t,a){var n,s,r,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],n=0;n<7;++n)r=l([2e3,1]).day(n),this._minWeekdaysParse[n]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[n]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[n]=this.weekdays(r,"").toLocaleLowerCase();return a?"dddd"===t?(s=Ds.call(this._weekdaysParse,i),-1!==s?s:null):"ddd"===t?(s=Ds.call(this._shortWeekdaysParse,i),-1!==s?s:null):(s=Ds.call(this._minWeekdaysParse,i),-1!==s?s:null):"dddd"===t?-1!==(s=Ds.call(this._weekdaysParse,i))?s:-1!==(s=Ds.call(this._shortWeekdaysParse,i))?s:(s=Ds.call(this._minWeekdaysParse,i),-1!==s?s:null):"ddd"===t?-1!==(s=Ds.call(this._shortWeekdaysParse,i))?s:-1!==(s=Ds.call(this._weekdaysParse,i))?s:(s=Ds.call(this._minWeekdaysParse,i),-1!==s?s:null):-1!==(s=Ds.call(this._minWeekdaysParse,i))?s:-1!==(s=Ds.call(this._weekdaysParse,i))?s:(s=Ds.call(this._shortWeekdaysParse,i),-1!==s?s:null)}function ze(e,t,a){var n,s,r;if(this._weekdaysParseExact)return Fe.call(this,e,t,a);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),n=0;n<7;n++){if(s=l([2e3,1]).day(n),a&&!this._fullWeekdaysParse[n]&&(this._fullWeekdaysParse[n]=new RegExp("^"+this.weekdays(s,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[n]=new RegExp("^"+this.weekdaysShort(s,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[n]=new RegExp("^"+this.weekdaysMin(s,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[n]||(r="^"+this.weekdays(s,"")+"|^"+this.weekdaysShort(s,"")+"|^"+this.weekdaysMin(s,""),this._weekdaysParse[n]=new RegExp(r.replace(".",""),"i")),a&&"dddd"===t&&this._fullWeekdaysParse[n].test(e))return n;if(a&&"ddd"===t&&this._shortWeekdaysParse[n].test(e))return n;if(a&&"dd"===t&&this._minWeekdaysParse[n].test(e))return n;if(!a&&this._weekdaysParse[n].test(e))return n}}function Ne(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=xe(e,this.localeData()),this.add(e-t,"d")):t}function Je(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function Ce(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Oe(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Ie(e){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||Ue.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,"_weekdaysRegex")||(this._weekdaysRegex=Ps),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Re(e){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||Ue.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Es),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Ge(e){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||Ue.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ws),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Ue(){function e(e,t){return t.length-e.length}var t,a,n,s,r,i=[],d=[],o=[],_=[];for(t=0;t<7;t++)a=l([2e3,1]).day(t),n=this.weekdaysMin(a,""),s=this.weekdaysShort(a,""),r=this.weekdays(a,""),i.push(n),d.push(s),o.push(r),_.push(n),_.push(s),_.push(r);for(i.sort(e),d.sort(e),o.sort(e),_.sort(e),t=0;t<7;t++)d[t]=K(d[t]),o[t]=K(o[t]),_[t]=K(_[t]);this._weekdaysRegex=new RegExp("^("+_.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+i.join("|")+")","i")}function Ve(){return this.hours()%12||12}function Be(){return this.hours()||24}function $e(e,t){I(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function qe(e,t){return t._meridiemParse}function Ke(e){return"p"===(e+"").toLowerCase().charAt(0)}function Ze(e,t,a){return e>11?a?"pm":"PM":a?"am":"AM"}function Qe(e){return e?e.toLowerCase().replace("_","-"):e}function Xe(e){for(var t,a,n,s,r=0;r<e.length;){for(s=Qe(e[r]).split("-"),t=s.length,a=Qe(e[r+1]),a=a?a.split("-"):null;t>0;){if(n=et(s.slice(0,t).join("-")))return n;if(a&&a.length>=t&&D(s,a,!0)>=t-1)break;t--}r++}return As}function et(t){var n=null;if(!Js[t]&&void 0!==e&&e&&e.exports)try{n=As._abbr;a(44)("./"+t),tt(n)}catch(e){}return Js[t]}function tt(e,t){var a;return e&&(a=i(t)?st(e):at(e,t),a?As=a:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),As._abbr}function at(e,t){if(null!==t){var a,n=Ns;if(t.abbr=e,null!=Js[e])w("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=Js[e]._config;else if(null!=t.parentLocale)if(null!=Js[t.parentLocale])n=Js[t.parentLocale]._config;else{if(null==(a=et(t.parentLocale)))return Cs[t.parentLocale]||(Cs[t.parentLocale]=[]),Cs[t.parentLocale].push({name:e,config:t}),null;n=a._config}return Js[e]=new H(S(n,t)),Cs[e]&&Cs[e].forEach(function(e){at(e.name,e.config)}),tt(e),Js[e]}return delete Js[e],null}function nt(e,t){if(null!=t){var a,n,s=Ns;n=et(e),null!=n&&(s=n._config),t=S(s,t),a=new H(t),a.parentLocale=Js[e],Js[e]=a,tt(e)}else null!=Js[e]&&(null!=Js[e].parentLocale?Js[e]=Js[e].parentLocale:null!=Js[e]&&delete Js[e]);return Js[e]}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return As;if(!n(e)){if(t=et(e))return t;e=[e]}return Xe(e)}function rt(){return Fn(Js)}function it(e){var t,a=e._a;return a&&-2===h(e).overflow&&(t=a[hs]<0||a[hs]>11?hs:a[Ms]<1||a[Ms]>_e(a[cs],a[hs])?Ms:a[fs]<0||a[fs]>24||24===a[fs]&&(0!==a[ys]||0!==a[Ls]||0!==a[Ys])?fs:a[ys]<0||a[ys]>59?ys:a[Ls]<0||a[Ls]>59?Ls:a[Ys]<0||a[Ys]>999?Ys:-1,h(e)._overflowDayOfYear&&(t<cs||t>Ms)&&(t=Ms),h(e)._overflowWeeks&&-1===t&&(t=ps),h(e)._overflowWeekday&&-1===t&&(t=ks),h(e).overflow=t),e}function dt(e,t,a){return null!=e?e:null!=t?t:a}function ot(e){var a=new Date(t.now());return e._useUTC?[a.getUTCFullYear(),a.getUTCMonth(),a.getUTCDate()]:[a.getFullYear(),a.getMonth(),a.getDate()]}function _t(e){var t,a,n,s,r,i=[];if(!e._d){for(n=ot(e),e._w&&null==e._a[Ms]&&null==e._a[hs]&&ut(e),null!=e._dayOfYear&&(r=dt(e._a[cs],n[cs]),(e._dayOfYear>ee(r)||0===e._dayOfYear)&&(h(e)._overflowDayOfYear=!0),a=ke(r,0,e._dayOfYear),e._a[hs]=a.getUTCMonth(),e._a[Ms]=a.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=i[t]=n[t];for(;t<7;t++)e._a[t]=i[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[fs]&&0===e._a[ys]&&0===e._a[Ls]&&0===e._a[Ys]&&(e._nextDay=!0,e._a[fs]=0),e._d=(e._useUTC?ke:pe).apply(null,i),s=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[fs]=24),e._w&&void 0!==e._w.d&&e._w.d!==s&&(h(e).weekdayMismatch=!0)}}function ut(e){var t,a,n,s,r,i,d,o;if(t=e._w,null!=t.GG||null!=t.W||null!=t.E)r=1,i=4,a=dt(t.GG,e._a[cs],Te(bt(),1,4).year),n=dt(t.W,1),((s=dt(t.E,1))<1||s>7)&&(o=!0);else{r=e._locale._week.dow,i=e._locale._week.doy;var _=Te(bt(),r,i);a=dt(t.gg,e._a[cs],_.year),n=dt(t.w,_.week),null!=t.d?((s=t.d)<0||s>6)&&(o=!0):null!=t.e?(s=t.e+r,(t.e<0||t.e>6)&&(o=!0)):s=r}n<1||n>we(a,r,i)?h(e)._overflowWeeks=!0:null!=o?h(e)._overflowWeekday=!0:(d=ge(a,n,s,r,i),e._a[cs]=d.year,e._dayOfYear=d.dayOfYear)}function mt(e){var t,a,n,s,r,i,d=e._i,o=Is.exec(d)||Rs.exec(d);if(o){for(h(e).iso=!0,t=0,a=Us.length;t<a;t++)if(Us[t][1].exec(o[1])){s=Us[t][0],n=!1!==Us[t][2];break}if(null==s)return void(e._isValid=!1);if(o[3]){for(t=0,a=Vs.length;t<a;t++)if(Vs[t][1].exec(o[3])){r=(o[2]||" ")+Vs[t][0];break}if(null==r)return void(e._isValid=!1)}if(!n&&null!=r)return void(e._isValid=!1);if(o[4]){if(!Gs.exec(o[4]))return void(e._isValid=!1);i="Z"}e._f=s+(r||"")+(i||""),Yt(e)}else e._isValid=!1}function lt(e,t,a,n,s,r){var i=[ct(e),vs.indexOf(t),parseInt(a,10),parseInt(n,10),parseInt(s,10)];return r&&i.push(parseInt(r,10)),i}function ct(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}function ht(e){return e.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,"")}function Mt(e,t,a){if(e){if(xs.indexOf(e)!==new Date(t[0],t[1],t[2]).getDay())return h(a).weekdayMismatch=!0,a._isValid=!1,!1}return!0}function ft(e,t,a){if(e)return qs[e];if(t)return 0;var n=parseInt(a,10),s=n%100;return(n-s)/100*60+s}function yt(e){var t=$s.exec(ht(e._i));if(t){var a=lt(t[4],t[3],t[2],t[5],t[6],t[7]);if(!Mt(t[1],a,e))return;e._a=a,e._tzm=ft(t[8],t[9],t[10]),e._d=ke.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),h(e).rfc2822=!0}else e._isValid=!1}function Lt(e){var a=Bs.exec(e._i);if(null!==a)return void(e._d=new Date(+a[1]));mt(e),!1===e._isValid&&(delete e._isValid,yt(e),!1===e._isValid&&(delete e._isValid,t.createFromInputFallback(e)))}function Yt(e){if(e._f===t.ISO_8601)return void mt(e);if(e._f===t.RFC_2822)return void yt(e);e._a=[],h(e).empty=!0;var a,n,s,r,i,d=""+e._i,o=d.length,_=0;for(s=V(e._f,e._locale).match(Gn)||[],a=0;a<s.length;a++)r=s[a],n=(d.match($(r,e))||[])[0],n&&(i=d.substr(0,d.indexOf(n)),i.length>0&&h(e).unusedInput.push(i),d=d.slice(d.indexOf(n)+n.length),_+=n.length),Bn[r]?(n?h(e).empty=!1:h(e).unusedTokens.push(r),X(r,n,e)):e._strict&&!n&&h(e).unusedTokens.push(r);h(e).charsLeftOver=o-_,d.length>0&&h(e).unusedInput.push(d),e._a[fs]<=12&&!0===h(e).bigHour&&e._a[fs]>0&&(h(e).bigHour=void 0),h(e).parsedDateParts=e._a.slice(0),h(e).meridiem=e._meridiem,e._a[fs]=pt(e._locale,e._a[fs],e._meridiem),_t(e),it(e)}function pt(e,t,a){var n;return null==a?t:null!=e.meridiemHour?e.meridiemHour(t,a):null!=e.isPM?(n=e.isPM(a),n&&t<12&&(t+=12),n||12!==t||(t=0),t):t}function kt(e){var t,a,n,s,r;if(0===e._f.length)return h(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;s<e._f.length;s++)r=0,t=y({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[s],Yt(t),M(t)&&(r+=h(t).charsLeftOver,r+=10*h(t).unusedTokens.length,h(t).score=r,(null==n||r<n)&&(n=r,a=t));m(e,a||t)}function Dt(e){if(!e._d){var t=z(e._i);e._a=_([t.year,t.month,t.day||t.date,t.hour,t.minute,t.second,t.millisecond],function(e){return e&&parseInt(e,10)}),_t(e)}}function gt(e){var t=new L(it(Tt(e)));return t._nextDay&&(t.add(1,"d"),t._nextDay=void 0),t}function Tt(e){var t=e._i,a=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===a&&""===t?f({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),Y(t)?new L(it(t)):(o(t)?e._d=t:n(a)?kt(e):a?Yt(e):wt(e),M(e)||(e._d=null),e))}function wt(e){var a=e._i;i(a)?e._d=new Date(t.now()):o(a)?e._d=new Date(a.valueOf()):"string"==typeof a?Lt(e):n(a)?(e._a=_(a.slice(0),function(e){return parseInt(e,10)}),_t(e)):s(a)?Dt(e):d(a)?e._d=new Date(a):t.createFromInputFallback(e)}function vt(e,t,a,i,d){var o={};return!0!==a&&!1!==a||(i=a,a=void 0),(s(e)&&r(e)||n(e)&&0===e.length)&&(e=void 0),o._isAMomentObject=!0,o._useUTC=o._isUTC=d,o._l=a,o._i=e,o._f=t,o._strict=i,gt(o)}function bt(e,t,a,n){return vt(e,t,a,n,!1)}function St(e,t){var a,s;if(1===t.length&&n(t[0])&&(t=t[0]),!t.length)return bt();for(a=t[0],s=1;s<t.length;++s)t[s].isValid()&&!t[s][e](a)||(a=t[s]);return a}function Ht(){return St("isBefore",[].slice.call(arguments,0))}function jt(){return St("isAfter",[].slice.call(arguments,0))}function xt(e){for(var t in e)if(-1===Ds.call(Xs,t)||null!=e[t]&&isNaN(e[t]))return!1;for(var a=!1,n=0;n<Xs.length;++n)if(e[Xs[n]]){if(a)return!1;parseFloat(e[Xs[n]])!==k(e[Xs[n]])&&(a=!0)}return!0}function Ot(){return this._isValid}function Pt(){return Qt(NaN)}function Et(e){var t=z(e),a=t.year||0,n=t.quarter||0,s=t.month||0,r=t.week||t.isoWeek||0,i=t.day||0,d=t.hour||0,o=t.minute||0,_=t.second||0,u=t.millisecond||0;this._isValid=xt(t),this._milliseconds=+u+1e3*_+6e4*o+1e3*d*60*60,this._days=+i+7*r,this._months=+s+3*n+12*a,this._data={},this._locale=st(),this._bubble()}function Wt(e){return e instanceof Et}function At(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function Ft(e,t){I(e,0,0,function(){var e=this.utcOffset(),a="+";return e<0&&(e=-e,a="-"),a+C(~~(e/60),2)+t+C(~~e%60,2)})}function zt(e,t){var a=(t||"").match(e);if(null===a)return null;var n=a[a.length-1]||[],s=(n+"").match(er)||["-",0,0],r=60*s[1]+k(s[2]);return 0===r?0:"+"===s[0]?r:-r}function Nt(e,a){var n,s;return a._isUTC?(n=a.clone(),s=(Y(e)||o(e)?e.valueOf():bt(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+s),t.updateOffset(n,!1),n):bt(e).local()}function Jt(e){return 15*-Math.round(e._d.getTimezoneOffset()/15)}function Ct(e,a,n){var s,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if("string"==typeof e){if(null===(e=zt(os,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&a&&(s=Jt(this)),this._offset=e,this._isUTC=!0,null!=s&&this.add(s,"m"),r!==e&&(!a||this._changeInProgress?na(this,Qt(e-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,t.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Jt(this)}function It(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}function Rt(e){return this.utcOffset(0,e)}function Gt(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Jt(this),"m")),this}function Ut(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=zt(ds,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this}function Vt(e){return!!this.isValid()&&(e=e?bt(e).utcOffset():0,(this.utcOffset()-e)%60==0)}function Bt(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function $t(){if(!i(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),e=Tt(e),e._a){var t=e._isUTC?l(e._a):bt(e._a);this._isDSTShifted=this.isValid()&&D(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function qt(){return!!this.isValid()&&!this._isUTC}function Kt(){return!!this.isValid()&&this._isUTC}function Zt(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Qt(e,t){var a,n,s,r=e,i=null;return Wt(e)?r={ms:e._milliseconds,d:e._days,M:e._months}:d(e)?(r={},t?r[t]=e:r.milliseconds=e):(i=tr.exec(e))?(a="-"===i[1]?-1:1,r={y:0,d:k(i[Ms])*a,h:k(i[fs])*a,m:k(i[ys])*a,s:k(i[Ls])*a,ms:k(At(1e3*i[Ys]))*a}):(i=ar.exec(e))?(a="-"===i[1]?-1:1,r={y:Xt(i[2],a),M:Xt(i[3],a),w:Xt(i[4],a),d:Xt(i[5],a),h:Xt(i[6],a),m:Xt(i[7],a),s:Xt(i[8],a)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(s=ta(bt(r.from),bt(r.to)),r={},r.ms=s.milliseconds,r.M=s.months),n=new Et(r),Wt(e)&&u(e,"_locale")&&(n._locale=e._locale),n}function Xt(e,t){var a=e&&parseFloat(e.replace(",","."));return(isNaN(a)?0:a)*t}function ea(e,t){var a={};return a.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(a.months,"M").isAfter(t)&&--a.months,a.milliseconds=+t-+e.clone().add(a.months,"M"),a}function ta(e,t){var a;return e.isValid()&&t.isValid()?(t=Nt(t,e),e.isBefore(t)?a=ea(e,t):(a=ea(t,e),a.milliseconds=-a.milliseconds,a.months=-a.months),a):{milliseconds:0,months:0}}function aa(e,t){return function(a,n){var s,r;return null===n||isNaN(+n)||(w(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),r=a,a=n,n=r),a="string"==typeof a?+a:a,s=Qt(a,n),na(this,s,e),this}}function na(e,a,n,s){var r=a._milliseconds,i=At(a._days),d=At(a._months);e.isValid()&&(s=null==s||s,d&&he(e,se(e,"Month")+d*n),i&&re(e,"Date",se(e,"Date")+i*n),r&&e._d.setTime(e._d.valueOf()+r*n),s&&t.updateOffset(e,i||d))}function sa(e,t){var a=e.diff(t,"days",!0);return a<-6?"sameElse":a<-1?"lastWeek":a<0?"lastDay":a<1?"sameDay":a<2?"nextDay":a<7?"nextWeek":"sameElse"}function ra(e,a){var n=e||bt(),s=Nt(n,this).startOf("day"),r=t.calendarFormat(this,s)||"sameElse",i=a&&(v(a[r])?a[r].call(this,n):a[r]);return this.format(i||this.localeData().calendar(r,this,bt(n)))}function ia(){return new L(this)}function da(e,t){var a=Y(e)?e:bt(e);return!(!this.isValid()||!a.isValid())&&(t=F(t)||"millisecond", "millisecond"===t?this.valueOf()>a.valueOf():a.valueOf()<this.clone().startOf(t).valueOf())}function oa(e,t){var a=Y(e)?e:bt(e);return!(!this.isValid()||!a.isValid())&&(t=F(t)||"millisecond","millisecond"===t?this.valueOf()<a.valueOf():this.clone().endOf(t).valueOf()<a.valueOf())}function _a(e,t,a,n){var s=Y(e)?e:bt(e),r=Y(t)?t:bt(t);return!!(this.isValid()&&s.isValid()&&r.isValid())&&(n=n||"()",("("===n[0]?this.isAfter(s,a):!this.isBefore(s,a))&&(")"===n[1]?this.isBefore(r,a):!this.isAfter(r,a)))}function ua(e,t){var a,n=Y(e)?e:bt(e);return!(!this.isValid()||!n.isValid())&&(t=F(t)||"millisecond","millisecond"===t?this.valueOf()===n.valueOf():(a=n.valueOf(),this.clone().startOf(t).valueOf()<=a&&a<=this.clone().endOf(t).valueOf()))}function ma(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function la(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function ca(e,t,a){var n,s,r;if(!this.isValid())return NaN;if(n=Nt(e,this),!n.isValid())return NaN;switch(s=6e4*(n.utcOffset()-this.utcOffset()),t=F(t)){case"year":r=ha(this,n)/12;break;case"month":r=ha(this,n);break;case"quarter":r=ha(this,n)/3;break;case"second":r=(this-n)/1e3;break;case"minute":r=(this-n)/6e4;break;case"hour":r=(this-n)/36e5;break;case"day":r=(this-n-s)/864e5;break;case"week":r=(this-n-s)/6048e5;break;default:r=this-n}return a?r:p(r)}function ha(e,t){var a,n,s=12*(t.year()-e.year())+(t.month()-e.month()),r=e.clone().add(s,"months");return t-r<0?(a=e.clone().add(s-1,"months"),n=(t-r)/(r-a)):(a=e.clone().add(s+1,"months"),n=(t-r)/(a-r)),-(s+n)||0}function Ma(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function fa(e){if(!this.isValid())return null;var t=!0!==e,a=t?this.clone().utc():this;return a.year()<0||a.year()>9999?U(a,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):v(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(a,"Z")):U(a,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ya(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="";this.isLocal()||(e=0===this.utcOffset()?"moment.utc":"moment.parseZone",t="Z");var a="["+e+'("]',n=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",s=t+'[")]';return this.format(a+n+"-MM-DD[T]HH:mm:ss.SSS"+s)}function La(e){e||(e=this.isUtc()?t.defaultFormatUtc:t.defaultFormat);var a=U(this,e);return this.localeData().postformat(a)}function Ya(e,t){return this.isValid()&&(Y(e)&&e.isValid()||bt(e).isValid())?Qt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function pa(e){return this.from(bt(),e)}function ka(e,t){return this.isValid()&&(Y(e)&&e.isValid()||bt(e).isValid())?Qt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Da(e){return this.to(bt(),e)}function ga(e){var t;return void 0===e?this._locale._abbr:(t=st(e),null!=t&&(this._locale=t),this)}function Ta(){return this._locale}function wa(e,t){return(e%t+t)%t}function va(e,t,a){return e<100&&e>=0?new Date(e+400,t,a)-_r:new Date(e,t,a).valueOf()}function ba(e,t,a){return e<100&&e>=0?Date.UTC(e+400,t,a)-_r:Date.UTC(e,t,a)}function Sa(e){var a;if(void 0===(e=F(e))||"millisecond"===e||!this.isValid())return this;var n=this._isUTC?ba:va;switch(e){case"year":a=n(this.year(),0,1);break;case"quarter":a=n(this.year(),this.month()-this.month()%3,1);break;case"month":a=n(this.year(),this.month(),1);break;case"week":a=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":a=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":a=n(this.year(),this.month(),this.date());break;case"hour":a=this._d.valueOf(),a-=wa(a+(this._isUTC?0:this.utcOffset()*dr),or);break;case"minute":a=this._d.valueOf(),a-=wa(a,dr);break;case"second":a=this._d.valueOf(),a-=wa(a,ir)}return this._d.setTime(a),t.updateOffset(this,!0),this}function Ha(e){var a;if(void 0===(e=F(e))||"millisecond"===e||!this.isValid())return this;var n=this._isUTC?ba:va;switch(e){case"year":a=n(this.year()+1,0,1)-1;break;case"quarter":a=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":a=n(this.year(),this.month()+1,1)-1;break;case"week":a=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":a=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":a=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":a=this._d.valueOf(),a+=or-wa(a+(this._isUTC?0:this.utcOffset()*dr),or)-1;break;case"minute":a=this._d.valueOf(),a+=dr-wa(a,dr)-1;break;case"second":a=this._d.valueOf(),a+=ir-wa(a,ir)-1}return this._d.setTime(a),t.updateOffset(this,!0),this}function ja(){return this._d.valueOf()-6e4*(this._offset||0)}function xa(){return Math.floor(this.valueOf()/1e3)}function Oa(){return new Date(this.valueOf())}function Pa(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function Ea(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function Wa(){return this.isValid()?this.toISOString():null}function Aa(){return M(this)}function Fa(){return m({},h(this))}function za(){return h(this).overflow}function Na(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Ja(e,t){I(0,[e,e.length],0,t)}function Ca(e){return Ua.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Ia(e){return Ua.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function Ra(){return we(this.year(),1,4)}function Ga(){var e=this.localeData()._week;return we(this.year(),e.dow,e.doy)}function Ua(e,t,a,n,s){var r;return null==e?Te(this,n,s).year:(r=we(e,n,s),t>r&&(t=r),Va.call(this,e,t,a,n,s))}function Va(e,t,a,n,s){var r=ge(e,t,a,n,s),i=ke(r.year,0,r.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}function Ba(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}function $a(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}function qa(e,t){t[Ys]=k(1e3*("0."+e))}function Ka(){return this._isUTC?"UTC":""}function Za(){return this._isUTC?"Coordinated Universal Time":""}function Qa(e){return bt(1e3*e)}function Xa(){return bt.apply(null,arguments).parseZone()}function en(e){return e}function tn(e,t,a,n){var s=st(),r=l().set(n,t);return s[a](r,e)}function an(e,t,a){if(d(e)&&(t=e,e=void 0),e=e||"",null!=t)return tn(e,t,a,"month");var n,s=[];for(n=0;n<12;n++)s[n]=tn(e,n,a,"month");return s}function nn(e,t,a,n){"boolean"==typeof e?(d(t)&&(a=t,t=void 0),t=t||""):(t=e,a=t,e=!1,d(t)&&(a=t,t=void 0),t=t||"");var s=st(),r=e?s._week.dow:0;if(null!=a)return tn(t,(a+r)%7,n,"day");var i,o=[];for(i=0;i<7;i++)o[i]=tn(t,(i+r)%7,n,"day");return o}function sn(e,t){return an(e,t,"months")}function rn(e,t){return an(e,t,"monthsShort")}function dn(e,t,a){return nn(e,t,a,"weekdays")}function on(e,t,a){return nn(e,t,a,"weekdaysShort")}function _n(e,t,a){return nn(e,t,a,"weekdaysMin")}function un(){var e=this._data;return this._milliseconds=yr(this._milliseconds),this._days=yr(this._days),this._months=yr(this._months),e.milliseconds=yr(e.milliseconds),e.seconds=yr(e.seconds),e.minutes=yr(e.minutes),e.hours=yr(e.hours),e.months=yr(e.months),e.years=yr(e.years),this}function mn(e,t,a,n){var s=Qt(t,a);return e._milliseconds+=n*s._milliseconds,e._days+=n*s._days,e._months+=n*s._months,e._bubble()}function ln(e,t){return mn(this,e,t,1)}function cn(e,t){return mn(this,e,t,-1)}function hn(e){return e<0?Math.floor(e):Math.ceil(e)}function Mn(){var e,t,a,n,s,r=this._milliseconds,i=this._days,d=this._months,o=this._data;return r>=0&&i>=0&&d>=0||r<=0&&i<=0&&d<=0||(r+=864e5*hn(yn(d)+i),i=0,d=0),o.milliseconds=r%1e3,e=p(r/1e3),o.seconds=e%60,t=p(e/60),o.minutes=t%60,a=p(t/60),o.hours=a%24,i+=p(a/24),s=p(fn(i)),d+=s,i-=hn(yn(s)),n=p(d/12),d%=12,o.days=i,o.months=d,o.years=n,this}function fn(e){return 4800*e/146097}function yn(e){return 146097*e/4800}function Ln(e){if(!this.isValid())return NaN;var t,a,n=this._milliseconds;if("month"===(e=F(e))||"quarter"===e||"year"===e)switch(t=this._days+n/864e5,a=this._months+fn(t),e){case"month":return a;case"quarter":return a/3;case"year":return a/12}else switch(t=this._days+Math.round(yn(this._months)),e){case"week":return t/7+n/6048e5;case"day":return t+n/864e5;case"hour":return 24*t+n/36e5;case"minute":return 1440*t+n/6e4;case"second":return 86400*t+n/1e3;case"millisecond":return Math.floor(864e5*t)+n;default:throw new Error("Unknown unit "+e)}}function Yn(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN}function pn(e){return function(){return this.as(e)}}function kn(){return Qt(this)}function Dn(e){return e=F(e),this.isValid()?this[e+"s"]():NaN}function gn(e){return function(){return this.isValid()?this._data[e]:NaN}}function Tn(){return p(this.days()/7)}function wn(e,t,a,n,s){return s.relativeTime(t||1,!!a,e,n)}function vn(e,t,a){var n=Qt(e).abs(),s=Er(n.as("s")),r=Er(n.as("m")),i=Er(n.as("h")),d=Er(n.as("d")),o=Er(n.as("M")),_=Er(n.as("y")),u=s<=Wr.ss&&["s",s]||s<Wr.s&&["ss",s]||r<=1&&["m"]||r<Wr.m&&["mm",r]||i<=1&&["h"]||i<Wr.h&&["hh",i]||d<=1&&["d"]||d<Wr.d&&["dd",d]||o<=1&&["M"]||o<Wr.M&&["MM",o]||_<=1&&["y"]||["yy",_];return u[2]=t,u[3]=+e>0,u[4]=a,wn.apply(null,u)}function bn(e){return void 0===e?Er:"function"==typeof e&&(Er=e,!0)}function Sn(e,t){return void 0!==Wr[e]&&(void 0===t?Wr[e]:(Wr[e]=t,"s"===e&&(Wr.ss=t-1),!0))}function Hn(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),a=vn(this,!e,t);return e&&(a=t.pastFuture(+this,a)),t.postformat(a)}function jn(e){return(e>0)-(e<0)||+e}function xn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,a,n=Ar(this._milliseconds)/1e3,s=Ar(this._days),r=Ar(this._months);e=p(n/60),t=p(e/60),n%=60,e%=60,a=p(r/12),r%=12;var i=a,d=r,o=s,_=t,u=e,m=n?n.toFixed(3).replace(/\.?0+$/,""):"",l=this.asSeconds();if(!l)return"P0D";var c=l<0?"-":"",h=jn(this._months)!==jn(l)?"-":"",M=jn(this._days)!==jn(l)?"-":"",f=jn(this._milliseconds)!==jn(l)?"-":"";return c+"P"+(i?h+i+"Y":"")+(d?h+d+"M":"")+(o?M+o+"D":"")+(_||u||m?"T":"")+(_?f+_+"H":"")+(u?f+u+"M":"")+(m?f+m+"S":"")}var On,Pn;Pn=Array.prototype.some?Array.prototype.some:function(e){for(var t=Object(this),a=t.length>>>0,n=0;n<a;n++)if(n in t&&e.call(this,t[n],n,t))return!0;return!1};var En=t.momentProperties=[],Wn=!1,An={};t.suppressDeprecationWarnings=!1,t.deprecationHandler=null;var Fn;Fn=Object.keys?Object.keys:function(e){var t,a=[];for(t in e)u(e,t)&&a.push(t);return a};var zn={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},Nn={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},Jn=/\d{1,2}/,Cn={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},In={},Rn={},Gn=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Un=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Vn={},Bn={},$n=/\d/,qn=/\d\d/,Kn=/\d{3}/,Zn=/\d{4}/,Qn=/[+-]?\d{6}/,Xn=/\d\d?/,es=/\d\d\d\d?/,ts=/\d\d\d\d\d\d?/,as=/\d{1,3}/,ns=/\d{1,4}/,ss=/[+-]?\d{1,6}/,rs=/\d+/,is=/[+-]?\d+/,ds=/Z|[+-]\d\d:?\d\d/gi,os=/Z|[+-]\d\d(?::?\d\d)?/gi,_s=/[+-]?\d+(\.\d{1,3})?/,us=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ms={},ls={},cs=0,hs=1,Ms=2,fs=3,ys=4,Ls=5,Ys=6,ps=7,ks=8;I("Y",0,0,function(){var e=this.year();return e<=9999?""+e:"+"+e}),I(0,["YY",2],0,function(){return this.year()%100}),I(0,["YYYY",4],0,"year"),I(0,["YYYYY",5],0,"year"),I(0,["YYYYYY",6,!0],0,"year"),A("year","y"),N("year",1),B("Y",is),B("YY",Xn,qn),B("YYYY",ns,Zn),B("YYYYY",ss,Qn),B("YYYYYY",ss,Qn),Z(["YYYYY","YYYYYY"],cs),Z("YYYY",function(e,a){a[cs]=2===e.length?t.parseTwoDigitYear(e):k(e)}),Z("YY",function(e,a){a[cs]=t.parseTwoDigitYear(e)}),Z("Y",function(e,t){t[cs]=parseInt(e,10)}),t.parseTwoDigitYear=function(e){return k(e)+(k(e)>68?1900:2e3)};var Ds,gs=ne("FullYear",!0);Ds=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},I("M",["MM",2],"Mo",function(){return this.month()+1}),I("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),I("MMMM",0,0,function(e){return this.localeData().months(this,e)}),A("month","M"),N("month",8),B("M",Xn),B("MM",Xn,qn),B("MMM",function(e,t){return t.monthsShortRegex(e)}),B("MMMM",function(e,t){return t.monthsRegex(e)}),Z(["M","MM"],function(e,t){t[hs]=k(e)-1}),Z(["MMM","MMMM"],function(e,t,a,n){var s=a._locale.monthsParse(e,n,a._strict);null!=s?t[hs]=s:h(a).invalidMonth=e});var Ts=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,ws="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),vs="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),bs=us,Ss=us;I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),A("week","w"),A("isoWeek","W"),N("week",5),N("isoWeek",5),B("w",Xn),B("ww",Xn,qn),B("W",Xn),B("WW",Xn,qn),Q(["w","ww","W","WW"],function(e,t,a,n){t[n.substr(0,1)]=k(e)});var Hs={dow:0,doy:6};I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),I("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),A("day","d"),A("weekday","e"),A("isoWeekday","E"),N("day",11),N("weekday",11),N("isoWeekday",11),B("d",Xn),B("e",Xn),B("E",Xn),B("dd",function(e,t){return t.weekdaysMinRegex(e)}),B("ddd",function(e,t){return t.weekdaysShortRegex(e)}),B("dddd",function(e,t){return t.weekdaysRegex(e)}),Q(["dd","ddd","dddd"],function(e,t,a,n){var s=a._locale.weekdaysParse(e,n,a._strict);null!=s?t.d=s:h(a).invalidWeekday=e}),Q(["d","e","E"],function(e,t,a,n){t[n]=k(e)});var js="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),xs="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Os="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Ps=us,Es=us,Ws=us;I("H",["HH",2],0,"hour"),I("h",["hh",2],0,Ve),I("k",["kk",2],0,Be),I("hmm",0,0,function(){return""+Ve.apply(this)+C(this.minutes(),2)}),I("hmmss",0,0,function(){return""+Ve.apply(this)+C(this.minutes(),2)+C(this.seconds(),2)}),I("Hmm",0,0,function(){return""+this.hours()+C(this.minutes(),2)}),I("Hmmss",0,0,function(){return""+this.hours()+C(this.minutes(),2)+C(this.seconds(),2)}),$e("a",!0),$e("A",!1),A("hour","h"),N("hour",13),B("a",qe),B("A",qe),B("H",Xn),B("h",Xn),B("k",Xn),B("HH",Xn,qn),B("hh",Xn,qn),B("kk",Xn,qn),B("hmm",es),B("hmmss",ts),B("Hmm",es),B("Hmmss",ts),Z(["H","HH"],fs),Z(["k","kk"],function(e,t,a){var n=k(e);t[fs]=24===n?0:n}),Z(["a","A"],function(e,t,a){a._isPm=a._locale.isPM(e),a._meridiem=e}),Z(["h","hh"],function(e,t,a){t[fs]=k(e),h(a).bigHour=!0}),Z("hmm",function(e,t,a){var n=e.length-2;t[fs]=k(e.substr(0,n)),t[ys]=k(e.substr(n)),h(a).bigHour=!0}),Z("hmmss",function(e,t,a){var n=e.length-4,s=e.length-2;t[fs]=k(e.substr(0,n)),t[ys]=k(e.substr(n,2)),t[Ls]=k(e.substr(s)),h(a).bigHour=!0}),Z("Hmm",function(e,t,a){var n=e.length-2;t[fs]=k(e.substr(0,n)),t[ys]=k(e.substr(n))}),Z("Hmmss",function(e,t,a){var n=e.length-4,s=e.length-2;t[fs]=k(e.substr(0,n)),t[ys]=k(e.substr(n,2)),t[Ls]=k(e.substr(s))});var As,Fs=/[ap]\.?m?\.?/i,zs=ne("Hours",!0),Ns={calendar:zn,longDateFormat:Nn,invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:Jn,relativeTime:Cn,months:ws,monthsShort:vs,week:Hs,weekdays:js,weekdaysMin:Os,weekdaysShort:xs,meridiemParse:Fs},Js={},Cs={},Is=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Rs=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Gs=/Z|[+-]\d\d(?::?\d\d)?/,Us=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Vs=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Bs=/^\/?Date\((\-?\d+)/i,$s=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,qs={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};t.createFromInputFallback=T("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),t.ISO_8601=function(){},t.RFC_2822=function(){};var Ks=T("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=bt.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:f()}),Zs=T("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=bt.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:f()}),Qs=function(){return Date.now?Date.now():+new Date},Xs=["year","quarter","month","week","day","hour","minute","second","millisecond"];Ft("Z",":"),Ft("ZZ",""),B("Z",os),B("ZZ",os),Z(["Z","ZZ"],function(e,t,a){a._useUTC=!0,a._tzm=zt(os,e)});var er=/([\+\-]|\d\d)/gi;t.updateOffset=function(){};var tr=/^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,ar=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;Qt.fn=Et.prototype,Qt.invalid=Pt;var nr=aa(1,"add"),sr=aa(-1,"subtract");t.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",t.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var rr=T("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)}),ir=1e3,dr=60*ir,or=60*dr,_r=3506328*or;I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ja("gggg","weekYear"),Ja("ggggg","weekYear"),Ja("GGGG","isoWeekYear"),Ja("GGGGG","isoWeekYear"),A("weekYear","gg"),A("isoWeekYear","GG"),N("weekYear",1),N("isoWeekYear",1),B("G",is),B("g",is),B("GG",Xn,qn),B("gg",Xn,qn),B("GGGG",ns,Zn),B("gggg",ns,Zn),B("GGGGG",ss,Qn),B("ggggg",ss,Qn),Q(["gggg","ggggg","GGGG","GGGGG"],function(e,t,a,n){t[n.substr(0,2)]=k(e)}),Q(["gg","GG"],function(e,a,n,s){a[s]=t.parseTwoDigitYear(e)}),I("Q",0,"Qo","quarter"),A("quarter","Q"),N("quarter",7),B("Q",$n),Z("Q",function(e,t){t[hs]=3*(k(e)-1)}),I("D",["DD",2],"Do","date"),A("date","D"),N("date",9),B("D",Xn),B("DD",Xn,qn),B("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),Z(["D","DD"],Ms),Z("Do",function(e,t){t[Ms]=k(e.match(Xn)[0])});var ur=ne("Date",!0);I("DDD",["DDDD",3],"DDDo","dayOfYear"),A("dayOfYear","DDD"),N("dayOfYear",4),B("DDD",as),B("DDDD",Kn),Z(["DDD","DDDD"],function(e,t,a){a._dayOfYear=k(e)}),I("m",["mm",2],0,"minute"),A("minute","m"),N("minute",14),B("m",Xn),B("mm",Xn,qn),Z(["m","mm"],ys);var mr=ne("Minutes",!1);I("s",["ss",2],0,"second"),A("second","s"),N("second",15),B("s",Xn),B("ss",Xn,qn),Z(["s","ss"],Ls);var lr=ne("Seconds",!1);I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),A("millisecond","ms"),N("millisecond",16),B("S",as,$n),B("SS",as,qn),B("SSS",as,Kn);var cr;for(cr="SSSS";cr.length<=9;cr+="S")B(cr,rs);for(cr="S";cr.length<=9;cr+="S")Z(cr,qa);var hr=ne("Milliseconds",!1);I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName");var Mr=L.prototype;Mr.add=nr,Mr.calendar=ra,Mr.clone=ia,Mr.diff=ca,Mr.endOf=Ha,Mr.format=La,Mr.from=Ya,Mr.fromNow=pa,Mr.to=ka,Mr.toNow=Da,Mr.get=ie,Mr.invalidAt=za,Mr.isAfter=da,Mr.isBefore=oa,Mr.isBetween=_a,Mr.isSame=ua,Mr.isSameOrAfter=ma,Mr.isSameOrBefore=la,Mr.isValid=Aa,Mr.lang=rr,Mr.locale=ga,Mr.localeData=Ta,Mr.max=Zs,Mr.min=Ks,Mr.parsingFlags=Fa,Mr.set=de,Mr.startOf=Sa,Mr.subtract=sr,Mr.toArray=Pa,Mr.toObject=Ea,Mr.toDate=Oa,Mr.toISOString=fa,Mr.inspect=ya,Mr.toJSON=Wa,Mr.toString=Ma,Mr.unix=xa,Mr.valueOf=ja,Mr.creationData=Na,Mr.year=gs,Mr.isLeapYear=ae,Mr.weekYear=Ca,Mr.isoWeekYear=Ia,Mr.quarter=Mr.quarters=Ba,Mr.month=Me,Mr.daysInMonth=fe,Mr.week=Mr.weeks=He,Mr.isoWeek=Mr.isoWeeks=je,Mr.weeksInYear=Ga,Mr.isoWeeksInYear=Ra,Mr.date=ur,Mr.day=Mr.days=Ne,Mr.weekday=Je,Mr.isoWeekday=Ce,Mr.dayOfYear=$a,Mr.hour=Mr.hours=zs,Mr.minute=Mr.minutes=mr,Mr.second=Mr.seconds=lr,Mr.millisecond=Mr.milliseconds=hr,Mr.utcOffset=Ct,Mr.utc=Rt,Mr.local=Gt,Mr.parseZone=Ut,Mr.hasAlignedHourOffset=Vt,Mr.isDST=Bt,Mr.isLocal=qt,Mr.isUtcOffset=Kt,Mr.isUtc=Zt,Mr.isUTC=Zt,Mr.zoneAbbr=Ka,Mr.zoneName=Za,Mr.dates=T("dates accessor is deprecated. Use date instead.",ur),Mr.months=T("months accessor is deprecated. Use month instead",Me),Mr.years=T("years accessor is deprecated. Use year instead",gs),Mr.zone=T("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",It),Mr.isDSTShifted=T("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",$t);var fr=H.prototype;fr.calendar=j,fr.longDateFormat=x,fr.invalidDate=O,fr.ordinal=P,fr.preparse=en,fr.postformat=en,fr.relativeTime=E,fr.pastFuture=W,fr.set=b,fr.months=ue,fr.monthsShort=me,fr.monthsParse=ce,fr.monthsRegex=Le,fr.monthsShortRegex=ye,fr.week=ve,fr.firstDayOfYear=Se,fr.firstDayOfWeek=be,fr.weekdays=Ee,fr.weekdaysMin=Ae,fr.weekdaysShort=We,fr.weekdaysParse=ze,fr.weekdaysRegex=Ie,fr.weekdaysShortRegex=Re,fr.weekdaysMinRegex=Ge,fr.isPM=Ke,fr.meridiem=Ze,tt("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),t.lang=T("moment.lang is deprecated. Use moment.locale instead.",tt),t.langData=T("moment.langData is deprecated. Use moment.localeData instead.",st);var yr=Math.abs,Lr=pn("ms"),Yr=pn("s"),pr=pn("m"),kr=pn("h"),Dr=pn("d"),gr=pn("w"),Tr=pn("M"),wr=pn("Q"),vr=pn("y"),br=gn("milliseconds"),Sr=gn("seconds"),Hr=gn("minutes"),jr=gn("hours"),xr=gn("days"),Or=gn("months"),Pr=gn("years"),Er=Math.round,Wr={ss:44,s:45,m:45,h:22,d:26,M:11},Ar=Math.abs,Fr=Et.prototype;return Fr.isValid=Ot,Fr.abs=un,Fr.add=ln,Fr.subtract=cn,Fr.as=Ln,Fr.asMilliseconds=Lr,Fr.asSeconds=Yr,Fr.asMinutes=pr,Fr.asHours=kr,Fr.asDays=Dr,Fr.asWeeks=gr,Fr.asMonths=Tr,Fr.asQuarters=wr,Fr.asYears=vr,Fr.valueOf=Yn,Fr._bubble=Mn,Fr.clone=kn,Fr.get=Dn,Fr.milliseconds=br,Fr.seconds=Sr,Fr.minutes=Hr,Fr.hours=jr,Fr.days=xr,Fr.weeks=Tn,Fr.months=Or,Fr.years=Pr,Fr.humanize=Hn,Fr.toISOString=xn,Fr.toString=xn,Fr.toJSON=xn,Fr.locale=ga,Fr.localeData=Ta,Fr.toIsoString=T("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",xn),Fr.lang=rr,I("X",0,0,"unix"),I("x",0,0,"valueOf"),B("x",is),B("X",_s),Z("X",function(e,t,a){a._d=new Date(1e3*parseFloat(e,10))}),Z("x",function(e,t,a){a._d=new Date(k(e))}),t.version="2.24.0",function(e){On=e}(bt),t.fn=Mr,t.min=Ht,t.max=jt,t.now=Qs,t.utc=l,t.unix=Qa,t.months=sn,t.isDate=o,t.locale=tt,t.invalid=f,t.duration=Qt,t.isMoment=Y,t.weekdays=dn,t.parseZone=Xa,t.localeData=st,t.isDuration=Wt,t.monthsShort=rn,t.weekdaysMin=_n,t.defineLocale=at,t.updateLocale=nt,t.locales=rt,t.weekdaysShort=on,t.normalizeUnits=F,t.relativeTimeRounding=bn,t.relativeTimeThreshold=Sn,t.calendarFormat=sa,t.prototype=Mr,t.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},t})}).call(t,a(43)(e))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children=[],e.webpackPolyfill=1),e}},function(e,t,a){function n(e){return a(s(e))}function s(e){return r[e]||function(){throw new Error("Cannot find module '"+e+"'.")}()}var r={"./af":45,"./af.js":45,"./ar":46,"./ar-dz":47,"./ar-dz.js":47,"./ar-kw":48,"./ar-kw.js":48,"./ar-ly":49,"./ar-ly.js":49,"./ar-ma":50,"./ar-ma.js":50,"./ar-sa":51,"./ar-sa.js":51,"./ar-tn":52,"./ar-tn.js":52,"./ar.js":46,"./az":53,"./az.js":53,"./be":54,"./be.js":54,"./bg":55,"./bg.js":55,"./bm":56,"./bm.js":56,"./bn":57,"./bn.js":57,"./bo":58,"./bo.js":58,"./br":59,"./br.js":59,"./bs":60,"./bs.js":60,"./ca":61,"./ca.js":61,"./cs":62,"./cs.js":62,"./cv":63,"./cv.js":63,"./cy":64,"./cy.js":64,"./da":65,"./da.js":65,"./de":66,"./de-at":67,"./de-at.js":67,"./de-ch":68,"./de-ch.js":68,"./de.js":66,"./dv":69,"./dv.js":69,"./el":70,"./el.js":70,"./en-SG":71,"./en-SG.js":71,"./en-au":72,"./en-au.js":72,"./en-ca":73,"./en-ca.js":73,"./en-gb":74,"./en-gb.js":74,"./en-ie":75,"./en-ie.js":75,"./en-il":76,"./en-il.js":76,"./en-nz":77,"./en-nz.js":77,"./eo":78,"./eo.js":78,"./es":79,"./es-do":80,"./es-do.js":80,"./es-us":81,"./es-us.js":81,"./es.js":79,"./et":82,"./et.js":82,"./eu":83,"./eu.js":83,"./fa":84,"./fa.js":84,"./fi":85,"./fi.js":85,"./fo":86,"./fo.js":86,"./fr":87,"./fr-ca":88,"./fr-ca.js":88,"./fr-ch":89,"./fr-ch.js":89,"./fr.js":87,"./fy":90,"./fy.js":90,"./ga":91,"./ga.js":91,"./gd":92,"./gd.js":92,"./gl":93,"./gl.js":93,"./gom-latn":94,"./gom-latn.js":94,"./gu":95,"./gu.js":95,"./he":96,"./he.js":96,"./hi":97,"./hi.js":97,"./hr":98,"./hr.js":98,"./hu":99,"./hu.js":99,"./hy-am":100,"./hy-am.js":100,"./id":101,"./id.js":101,"./is":102,"./is.js":102,"./it":103,"./it-ch":104,"./it-ch.js":104,"./it.js":103,"./ja":105,"./ja.js":105,"./jv":106,"./jv.js":106,"./ka":107,"./ka.js":107,"./kk":108,"./kk.js":108,"./km":109,"./km.js":109,"./kn":110,"./kn.js":110,"./ko":111,"./ko.js":111,"./ku":112,"./ku.js":112,"./ky":113,"./ky.js":113,"./lb":114,"./lb.js":114,"./lo":115,"./lo.js":115,"./lt":116,"./lt.js":116,"./lv":117,"./lv.js":117,"./me":118,"./me.js":118,"./mi":119,"./mi.js":119,"./mk":120,"./mk.js":120,"./ml":121,"./ml.js":121,"./mn":122,"./mn.js":122,"./mr":123,"./mr.js":123,"./ms":124,"./ms-my":125,"./ms-my.js":125,"./ms.js":124,"./mt":126,"./mt.js":126,"./my":127,"./my.js":127,"./nb":128,"./nb.js":128,"./ne":129,"./ne.js":129,"./nl":130,"./nl-be":131,"./nl-be.js":131,"./nl.js":130,"./nn":132,"./nn.js":132,"./pa-in":133,"./pa-in.js":133,"./pl":134,"./pl.js":134,"./pt":135,"./pt-br":136,"./pt-br.js":136,"./pt.js":135,"./ro":137,"./ro.js":137,"./ru":138,"./ru.js":138,"./sd":139,"./sd.js":139,"./se":140,"./se.js":140,"./si":141,"./si.js":141,"./sk":142,"./sk.js":142,"./sl":143,"./sl.js":143,"./sq":144,"./sq.js":144,"./sr":145,"./sr-cyrl":146,"./sr-cyrl.js":146,"./sr.js":145,"./ss":147,"./ss.js":147,"./sv":148,"./sv.js":148,"./sw":149,"./sw.js":149,"./ta":150,"./ta.js":150,"./te":151,"./te.js":151,"./tet":152,"./tet.js":152,"./tg":153,"./tg.js":153,"./th":154,"./th.js":154,"./tl-ph":155,"./tl-ph.js":155,"./tlh":156,"./tlh.js":156,"./tr":157,"./tr.js":157,"./tzl":158,"./tzl.js":158,"./tzm":159,"./tzm-latn":160,"./tzm-latn.js":160,"./tzm.js":159,"./ug-cn":161,"./ug-cn.js":161,"./uk":162,"./uk.js":162,"./ur":163,"./ur.js":163,"./uz":164,"./uz-latn":165,"./uz-latn.js":165,"./uz.js":164,"./vi":166,"./vi.js":166,"./x-pseudo":167,"./x-pseudo.js":167,"./yo":168,"./yo.js":168,"./zh-cn":169,"./zh-cn.js":169,"./zh-hk":170,"./zh-hk.js":170,"./zh-tw":171,"./zh-tw.js":171};n.keys=function(){return Object.keys(r)},n.resolve=s,e.exports=n,n.id=44},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,a){return e<12?a?"vm":"VM":a?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},a={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},r=function(e){return function(t,a,r,i){var d=n(t),o=s[e][n(t)];return 2===d&&(o=o[a?0:1]),o.replace(/%d/i,t)}},i=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar",{months:i,monthsShort:i,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,a){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"), MM:r("M"),y:r("y"),yy:r("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return a[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ar-dz",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},a=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},s=function(e){return function(t,s,r,i){var d=a(t),o=n[e][a(t)];return 2===d&&(o=o[s?0:1]),o.replace(/%d/i,t)}},r=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar-ly",{months:r,monthsShort:r,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,a){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),ss:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},a={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};return e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,a){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return a[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-üncü",4:"-üncü",100:"-üncü",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"};return e.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),weekdaysShort:"Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),weekdaysMin:"Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gələn həftə] dddd [saat] LT",lastDay:"[dünən] LT",lastWeek:"[keçən həftə] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s əvvəl",s:"birneçə saniyə",ss:"%d saniyə",m:"bir dəqiqə",mm:"%d dəqiqə",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecə|səhər|gündüz|axşam/,isPM:function(e){return/^(gündüz|axşam)$/.test(e)},meridiem:function(e,t,a){return e<4?"gecə":e<12?"səhər":e<17?"gündüz":"axşam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(e){if(0===e)return e+"-ıncı";var a=e%10,n=e%100-a,s=e>=100?100:null;return e+(t[a]||t[n]||t[s])},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t){var a=e.split("_");return t%10==1&&t%100!=11?a[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?a[1]:a[2]}function a(e,a,n){var s={ss:a?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:a?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:a?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"};return"m"===n?a?"хвіліна":"хвіліну":"h"===n?a?"гадзіна":"гадзіну":e+" "+t(s[n],+e)}return e.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:a,mm:a,h:a,hh:a,d:"дзень",dd:a,M:"месяц",MM:a,y:"год",yy:a},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,a){return e<4?"ночы":e<12?"раніцы":e<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+"-ы":e+"-і";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,a=e%100;return 0===e?e+"-ев":0===a?e+"-ен":a>10&&a<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des".split("_"),weekdays:"Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm"},calendar:{sameDay:"[Bi lɛrɛ] LT",nextDay:"[Sini lɛrɛ] LT",nextWeek:"dddd [don lɛrɛ] LT",lastDay:"[Kunu lɛrɛ] LT",lastWeek:"dddd [tɛmɛnen lɛrɛ] LT",sameElse:"L"},relativeTime:{future:"%s kɔnɔ",past:"a bɛ %s bɔ",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"lɛrɛ kelen",hh:"lɛrɛ %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"১",2:"২",3:"৩",4:"৪",5:"৫",6:"৬",7:"৭",8:"৮",9:"৯",0:"০"},a={"১":"1","২":"2","৩":"3","৪":"4","৫":"5","৬":"6","৭":"7","৮":"8","৯":"9","০":"0"};return e.defineLocale("bn",{months:"জানুয়ারী_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর".split("_"),monthsShort:"জানু_ফেব_মার্চ_এপ্র_মে_জুন_জুল_আগ_সেপ্ট_অক্টো_নভে_ডিসে".split("_"),weekdays:"রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার".split("_"),weekdaysShort:"রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি".split("_"),weekdaysMin:"রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি".split("_"),longDateFormat:{LT:"A h:mm সময়",LTS:"A h:mm:ss সময়",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm সময়",LLLL:"dddd, D MMMM YYYY, A h:mm সময়"},calendar:{sameDay:"[আজ] LT",nextDay:"[আগামীকাল] LT",nextWeek:"dddd, LT",lastDay:"[গতকাল] LT",lastWeek:"[গত] dddd, LT",sameElse:"L"},relativeTime:{future:"%s পরে",past:"%s আগে",s:"কয়েক সেকেন্ড",ss:"%d সেকেন্ড",m:"এক মিনিট",mm:"%d মিনিট",h:"এক ঘন্টা",hh:"%d ঘন্টা",d:"এক দিন",dd:"%d দিন",M:"এক মাস",MM:"%d মাস",y:"এক বছর",yy:"%d বছর"},preparse:function(e){return e.replace(/[১২৩৪৫৬৭৮৯০]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/রাত|সকাল|দুপুর|বিকাল|রাত/,meridiemHour:function(e,t){return 12===e&&(e=0),"রাত"===t&&e>=4||"দুপুর"===t&&e<5||"বিকাল"===t?e+12:e},meridiem:function(e,t,a){return e<4?"রাত":e<10?"সকাল":e<17?"দুপুর":e<20?"বিকাল":"রাত"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"༡",2:"༢",3:"༣",4:"༤",5:"༥",6:"༦",7:"༧",8:"༨",9:"༩",0:"༠"},a={"༡":"1","༢":"2","༣":"3","༤":"4","༥":"5","༦":"6","༧":"7","༨":"8","༩":"9","༠":"0"};return e.defineLocale("bo",{months:"ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ".split("_"),monthsShort:"ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ".split("_"),weekdays:"གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་".split("_"),weekdaysShort:"ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་".split("_"),weekdaysMin:"ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[དི་རིང] LT",nextDay:"[སང་ཉིན] LT",nextWeek:"[བདུན་ཕྲག་རྗེས་མ], LT",lastDay:"[ཁ་སང] LT",lastWeek:"[བདུན་ཕྲག་མཐའ་མ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ལ་",past:"%s སྔན་ལ",s:"ལམ་སང",ss:"%d སྐར་ཆ།",m:"སྐར་མ་གཅིག",mm:"%d སྐར་མ",h:"ཆུ་ཚོད་གཅིག",hh:"%d ཆུ་ཚོད",d:"ཉིན་གཅིག",dd:"%d ཉིན་",M:"ཟླ་བ་གཅིག",MM:"%d ཟླ་བ",y:"ལོ་གཅིག",yy:"%d ལོ"},preparse:function(e){return e.replace(/[༡༢༣༤༥༦༧༨༩༠]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,meridiemHour:function(e,t){return 12===e&&(e=0),"མཚན་མོ"===t&&e>=4||"ཉིན་གུང"===t&&e<5||"དགོང་དག"===t?e+12:e},meridiem:function(e,t,a){return e<4?"མཚན་མོ":e<10?"ཞོགས་ཀས":e<17?"ཉིན་གུང":e<20?"དགོང་དག":"མཚན་མོ"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a){return e+" "+s({mm:"munutenn",MM:"miz",dd:"devezh"}[a],e)}function a(e){switch(n(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}function n(e){return e>9?n(e%10):e}function s(e,t){return 2===t?r(e):e}function r(e){var t={m:"v",b:"v",d:"z"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}return e.defineLocale("br",{months:"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondennoù",ss:"%d eilenn",m:"ur vunutenn",mm:t,h:"un eur",hh:"%d eur",d:"un devezh",dd:t,M:"ur miz",MM:t,y:"ur bloaz",yy:a},dayOfMonthOrdinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){return e+(1===e?"añ":"vet")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a){var n=e+" ";switch(a){case"ss":return n+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var a=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(a="a"),e+a},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){return e>1&&e<5&&1!=~~(e/10)}function a(e,a,n,s){var r=e+" ";switch(n){case"s":return a||s?"pár sekund":"pár sekundami";case"ss":return a||s?r+(t(e)?"sekundy":"sekund"):r+"sekundami";case"m":return a?"minuta":s?"minutu":"minutou";case"mm":return a||s?r+(t(e)?"minuty":"minut"):r+"minutami";case"h":return a?"hodina":s?"hodinu":"hodinou";case"hh":return a||s?r+(t(e)?"hodiny":"hodin"):r+"hodinami";case"d":return a||s?"den":"dnem";case"dd":return a||s?r+(t(e)?"dny":"dní"):r+"dny";case"M":return a||s?"měsíc":"měsícem";case"MM":return a||s?r+(t(e)?"měsíce":"měsíců"):r+"měsíci";case"y":return a||s?"rok":"rokem";case"yy":return a||s?r+(t(e)?"roky":"let"):r+"lety"}}var n="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),s="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_"),r=[/^led/i,/^úno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zář/i,/^říj/i,/^lis/i,/^pro/i],i=/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;return e.defineLocale("cs",{months:n,monthsShort:s,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("cv",{months:"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав".split("_"),monthsShort:"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш".split("_"),weekdays:"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун".split("_"),weekdaysShort:"выр_тун_ытл_юн_кӗҫ_эрн_шӑм".split("_"),weekdaysMin:"вр_тн_ыт_юн_кҫ_эр_шм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]",LLL:"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm",LLLL:"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm"},calendar:{sameDay:"[Паян] LT [сехетре]",nextDay:"[Ыран] LT [сехетре]",lastDay:"[Ӗнер] LT [сехетре]",nextWeek:"[Ҫитес] dddd LT [сехетре]",lastWeek:"[Иртнӗ] dddd LT [сехетре]",sameElse:"L"},relativeTime:{future:function(e){return e+(/сехет$/i.exec(e)?"рен":/ҫул$/i.exec(e)?"тан":"ран")},past:"%s каялла",s:"пӗр-ик ҫеккунт",ss:"%d ҫеккунт",m:"пӗр минут",mm:"%d минут",h:"пӗр сехет",hh:"%d сехет",d:"пӗр кун",dd:"%d кун",M:"пӗр уйӑх",MM:"%d уйӑх",y:"пӗр ҫул",yy:"%d ҫул"},dayOfMonthOrdinalParse:/\d{1,2}-мӗш/,ordinal:"%d-мӗш",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn ôl",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=e,a="",n=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"];return t>20?a=40===t||50===t||60===t||80===t||100===t?"fed":"ain":t>0&&(a=n[t]),e+a},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?s[a][0]:s[a][1]}return e.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?s[a][0]:s[a][1]}return e.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?s[a][0]:s[a][1]}return e.defineLocale("de-ch",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s", s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t=["ޖެނުއަރީ","ފެބްރުއަރީ","މާރިޗު","އޭޕްރީލު","މޭ","ޖޫން","ޖުލައި","އޯގަސްޓު","ސެޕްޓެމްބަރު","އޮކްޓޯބަރު","ނޮވެމްބަރު","ޑިސެމްބަރު"],a=["އާދިއްތަ","ހޯމަ","އަންގާރަ","ބުދަ","ބުރާސްފަތި","ހުކުރު","ހޮނިހިރު"];return e.defineLocale("dv",{months:t,monthsShort:t,weekdays:a,weekdaysShort:a,weekdaysMin:"އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/މކ|މފ/,isPM:function(e){return"މފ"===e},meridiem:function(e,t,a){return e<12?"މކ":"މފ"},calendar:{sameDay:"[މިއަދު] LT",nextDay:"[މާދަމާ] LT",nextWeek:"dddd LT",lastDay:"[އިއްޔެ] LT",lastWeek:"[ފާއިތުވި] dddd LT",sameElse:"L"},relativeTime:{future:"ތެރޭގައި %s",past:"ކުރިން %s",s:"ސިކުންތުކޮޅެއް",ss:"d% ސިކުންތު",m:"މިނިޓެއް",mm:"މިނިޓު %d",h:"ގަޑިއިރެއް",hh:"ގަޑިއިރު %d",d:"ދުވަހެއް",dd:"ދުވަސް %d",M:"މަހެއް",MM:"މަސް %d",y:"އަހަރެއް",yy:"އަހަރު %d"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:7,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}return e.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,t){return e?"string"==typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,a){return e>11?a?"μμ":"ΜΜ":a?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,a){var n=this._calendarEl[e],s=a&&a.hours();return t(n)&&(n=n.apply(a)),n.replace("{}",s%12==1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-SG",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec".split("_"),weekdays:"dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaŭ_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D[-a de] MMMM, YYYY",LLL:"D[-a de] MMMM, YYYY HH:mm",LLLL:"dddd, [la] D[-a de] MMMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return"p"===e.charAt(0).toLowerCase()},meridiem:function(e,t,a){return e>11?a?"p.t.m.":"P.T.M.":a?"a.t.m.":"A.T.M."},calendar:{sameDay:"[Hodiaŭ je] LT",nextDay:"[Morgaŭ je] LT",nextWeek:"dddd [je] LT",lastDay:"[Hieraŭ je] LT",lastWeek:"[pasinta] dddd [je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaŭ %s",s:"sekundoj",ss:"%d sekundoj",m:"minuto",mm:"%d minutoj",h:"horo",hh:"%d horoj",d:"tago",dd:"%d tagoj",M:"monato",MM:"%d monatoj",y:"jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={s:["mõne sekundi","mõni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["ühe minuti","üks minut"],mm:[e+" minuti",e+" minutit"],h:["ühe tunni","tund aega","üks tund"],hh:[e+" tunni",e+" tundi"],d:["ühe päeva","üks päev"],M:["kuu aja","kuu aega","üks kuu"],MM:[e+" kuu",e+" kuud"],y:["ühe aasta","aasta","üks aasta"],yy:[e+" aasta",e+" aastat"]};return t?s[a][2]?s[a][2]:s[a][1]:n?s[a][0]:s[a][1]}return e.defineLocale("et",{months:"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Täna,] LT",nextDay:"[Homme,] LT",nextWeek:"[Järgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pärast",past:"%s tagasi",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:"%d päeva",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},a={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};return e.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یکشنبه_دوشنبه_سهشنبه_چهارشنبه_پنجشنبه_جمعه_شنبه".split("_"),weekdaysShort:"یکشنبه_دوشنبه_سهشنبه_چهارشنبه_پنجشنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,t,a){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چند ثانیه",ss:"ثانیه d%",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return a[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},dayOfMonthOrdinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,n,s){var r="";switch(n){case"s":return s?"muutaman sekunnin":"muutama sekunti";case"ss":return s?"sekunnin":"sekuntia";case"m":return s?"minuutin":"minuutti";case"mm":r=s?"minuutin":"minuuttia";break;case"h":return s?"tunnin":"tunti";case"hh":r=s?"tunnin":"tuntia";break;case"d":return s?"päivän":"päivä";case"dd":r=s?"päivän":"päivää";break;case"M":return s?"kuukauden":"kuukausi";case"MM":r=s?"kuukauden":"kuukautta";break;case"y":return s?"vuoden":"vuosi";case"yy":r=s?"vuoden":"vuotta"}return r=a(e,s)+" "+r}function a(e,t){return e<10?t?s[e]:n[e]:e}var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),s=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]];return e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("fo",{months:"januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mán_týs_mik_hós_frí_ley".split("_"),weekdaysMin:"su_má_tý_mi_hó_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[Í dag kl.] LT",nextDay:"[Í morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Í gjár kl.] LT",lastWeek:"[síðstu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s síðani",s:"fá sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tími",hh:"%d tímar",d:"ein dagur",dd:"%d dagar",M:"ein mánaður",MM:"%d mánaðir",y:"eitt ár",yy:"%d ár"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),a="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_");return e.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[ôfrûne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minút",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t=["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Méitheamh","Iúil","Lúnasa","Meán Fómhair","Deaireadh Fómhair","Samhain","Nollaig"],a=["Eaná","Feab","Márt","Aibr","Beal","Méit","Iúil","Lúna","Meán","Deai","Samh","Noll"],n=["Dé Domhnaigh","Dé Luain","Dé Máirt","Dé Céadaoin","Déardaoin","Dé hAoine","Dé Satharn"],s=["Dom","Lua","Mái","Céa","Déa","hAo","Sat"],r=["Do","Lu","Má","Ce","Dé","hA","Sa"];return e.defineLocale("ga",{months:t,monthsShort:a,monthsParseExact:!0,weekdays:n,weekdaysShort:s,weekdaysMin:r,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Amárach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inné aig] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s ó shin",s:"cúpla soicind",ss:"%d soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair an chloig",hh:"%d uair an chloig",d:"lá",dd:"%d lá",M:"mí",MM:"%d mí",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict" ;var t=["Am Faoilleach","An Gearran","Am Màrt","An Giblean","An Cèitean","An t-Ògmhios","An t-Iuchar","An Lùnastal","An t-Sultain","An Dàmhair","An t-Samhain","An Dùbhlachd"],a=["Faoi","Gear","Màrt","Gibl","Cèit","Ògmh","Iuch","Lùn","Sult","Dàmh","Samh","Dùbh"],n=["Didòmhnaich","Diluain","Dimàirt","Diciadain","Diardaoin","Dihaoine","Disathairne"],s=["Did","Dil","Dim","Dic","Dia","Dih","Dis"],r=["Dò","Lu","Mà","Ci","Ar","Ha","Sa"];return e.defineLocale("gd",{months:t,monthsShort:a,monthsParseExact:!0,weekdays:n,weekdaysShort:s,weekdaysMin:r,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-màireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-dè aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"mìos",MM:"%d mìosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?"d":e%10==2?"na":"mh")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={s:["thodde secondanim","thodde second"],ss:[e+" secondanim",e+" second"],m:["eka mintan","ek minute"],mm:[e+" mintanim",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voranim",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disanim",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineanim",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsanim",e+" vorsam"]};return t?s[a][0]:s[a][1]}return e.defineLocale("gom-latn",{months:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Aitar_Somar_Mongllar_Budvar_Brestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Ieta to] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fatlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:1,doy:4},meridiemParse:/rati|sokalli|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),"rati"===t?e<4?e:e+12:"sokalli"===t?e:"donparam"===t?e>12?e:e+12:"sanje"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"rati":e<12?"sokalli":e<16?"donparam":e<20?"sanje":"rati"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"૧",2:"૨",3:"૩",4:"૪",5:"૫",6:"૬",7:"૭",8:"૮",9:"૯",0:"૦"},a={"૧":"1","૨":"2","૩":"3","૪":"4","૫":"5","૬":"6","૭":"7","૮":"8","૯":"9","૦":"0"};return e.defineLocale("gu",{months:"જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર".split("_"),monthsShort:"જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.".split("_"),monthsParseExact:!0,weekdays:"રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર".split("_"),weekdaysShort:"રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ".split("_"),weekdaysMin:"ર_સો_મં_બુ_ગુ_શુ_શ".split("_"),longDateFormat:{LT:"A h:mm વાગ્યે",LTS:"A h:mm:ss વાગ્યે",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm વાગ્યે",LLLL:"dddd, D MMMM YYYY, A h:mm વાગ્યે"},calendar:{sameDay:"[આજ] LT",nextDay:"[કાલે] LT",nextWeek:"dddd, LT",lastDay:"[ગઇકાલે] LT",lastWeek:"[પાછલા] dddd, LT",sameElse:"L"},relativeTime:{future:"%s મા",past:"%s પેહલા",s:"અમુક પળો",ss:"%d સેકંડ",m:"એક મિનિટ",mm:"%d મિનિટ",h:"એક કલાક",hh:"%d કલાક",d:"એક દિવસ",dd:"%d દિવસ",M:"એક મહિનો",MM:"%d મહિનો",y:"એક વર્ષ",yy:"%d વર્ષ"},preparse:function(e){return e.replace(/[૧૨૩૪૫૬૭૮૯૦]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/રાત|બપોર|સવાર|સાંજ/,meridiemHour:function(e,t){return 12===e&&(e=0),"રાત"===t?e<4?e:e+12:"સવાર"===t?e:"બપોર"===t?e>=10?e:e+12:"સાંજ"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"રાત":e<10?"સવાર":e<17?"બપોર":e<20?"સાંજ":"રાત"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",ss:"%d שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10==0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,t,a){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?a?'לפנה"צ':"לפני הצהריים":e<18?a?'אחה"צ':"אחרי הצהריים":"בערב"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},a={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};return e.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",ss:"%d सेकंड",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात"===t?e<4?e:e+12:"सुबह"===t?e:"दोपहर"===t?e>=10?e:e+12:"शाम"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"रात":e<10?"सुबह":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a){var n=e+" ";switch(a){case"ss":return n+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return t?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s=e;switch(a){case"s":return n||t?"néhány másodperc":"néhány másodperce";case"ss":return s+(n||t)?" másodperc":" másodperce";case"m":return"egy"+(n||t?" perc":" perce");case"mm":return s+(n||t?" perc":" perce");case"h":return"egy"+(n||t?" óra":" órája");case"hh":return s+(n||t?" óra":" órája");case"d":return"egy"+(n||t?" nap":" napja");case"dd":return s+(n||t?" nap":" napja");case"M":return"egy"+(n||t?" hónap":" hónapja");case"MM":return s+(n||t?" hónap":" hónapja");case"y":return"egy"+(n||t?" év":" éve");case"yy":return s+(n||t?" év":" éve")}return""}function a(e){return(e?"":"[múlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");return e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,a){return e<12?!0===a?"de":"DE":!0===a?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return a.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return a.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("hy-am",{months:{format:"հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի".split("_"),standalone:"հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր".split("_")},monthsShort:"հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ".split("_"),weekdays:"կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ".split("_"),weekdaysShort:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),weekdaysMin:"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY թ.",LLL:"D MMMM YYYY թ., HH:mm",LLLL:"dddd, D MMMM YYYY թ., HH:mm"},calendar:{sameDay:"[այսօր] LT",nextDay:"[վաղը] LT",lastDay:"[երեկ] LT",nextWeek:function(){return"dddd [օրը ժամը] LT"},lastWeek:function(){return"[անցած] dddd [օրը ժամը] LT"},sameElse:"L"},relativeTime:{future:"%s հետո",past:"%s առաջ",s:"մի քանի վայրկյան",ss:"%d վայրկյան",m:"րոպե",mm:"%d րոպե",h:"ժամ",hh:"%d ժամ",d:"օր",dd:"%d օր",M:"ամիս",MM:"%d ամիս",y:"տարի",yy:"%d տարի"},meridiemParse:/գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,isPM:function(e){return/^(ցերեկվա|երեկոյան)$/.test(e)},meridiem:function(e){return e<4?"գիշերվա":e<12?"առավոտվա":e<17?"ցերեկվա":"երեկոյան"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(ին|րդ)/,ordinal:function(e,t){switch(t){case"DDD":case"w":case"W":case"DDDo":return 1===e?e+"-ին":e+"-րդ";default:return e}},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){return e%100==11||e%10!=1}function a(e,a,n,s){var r=e+" ";switch(n){case"s":return a||s?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return t(e)?r+(a||s?"sekúndur":"sekúndum"):r+"sekúnda";case"m":return a?"mínúta":"mínútu";case"mm":return t(e)?r+(a||s?"mínútur":"mínútum"):a?r+"mínúta":r+"mínútu";case"hh":return t(e)?r+(a||s?"klukkustundir":"klukkustundum"):r+"klukkustund";case"d":return a?"dagur":s?"dag":"degi";case"dd":return t(e)?a?r+"dagar":r+(s?"daga":"dögum"):a?r+"dagur":r+(s?"dag":"degi");case"M":return a?"mánuður":s?"mánuð":"mánuði";case"MM":return t(e)?a?r+"mánuðir":r+(s?"mánuði":"mánuðum"):a?r+"mánuður":r+(s?"mánuð":"mánuði");case"y":return a||s?"ár":"ári";case"yy":return t(e)?r+(a||s?"ár":"árum"):r+(a||s?"ár":"ári")}}return e.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:a,ss:a,m:a,mm:a,h:"klukkustund",hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ja",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日(ddd) HH:mm"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,t,a){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:function(e){return e.week()<this.week()?"[来週]dddd LT":"dddd LT"},lastDay:"[昨日] LT",lastWeek:function(e){return this.week()<e.week()?"[先週]dddd LT":"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),"enjing"===t?e:"siyang"===t?e>=11?e:e+12:"sonten"===t||"ndalu"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"enjing":e<15?"siyang":e<19?"sonten":"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ka",{months:{standalone:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),format:"იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს".split("_")},monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(e){return/(წამი|წუთი|საათი|წელი)/.test(e)?e.replace(/ი$/,"ში"):e+"ში"},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,"ის წინ"):/წელი/.test(e)?e.replace(/წელი$/,"წლის წინ"):void 0},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+"-ლი":e<20||e<=100&&e%20==0||e%100==0?"მე-"+e:e+"-ე"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"};return e.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){var a=e%10,n=e>=100?100:null;return e+(t[e]||t[a]||t[n])},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"១",2:"២",3:"៣",4:"៤",5:"៥",6:"៦",7:"៧",8:"៨",9:"៩",0:"០"},a={"១":"1","២":"2","៣":"3","៤":"4","៥":"5","៦":"6","៧":"7","៨":"8","៩":"9","០":"0"};return e.defineLocale("km",{months:"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),monthsShort:"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),weekdays:"អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),weekdaysShort:"អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),weekdaysMin:"អា_ច_អ_ព_ព្រ_សុ_ស".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ព្រឹក|ល្ងាច/,isPM:function(e){return"ល្ងាច"===e},meridiem:function(e,t,a){return e<12?"ព្រឹក":"ល្ងាច"},calendar:{sameDay:"[ថ្ងៃនេះ ម៉ោង] LT",nextDay:"[ស្អែក ម៉ោង] LT",nextWeek:"dddd [ម៉ោង] LT",lastDay:"[ម្សិលមិញ ម៉ោង] LT",lastWeek:"dddd [សប្តាហ៍មុន] [ម៉ោង] LT",sameElse:"L"},relativeTime:{future:"%sទៀត",past:"%sមុន",s:"ប៉ុន្មានវិនាទី",ss:"%d វិនាទី",m:"មួយនាទី",mm:"%d នាទី",h:"មួយម៉ោង",hh:"%d ម៉ោង",d:"មួយថ្ងៃ",dd:"%d ថ្ងៃ",M:"មួយខែ",MM:"%d ខែ",y:"មួយឆ្នាំ",yy:"%d ឆ្នាំ"},dayOfMonthOrdinalParse:/ទី\d{1,2}/,ordinal:"ទី%d",preparse:function(e){return e.replace(/[១២៣៤៥៦៧៨៩០]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"೧",2:"೨",3:"೩",4:"೪",5:"೫",6:"೬",7:"೭",8:"೮",9:"೯",0:"೦"},a={"೧":"1","೨":"2","೩":"3","೪":"4","೫":"5","೬":"6","೭":"7","೮":"8","೯":"9","೦":"0"};return e.defineLocale("kn",{months:"ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್".split("_"),monthsShort:"ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ".split("_"),monthsParseExact:!0,weekdays:"ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ".split("_"),weekdaysShort:"ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ".split("_"),weekdaysMin:"ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[ಇಂದು] LT",nextDay:"[ನಾಳೆ] LT",nextWeek:"dddd, LT",lastDay:"[ನಿನ್ನೆ] LT",lastWeek:"[ಕೊನೆಯ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ನಂತರ",past:"%s ಹಿಂದೆ",s:"ಕೆಲವು ಕ್ಷಣಗಳು",ss:"%d ಸೆಕೆಂಡುಗಳು",m:"ಒಂದು ನಿಮಿಷ",mm:"%d ನಿಮಿಷ",h:"ಒಂದು ಗಂಟೆ",hh:"%d ಗಂಟೆ",d:"ಒಂದು ದಿನ",dd:"%d ದಿನ",M:"ಒಂದು ತಿಂಗಳು",MM:"%d ತಿಂಗಳು",y:"ಒಂದು ವರ್ಷ",yy:"%d ವರ್ಷ"},preparse:function(e){return e.replace(/[೧೨೩೪೫೬೭೮೯೦]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ರಾತ್ರಿ"===t?e<4?e:e+12:"ಬೆಳಿಗ್ಗೆ"===t?e:"ಮಧ್ಯಾಹ್ನ"===t?e>=10?e:e+12:"ಸಂಜೆ"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"ರಾತ್ರಿ":e<10?"ಬೆಳಿಗ್ಗೆ":e<17?"ಮಧ್ಯಾಹ್ನ":e<20?"ಸಂಜೆ":"ರಾತ್ರಿ"},dayOfMonthOrdinalParse:/\d{1,2}(ನೇ)/,ordinal:function(e){return e+"ನೇ"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h:mm",LLLL:"YYYY년 MMMM D일 dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY년 MMMM D일",lll:"YYYY년 MMMM D일 A h:mm",llll:"YYYY년 MMMM D일 dddd A h:mm"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"1분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},dayOfMonthOrdinalParse:/\d{1,2}(일|월|주)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"일";case"M":return e+"월";case"w":case"W":return e+"주";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,t,a){return e<12?"오전":"오후"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},a={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=["کانونی دووەم","شوبات","ئازار","نیسان","ئایار","حوزەیران","تەمموز","ئاب","ئەیلوول","تشرینی یەكەم","تشرینی دووەم","كانونی یەکەم"];return e.defineLocale("ku",{months:n,monthsShort:n,weekdays:"یهكشهممه_دووشهممه_سێشهممه_چوارشهممه_پێنجشهممه_ههینی_شهممه".split("_"),weekdaysShort:"یهكشهم_دووشهم_سێشهم_چوارشهم_پێنجشهم_ههینی_شهممه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ه_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ئێواره|بهیانی/,isPM:function(e){return/ئێواره/.test(e)},meridiem:function(e,t,a){return e<12?"بهیانی":"ئێواره"},calendar:{sameDay:"[ئهمرۆ كاتژمێر] LT",nextDay:"[بهیانی كاتژمێر] LT",nextWeek:"dddd [كاتژمێر] LT",lastDay:"[دوێنێ كاتژمێر] LT",lastWeek:"dddd [كاتژمێر] LT",sameElse:"L"},relativeTime:{future:"له %s",past:"%s",s:"چهند چركهیهك",ss:"چركه %d",m:"یهك خولهك",mm:"%d خولهك",h:"یهك كاتژمێر",hh:"%d كاتژمێر",d:"یهك ڕۆژ",dd:"%d ڕۆژ",M:"یهك مانگ",MM:"%d مانگ",y:"یهك ساڵ",yy:"%d ساڵ"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return a[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={0:"-чү",1:"-чи",2:"-чи",3:"-чү",4:"-чү",5:"-чи",6:"-чы",7:"-чи",8:"-чи",9:"-чу",10:"-чу",20:"-чы",30:"-чу",40:"-чы",50:"-чү",60:"-чы",70:"-чи",80:"-чи",90:"-чу",100:"-чү"};return e.defineLocale("ky",{months:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),monthsShort:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),weekdays:"Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби".split("_"),weekdaysShort:"Жек_Дүй_Шей_Шар_Бей_Жум_Ише".split("_"),weekdaysMin:"Жк_Дй_Шй_Шр_Бй_Жм_Иш".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгүн саат] LT",nextDay:"[Эртең саат] LT",nextWeek:"dddd [саат] LT",lastDay:"[Кечээ саат] LT",lastWeek:"[Өткөн аптанын] dddd [күнү] [саат] LT",sameElse:"L"},relativeTime:{future:"%s ичинде",past:"%s мурун",s:"бирнече секунд",ss:"%d секунд",m:"бир мүнөт",mm:"%d мүнөт",h:"бир саат",hh:"%d саат",d:"бир күн",dd:"%d күн",M:"бир ай",MM:"%d ай",y:"бир жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(чи|чы|чү|чу)/,ordinal:function(e){var a=e%10,n=e>=100?100:null;return e+(t[e]||t[a]||t[n])},week:{dow:1,doy:7}})}) },function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?s[a][0]:s[a][1]}function a(e){return s(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e}function n(e){return s(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e}function s(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10,a=e/10;return s(0===t?a:t)}if(e<1e4){for(;e>=10;)e/=10;return s(e)}return e/=1e3,s(e)}return e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:a,past:n,s:"e puer Sekonnen",ss:"%d Sekonnen",m:t,mm:"%d Minutten",h:t,hh:"%d Stonnen",d:t,dd:"%d Deeg",M:t,MM:"%d Méint",y:t,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("lo",{months:"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ".split("_"),monthsShort:"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ".split("_"),weekdays:"ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ".split("_"),weekdaysShort:"ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ".split("_"),weekdaysMin:"ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ວັນdddd D MMMM YYYY HH:mm"},meridiemParse:/ຕອນເຊົ້າ|ຕອນແລງ/,isPM:function(e){return"ຕອນແລງ"===e},meridiem:function(e,t,a){return e<12?"ຕອນເຊົ້າ":"ຕອນແລງ"},calendar:{sameDay:"[ມື້ນີ້ເວລາ] LT",nextDay:"[ມື້ອື່ນເວລາ] LT",nextWeek:"[ວັນ]dddd[ໜ້າເວລາ] LT",lastDay:"[ມື້ວານນີ້ເວລາ] LT",lastWeek:"[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT",sameElse:"L"},relativeTime:{future:"ອີກ %s",past:"%sຜ່ານມາ",s:"ບໍ່ເທົ່າໃດວິນາທີ",ss:"%d ວິນາທີ",m:"1 ນາທີ",mm:"%d ນາທີ",h:"1 ຊົ່ວໂມງ",hh:"%d ຊົ່ວໂມງ",d:"1 ມື້",dd:"%d ມື້",M:"1 ເດືອນ",MM:"%d ເດືອນ",y:"1 ປີ",yy:"%d ປີ"},dayOfMonthOrdinalParse:/(ທີ່)\d{1,2}/,ordinal:function(e){return"ທີ່"+e}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){return t?"kelios sekundės":n?"kelių sekundžių":"kelias sekundes"}function a(e,t,a,n){return t?s(a)[0]:n?s(a)[1]:s(a)[2]}function n(e){return e%10==0||e>10&&e<20}function s(e){return i[e].split("_")}function r(e,t,r,i){var d=e+" ";return 1===e?d+a(e,t,r[0],i):t?d+(n(e)?s(r)[1]:s(r)[0]):i?d+s(r)[1]:d+(n(e)?s(r)[1]:s(r)[2])}var i={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};return e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:t,ss:r,m:a,mm:r,h:a,hh:r,d:a,dd:r,M:a,MM:r,y:a,yy:r},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a){return a?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function a(e,a,n){return e+" "+t(r[n],e,a)}function n(e,a,n){return t(r[n],e,a)}function s(e,t){return t?"dažas sekundes":"dažām sekundēm"}var r={ss:"sekundes_sekundēm_sekunde_sekundes".split("_"),m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};return e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:s,ss:a,m:n,mm:a,h:n,hh:a,d:n,dd:a,M:n,MM:a,y:n,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var s=t.words[n];return 1===n.length?a?s[0]:s[1]:e+" "+t.correctGrammaticalCase(e,s)}};return e.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedjelje] [u] LT","[prošlog] [ponedjeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srijede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mjesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("mi",{months:"Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei".split("_"),weekdaysShort:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),weekdaysMin:"Ta_Ma_Tū_We_Tāi_Pa_Hā".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hēkona ruarua",ss:"%d hēkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"после %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",M:"месец",MM:"%d месеци",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,a=e%100;return 0===e?e+"-ев":0===a?e+"-ен":a>10&&a<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ml",{months:"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ".split("_"),monthsShort:"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.".split("_"),monthsParseExact:!0,weekdays:"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച".split("_"),weekdaysShort:"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി".split("_"),weekdaysMin:"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ".split("_"),longDateFormat:{LT:"A h:mm -നു",LTS:"A h:mm:ss -നു",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -നു",LLLL:"dddd, D MMMM YYYY, A h:mm -നു"},calendar:{sameDay:"[ഇന്ന്] LT",nextDay:"[നാളെ] LT",nextWeek:"dddd, LT",lastDay:"[ഇന്നലെ] LT",lastWeek:"[കഴിഞ്ഞ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s കഴിഞ്ഞ്",past:"%s മുൻപ്",s:"അൽപ നിമിഷങ്ങൾ",ss:"%d സെക്കൻഡ്",m:"ഒരു മിനിറ്റ്",mm:"%d മിനിറ്റ്",h:"ഒരു മണിക്കൂർ",hh:"%d മണിക്കൂർ",d:"ഒരു ദിവസം",dd:"%d ദിവസം",M:"ഒരു മാസം",MM:"%d മാസം",y:"ഒരു വർഷം",yy:"%d വർഷം"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(e,t){return 12===e&&(e=0),"രാത്രി"===t&&e>=4||"ഉച്ച കഴിഞ്ഞ്"===t||"വൈകുന്നേരം"===t?e+12:e},meridiem:function(e,t,a){return e<4?"രാത്രി":e<12?"രാവിലെ":e<17?"ഉച്ച കഴിഞ്ഞ്":e<20?"വൈകുന്നേരം":"രാത്രി"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){switch(a){case"s":return t?"хэдхэн секунд":"хэдхэн секундын";case"ss":return e+(t?" секунд":" секундын");case"m":case"mm":return e+(t?" минут":" минутын");case"h":case"hh":return e+(t?" цаг":" цагийн");case"d":case"dd":return e+(t?" өдөр":" өдрийн");case"M":case"MM":return e+(t?" сар":" сарын");case"y":case"yy":return e+(t?" жил":" жилийн");default:return e}}return e.defineLocale("mn",{months:"Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар".split("_"),monthsShort:"1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар".split("_"),monthsParseExact:!0,weekdays:"Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба".split("_"),weekdaysShort:"Ням_Дав_Мяг_Лха_Пүр_Баа_Бям".split("_"),weekdaysMin:"Ня_Да_Мя_Лх_Пү_Ба_Бя".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY оны MMMMын D",LLL:"YYYY оны MMMMын D HH:mm",LLLL:"dddd, YYYY оны MMMMын D HH:mm"},meridiemParse:/ҮӨ|ҮХ/i,isPM:function(e){return"ҮХ"===e},meridiem:function(e,t,a){return e<12?"ҮӨ":"ҮХ"},calendar:{sameDay:"[Өнөөдөр] LT",nextDay:"[Маргааш] LT",nextWeek:"[Ирэх] dddd LT",lastDay:"[Өчигдөр] LT",lastWeek:"[Өнгөрсөн] dddd LT",sameElse:"L"},relativeTime:{future:"%s дараа",past:"%s өмнө",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2} өдөр/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+" өдөр";default:return e}}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s="";if(t)switch(a){case"s":s="काही सेकंद";break;case"ss":s="%d सेकंद";break;case"m":s="एक मिनिट";break;case"mm":s="%d मिनिटे";break;case"h":s="एक तास";break;case"hh":s="%d तास";break;case"d":s="एक दिवस";break;case"dd":s="%d दिवस";break;case"M":s="एक महिना";break;case"MM":s="%d महिने";break;case"y":s="एक वर्ष";break;case"yy":s="%d वर्षे"}else switch(a){case"s":s="काही सेकंदां";break;case"ss":s="%d सेकंदां";break;case"m":s="एका मिनिटा";break;case"mm":s="%d मिनिटां";break;case"h":s="एका तासा";break;case"hh":s="%d तासां";break;case"d":s="एका दिवसा";break;case"dd":s="%d दिवसां";break;case"M":s="एका महिन्या";break;case"MM":s="%d महिन्यां";break;case"y":s="एका वर्षा";break;case"yy":s="%d वर्षां"}return s.replace(/%d/i,e)}var a={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};return e.defineLocale("mr",{months:"जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर".split("_"),monthsShort:"जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm वाजता",LTS:"A h:mm:ss वाजता",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm वाजता",LLLL:"dddd, D MMMM YYYY, A h:mm वाजता"},calendar:{sameDay:"[आज] LT",nextDay:"[उद्या] LT",nextWeek:"dddd, LT",lastDay:"[काल] LT",lastWeek:"[मागील] dddd, LT",sameElse:"L"},relativeTime:{future:"%sमध्ये",past:"%sपूर्वी",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]})},meridiemParse:/रात्री|सकाळी|दुपारी|सायंकाळी/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात्री"===t?e<4?e:e+12:"सकाळी"===t?e:"दुपारी"===t?e>=10?e:e+12:"सायंकाळी"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"रात्री":e<10?"सकाळी":e<17?"दुपारी":e<20?"सायंकाळी":"रात्री"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"tengahari"===t?e>=11?e:e+12:"petang"===t||"malam"===t?e+12:void 0},meridiem:function(e,t,a){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ġi_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"f’ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"ġurnata",dd:"%d ġranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"၁",2:"၂",3:"၃",4:"၄",5:"၅",6:"၆",7:"၇",8:"၈",9:"၉",0:"၀"},a={"၁":"1","၂":"2","၃":"3","၄":"4","၅":"5","၆":"6","၇":"7","၈":"8","၉":"9","၀":"0"};return e.defineLocale("my",{months:"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ".split("_"),monthsShort:"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ".split("_"),weekdays:"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ".split("_"),weekdaysShort:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),weekdaysMin:"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ယနေ.] LT [မှာ]",nextDay:"[မနက်ဖြန်] LT [မှာ]",nextWeek:"dddd LT [မှာ]",lastDay:"[မနေ.က] LT [မှာ]",lastWeek:"[ပြီးခဲ့သော] dddd LT [မှာ]",sameElse:"L"},relativeTime:{future:"လာမည့် %s မှာ",past:"လွန်ခဲ့သော %s က",s:"စက္ကန်.အနည်းငယ်",ss:"%d စက္ကန့်",m:"တစ်မိနစ်",mm:"%d မိနစ်",h:"တစ်နာရီ",hh:"%d နာရီ",d:"တစ်ရက်",dd:"%d ရက်",M:"တစ်လ",MM:"%d လ",y:"တစ်နှစ်",yy:"%d နှစ်"},preparse:function(e){return e.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},a={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};return e.defineLocale("ne",{months:"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"),monthsShort:"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"),monthsParseExact:!0,weekdays:"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"),weekdaysShort:"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"),weekdaysMin:"आ._सो._मं._बु._बि._शु._श.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"Aको h:mm बजे",LTS:"Aको h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aको h:mm बजे",LLLL:"dddd, D MMMM YYYY, Aको h:mm बजे"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/राति|बिहान|दिउँसो|साँझ/,meridiemHour:function(e,t){return 12===e&&(e=0),"राति"===t?e<4?e:e+12:"बिहान"===t?e:"दिउँसो"===t?e>=10?e:e+12:"साँझ"===t?e+12:void 0},meridiem:function(e,t,a){return e<3?"राति":e<12?"बिहान":e<16?"दिउँसो":e<20?"साँझ":"राति"},calendar:{sameDay:"[आज] LT",nextDay:"[भोलि] LT",nextWeek:"[आउँदो] dddd[,] LT",lastDay:"[हिजो] LT",lastWeek:"[गएको] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%sमा",past:"%s अगाडि",s:"केही क्षण",ss:"%d सेकेण्ड",m:"एक मिनेट",mm:"%d मिनेट",h:"एक घण्टा",hh:"%d घण्टा",d:"एक दिन",dd:"%d दिन",M:"एक महिना",MM:"%d महिना",y:"एक बर्ष",yy:"%d बर्ष"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?a[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mån_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_må_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"੧",2:"੨",3:"੩",4:"੪",5:"੫",6:"੬",7:"੭",8:"੮",9:"੯",0:"੦"},a={"੧":"1","੨":"2","੩":"3","੪":"4","੫":"5","੬":"6","੭":"7","੮":"8","੯":"9","੦":"0"};return e.defineLocale("pa-in",{months:"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),monthsShort:"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),weekdays:"ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ".split("_"),weekdaysShort:"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ".split("_"),weekdaysMin:"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ".split("_"),longDateFormat:{LT:"A h:mm ਵਜੇ",LTS:"A h:mm:ss ਵਜੇ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ਵਜੇ",LLLL:"dddd, D MMMM YYYY, A h:mm ਵਜੇ"},calendar:{sameDay:"[ਅਜ] LT",nextDay:"[ਕਲ] LT",nextWeek:"[ਅਗਲਾ] dddd, LT",lastDay:"[ਕਲ] LT",lastWeek:"[ਪਿਛਲੇ] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ਵਿੱਚ",past:"%s ਪਿਛਲੇ",s:"ਕੁਝ ਸਕਿੰਟ",ss:"%d ਸਕਿੰਟ",m:"ਇਕ ਮਿੰਟ",mm:"%d ਮਿੰਟ",h:"ਇੱਕ ਘੰਟਾ",hh:"%d ਘੰਟੇ",d:"ਇੱਕ ਦਿਨ",dd:"%d ਦਿਨ",M:"ਇੱਕ ਮਹੀਨਾ",MM:"%d ਮਹੀਨੇ",y:"ਇੱਕ ਸਾਲ",yy:"%d ਸਾਲ"},preparse:function(e){return e.replace(/[੧੨੩੪੫੬੭੮੯੦]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,meridiemHour:function(e,t){return 12===e&&(e=0),"ਰਾਤ"===t?e<4?e:e+12:"ਸਵੇਰ"===t?e:"ਦੁਪਹਿਰ"===t?e>=10?e:e+12:"ਸ਼ਾਮ"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"ਰਾਤ":e<10?"ਸਵੇਰ":e<17?"ਦੁਪਹਿਰ":e<20?"ਸ਼ਾਮ":"ਰਾਤ"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function a(e,a,n){var s=e+" ";switch(n){case"ss":return s+(t(e)?"sekundy":"sekund");case"m":return a?"minuta":"minutę";case"mm":return s+(t(e)?"minuty":"minut");case"h":return a?"godzina":"godzinę";case"hh":return s+(t(e)?"godziny":"godzin");case"MM":return s+(t(e)?"miesiące":"miesięcy");case"yy":return s+(t(e)?"lata":"lat")}}var n="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),s="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");return e.defineLocale("pl",{months:function(e,t){return e?""===t?"("+s[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(t)?s[e.month()]:n[e.month()]:n},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT" ;case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:a,m:a,mm:a,h:a,hh:a,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:a,y:"rok",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº"})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a){var n={ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},s=" ";return(e%100>=20||e>=100&&e%100==0)&&(s=" de "),e+s+n[a]}return e.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",ss:t,m:"un minut",mm:t,h:"o oră",hh:t,d:"o zi",dd:t,M:"o lună",MM:t,y:"un an",yy:t},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t){var a=e.split("_");return t%10==1&&t%100!=11?a[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?a[1]:a[2]}function a(e,a,n){var s={ss:a?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:a?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===n?a?"минута":"минуту":e+" "+t(s[n],+e)}var n=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i];return e.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsShortRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},calendar:{sameDay:"[Сегодня, в] LT",nextDay:"[Завтра, в] LT",lastDay:"[Вчера, в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd, [в] LT":"[В] dddd, [в] LT";switch(this.day()){case 0:return"[В следующее] dddd, [в] LT";case 1:case 2:case 4:return"[В следующий] dddd, [в] LT";case 3:case 5:case 6:return"[В следующую] dddd, [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd, [в] LT":"[В] dddd, [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd, [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd, [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd, [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",ss:a,m:a,mm:a,h:"час",hh:a,d:"день",dd:a,M:"месяц",MM:a,y:"год",yy:a},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,t,a){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t=["جنوري","فيبروري","مارچ","اپريل","مئي","جون","جولاءِ","آگسٽ","سيپٽمبر","آڪٽوبر","نومبر","ڊسمبر"],a=["آچر","سومر","اڱارو","اربع","خميس","جمع","ڇنڇر"];return e.defineLocale("sd",{months:t,monthsShort:t,weekdays:a,weekdaysShort:a,weekdaysMin:a,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,a){return e<12?"صبح":"شام"},calendar:{sameDay:"[اڄ] LT",nextDay:"[سڀاڻي] LT",nextWeek:"dddd [اڳين هفتي تي] LT",lastDay:"[ڪالهه] LT",lastWeek:"[گزريل هفتي] dddd [تي] LT",sameElse:"L"},relativeTime:{future:"%s پوء",past:"%s اڳ",s:"چند سيڪنڊ",ss:"%d سيڪنڊ",m:"هڪ منٽ",mm:"%d منٽ",h:"هڪ ڪلاڪ",hh:"%d ڪلاڪ",d:"هڪ ڏينهن",dd:"%d ڏينهن",M:"هڪ مهينو",MM:"%d مهينا",y:"هڪ سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("se",{months:"ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu".split("_"),monthsShort:"ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov".split("_"),weekdays:"sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat".split("_"),weekdaysShort:"sotn_vuos_maŋ_gask_duor_bear_láv".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s geažes",past:"maŋit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta mánnu",MM:"%d mánut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("si",{months:"ජනවාරි_පෙබරවාරි_මාර්තු_අප්රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්".split("_"),monthsShort:"ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ".split("_"),weekdays:"ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා".split("_"),weekdaysShort:"ඉරි_සඳු_අඟ_බදා_බ්රහ_සිකු_සෙන".split("_"),weekdaysMin:"ඉ_ස_අ_බ_බ්ර_සි_සෙ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"a h:mm",LTS:"a h:mm:ss",L:"YYYY/MM/DD",LL:"YYYY MMMM D",LLL:"YYYY MMMM D, a h:mm",LLLL:"YYYY MMMM D [වැනි] dddd, a h:mm:ss"},calendar:{sameDay:"[අද] LT[ට]",nextDay:"[හෙට] LT[ට]",nextWeek:"dddd LT[ට]",lastDay:"[ඊයේ] LT[ට]",lastWeek:"[පසුගිය] dddd LT[ට]",sameElse:"L"},relativeTime:{future:"%sකින්",past:"%sකට පෙර",s:"තත්පර කිහිපය",ss:"තත්පර %d",m:"මිනිත්තුව",mm:"මිනිත්තු %d",h:"පැය",hh:"පැය %d",d:"දිනය",dd:"දින %d",M:"මාසය",MM:"මාස %d",y:"වසර",yy:"වසර %d"},dayOfMonthOrdinalParse:/\d{1,2} වැනි/,ordinal:function(e){return e+" වැනි"},meridiemParse:/පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,isPM:function(e){return"ප.ව."===e||"පස් වරු"===e},meridiem:function(e,t,a){return e>11?a?"ප.ව.":"පස් වරු":a?"පෙ.ව.":"පෙර වරු"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){return e>1&&e<5}function a(e,a,n,s){var r=e+" ";switch(n){case"s":return a||s?"pár sekúnd":"pár sekundami";case"ss":return a||s?r+(t(e)?"sekundy":"sekúnd"):r+"sekundami";case"m":return a?"minúta":s?"minútu":"minútou";case"mm":return a||s?r+(t(e)?"minúty":"minút"):r+"minútami";case"h":return a?"hodina":s?"hodinu":"hodinou";case"hh":return a||s?r+(t(e)?"hodiny":"hodín"):r+"hodinami";case"d":return a||s?"deň":"dňom";case"dd":return a||s?r+(t(e)?"dni":"dní"):r+"dňami";case"M":return a||s?"mesiac":"mesiacom";case"MM":return a||s?r+(t(e)?"mesiace":"mesiacov"):r+"mesiacmi";case"y":return a||s?"rok":"rokom";case"yy":return a||s?r+(t(e)?"roky":"rokov"):r+"rokmi"}}var n="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),s="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");return e.defineLocale("sk",{months:n,monthsShort:s,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s=e+" ";switch(a){case"s":return t||n?"nekaj sekund":"nekaj sekundami";case"ss":return s+=1===e?t?"sekundo":"sekundi":2===e?t||n?"sekundi":"sekundah":e<5?t||n?"sekunde":"sekundah":"sekund";case"m":return t?"ena minuta":"eno minuto";case"mm":return s+=1===e?t?"minuta":"minuto":2===e?t||n?"minuti":"minutama":e<5?t||n?"minute":"minutami":t||n?"minut":"minutami";case"h":return t?"ena ura":"eno uro";case"hh":return s+=1===e?t?"ura":"uro":2===e?t||n?"uri":"urama":e<5?t||n?"ure":"urami":t||n?"ur":"urami";case"d":return t||n?"en dan":"enim dnem";case"dd":return s+=1===e?t||n?"dan":"dnem":2===e?t||n?"dni":"dnevoma":t||n?"dni":"dnevi";case"M":return t||n?"en mesec":"enim mesecem";case"MM":return s+=1===e?t||n?"mesec":"mesecem":2===e?t||n?"meseca":"mesecema":e<5?t||n?"mesece":"meseci":t||n?"mesecev":"meseci";case"y":return t||n?"eno leto":"enim letom";case"yy":return s+=1===e?t||n?"leto":"letom":2===e?t||n?"leti":"letoma":e<5?t||n?"leta":"leti":t||n?"let":"leti"}}return e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,a){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var s=t.words[n];return 1===n.length?a?s[0]:s[1]:e+" "+t.correctGrammaticalCase(e,s)}};return e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,n){var s=t.words[n];return 1===n.length?a?s[0]:s[1]:e+" "+t.correctGrammaticalCase(e,s)}};return e.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){return["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"дан",dd:t.translate,M:"месец",MM:t.translate,y:"годину",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,a){return e<11?"ekuseni":e<15?"emini":e<19?"entsambama":"ebusuku"},meridiemHour:function(e,t){return 12===e&&(e=0),"ekuseni"===t?e:"emini"===t?e>=11?e:e+12:"entsambama"===t||"ebusuku"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"e":1===t?"a":2===t?"a":"e")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"masiku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"௧",2:"௨",3:"௩",4:"௪",5:"௫",6:"௬",7:"௭",8:"௮",9:"௯",0:"௦"},a={"௧":"1","௨":"2","௩":"3","௪":"4","௫":"5","௬":"6","௭":"7","௮":"8","௯":"9","௦":"0"};return e.defineLocale("ta",{months:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),monthsShort:"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்".split("_"),weekdays:"ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை".split("_"),weekdaysShort:"ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி".split("_"),weekdaysMin:"ஞா_தி_செ_பு_வி_வெ_ச".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[இன்று] LT",nextDay:"[நாளை] LT",nextWeek:"dddd, LT",lastDay:"[நேற்று] LT",lastWeek:"[கடந்த வாரம்] dddd, LT",sameElse:"L"},relativeTime:{future:"%s இல்",past:"%s முன்",s:"ஒரு சில விநாடிகள்",ss:"%d விநாடிகள்",m:"ஒரு நிமிடம்",mm:"%d நிமிடங்கள்",h:"ஒரு மணி நேரம்",hh:"%d மணி நேரம்",d:"ஒரு நாள்",dd:"%d நாட்கள்",M:"ஒரு மாதம்",MM:"%d மாதங்கள்",y:"ஒரு வருடம்",yy:"%d ஆண்டுகள்"},dayOfMonthOrdinalParse:/\d{1,2}வது/,ordinal:function(e){return e+"வது"},preparse:function(e){return e.replace(/[௧௨௩௪௫௬௭௮௯௦]/g,function(e){return a[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,meridiem:function(e,t,a){return e<2?" யாமம்":e<6?" வைகறை":e<10?" காலை":e<14?" நண்பகல்":e<18?" எற்பாடு":e<22?" மாலை":" யாமம்"},meridiemHour:function(e,t){return 12===e&&(e=0),"யாமம்"===t?e<2?e:e+12:"வைகறை"===t||"காலை"===t?e:"நண்பகல்"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("te",{months:"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్".split("_"),monthsShort:"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.".split("_"),monthsParseExact:!0,weekdays:"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం".split("_"),weekdaysShort:"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని".split("_"),weekdaysMin:"ఆ_సో_మం_బు_గు_శు_శ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[నేడు] LT",nextDay:"[రేపు] LT",nextWeek:"dddd, LT",lastDay:"[నిన్న] LT",lastWeek:"[గత] dddd, LT",sameElse:"L"},relativeTime:{future:"%s లో",past:"%s క్రితం",s:"కొన్ని క్షణాలు",ss:"%d సెకన్లు",m:"ఒక నిమిషం",mm:"%d నిమిషాలు",h:"ఒక గంట",hh:"%d గంటలు",d:"ఒక రోజు",dd:"%d రోజులు",M:"ఒక నెల",MM:"%d నెలలు",y:"ఒక సంవత్సరం",yy:"%d సంవత్సరాలు"},dayOfMonthOrdinalParse:/\d{1,2}వ/,ordinal:"%dవ",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),"రాత్రి"===t?e<4?e:e+12:"ఉదయం"===t?e:"మధ్యాహ్నం"===t?e>=10?e:e+12:"సాయంత్రం"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"రాత్రి":e<10?"ఉదయం":e<17?"మధ్యాహ్నం":e<20?"సాయంత్రం":"రాత్రి"},week:{dow:0,doy:6}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"minutu balun",ss:"minutu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={0:"-ум",1:"-ум",2:"-юм",3:"-юм",4:"-ум",5:"-ум",6:"-ум",7:"-ум",8:"-ум",9:"-ум",10:"-ум",12:"-ум",13:"-ум",20:"-ум",30:"-юм",40:"-ум",50:"-ум",60:"-ум",70:"-ум",80:"-ум",90:"-ум",100:"-ум"};return e.defineLocale("tg",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе".split("_"),weekdaysShort:"яшб_дшб_сшб_чшб_пшб_ҷум_шнб".split("_"),weekdaysMin:"яш_дш_сш_чш_пш_ҷм_шб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Имрӯз соати] LT",nextDay:"[Пагоҳ соати] LT",lastDay:"[Дирӯз соати] LT",nextWeek:"dddd[и] [ҳафтаи оянда соати] LT",lastWeek:"dddd[и] [ҳафтаи гузашта соати] LT",sameElse:"L"},relativeTime:{future:"баъди %s",past:"%s пеш",s:"якчанд сония",m:"як дақиқа",mm:"%d дақиқа",h:"як соат",hh:"%d соат",d:"як рӯз",dd:"%d рӯз",M:"як моҳ",MM:"%d моҳ",y:"як сол",yy:"%d сол"},meridiemParse:/шаб|субҳ|рӯз|бегоҳ/,meridiemHour:function(e,t){return 12===e&&(e=0),"шаб"===t?e<4?e:e+12:"субҳ"===t?e:"рӯз"===t?e>=11?e:e+12:"бегоҳ"===t?e+12:void 0},meridiem:function(e,t,a){return e<4?"шаб":e<11?"субҳ":e<16?"рӯз":e<19?"бегоҳ":"шаб"},dayOfMonthOrdinalParse:/\d{1,2}-(ум|юм)/,ordinal:function(e){var a=e%10,n=e>=100?100:null;return e+(t[e]||t[a]||t[n])},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,t,a){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"leS":-1!==e.indexOf("jar")?t.slice(0,-3)+"waQ":-1!==e.indexOf("DIS")?t.slice(0,-3)+"nem":t+" pIq"}function a(e){var t=e;return t=-1!==e.indexOf("jaj")?t.slice(0,-3)+"Hu’":-1!==e.indexOf("jar")?t.slice(0,-3)+"wen":-1!==e.indexOf("DIS")?t.slice(0,-3)+"ben":t+" ret"}function n(e,t,a,n){var r=s(e);switch(a){case"ss":return r+" lup";case"mm":return r+" tup";case"hh":return r+" rep";case"dd": return r+" jaj";case"MM":return r+" jar";case"yy":return r+" DIS"}}function s(e){var t=Math.floor(e%1e3/100),a=Math.floor(e%100/10),n=e%10,s="";return t>0&&(s+=r[t]+"vatlh"),a>0&&(s+=(""!==s?" ":"")+r[a]+"maH"),n>0&&(s+=(""!==s?" ":"")+r[n]),""===s?"pagh":s}var r="pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_");return e.defineLocale("tlh",{months:"tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’".split("_"),monthsShort:"jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’".split("_"),monthsParseExact:!0,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa’leS] LT",nextWeek:"LLL",lastDay:"[wa’Hu’] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:t,past:a,s:"puS lup",ss:n,m:"wa’ tup",mm:n,h:"wa’ rep",hh:n,d:"wa’ jaj",dd:n,M:"wa’ jar",MM:n,y:"wa’ DIS",yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};return e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,a){switch(a){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var n=e%10,s=e%100-n,r=e>=100?100:null;return e+(t[n]||t[s]||t[r])}},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t,a,n){var s={s:["viensas secunds","'iensas secunds"],ss:[e+" secunds",e+" secunds"],m:["'n míut","'iens míut"],mm:[e+" míuts",e+" míuts"],h:["'n þora","'iensa þora"],hh:[e+" þoras",e+" þoras"],d:["'n ziua","'iensa ziua"],dd:[e+" ziuas",e+" ziuas"],M:["'n mes","'iens mes"],MM:[e+" mesen",e+" mesen"],y:["'n ar","'iens ar"],yy:[e+" ars",e+" ars"]};return n?s[a][0]:t?s[a][0]:s[a][1]}return e.defineLocale("tzl",{months:"Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar".split("_"),monthsShort:"Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec".split("_"),weekdays:"Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi".split("_"),weekdaysShort:"Súl_Lún_Mai_Már_Xhú_Vié_Sát".split("_"),weekdaysMin:"Sú_Lú_Ma_Má_Xh_Vi_Sá".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM [dallas] YYYY",LLL:"D. MMMM [dallas] YYYY HH.mm",LLLL:"dddd, [li] D. MMMM [dallas] YYYY HH.mm"},meridiemParse:/d\'o|d\'a/i,isPM:function(e){return"d'o"===e.toLowerCase()},meridiem:function(e,t,a){return e>11?a?"d'o":"D'O":a?"d'a":"D'A"},calendar:{sameDay:"[oxhi à] LT",nextDay:"[demà à] LT",nextWeek:"dddd [à] LT",lastDay:"[ieiri à] LT",lastWeek:"[sür el] dddd [lasteu à] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("tzm",{months:"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ".split("_"),monthsShort:"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ".split("_"),weekdays:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),weekdaysShort:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),weekdaysMin:"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ⴰⵙⴷⵅ ⴴ] LT",nextDay:"[ⴰⵙⴽⴰ ⴴ] LT",nextWeek:"dddd [ⴴ] LT",lastDay:"[ⴰⵚⴰⵏⵜ ⴴ] LT",lastWeek:"dddd [ⴴ] LT",sameElse:"L"},relativeTime:{future:"ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s",past:"ⵢⴰⵏ %s",s:"ⵉⵎⵉⴽ",ss:"%d ⵉⵎⵉⴽ",m:"ⵎⵉⵏⵓⴺ",mm:"%d ⵎⵉⵏⵓⴺ",h:"ⵙⴰⵄⴰ",hh:"%d ⵜⴰⵙⵙⴰⵄⵉⵏ",d:"ⴰⵙⵙ",dd:"%d oⵙⵙⴰⵏ",M:"ⴰⵢoⵓⵔ",MM:"%d ⵉⵢⵢⵉⵔⵏ",y:"ⴰⵙⴳⴰⵙ",yy:"%d ⵉⵙⴳⴰⵙⵏ"},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("tzm-latn",{months:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minuḍ",mm:"%d minuḍ",h:"saɛa",hh:"%d tassaɛin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("ug-cn",{months:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),monthsShort:"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر".split("_"),weekdays:"يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە".split("_"),weekdaysShort:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),weekdaysMin:"يە_دۈ_سە_چا_پە_جۈ_شە".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-يىلىM-ئاينىڭD-كۈنى",LLL:"YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm",LLLL:"dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm"},meridiemParse:/يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,meridiemHour:function(e,t){return 12===e&&(e=0),"يېرىم كېچە"===t||"سەھەر"===t||"چۈشتىن بۇرۇن"===t?e:"چۈشتىن كېيىن"===t||"كەچ"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,a){var n=100*e+t;return n<600?"يېرىم كېچە":n<900?"سەھەر":n<1130?"چۈشتىن بۇرۇن":n<1230?"چۈش":n<1800?"چۈشتىن كېيىن":"كەچ"},calendar:{sameDay:"[بۈگۈن سائەت] LT",nextDay:"[ئەتە سائەت] LT",nextWeek:"[كېلەركى] dddd [سائەت] LT",lastDay:"[تۆنۈگۈن] LT",lastWeek:"[ئالدىنقى] dddd [سائەت] LT",sameElse:"L"},relativeTime:{future:"%s كېيىن",past:"%s بۇرۇن",s:"نەچچە سېكونت",ss:"%d سېكونت",m:"بىر مىنۇت",mm:"%d مىنۇت",h:"بىر سائەت",hh:"%d سائەت",d:"بىر كۈن",dd:"%d كۈن",M:"بىر ئاي",MM:"%d ئاي",y:"بىر يىل",yy:"%d يىل"},dayOfMonthOrdinalParse:/\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"-كۈنى";case"w":case"W":return e+"-ھەپتە";default:return e}},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";function t(e,t){var a=e.split("_");return t%10==1&&t%100!=11?a[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?a[1]:a[2]}function a(e,a,n){var s={ss:a?"секунда_секунди_секунд":"секунду_секунди_секунд",mm:a?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:a?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?a?"хвилина":"хвилину":"h"===n?a?"година":"годину":e+" "+t(s[n],+e)}function n(e,t){var a={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")};return!0===e?a.nominative.slice(1,7).concat(a.nominative.slice(0,1)):e?a[/(\[[ВвУу]\]) ?dddd/.test(t)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(t)?"genitive":"nominative"][e.day()]:a.nominative}function s(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}return e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:s("[Сьогодні "),nextDay:s("[Завтра "),lastDay:s("[Вчора "),nextWeek:s("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return s("[Минулої] dddd [").call(this);case 1:case 2:case 4:return s("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",ss:a,m:a,mm:a,h:"годину",hh:a,d:"день",dd:a,M:"місяць",MM:a,y:"рік",yy:a},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,t,a){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";var t=["جنوری","فروری","مارچ","اپریل","مئی","جون","جولائی","اگست","ستمبر","اکتوبر","نومبر","دسمبر"],a=["اتوار","پیر","منگل","بدھ","جمعرات","جمعہ","ہفتہ"];return e.defineLocale("ur",{months:t,monthsShort:t,weekdays:a,weekdaysShort:a,weekdaysMin:a,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd، D MMMM YYYY HH:mm"},meridiemParse:/صبح|شام/,isPM:function(e){return"شام"===e},meridiem:function(e,t,a){return e<12?"صبح":"شام"},calendar:{sameDay:"[آج بوقت] LT",nextDay:"[کل بوقت] LT",nextWeek:"dddd [بوقت] LT",lastDay:"[گذشتہ روز بوقت] LT",lastWeek:"[گذشتہ] dddd [بوقت] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s قبل",s:"چند سیکنڈ",ss:"%d سیکنڈ",m:"ایک منٹ",mm:"%d منٹ",h:"ایک گھنٹہ",hh:"%d گھنٹے",d:"ایک دن",dd:"%d دن",M:"ایک ماہ",MM:"%d ماہ",y:"ایک سال",yy:"%d سال"},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/,/g,"،")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("uz",{months:"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр".split("_"),monthsShort:"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек".split("_"),weekdays:"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба".split("_"),weekdaysShort:"Якш_Душ_Сеш_Чор_Пай_Жум_Шан".split("_"),weekdaysMin:"Як_Ду_Се_Чо_Па_Жу_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Бугун соат] LT [да]",nextDay:"[Эртага] LT [да]",nextWeek:"dddd [куни соат] LT [да]",lastDay:"[Кеча соат] LT [да]",lastWeek:"[Утган] dddd [куни соат] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s ичида",past:"Бир неча %s олдин",s:"фурсат",ss:"%d фурсат",m:"бир дакика",mm:"%d дакика",h:"бир соат",hh:"%d соат",d:"бир кун",dd:"%d кун",M:"бир ой",MM:"%d ой",y:"бир йил",yy:"%d йил"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,a){return e<12?a?"sa":"SA":a?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("x-pseudo",{months:"J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér".split("_"),monthsShort:"J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc".split("_"),monthsParseExact:!0,weekdays:"S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý".split("_"),weekdaysShort:"S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát".split("_"),weekdaysMin:"S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~ódá~ý át] LT",nextDay:"[T~ómó~rró~w át] LT",nextWeek:"dddd [át] LT",lastDay:"[Ý~ést~érdá~ý át] LT",lastWeek:"[L~ást] dddd [át] LT",sameElse:"L"},relativeTime:{future:"í~ñ %s",past:"%s á~gó",s:"á ~féw ~sécó~ñds",ss:"%d s~écóñ~ds",m:"á ~míñ~úté",mm:"%d m~íñú~tés",h:"á~ñ hó~úr",hh:"%d h~óúrs",d:"á ~dáý",dd:"%d d~áýs",M:"á ~móñ~th",MM:"%d m~óñt~hs",y:"á ~ýéár",yy:"%d ý~éárs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("yo",{months:"Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀".split("_"),monthsShort:"Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀".split("_"),weekdays:"Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta".split("_"),weekdaysShort:"Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá".split("_"),weekdaysMin:"Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Ònì ni] LT",nextDay:"[Ọ̀la ni] LT",nextWeek:"dddd [Ọsẹ̀ tón'bọ] [ni] LT",lastDay:"[Àna ni] LT",lastWeek:"dddd [Ọsẹ̀ tólọ́] [ni] LT",sameElse:"L"},relativeTime:{future:"ní %s",past:"%s kọjá",s:"ìsẹjú aayá die",ss:"aayá %d",m:"ìsẹjú kan",mm:"ìsẹjú %d",h:"wákati kan",hh:"wákati %d",d:"ọjọ́ kan",dd:"ọjọ́ %d",M:"osù kan",MM:"osù %d",y:"ọdún kan",yy:"ọdún %d"},dayOfMonthOrdinalParse:/ọjọ́\s\d{1,2}/,ordinal:"ọjọ́ %d",week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,a){var n=100*e+t;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s内",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("zh-hk",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,a){var n=100*e+t;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})})},function(e,t,a){!function(e,t){t(a(42))}(0,function(e){"use strict";return e.defineLocale("zh-tw",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,a){var n=100*e+t;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天] LT",nextDay:"[明天] LT",nextWeek:"[下]dddd LT",lastDay:"[昨天] LT",lastWeek:"[上]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})})},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={"cy-GB":{relativeTime:{past:"%s yn ôl",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:function(e){return 2===e?"2 funud":"".concat(e," munud")},h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d o ddyddiau",M:"mis",MM:function(e){return 2===e?"2 fis":"".concat(e," mis")},y:"blwyddyn",yy:"%d o flynyddoedd"}},"gd-GB":{relativeTime:{past:"Bho chionn %s",s:"beagan dhiogan",ss:"%d diogan",m:"mionaid",mm:function(e){return 2===e?"2 mhionaid":3===e?"3 mionaidean":"".concat(e," mionaid")},h:"uair a thìde",hh:function(e){return 2===e?"2 uair a thìde":"".concat(e," uairean a thìde")},d:"latha",dd:function(e){return 3===e?"3 làithean":"".concat(e," latha")},M:"mìos",MM:function(e){return 2===e?"2 mhìos":"".concat(e," mìosan")},y:"bliadhna",yy:function(e){return 2===e?"bhliadhna":"".concat(e," bliadhna")}}},"ga-GB":{relativeTime:{past:"%s ó shin",s:"cúpla soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair",hh:"%d uair",d:"lá",dd:"%d lá",M:"mí",MM:"%d mí",y:"bliain",yy:"%d bliain"}}};t.default=a},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=n(a(20)),i=function(e,t){return s.default.createElement("span",{className:"education-content-promo__context-label--".concat(t)},e)},d=function(e,t,a){return JSON.stringify({CHD:"".concat(e.toLowerCase().replace(" ","-"),"-").concat(t,"::").concat(a)})},o=function(e,t,a,n,r,i,o){return e.href?s.default.createElement("span",{className:a,key:e.label},s.default.createElement("a",{className:e.className,href:e.href,"data-bbc-container":n,"data-bbc-title":e.label,onFocus:i,onBlur:o,"data-bbc-metadata":d(t,e.type,r)},e.label)):s.default.createElement("span",{className:a,key:e.label},e.label)},_=function(e,t,a,n,s,r,i){return e.map(function(e,d,_){var u="education-content-promo__context-item-label";return d<_.length-1&&(u+="--separator"),u+="--".concat(s),o(e,t,u,a,n,r,i)})},u=function(e){var t=e.contextLabel,a=e.contextItems,n=e.dataBbcContainer,r=e.dataBbcMetadataIndex,d=e.brand,o=e.className,u=e.addBackground,m=e.removeBackground,l="",c="";return a&&a.length>0&&(l=i(t,d),c=s.default.createElement("div",{className:"education-content-promo__context-labels--".concat(d)},_(a,t,n,r,d,u,m))),s.default.createElement("div",{className:o},l,c)};u.defaultProps={contextItems:null,dataBbcMetadataIndex:1,brand:"default",className:void 0,addBackground:function(){},removeBackground:function(){}},u.propTypes={contextLabel:r.default.string.isRequired,contextItems:r.default.arrayOf(r.default.shape({href:r.default.string,label:r.default.string.isRequired,className:r.default.string.isRequired,type:r.default.string.isRequired})),dataBbcContainer:r.default.string.isRequired,dataBbcMetadataIndex:r.default.number,brand:r.default.string,className:r.default.string,addBackground:r.default.func,removeBackground:r.default.func};var m=u;t.default=m},function(e,t,a){"use strict";var n=a(6);Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var s=n(a(4)),r=n(a(20)),i=function(e){var t=e.message,a=e.brand;return s.default.createElement("div",{className:"education-content-promo-placeholder--".concat(a)},s.default.createElement("div",{className:"education-content-promo-placeholder__container--".concat(a)},s.default.createElement("div",{className:"education-content-promo-placeholder__text--".concat(a)},t)))};i.defaultProps={brand:"default"},i.propTypes={message:r.default.string.isRequired,brand:r.default.string};var d=i;t.default=d}]);; });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-bitesize-primary-phonics-view","language":"en-GB","version":"1.0.4","_mrrVersion":"2.0.18"},'u08258114398408978'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'morph/react' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react/1.0.0/react.min', 'morph/react-dom' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-react-dom/1.0.0/react-dom.min', 'morph/es5-shim' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-shim.min', 'morph/es5-sham' : '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/vendor-es5-shim/4.1.13/es5-sham.min', 'morph/module/morph': '//web.archive.org/web/20200820050938/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle', 'live-push' : '//web.archive.org/web/20200820050938/https://push.api.bbci.co.uk/public/client' }, shim: { 'morph/react': { deps: ['morph/es5-shim', 'morph/es5-sham'] }, 'morph/es5-sham': { deps: ['morph/es5-shim'] } }, map: { 'morph/react-dom': { 'react': 'morph/react' } } }); } function attempt(fn) { fn(); } requirejs(['morph/react', 'morph/react-dom', 'morph/module/morph'], function(React, ReactDOM) { window.React = React; window.ReactDOM = ReactDOM; if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); }); };</script><script>if (!Morph.manualInit) { Morph.init(); } /* u08258114398408978 */</script><!-- Chartbeat Web Analytics code - start --> <script type="text/javascript"> /** CONFIGURATION START **/ (function() { var noCookies = true; var cookiePrefix = '_chartbeat'; if ("object" === typeof bbccookies && typeof bbccookies.readPolicy == 'function') { noCookies = !bbccookies.readPolicy().performance; } if (noCookies && document.cookie.indexOf(cookiePrefix) !== -1) { //Find and remove cookies whose names begin with '_chartbeat' var cookieSplit = document.cookie.split(';'); var cookieLength = cookieSplit.length; while (cookieLength--) { var cookie = cookieSplit[cookieLength].replace(/^s+|s+$/g, ''); var cookieName = cookie.split('=')[0]; if (cookieName.indexOf(cookiePrefix) === 0) { document.cookie = cookieName + '=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;'; } } } _sf_async_config.noCookies = noCookies; }()); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200820050938/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; }()); </script> <!-- Chartbeat Web Analytics code - end --></body></html><!-- FILE ARCHIVED ON 05:09:38 Aug 20, 2020 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 20:37:42 Nov 26, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.673 exclusion.robots: 0.033 exclusion.robots.policy: 0.019 esindex: 0.013 cdx.remote: 9.578 LoadShardBlock: 246.586 (3) PetaboxLoader3.datanode: 185.418 (4) PetaboxLoader3.resolve: 124.088 (2) load_resource: 172.64 -->