MailPoet Newsletters (New) - Version 3.4.1

Version Description

  • 2018-02-06 =
  • Fixed: previously saved templates are now under "Your saved templates";
  • Improved: imported templates with no matching category are now added to "Your saved templates".
Download this release

Release Info

Developer wysija
Plugin Icon 128x128 MailPoet Newsletters (New)
Version 3.4.1
Comparing to
See all releases

Code changes from version 3.4.0 to 3.4.1

assets/css/{admin.622ede62.css → admin.d6365b9b.css} RENAMED
@@ -1281,6 +1281,21 @@ a:focus {
1281
  .select2-container {
1282
  width: 25em !important;
1283
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1284
  textarea.regular-text {
1285
  width: 25em !important;
1286
  }
@@ -1827,7 +1842,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
1827
  .CodeMirror-linewidget {
1828
  position: relative;
1829
  z-index: 2;
1830
- padding: 0.1px; /* Force widget margins to stay inside of the container */
1831
  }
1832
 
1833
  .CodeMirror-widget {}
1281
  .select2-container {
1282
  width: 25em !important;
1283
  }
1284
+ input.select2-search__field::-webkit-input-placeholder {
1285
+ color: #999 /* default Select2 placeholder color for single dropdown */;
1286
+ }
1287
+ input.select2-search__field:-moz-placeholder {
1288
+ color: #999 /* default Select2 placeholder color for single dropdown */;
1289
+ }
1290
+ input.select2-search__field::-moz-placeholder {
1291
+ color: #999 /* default Select2 placeholder color for single dropdown */;
1292
+ }
1293
+ input.select2-search__field:-ms-input-placeholder {
1294
+ color: #999 /* default Select2 placeholder color for single dropdown */;
1295
+ }
1296
+ .select2-container--default.select2-container--focus .select2-selection--multiple {
1297
+ border: 1px solid #aaa; /* default Select2 border for single dropdown */
1298
+ }
1299
  textarea.regular-text {
1300
  width: 25em !important;
1301
  }
1842
  .CodeMirror-linewidget {
1843
  position: relative;
1844
  z-index: 2;
1845
+ overflow: auto;
1846
  }
1847
 
1848
  .CodeMirror-widget {}
assets/css/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "admin-global.css": "admin-global.673373a1.css",
3
- "admin.css": "admin.622ede62.css",
4
  "importExport.css": "importExport.b3745466.css",
5
  "newsletter_editor.css": "newsletter_editor.9cb620b4.css",
6
  "public.css": "public.cae357df.css",
1
  {
2
  "admin-global.css": "admin-global.673373a1.css",
3
+ "admin.css": "admin.d6365b9b.css",
4
  "importExport.css": "importExport.b3745466.css",
5
  "newsletter_editor.css": "newsletter_editor.9cb620b4.css",
6
  "public.css": "public.cae357df.css",
assets/js/{admin.aaa81cde.js → admin.e914b58f.js} RENAMED
@@ -451,23 +451,23 @@ webpackJsonp([0],{
451
 
452
  /***/ },
453
 
454
- /***/ 290:
455
  /***/ function(module, exports, __webpack_require__) {
456
 
457
  /* WEBPACK VAR INJECTION */(function(global) {"use strict";
458
 
459
  if (!global["MailPoetLib"]) global["MailPoetLib"] = {};
460
- module.exports = global["MailPoetLib"]["Form"] = __webpack_require__(291);
461
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
462
 
463
  /***/ },
464
 
465
- /***/ 291:
466
  /***/ function(module, exports, __webpack_require__) {
467
 
468
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
469
 
470
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(276), __webpack_require__(292), __webpack_require__(423)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, MailPoet, Form, ReactStringReplace) {
471
  var fields = [{
472
  name: 'email',
473
  label: MailPoet.I18n.t('email'),
@@ -1094,7 +1094,7 @@ webpackJsonp([0],{
1094
  getInitialState: function getInitialState() {
1095
  return {
1096
  loading: false,
1097
- templates: {},
1098
  selectedCategory: ''
1099
  };
1100
  },
@@ -1114,31 +1114,44 @@ webpackJsonp([0],{
1114
  action: 'getAll'
1115
  }).done(function (response) {
1116
  if (_this2.isMounted()) {
1117
- if (response.data.length === 0) {
1118
- response.data = [{
1119
- name: _mailpoet2['default'].I18n.t('mailpoetGuideTemplateTitle'),
1120
- description: _mailpoet2['default'].I18n.t('mailpoetGuideTemplateDescription'),
1121
- categories: '["welcome", "notification", "standard"]',
1122
- readonly: '1'
1123
- }];
1124
- }
1125
-
1126
- var templates = templatesCategories.reduce(function (result, _ref2) {
1127
- var name = _ref2.name;
1128
 
1129
- var obj = result;
1130
- obj[name] = [];
1131
- return obj;
1132
- }, {});
 
 
 
1133
 
1134
- templates = response.data.reduce(function (result, item) {
1135
- JSON.parse(item.categories).forEach(function (category) {
1136
- result[category].push(item);
 
 
 
 
 
 
 
 
 
 
 
 
 
1137
  });
1138
- return result;
1139
- }, templates);
1140
 
1141
- _this2.selectInitialCategory(templates);
 
1142
  }
1143
  }).fail(function (response) {
1144
  if (response.errors.length > 0) {
@@ -1353,9 +1366,9 @@ webpackJsonp([0],{
1353
  _react2['default'].createElement(
1354
  'ul',
1355
  { className: 'filter-links' },
1356
- templatesCategories.map(function (_ref3) {
1357
- var name = _ref3.name;
1358
- var label = _ref3.label;
1359
  return _react2['default'].createElement(CategoryTab, {
1360
  key: name,
1361
  name: name,
@@ -8982,7 +8995,7 @@ webpackJsonp([0],{
8982
 
8983
  var _subscribersListJsx2 = _interopRequireDefault(_subscribersListJsx);
8984
 
8985
- var _subscribersFormJsx = __webpack_require__(290);
8986
 
8987
  var _subscribersFormJsx2 = _interopRequireDefault(_subscribersFormJsx);
8988
 
@@ -10361,7 +10374,7 @@ webpackJsonp([0],{
10361
 
10362
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
10363
 
10364
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(280), __webpack_require__(276), __webpack_require__(292), __webpack_require__(523), __webpack_require__(520), __webpack_require__(524), __webpack_require__(433), __webpack_require__(437), __webpack_require__(275), __webpack_require__(527)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, _, MailPoet, Form, StandardNewsletterFields, NotificationNewsletterFields, WelcomeNewsletterFields, Breadcrumb, HelpTooltip, jQuery, html2canvas) {
10365
  var NewsletterSend = React.createClass({
10366
  displayName: 'NewsletterSend',
10367
 
@@ -10755,7 +10768,7 @@ webpackJsonp([0],{
10755
  return segment.name + ' (' + parseInt(segment.subscribers, 10).toLocaleString() + ')';
10756
  },
10757
  transformChangedValue: function transformChangedValue(segmentIds) {
10758
- var allSegments = this.state.items;
10759
  return _.map(segmentIds, function (id) {
10760
  return _.find(allSegments, function (segment) {
10761
  return segment.id === id;
@@ -10833,7 +10846,7 @@ webpackJsonp([0],{
10833
 
10834
  var _react2 = _interopRequireDefault(_react);
10835
 
10836
- var _formFieldsSelectJsx = __webpack_require__(297);
10837
 
10838
  var _formFieldsSelectJsx2 = _interopRequireDefault(_formFieldsSelectJsx);
10839
 
@@ -11264,7 +11277,7 @@ webpackJsonp([0],{
11264
  return segment.name + ' (' + parseInt(segment.subscribers, 10).toLocaleString() + ')';
11265
  },
11266
  transformChangedValue: function transformChangedValue(segmentIds) {
11267
- var allSegments = this.state.items;
11268
  return _.map(segmentIds, function (id) {
11269
  return _.find(allSegments, function (segment) {
11270
  return segment.id === id;
@@ -16484,7 +16497,7 @@ webpackJsonp([0],{
16484
 
16485
  var _classnames2 = _interopRequireDefault(_classnames);
16486
 
16487
- var _moment = __webpack_require__(301);
16488
 
16489
  var _moment2 = _interopRequireDefault(_moment);
16490
 
@@ -18223,7 +18236,7 @@ webpackJsonp([0],{
18223
 
18224
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
18225
 
18226
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(276), __webpack_require__(292)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, MailPoet, Form) {
18227
  var fields = [{
18228
  name: 'name',
18229
  label: MailPoet.I18n.t('name'),
@@ -21081,7 +21094,7 @@ webpackJsonp([0],{
21081
  __webpack_require__(556),
21082
  __webpack_require__(557),
21083
  __webpack_require__(558),
21084
- __webpack_require__(301)
21085
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function (
21086
  Backbone,
21087
  _,
451
 
452
  /***/ },
453
 
454
+ /***/ 291:
455
  /***/ function(module, exports, __webpack_require__) {
456
 
457
  /* WEBPACK VAR INJECTION */(function(global) {"use strict";
458
 
459
  if (!global["MailPoetLib"]) global["MailPoetLib"] = {};
460
+ module.exports = global["MailPoetLib"]["Form"] = __webpack_require__(292);
461
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
462
 
463
  /***/ },
464
 
465
+ /***/ 292:
466
  /***/ function(module, exports, __webpack_require__) {
467
 
468
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
469
 
470
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(276), __webpack_require__(293), __webpack_require__(423)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, MailPoet, Form, ReactStringReplace) {
471
  var fields = [{
472
  name: 'email',
473
  label: MailPoet.I18n.t('email'),
1094
  getInitialState: function getInitialState() {
1095
  return {
1096
  loading: false,
1097
+ templates: {}, // {category1: [template11, template12, ..], category2: [template21, ...]}
1098
  selectedCategory: ''
1099
  };
1100
  },
1114
  action: 'getAll'
1115
  }).done(function (response) {
1116
  if (_this2.isMounted()) {
1117
+ (function () {
1118
+ if (response.data.length === 0) {
1119
+ response.data = [{
1120
+ name: _mailpoet2['default'].I18n.t('mailpoetGuideTemplateTitle'),
1121
+ description: _mailpoet2['default'].I18n.t('mailpoetGuideTemplateDescription'),
1122
+ categories: '["welcome", "notification", "standard"]',
1123
+ readonly: '1'
1124
+ }];
1125
+ }
 
 
1126
 
1127
+ var templates = {};
1128
+ var categoriesNames = templatesCategories.map(function (category) {
1129
+ return category.name;
1130
+ });
1131
+ categoriesNames.forEach(function (name) {
1132
+ templates[name] = [];
1133
+ });
1134
 
1135
+ response.data.forEach(function (template) {
1136
+ var categories = undefined;
1137
+ try {
1138
+ categories = JSON.parse(template.categories).filter(function (name) {
1139
+ return categoriesNames.indexOf(name) !== -1;
1140
+ });
1141
+ } catch (err) {
1142
+ categories = [];
1143
+ }
1144
+ if (categories.length === 0) {
1145
+ // the template has no known category
1146
+ categories = ['saved']; // we add it to "Your saved templates"
1147
+ }
1148
+ categories.forEach(function (category) {
1149
+ templates[category].push(template);
1150
+ });
1151
  });
 
 
1152
 
1153
+ _this2.selectInitialCategory(templates);
1154
+ })();
1155
  }
1156
  }).fail(function (response) {
1157
  if (response.errors.length > 0) {
1366
  _react2['default'].createElement(
1367
  'ul',
1368
  { className: 'filter-links' },
1369
+ templatesCategories.map(function (_ref2) {
1370
+ var name = _ref2.name;
1371
+ var label = _ref2.label;
1372
  return _react2['default'].createElement(CategoryTab, {
1373
  key: name,
1374
  name: name,
8995
 
8996
  var _subscribersListJsx2 = _interopRequireDefault(_subscribersListJsx);
8997
 
8998
+ var _subscribersFormJsx = __webpack_require__(291);
8999
 
9000
  var _subscribersFormJsx2 = _interopRequireDefault(_subscribersFormJsx);
9001
 
10374
 
10375
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
10376
 
10377
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(280), __webpack_require__(276), __webpack_require__(293), __webpack_require__(523), __webpack_require__(520), __webpack_require__(524), __webpack_require__(433), __webpack_require__(437), __webpack_require__(275), __webpack_require__(527)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, _, MailPoet, Form, StandardNewsletterFields, NotificationNewsletterFields, WelcomeNewsletterFields, Breadcrumb, HelpTooltip, jQuery, html2canvas) {
10378
  var NewsletterSend = React.createClass({
10379
  displayName: 'NewsletterSend',
10380
 
10768
  return segment.name + ' (' + parseInt(segment.subscribers, 10).toLocaleString() + ')';
10769
  },
10770
  transformChangedValue: function transformChangedValue(segmentIds) {
10771
+ var allSegments = this.getItems();
10772
  return _.map(segmentIds, function (id) {
10773
  return _.find(allSegments, function (segment) {
10774
  return segment.id === id;
10846
 
10847
  var _react2 = _interopRequireDefault(_react);
10848
 
10849
+ var _formFieldsSelectJsx = __webpack_require__(298);
10850
 
10851
  var _formFieldsSelectJsx2 = _interopRequireDefault(_formFieldsSelectJsx);
10852
 
11277
  return segment.name + ' (' + parseInt(segment.subscribers, 10).toLocaleString() + ')';
11278
  },
11279
  transformChangedValue: function transformChangedValue(segmentIds) {
11280
+ var allSegments = this.getItems();
11281
  return _.map(segmentIds, function (id) {
11282
  return _.find(allSegments, function (segment) {
11283
  return segment.id === id;
16497
 
16498
  var _classnames2 = _interopRequireDefault(_classnames);
16499
 
16500
+ var _moment = __webpack_require__(302);
16501
 
16502
  var _moment2 = _interopRequireDefault(_moment);
16503
 
18236
 
18237
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
18238
 
18239
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(181), __webpack_require__(276), __webpack_require__(293)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Router, MailPoet, Form) {
18240
  var fields = [{
18241
  name: 'name',
18242
  label: MailPoet.I18n.t('name'),
21094
  __webpack_require__(556),
21095
  __webpack_require__(557),
21096
  __webpack_require__(558),
21097
+ __webpack_require__(302)
21098
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function (
21099
  Backbone,
21100
  _,
assets/js/{admin_vendor.1b9d5c2b.js → admin_vendor.d60039d9.js} RENAMED
@@ -7,7 +7,7 @@ webpackJsonp([1],[
7
  __webpack_require__(181);
8
  __webpack_require__(423);
9
  __webpack_require__(278);
10
- __webpack_require__(292);
11
  __webpack_require__(534);
12
  __webpack_require__(433);
13
  __webpack_require__(525);
@@ -31555,6 +31555,10 @@ webpackJsonp([1],[
31555
  if (this.props.messages !== undefined) {
31556
  messages = this.props.messages;
31557
  }
 
 
 
 
31558
 
31559
  return _react2['default'].createElement(
31560
  'div',
@@ -31578,6 +31582,7 @@ webpackJsonp([1],[
31578
  onSelectFilter: this.handleFilter,
31579
  onEmptyTrash: this.handleEmptyTrash
31580
  }),
 
31581
  _react2['default'].createElement(_listingPagesJsx2['default'], {
31582
  count: this.state.count,
31583
  page: this.state.page,
@@ -33892,30 +33897,31 @@ webpackJsonp([1],[
33892
 
33893
  /***/ },
33894
  /* 288 */
 
 
 
 
 
 
 
 
 
 
33895
  /***/ function(module, exports, __webpack_require__) {
33896
 
33897
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
33898
 
33899
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
33900
 
33901
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(34), __webpack_require__(275), __webpack_require__(289)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, ReactDOM, jQuery) {
33902
  var Selection = React.createClass({
33903
  displayName: 'Selection',
33904
 
33905
- getInitialState: function getInitialState() {
33906
- return {
33907
- items: [],
33908
- select2: false
33909
- };
33910
- },
33911
- componentWillMount: function componentWillMount() {
33912
- this.loadCachedItems();
33913
- },
33914
  allowMultipleValues: function allowMultipleValues() {
33915
  return this.props.field.multiple === true;
33916
  },
33917
  isSelect2Initialized: function isSelect2Initialized() {
33918
- return this.state.select2 === true;
33919
  },
33920
  componentDidMount: function componentDidMount() {
33921
  if (this.allowMultipleValues() || this.props.field.forceSelect2) {
@@ -33926,23 +33932,43 @@ webpackJsonp([1],[
33926
  if (this.props.item !== undefined && prevProps.item !== undefined && this.props.item.id !== prevProps.item.id) {
33927
  jQuery('#' + this.refs.select.id).val(this.getSelectedValues()).trigger('change');
33928
  }
 
 
 
 
33929
  },
33930
  componentWillUnmount: function componentWillUnmount() {
33931
  if (this.allowMultipleValues() || this.props.field.forceSelect2) {
33932
  this.destroySelect2();
33933
  }
33934
  },
 
 
 
 
 
 
 
 
33935
  destroySelect2: function destroySelect2() {
33936
  if (this.isSelect2Initialized()) {
33937
  jQuery('#' + this.refs.select.id).select2('destroy');
 
33938
  }
33939
  },
 
 
 
 
 
 
 
33940
  setupSelect2: function setupSelect2() {
33941
  if (this.isSelect2Initialized()) {
33942
  return;
33943
  }
33944
 
33945
- var select2 = jQuery('#' + this.refs.select.id).select2({
33946
  width: this.props.width || '',
33947
  templateResult: function templateResult(item) {
33948
  if (item.element && item.element.selected) {
@@ -33952,7 +33978,42 @@ webpackJsonp([1],[
33952
  }
33953
  return item.text;
33954
  }
33955
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33956
 
33957
  var hasRemoved = false;
33958
  select2.on('select2:unselecting', function () {
@@ -33966,8 +34027,6 @@ webpackJsonp([1],[
33966
  });
33967
 
33968
  select2.on('change', this.handleChange);
33969
-
33970
- this.setState({ select2: true });
33971
  },
33972
  getSelectedValues: function getSelectedValues() {
33973
  if (this.props.field.selected !== undefined) {
@@ -33985,7 +34044,7 @@ webpackJsonp([1],[
33985
  }
33986
  return null;
33987
  },
33988
- loadCachedItems: function loadCachedItems() {
33989
  var items = undefined;
33990
  if (typeof window['mailpoet_' + this.props.field.endpoint] !== 'undefined') {
33991
  items = window['mailpoet_' + this.props.field.endpoint];
@@ -33997,11 +34056,9 @@ webpackJsonp([1],[
33997
  if (this.props.field.filter !== undefined) {
33998
  items = items.filter(this.props.field.filter);
33999
  }
34000
-
34001
- this.setState({
34002
- items: items
34003
- });
34004
  }
 
 
34005
  },
34006
  handleChange: function handleChange(e) {
34007
  var value = undefined;
@@ -34052,13 +34109,14 @@ webpackJsonp([1],[
34052
  // For single selects only, in order for the placeholder value to appear,
34053
  // we must have a blank <option> as the first option in the <select> control.
34054
  if (this.allowMultipleValues()) return undefined;
34055
- if (this.props.field.placeholder) return React.createElement('option', null);
34056
  return undefined;
34057
  },
34058
  render: function render() {
34059
  var _this = this;
34060
 
34061
- var options = this.state.items.map(function (item, index) {
 
34062
  var label = _this.getLabel(item);
34063
  var searchLabel = _this.getSearchLabel(item);
34064
  var value = _this.getValue(item);
@@ -34067,6 +34125,7 @@ webpackJsonp([1],[
34067
  'option',
34068
  {
34069
  key: 'option-' + index,
 
34070
  value: value,
34071
  title: searchLabel
34072
  },
@@ -34077,7 +34136,7 @@ webpackJsonp([1],[
34077
  return React.createElement(
34078
  'select',
34079
  _extends({
34080
- id: this.props.field.id || this.props.field.name,
34081
  ref: 'select',
34082
  disabled: this.props.field.disabled,
34083
  'data-placeholder': this.props.field.placeholder,
@@ -34094,7 +34153,7 @@ webpackJsonp([1],[
34094
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
34095
 
34096
  /***/ },
34097
- /* 289 */
34098
  /***/ function(module, exports, __webpack_require__) {
34099
 
34100
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;var require;var require;/*!
@@ -39846,24 +39905,24 @@ webpackJsonp([1],[
39846
 
39847
 
39848
  /***/ },
39849
- /* 290 */,
39850
  /* 291 */,
39851
- /* 292 */
 
39852
  /***/ function(module, exports, __webpack_require__) {
39853
 
39854
  /* WEBPACK VAR INJECTION */(function(global) {"use strict";
39855
 
39856
  if (!global["MailPoetLib"]) global["MailPoetLib"] = {};
39857
- module.exports = global["MailPoetLib"]["Form"] = __webpack_require__(293);
39858
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
39859
 
39860
  /***/ },
39861
- /* 293 */
39862
  /***/ function(module, exports, __webpack_require__) {
39863
 
39864
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
39865
 
39866
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(276), __webpack_require__(277), __webpack_require__(181), __webpack_require__(294), __webpack_require__(275)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, MailPoet, classNames, Router, FormField, jQuery) {
39867
  var Form = React.createClass({
39868
  displayName: 'Form',
39869
 
@@ -40096,12 +40155,12 @@ webpackJsonp([1],[
40096
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40097
 
40098
  /***/ },
40099
- /* 294 */
40100
  /***/ function(module, exports, __webpack_require__) {
40101
 
40102
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
40103
 
40104
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(295), __webpack_require__(296), __webpack_require__(297), __webpack_require__(298), __webpack_require__(299), __webpack_require__(288), __webpack_require__(300), __webpack_require__(275)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, FormFieldText, FormFieldTextarea, FormFieldSelect, FormFieldRadio, FormFieldCheckbox, FormFieldSelection, FormFieldDate, jQuery) {
40105
  var FormField = React.createClass({
40106
  displayName: 'FormField',
40107
 
@@ -40232,7 +40291,7 @@ webpackJsonp([1],[
40232
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40233
 
40234
  /***/ },
40235
- /* 295 */
40236
  /***/ function(module, exports, __webpack_require__) {
40237
 
40238
  'use strict';
@@ -40271,7 +40330,7 @@ webpackJsonp([1],[
40271
  module.exports = FormFieldText;
40272
 
40273
  /***/ },
40274
- /* 296 */
40275
  /***/ function(module, exports, __webpack_require__) {
40276
 
40277
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict";
@@ -40300,7 +40359,7 @@ webpackJsonp([1],[
40300
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40301
 
40302
  /***/ },
40303
- /* 297 */
40304
  /***/ function(module, exports, __webpack_require__) {
40305
 
40306
  'use strict';
@@ -40390,7 +40449,7 @@ webpackJsonp([1],[
40390
  module.exports = FormFieldSelect;
40391
 
40392
  /***/ },
40393
- /* 298 */
40394
  /***/ function(module, exports, __webpack_require__) {
40395
 
40396
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict";
@@ -40437,7 +40496,7 @@ webpackJsonp([1],[
40437
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40438
 
40439
  /***/ },
40440
- /* 299 */
40441
  /***/ function(module, exports, __webpack_require__) {
40442
 
40443
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
@@ -40492,7 +40551,7 @@ webpackJsonp([1],[
40492
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40493
 
40494
  /***/ },
40495
- /* 300 */
40496
  /***/ function(module, exports, __webpack_require__) {
40497
 
40498
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
@@ -40507,7 +40566,7 @@ webpackJsonp([1],[
40507
 
40508
  function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
40509
 
40510
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(301)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Moment) {
40511
  var FormFieldDateYear = (function (_React$Component) {
40512
  _inherits(FormFieldDateYear, _React$Component);
40513
 
@@ -40831,11 +40890,11 @@ webpackJsonp([1],[
40831
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40832
 
40833
  /***/ },
40834
- /* 301 */
40835
  /***/ function(module, exports, __webpack_require__) {
40836
 
40837
  var require;/* WEBPACK VAR INJECTION */(function(module) {//! moment.js
40838
- //! version : 2.20.1
40839
  //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
40840
  //! license : MIT
40841
  //! momentjs.com
@@ -41495,7 +41554,7 @@ webpackJsonp([1],[
41495
 
41496
  // any word (or two) characters or numbers including two/three word month in arabic.
41497
  // includes scottish gaelic two word and hyphenated months
41498
- var matchWord = /[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;
41499
 
41500
 
41501
  var regexes = {};
@@ -42678,7 +42737,7 @@ webpackJsonp([1],[
42678
  try {
42679
  oldLocale = globalLocale._abbr;
42680
  var aliasedRequire = require;
42681
- __webpack_require__(303)("./" + name);
42682
  getSetGlobalLocale(oldLocale);
42683
  } catch (e) {}
42684
  }
@@ -42865,7 +42924,7 @@ webpackJsonp([1],[
42865
  // note: all values past the year are optional and will default to the lowest possible value.
42866
  // [year, month, day , hour, minute, second, millisecond]
42867
  function configFromArray (config) {
42868
- var i, date, input = [], currentDate, expectedWeekday, yearToUse;
42869
 
42870
  if (config._d) {
42871
  return;
@@ -42915,8 +42974,6 @@ webpackJsonp([1],[
42915
  }
42916
 
42917
  config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
42918
- expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();
42919
-
42920
  // Apply timezone offset from input. The actual utcOffset can be changed
42921
  // with parseZone.
42922
  if (config._tzm != null) {
@@ -42928,7 +42985,7 @@ webpackJsonp([1],[
42928
  }
42929
 
42930
  // check for mismatching day of week
42931
- if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {
42932
  getParsingFlags(config).weekdayMismatch = true;
42933
  }
42934
  }
@@ -44136,24 +44193,19 @@ webpackJsonp([1],[
44136
  return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
44137
  }
44138
 
44139
- function toISOString(keepOffset) {
44140
  if (!this.isValid()) {
44141
  return null;
44142
  }
44143
- var utc = keepOffset !== true;
44144
- var m = utc ? this.clone().utc() : this;
44145
  if (m.year() < 0 || m.year() > 9999) {
44146
- return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');
44147
  }
44148
  if (isFunction(Date.prototype.toISOString)) {
44149
  // native implementation is ~50x faster, use it when we can
44150
- if (utc) {
44151
- return this.toDate().toISOString();
44152
- } else {
44153
- return new Date(this._d.valueOf()).toISOString().replace('Z', formatMoment(m, 'Z'));
44154
- }
44155
  }
44156
- return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');
44157
  }
44158
 
44159
  /**
@@ -44509,7 +44561,7 @@ webpackJsonp([1],[
44509
 
44510
  addParseToken(['D', 'DD'], DATE);
44511
  addParseToken('Do', function (input, array) {
44512
- array[DATE] = toInt(input.match(match1to2)[0]);
44513
  });
44514
 
44515
  // MOMENTS
@@ -45321,7 +45373,7 @@ webpackJsonp([1],[
45321
  // Side effect imports
45322
 
45323
 
45324
- hooks.version = '2.20.1';
45325
 
45326
  setHookCallback(createLocal);
45327
 
@@ -45353,27 +45405,14 @@ webpackJsonp([1],[
45353
  hooks.calendarFormat = getCalendarFormat;
45354
  hooks.prototype = proto;
45355
 
45356
- // currently HTML5 input type only supports 24-hour formats
45357
- hooks.HTML5_FMT = {
45358
- DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // <input type="datetime-local" />
45359
- DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // <input type="datetime-local" step="1" />
45360
- DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // <input type="datetime-local" step="0.001" />
45361
- DATE: 'YYYY-MM-DD', // <input type="date" />
45362
- TIME: 'HH:mm', // <input type="time" />
45363
- TIME_SECONDS: 'HH:mm:ss', // <input type="time" step="1" />
45364
- TIME_MS: 'HH:mm:ss.SSS', // <input type="time" step="0.001" />
45365
- WEEK: 'YYYY-[W]WW', // <input type="week" />
45366
- MONTH: 'YYYY-MM' // <input type="month" />
45367
- };
45368
-
45369
  return hooks;
45370
 
45371
  })));
45372
 
45373
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(302)(module)))
45374
 
45375
  /***/ },
45376
- /* 302 */
45377
  /***/ function(module, exports) {
45378
 
45379
  module.exports = function(module) {
@@ -45389,162 +45428,160 @@ webpackJsonp([1],[
45389
 
45390
 
45391
  /***/ },
45392
- /* 303 */
45393
  /***/ function(module, exports, __webpack_require__) {
45394
 
45395
  var map = {
45396
- "./af": 304,
45397
- "./af.js": 304,
45398
- "./ar": 305,
45399
- "./ar-dz": 306,
45400
- "./ar-dz.js": 306,
45401
- "./ar-kw": 307,
45402
- "./ar-kw.js": 307,
45403
- "./ar-ly": 308,
45404
- "./ar-ly.js": 308,
45405
- "./ar-ma": 309,
45406
- "./ar-ma.js": 309,
45407
- "./ar-sa": 310,
45408
- "./ar-sa.js": 310,
45409
- "./ar-tn": 311,
45410
- "./ar-tn.js": 311,
45411
- "./ar.js": 305,
45412
- "./az": 312,
45413
- "./az.js": 312,
45414
- "./be": 313,
45415
- "./be.js": 313,
45416
- "./bg": 314,
45417
- "./bg.js": 314,
45418
- "./bm": 315,
45419
- "./bm.js": 315,
45420
- "./bn": 316,
45421
- "./bn.js": 316,
45422
- "./bo": 317,
45423
- "./bo.js": 317,
45424
- "./br": 318,
45425
- "./br.js": 318,
45426
- "./bs": 319,
45427
- "./bs.js": 319,
45428
- "./ca": 320,
45429
- "./ca.js": 320,
45430
- "./cs": 321,
45431
- "./cs.js": 321,
45432
- "./cv": 322,
45433
- "./cv.js": 322,
45434
- "./cy": 323,
45435
- "./cy.js": 323,
45436
- "./da": 324,
45437
- "./da.js": 324,
45438
- "./de": 325,
45439
- "./de-at": 326,
45440
- "./de-at.js": 326,
45441
- "./de-ch": 327,
45442
- "./de-ch.js": 327,
45443
- "./de.js": 325,
45444
- "./dv": 328,
45445
- "./dv.js": 328,
45446
- "./el": 329,
45447
- "./el.js": 329,
45448
- "./en-au": 330,
45449
- "./en-au.js": 330,
45450
- "./en-ca": 331,
45451
- "./en-ca.js": 331,
45452
- "./en-gb": 332,
45453
- "./en-gb.js": 332,
45454
- "./en-ie": 333,
45455
- "./en-ie.js": 333,
45456
- "./en-nz": 334,
45457
- "./en-nz.js": 334,
45458
- "./eo": 335,
45459
- "./eo.js": 335,
45460
- "./es": 336,
45461
- "./es-do": 337,
45462
- "./es-do.js": 337,
45463
- "./es-us": 338,
45464
- "./es-us.js": 338,
45465
- "./es.js": 336,
45466
- "./et": 339,
45467
- "./et.js": 339,
45468
- "./eu": 340,
45469
- "./eu.js": 340,
45470
- "./fa": 341,
45471
- "./fa.js": 341,
45472
- "./fi": 342,
45473
- "./fi.js": 342,
45474
- "./fo": 343,
45475
- "./fo.js": 343,
45476
- "./fr": 344,
45477
- "./fr-ca": 345,
45478
- "./fr-ca.js": 345,
45479
- "./fr-ch": 346,
45480
- "./fr-ch.js": 346,
45481
- "./fr.js": 344,
45482
- "./fy": 347,
45483
- "./fy.js": 347,
45484
- "./gd": 348,
45485
- "./gd.js": 348,
45486
- "./gl": 349,
45487
- "./gl.js": 349,
45488
- "./gom-latn": 350,
45489
- "./gom-latn.js": 350,
45490
- "./gu": 351,
45491
- "./gu.js": 351,
45492
- "./he": 352,
45493
- "./he.js": 352,
45494
- "./hi": 353,
45495
- "./hi.js": 353,
45496
- "./hr": 354,
45497
- "./hr.js": 354,
45498
- "./hu": 355,
45499
- "./hu.js": 355,
45500
- "./hy-am": 356,
45501
- "./hy-am.js": 356,
45502
- "./id": 357,
45503
- "./id.js": 357,
45504
- "./is": 358,
45505
- "./is.js": 358,
45506
- "./it": 359,
45507
- "./it.js": 359,
45508
- "./ja": 360,
45509
- "./ja.js": 360,
45510
- "./jv": 361,
45511
- "./jv.js": 361,
45512
- "./ka": 362,
45513
- "./ka.js": 362,
45514
- "./kk": 363,
45515
- "./kk.js": 363,
45516
- "./km": 364,
45517
- "./km.js": 364,
45518
- "./kn": 365,
45519
- "./kn.js": 365,
45520
- "./ko": 366,
45521
- "./ko.js": 366,
45522
- "./ky": 367,
45523
- "./ky.js": 367,
45524
- "./lb": 368,
45525
- "./lb.js": 368,
45526
- "./lo": 369,
45527
- "./lo.js": 369,
45528
- "./lt": 370,
45529
- "./lt.js": 370,
45530
- "./lv": 371,
45531
- "./lv.js": 371,
45532
- "./me": 372,
45533
- "./me.js": 372,
45534
- "./mi": 373,
45535
- "./mi.js": 373,
45536
- "./mk": 374,
45537
- "./mk.js": 374,
45538
- "./ml": 375,
45539
- "./ml.js": 375,
45540
- "./mr": 376,
45541
- "./mr.js": 376,
45542
- "./ms": 377,
45543
- "./ms-my": 378,
45544
- "./ms-my.js": 378,
45545
- "./ms.js": 377,
45546
- "./mt": 379,
45547
- "./mt.js": 379,
45548
  "./my": 380,
45549
  "./my.js": 380,
45550
  "./nb": 381,
@@ -45643,11 +45680,11 @@ webpackJsonp([1],[
45643
  };
45644
  webpackContext.resolve = webpackContextResolve;
45645
  module.exports = webpackContext;
45646
- webpackContext.id = 303;
45647
 
45648
 
45649
  /***/ },
45650
- /* 304 */
45651
  /***/ function(module, exports, __webpack_require__) {
45652
 
45653
  //! moment.js locale configuration
@@ -45655,7 +45692,7 @@ webpackJsonp([1],[
45655
  //! author : Werner Mollentze : https://github.com/wernerm
45656
 
45657
  ;(function (global, factory) {
45658
- true ? factory(__webpack_require__(301)) :
45659
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45660
  factory(global.moment)
45661
  }(this, (function (moment) { 'use strict';
@@ -45698,7 +45735,6 @@ webpackJsonp([1],[
45698
  future : 'oor %s',
45699
  past : '%s gelede',
45700
  s : '\'n paar sekondes',
45701
- ss : '%d sekondes',
45702
  m : '\'n minuut',
45703
  mm : '%d minute',
45704
  h : '\'n uur',
@@ -45726,7 +45762,7 @@ webpackJsonp([1],[
45726
 
45727
 
45728
  /***/ },
45729
- /* 305 */
45730
  /***/ function(module, exports, __webpack_require__) {
45731
 
45732
  //! moment.js locale configuration
@@ -45736,7 +45772,7 @@ webpackJsonp([1],[
45736
  //! author : forabi https://github.com/forabi
45737
 
45738
  ;(function (global, factory) {
45739
- true ? factory(__webpack_require__(301)) :
45740
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45741
  factory(global.moment)
45742
  }(this, (function (moment) { 'use strict';
@@ -45788,18 +45824,18 @@ webpackJsonp([1],[
45788
  };
45789
  };
45790
  var months = [
45791
- 'يناير',
45792
- 'فبراير',
45793
- 'مارس',
45794
- 'أبريل',
45795
- 'مايو',
45796
- 'يونيو',
45797
- 'يوليو',
45798
- 'أغسطس',
45799
- 'سبتمبر',
45800
- 'أكتوبر',
45801
- 'نوفمبر',
45802
- 'ديسمبر'
45803
  ];
45804
 
45805
  var ar = moment.defineLocale('ar', {
@@ -45840,7 +45876,6 @@ webpackJsonp([1],[
45840
  future : 'بعد %s',
45841
  past : 'منذ %s',
45842
  s : pluralize('s'),
45843
- ss : pluralize('s'),
45844
  m : pluralize('m'),
45845
  mm : pluralize('m'),
45846
  h : pluralize('h'),
@@ -45874,7 +45909,7 @@ webpackJsonp([1],[
45874
 
45875
 
45876
  /***/ },
45877
- /* 306 */
45878
  /***/ function(module, exports, __webpack_require__) {
45879
 
45880
  //! moment.js locale configuration
@@ -45882,7 +45917,7 @@ webpackJsonp([1],[
45882
  //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme
45883
 
45884
  ;(function (global, factory) {
45885
- true ? factory(__webpack_require__(301)) :
45886
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45887
  factory(global.moment)
45888
  }(this, (function (moment) { 'use strict';
@@ -45915,7 +45950,6 @@ webpackJsonp([1],[
45915
  future : 'في %s',
45916
  past : 'منذ %s',
45917
  s : 'ثوان',
45918
- ss : '%d ثانية',
45919
  m : 'دقيقة',
45920
  mm : '%d دقائق',
45921
  h : 'ساعة',
@@ -45939,7 +45973,7 @@ webpackJsonp([1],[
45939
 
45940
 
45941
  /***/ },
45942
- /* 307 */
45943
  /***/ function(module, exports, __webpack_require__) {
45944
 
45945
  //! moment.js locale configuration
@@ -45947,7 +45981,7 @@ webpackJsonp([1],[
45947
  //! author : Nusret Parlak: https://github.com/nusretparlak
45948
 
45949
  ;(function (global, factory) {
45950
- true ? factory(__webpack_require__(301)) :
45951
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45952
  factory(global.moment)
45953
  }(this, (function (moment) { 'use strict';
@@ -45980,7 +46014,6 @@ webpackJsonp([1],[
45980
  future : 'في %s',
45981
  past : 'منذ %s',
45982
  s : 'ثوان',
45983
- ss : '%d ثانية',
45984
  m : 'دقيقة',
45985
  mm : '%d دقائق',
45986
  h : 'ساعة',
@@ -46004,7 +46037,7 @@ webpackJsonp([1],[
46004
 
46005
 
46006
  /***/ },
46007
- /* 308 */
46008
  /***/ function(module, exports, __webpack_require__) {
46009
 
46010
  //! moment.js locale configuration
@@ -46012,7 +46045,7 @@ webpackJsonp([1],[
46012
  //! author : Ali Hmer: https://github.com/kikoanis
46013
 
46014
  ;(function (global, factory) {
46015
- true ? factory(__webpack_require__(301)) :
46016
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46017
  factory(global.moment)
46018
  }(this, (function (moment) { 'use strict';
@@ -46104,7 +46137,6 @@ webpackJsonp([1],[
46104
  future : 'بعد %s',
46105
  past : 'منذ %s',
46106
  s : pluralize('s'),
46107
- ss : pluralize('s'),
46108
  m : pluralize('m'),
46109
  mm : pluralize('m'),
46110
  h : pluralize('h'),
@@ -46136,7 +46168,7 @@ webpackJsonp([1],[
46136
 
46137
 
46138
  /***/ },
46139
- /* 309 */
46140
  /***/ function(module, exports, __webpack_require__) {
46141
 
46142
  //! moment.js locale configuration
@@ -46145,7 +46177,7 @@ webpackJsonp([1],[
46145
  //! author : Abdel Said : https://github.com/abdelsaid
46146
 
46147
  ;(function (global, factory) {
46148
- true ? factory(__webpack_require__(301)) :
46149
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46150
  factory(global.moment)
46151
  }(this, (function (moment) { 'use strict';
@@ -46178,7 +46210,6 @@ webpackJsonp([1],[
46178
  future : 'في %s',
46179
  past : 'منذ %s',
46180
  s : 'ثوان',
46181
- ss : '%d ثانية',
46182
  m : 'دقيقة',
46183
  mm : '%d دقائق',
46184
  h : 'ساعة',
@@ -46202,7 +46233,7 @@ webpackJsonp([1],[
46202
 
46203
 
46204
  /***/ },
46205
- /* 310 */
46206
  /***/ function(module, exports, __webpack_require__) {
46207
 
46208
  //! moment.js locale configuration
@@ -46210,7 +46241,7 @@ webpackJsonp([1],[
46210
  //! author : Suhail Alkowaileet : https://github.com/xsoh
46211
 
46212
  ;(function (global, factory) {
46213
- true ? factory(__webpack_require__(301)) :
46214
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46215
  factory(global.moment)
46216
  }(this, (function (moment) { 'use strict';
@@ -46279,7 +46310,6 @@ webpackJsonp([1],[
46279
  future : 'في %s',
46280
  past : 'منذ %s',
46281
  s : 'ثوان',
46282
- ss : '%d ثانية',
46283
  m : 'دقيقة',
46284
  mm : '%d دقائق',
46285
  h : 'ساعة',
@@ -46313,7 +46343,7 @@ webpackJsonp([1],[
46313
 
46314
 
46315
  /***/ },
46316
- /* 311 */
46317
  /***/ function(module, exports, __webpack_require__) {
46318
 
46319
  //! moment.js locale configuration
@@ -46321,7 +46351,7 @@ webpackJsonp([1],[
46321
  //! author : Nader Toukabri : https://github.com/naderio
46322
 
46323
  ;(function (global, factory) {
46324
- true ? factory(__webpack_require__(301)) :
46325
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46326
  factory(global.moment)
46327
  }(this, (function (moment) { 'use strict';
@@ -46354,7 +46384,6 @@ webpackJsonp([1],[
46354
  future: 'في %s',
46355
  past: 'منذ %s',
46356
  s: 'ثوان',
46357
- ss : '%d ثانية',
46358
  m: 'دقيقة',
46359
  mm: '%d دقائق',
46360
  h: 'ساعة',
@@ -46378,7 +46407,7 @@ webpackJsonp([1],[
46378
 
46379
 
46380
  /***/ },
46381
- /* 312 */
46382
  /***/ function(module, exports, __webpack_require__) {
46383
 
46384
  //! moment.js locale configuration
@@ -46386,7 +46415,7 @@ webpackJsonp([1],[
46386
  //! author : topchiyev : https://github.com/topchiyev
46387
 
46388
  ;(function (global, factory) {
46389
- true ? factory(__webpack_require__(301)) :
46390
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46391
  factory(global.moment)
46392
  }(this, (function (moment) { 'use strict';
@@ -46440,7 +46469,6 @@ webpackJsonp([1],[
46440
  future : '%s sonra',
46441
  past : '%s əvvəl',
46442
  s : 'birneçə saniyyə',
46443
- ss : '%d saniyə',
46444
  m : 'bir dəqiqə',
46445
  mm : '%d dəqiqə',
46446
  h : 'bir saat',
@@ -46489,7 +46517,7 @@ webpackJsonp([1],[
46489
 
46490
 
46491
  /***/ },
46492
- /* 313 */
46493
  /***/ function(module, exports, __webpack_require__) {
46494
 
46495
  //! moment.js locale configuration
@@ -46499,7 +46527,7 @@ webpackJsonp([1],[
46499
  //! Author : Menelion Elensúle : https://github.com/Oire
46500
 
46501
  ;(function (global, factory) {
46502
- true ? factory(__webpack_require__(301)) :
46503
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46504
  factory(global.moment)
46505
  }(this, (function (moment) { 'use strict';
@@ -46511,7 +46539,6 @@ webpackJsonp([1],[
46511
  }
46512
  function relativeTimeWithPlural(number, withoutSuffix, key) {
46513
  var format = {
46514
- 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
46515
  'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
46516
  'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
46517
  'dd': 'дзень_дні_дзён',
@@ -46629,7 +46656,7 @@ webpackJsonp([1],[
46629
 
46630
 
46631
  /***/ },
46632
- /* 314 */
46633
  /***/ function(module, exports, __webpack_require__) {
46634
 
46635
  //! moment.js locale configuration
@@ -46637,7 +46664,7 @@ webpackJsonp([1],[
46637
  //! author : Krasen Borisov : https://github.com/kraz
46638
 
46639
  ;(function (global, factory) {
46640
- true ? factory(__webpack_require__(301)) :
46641
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46642
  factory(global.moment)
46643
  }(this, (function (moment) { 'use strict';
@@ -46681,7 +46708,6 @@ webpackJsonp([1],[
46681
  future : 'след %s',
46682
  past : 'преди %s',
46683
  s : 'няколко секунди',
46684
- ss : '%d секунди',
46685
  m : 'минута',
46686
  mm : '%d минути',
46687
  h : 'час',
@@ -46725,7 +46751,7 @@ webpackJsonp([1],[
46725
 
46726
 
46727
  /***/ },
46728
- /* 315 */
46729
  /***/ function(module, exports, __webpack_require__) {
46730
 
46731
  //! moment.js locale configuration
@@ -46733,7 +46759,7 @@ webpackJsonp([1],[
46733
  //! author : Estelle Comment : https://github.com/estellecomment
46734
 
46735
  ;(function (global, factory) {
46736
- true ? factory(__webpack_require__(301)) :
46737
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46738
  factory(global.moment)
46739
  }(this, (function (moment) { 'use strict';
@@ -46766,7 +46792,6 @@ webpackJsonp([1],[
46766
  future : '%s kɔnɔ',
46767
  past : 'a bɛ %s bɔ',
46768
  s : 'sanga dama dama',
46769
- ss : 'sekondi %d',
46770
  m : 'miniti kelen',
46771
  mm : 'miniti %d',
46772
  h : 'lɛrɛ kelen',
@@ -46790,7 +46815,7 @@ webpackJsonp([1],[
46790
 
46791
 
46792
  /***/ },
46793
- /* 316 */
46794
  /***/ function(module, exports, __webpack_require__) {
46795
 
46796
  //! moment.js locale configuration
@@ -46798,7 +46823,7 @@ webpackJsonp([1],[
46798
  //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
46799
 
46800
  ;(function (global, factory) {
46801
- true ? factory(__webpack_require__(301)) :
46802
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46803
  factory(global.moment)
46804
  }(this, (function (moment) { 'use strict';
@@ -46855,7 +46880,6 @@ webpackJsonp([1],[
46855
  future : '%s পরে',
46856
  past : '%s আগে',
46857
  s : 'কয়েক সেকেন্ড',
46858
- ss : '%d সেকেন্ড',
46859
  m : 'এক মিনিট',
46860
  mm : '%d মিনিট',
46861
  h : 'এক ঘন্টা',
@@ -46915,7 +46939,7 @@ webpackJsonp([1],[
46915
 
46916
 
46917
  /***/ },
46918
- /* 317 */
46919
  /***/ function(module, exports, __webpack_require__) {
46920
 
46921
  //! moment.js locale configuration
@@ -46923,7 +46947,7 @@ webpackJsonp([1],[
46923
  //! author : Thupten N. Chakrishar : https://github.com/vajradog
46924
 
46925
  ;(function (global, factory) {
46926
- true ? factory(__webpack_require__(301)) :
46927
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46928
  factory(global.moment)
46929
  }(this, (function (moment) { 'use strict';
@@ -46980,7 +47004,6 @@ webpackJsonp([1],[
46980
  future : '%s ལ་',
46981
  past : '%s སྔན་ལ',
46982
  s : 'ལམ་སང',
46983
- ss : '%d སྐར་ཆ།',
46984
  m : 'སྐར་མ་གཅིག',
46985
  mm : '%d སྐར་མ',
46986
  h : 'ཆུ་ཚོད་གཅིག',
@@ -47040,7 +47063,7 @@ webpackJsonp([1],[
47040
 
47041
 
47042
  /***/ },
47043
- /* 318 */
47044
  /***/ function(module, exports, __webpack_require__) {
47045
 
47046
  //! moment.js locale configuration
@@ -47048,7 +47071,7 @@ webpackJsonp([1],[
47048
  //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
47049
 
47050
  ;(function (global, factory) {
47051
- true ? factory(__webpack_require__(301)) :
47052
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47053
  factory(global.moment)
47054
  }(this, (function (moment) { 'use strict';
@@ -47125,7 +47148,6 @@ webpackJsonp([1],[
47125
  future : 'a-benn %s',
47126
  past : '%s \'zo',
47127
  s : 'un nebeud segondennoù',
47128
- ss : '%d eilenn',
47129
  m : 'ur vunutenn',
47130
  mm : relativeTimeWithMutation,
47131
  h : 'un eur',
@@ -47154,7 +47176,7 @@ webpackJsonp([1],[
47154
 
47155
 
47156
  /***/ },
47157
- /* 319 */
47158
  /***/ function(module, exports, __webpack_require__) {
47159
 
47160
  //! moment.js locale configuration
@@ -47163,7 +47185,7 @@ webpackJsonp([1],[
47163
  //! based on (hr) translation by Bojan Marković
47164
 
47165
  ;(function (global, factory) {
47166
- true ? factory(__webpack_require__(301)) :
47167
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47168
  factory(global.moment)
47169
  }(this, (function (moment) { 'use strict';
@@ -47172,15 +47194,6 @@ webpackJsonp([1],[
47172
  function translate(number, withoutSuffix, key) {
47173
  var result = number + ' ';
47174
  switch (key) {
47175
- case 'ss':
47176
- if (number === 1) {
47177
- result += 'sekunda';
47178
- } else if (number === 2 || number === 3 || number === 4) {
47179
- result += 'sekunde';
47180
- } else {
47181
- result += 'sekundi';
47182
- }
47183
- return result;
47184
  case 'm':
47185
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
47186
  case 'mm':
@@ -47286,7 +47299,6 @@ webpackJsonp([1],[
47286
  future : 'za %s',
47287
  past : 'prije %s',
47288
  s : 'par sekundi',
47289
- ss : translate,
47290
  m : translate,
47291
  mm : translate,
47292
  h : translate,
@@ -47312,7 +47324,7 @@ webpackJsonp([1],[
47312
 
47313
 
47314
  /***/ },
47315
- /* 320 */
47316
  /***/ function(module, exports, __webpack_require__) {
47317
 
47318
  //! moment.js locale configuration
@@ -47320,7 +47332,7 @@ webpackJsonp([1],[
47320
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
47321
 
47322
  ;(function (global, factory) {
47323
- true ? factory(__webpack_require__(301)) :
47324
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47325
  factory(global.moment)
47326
  }(this, (function (moment) { 'use strict';
@@ -47371,7 +47383,6 @@ webpackJsonp([1],[
47371
  future : 'd\'aquí %s',
47372
  past : 'fa %s',
47373
  s : 'uns segons',
47374
- ss : '%d segons',
47375
  m : 'un minut',
47376
  mm : '%d minuts',
47377
  h : 'una hora',
@@ -47406,7 +47417,7 @@ webpackJsonp([1],[
47406
 
47407
 
47408
  /***/ },
47409
- /* 321 */
47410
  /***/ function(module, exports, __webpack_require__) {
47411
 
47412
  //! moment.js locale configuration
@@ -47414,7 +47425,7 @@ webpackJsonp([1],[
47414
  //! author : petrbela : https://github.com/petrbela
47415
 
47416
  ;(function (global, factory) {
47417
- true ? factory(__webpack_require__(301)) :
47418
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47419
  factory(global.moment)
47420
  }(this, (function (moment) { 'use strict';
@@ -47430,13 +47441,6 @@ webpackJsonp([1],[
47430
  switch (key) {
47431
  case 's': // a few seconds / in a few seconds / a few seconds ago
47432
  return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';
47433
- case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
47434
- if (withoutSuffix || isFuture) {
47435
- return result + (plural(number) ? 'sekundy' : 'sekund');
47436
- } else {
47437
- return result + 'sekundami';
47438
- }
47439
- break;
47440
  case 'm': // a minute / in a minute / a minute ago
47441
  return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');
47442
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
@@ -47565,7 +47569,6 @@ webpackJsonp([1],[
47565
  future : 'za %s',
47566
  past : 'před %s',
47567
  s : translate,
47568
- ss : translate,
47569
  m : translate,
47570
  mm : translate,
47571
  h : translate,
@@ -47591,7 +47594,7 @@ webpackJsonp([1],[
47591
 
47592
 
47593
  /***/ },
47594
- /* 322 */
47595
  /***/ function(module, exports, __webpack_require__) {
47596
 
47597
  //! moment.js locale configuration
@@ -47599,7 +47602,7 @@ webpackJsonp([1],[
47599
  //! author : Anatoly Mironov : https://github.com/mirontoli
47600
 
47601
  ;(function (global, factory) {
47602
- true ? factory(__webpack_require__(301)) :
47603
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47604
  factory(global.moment)
47605
  }(this, (function (moment) { 'use strict';
@@ -47634,7 +47637,6 @@ webpackJsonp([1],[
47634
  },
47635
  past : '%s каялла',
47636
  s : 'пӗр-ик ҫеккунт',
47637
- ss : '%d ҫеккунт',
47638
  m : 'пӗр минут',
47639
  mm : '%d минут',
47640
  h : 'пӗр сехет',
@@ -47660,7 +47662,7 @@ webpackJsonp([1],[
47660
 
47661
 
47662
  /***/ },
47663
- /* 323 */
47664
  /***/ function(module, exports, __webpack_require__) {
47665
 
47666
  //! moment.js locale configuration
@@ -47669,7 +47671,7 @@ webpackJsonp([1],[
47669
  //! author : https://github.com/ryangreaves
47670
 
47671
  ;(function (global, factory) {
47672
- true ? factory(__webpack_require__(301)) :
47673
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47674
  factory(global.moment)
47675
  }(this, (function (moment) { 'use strict';
@@ -47703,7 +47705,6 @@ webpackJsonp([1],[
47703
  future: 'mewn %s',
47704
  past: '%s yn ôl',
47705
  s: 'ychydig eiliadau',
47706
- ss: '%d eiliad',
47707
  m: 'munud',
47708
  mm: '%d munud',
47709
  h: 'awr',
@@ -47747,7 +47748,7 @@ webpackJsonp([1],[
47747
 
47748
 
47749
  /***/ },
47750
- /* 324 */
47751
  /***/ function(module, exports, __webpack_require__) {
47752
 
47753
  //! moment.js locale configuration
@@ -47755,7 +47756,7 @@ webpackJsonp([1],[
47755
  //! author : Ulrik Nielsen : https://github.com/mrbase
47756
 
47757
  ;(function (global, factory) {
47758
- true ? factory(__webpack_require__(301)) :
47759
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47760
  factory(global.moment)
47761
  }(this, (function (moment) { 'use strict';
@@ -47787,7 +47788,6 @@ webpackJsonp([1],[
47787
  future : 'om %s',
47788
  past : '%s siden',
47789
  s : 'få sekunder',
47790
- ss : '%d sekunder',
47791
  m : 'et minut',
47792
  mm : '%d minutter',
47793
  h : 'en time',
@@ -47813,7 +47813,7 @@ webpackJsonp([1],[
47813
 
47814
 
47815
  /***/ },
47816
- /* 325 */
47817
  /***/ function(module, exports, __webpack_require__) {
47818
 
47819
  //! moment.js locale configuration
@@ -47823,7 +47823,7 @@ webpackJsonp([1],[
47823
  //! author : Mikolaj Dadela : https://github.com/mik01aj
47824
 
47825
  ;(function (global, factory) {
47826
- true ? factory(__webpack_require__(301)) :
47827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47828
  factory(global.moment)
47829
  }(this, (function (moment) { 'use strict';
@@ -47871,7 +47871,6 @@ webpackJsonp([1],[
47871
  future : 'in %s',
47872
  past : 'vor %s',
47873
  s : 'ein paar Sekunden',
47874
- ss : '%d Sekunden',
47875
  m : processRelativeTime,
47876
  mm : '%d Minuten',
47877
  h : processRelativeTime,
@@ -47897,7 +47896,7 @@ webpackJsonp([1],[
47897
 
47898
 
47899
  /***/ },
47900
- /* 326 */
47901
  /***/ function(module, exports, __webpack_require__) {
47902
 
47903
  //! moment.js locale configuration
@@ -47908,7 +47907,7 @@ webpackJsonp([1],[
47908
  //! author : Mikolaj Dadela : https://github.com/mik01aj
47909
 
47910
  ;(function (global, factory) {
47911
- true ? factory(__webpack_require__(301)) :
47912
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47913
  factory(global.moment)
47914
  }(this, (function (moment) { 'use strict';
@@ -47956,7 +47955,6 @@ webpackJsonp([1],[
47956
  future : 'in %s',
47957
  past : 'vor %s',
47958
  s : 'ein paar Sekunden',
47959
- ss : '%d Sekunden',
47960
  m : processRelativeTime,
47961
  mm : '%d Minuten',
47962
  h : processRelativeTime,
@@ -47982,7 +47980,7 @@ webpackJsonp([1],[
47982
 
47983
 
47984
  /***/ },
47985
- /* 327 */
47986
  /***/ function(module, exports, __webpack_require__) {
47987
 
47988
  //! moment.js locale configuration
@@ -47990,7 +47988,7 @@ webpackJsonp([1],[
47990
  //! author : sschueller : https://github.com/sschueller
47991
 
47992
  ;(function (global, factory) {
47993
- true ? factory(__webpack_require__(301)) :
47994
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47995
  factory(global.moment)
47996
  }(this, (function (moment) { 'use strict';
@@ -48021,12 +48019,12 @@ webpackJsonp([1],[
48021
  weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
48022
  weekdaysParseExact : true,
48023
  longDateFormat : {
48024
- LT: 'HH:mm',
48025
- LTS: 'HH:mm:ss',
48026
  L : 'DD.MM.YYYY',
48027
  LL : 'D. MMMM YYYY',
48028
- LLL : 'D. MMMM YYYY HH:mm',
48029
- LLLL : 'dddd, D. MMMM YYYY HH:mm'
48030
  },
48031
  calendar : {
48032
  sameDay: '[heute um] LT [Uhr]',
@@ -48040,7 +48038,6 @@ webpackJsonp([1],[
48040
  future : 'in %s',
48041
  past : 'vor %s',
48042
  s : 'ein paar Sekunden',
48043
- ss : '%d Sekunden',
48044
  m : processRelativeTime,
48045
  mm : '%d Minuten',
48046
  h : processRelativeTime,
@@ -48066,7 +48063,7 @@ webpackJsonp([1],[
48066
 
48067
 
48068
  /***/ },
48069
- /* 328 */
48070
  /***/ function(module, exports, __webpack_require__) {
48071
 
48072
  //! moment.js locale configuration
@@ -48074,7 +48071,7 @@ webpackJsonp([1],[
48074
  //! author : Jawish Hameed : https://github.com/jawish
48075
 
48076
  ;(function (global, factory) {
48077
- true ? factory(__webpack_require__(301)) :
48078
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48079
  factory(global.moment)
48080
  }(this, (function (moment) { 'use strict';
@@ -48142,7 +48139,6 @@ webpackJsonp([1],[
48142
  future : 'ތެރޭގައި %s',
48143
  past : 'ކުރިން %s',
48144
  s : 'ސިކުންތުކޮޅެއް',
48145
- ss : 'd% ސިކުންތު',
48146
  m : 'މިނިޓެއް',
48147
  mm : 'މިނިޓު %d',
48148
  h : 'ގަޑިއިރެއް',
@@ -48172,7 +48168,7 @@ webpackJsonp([1],[
48172
 
48173
 
48174
  /***/ },
48175
- /* 329 */
48176
  /***/ function(module, exports, __webpack_require__) {
48177
 
48178
  //! moment.js locale configuration
@@ -48180,7 +48176,7 @@ webpackJsonp([1],[
48180
  //! author : Aggelos Karalias : https://github.com/mehiel
48181
 
48182
  ;(function (global, factory) {
48183
- true ? factory(__webpack_require__(301)) :
48184
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48185
  factory(global.moment)
48186
  }(this, (function (moment) { 'use strict';
@@ -48252,7 +48248,6 @@ webpackJsonp([1],[
48252
  future : 'σε %s',
48253
  past : '%s πριν',
48254
  s : 'λίγα δευτερόλεπτα',
48255
- ss : '%d δευτερόλεπτα',
48256
  m : 'ένα λεπτό',
48257
  mm : '%d λεπτά',
48258
  h : 'μία ώρα',
@@ -48278,7 +48273,7 @@ webpackJsonp([1],[
48278
 
48279
 
48280
  /***/ },
48281
- /* 330 */
48282
  /***/ function(module, exports, __webpack_require__) {
48283
 
48284
  //! moment.js locale configuration
@@ -48286,7 +48281,7 @@ webpackJsonp([1],[
48286
  //! author : Jared Morse : https://github.com/jarcoal
48287
 
48288
  ;(function (global, factory) {
48289
- true ? factory(__webpack_require__(301)) :
48290
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48291
  factory(global.moment)
48292
  }(this, (function (moment) { 'use strict';
@@ -48318,7 +48313,6 @@ webpackJsonp([1],[
48318
  future : 'in %s',
48319
  past : '%s ago',
48320
  s : 'a few seconds',
48321
- ss : '%d seconds',
48322
  m : 'a minute',
48323
  mm : '%d minutes',
48324
  h : 'an hour',
@@ -48351,7 +48345,7 @@ webpackJsonp([1],[
48351
 
48352
 
48353
  /***/ },
48354
- /* 331 */
48355
  /***/ function(module, exports, __webpack_require__) {
48356
 
48357
  //! moment.js locale configuration
@@ -48359,7 +48353,7 @@ webpackJsonp([1],[
48359
  //! author : Jonathan Abourbih : https://github.com/jonbca
48360
 
48361
  ;(function (global, factory) {
48362
- true ? factory(__webpack_require__(301)) :
48363
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48364
  factory(global.moment)
48365
  }(this, (function (moment) { 'use strict';
@@ -48391,7 +48385,6 @@ webpackJsonp([1],[
48391
  future : 'in %s',
48392
  past : '%s ago',
48393
  s : 'a few seconds',
48394
- ss : '%d seconds',
48395
  m : 'a minute',
48396
  mm : '%d minutes',
48397
  h : 'an hour',
@@ -48420,7 +48413,7 @@ webpackJsonp([1],[
48420
 
48421
 
48422
  /***/ },
48423
- /* 332 */
48424
  /***/ function(module, exports, __webpack_require__) {
48425
 
48426
  //! moment.js locale configuration
@@ -48428,7 +48421,7 @@ webpackJsonp([1],[
48428
  //! author : Chris Gedrim : https://github.com/chrisgedrim
48429
 
48430
  ;(function (global, factory) {
48431
- true ? factory(__webpack_require__(301)) :
48432
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48433
  factory(global.moment)
48434
  }(this, (function (moment) { 'use strict';
@@ -48460,7 +48453,6 @@ webpackJsonp([1],[
48460
  future : 'in %s',
48461
  past : '%s ago',
48462
  s : 'a few seconds',
48463
- ss : '%d seconds',
48464
  m : 'a minute',
48465
  mm : '%d minutes',
48466
  h : 'an hour',
@@ -48493,7 +48485,7 @@ webpackJsonp([1],[
48493
 
48494
 
48495
  /***/ },
48496
- /* 333 */
48497
  /***/ function(module, exports, __webpack_require__) {
48498
 
48499
  //! moment.js locale configuration
@@ -48501,7 +48493,7 @@ webpackJsonp([1],[
48501
  //! author : Chris Cartlidge : https://github.com/chriscartlidge
48502
 
48503
  ;(function (global, factory) {
48504
- true ? factory(__webpack_require__(301)) :
48505
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48506
  factory(global.moment)
48507
  }(this, (function (moment) { 'use strict';
@@ -48533,7 +48525,6 @@ webpackJsonp([1],[
48533
  future : 'in %s',
48534
  past : '%s ago',
48535
  s : 'a few seconds',
48536
- ss : '%d seconds',
48537
  m : 'a minute',
48538
  mm : '%d minutes',
48539
  h : 'an hour',
@@ -48566,7 +48557,7 @@ webpackJsonp([1],[
48566
 
48567
 
48568
  /***/ },
48569
- /* 334 */
48570
  /***/ function(module, exports, __webpack_require__) {
48571
 
48572
  //! moment.js locale configuration
@@ -48574,7 +48565,7 @@ webpackJsonp([1],[
48574
  //! author : Luke McGregor : https://github.com/lukemcgregor
48575
 
48576
  ;(function (global, factory) {
48577
- true ? factory(__webpack_require__(301)) :
48578
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48579
  factory(global.moment)
48580
  }(this, (function (moment) { 'use strict';
@@ -48606,7 +48597,6 @@ webpackJsonp([1],[
48606
  future : 'in %s',
48607
  past : '%s ago',
48608
  s : 'a few seconds',
48609
- ss : '%d seconds',
48610
  m : 'a minute',
48611
  mm : '%d minutes',
48612
  h : 'an hour',
@@ -48639,7 +48629,7 @@ webpackJsonp([1],[
48639
 
48640
 
48641
  /***/ },
48642
- /* 335 */
48643
  /***/ function(module, exports, __webpack_require__) {
48644
 
48645
  //! moment.js locale configuration
@@ -48649,7 +48639,7 @@ webpackJsonp([1],[
48649
  //! comment : miestasmia corrected the translation by colindean
48650
 
48651
  ;(function (global, factory) {
48652
- true ? factory(__webpack_require__(301)) :
48653
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48654
  factory(global.moment)
48655
  }(this, (function (moment) { 'use strict';
@@ -48692,7 +48682,6 @@ webpackJsonp([1],[
48692
  future : 'post %s',
48693
  past : 'antaŭ %s',
48694
  s : 'sekundoj',
48695
- ss : '%d sekundoj',
48696
  m : 'minuto',
48697
  mm : '%d minutoj',
48698
  h : 'horo',
@@ -48718,7 +48707,7 @@ webpackJsonp([1],[
48718
 
48719
 
48720
  /***/ },
48721
- /* 336 */
48722
  /***/ function(module, exports, __webpack_require__) {
48723
 
48724
  //! moment.js locale configuration
@@ -48726,7 +48715,7 @@ webpackJsonp([1],[
48726
  //! author : Julio Napurí : https://github.com/julionc
48727
 
48728
  ;(function (global, factory) {
48729
- true ? factory(__webpack_require__(301)) :
48730
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48731
  factory(global.moment)
48732
  }(this, (function (moment) { 'use strict';
@@ -48790,7 +48779,6 @@ webpackJsonp([1],[
48790
  future : 'en %s',
48791
  past : 'hace %s',
48792
  s : 'unos segundos',
48793
- ss : '%d segundos',
48794
  m : 'un minuto',
48795
  mm : '%d minutos',
48796
  h : 'una hora',
@@ -48816,14 +48804,14 @@ webpackJsonp([1],[
48816
 
48817
 
48818
  /***/ },
48819
- /* 337 */
48820
  /***/ function(module, exports, __webpack_require__) {
48821
 
48822
  //! moment.js locale configuration
48823
  //! locale : Spanish (Dominican Republic) [es-do]
48824
 
48825
  ;(function (global, factory) {
48826
- true ? factory(__webpack_require__(301)) :
48827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48828
  factory(global.moment)
48829
  }(this, (function (moment) { 'use strict';
@@ -48887,7 +48875,6 @@ webpackJsonp([1],[
48887
  future : 'en %s',
48888
  past : 'hace %s',
48889
  s : 'unos segundos',
48890
- ss : '%d segundos',
48891
  m : 'un minuto',
48892
  mm : '%d minutos',
48893
  h : 'una hora',
@@ -48913,7 +48900,7 @@ webpackJsonp([1],[
48913
 
48914
 
48915
  /***/ },
48916
- /* 338 */
48917
  /***/ function(module, exports, __webpack_require__) {
48918
 
48919
  //! moment.js locale configuration
@@ -48921,7 +48908,7 @@ webpackJsonp([1],[
48921
  //! author : bustta : https://github.com/bustta
48922
 
48923
  ;(function (global, factory) {
48924
- true ? factory(__webpack_require__(301)) :
48925
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48926
  factory(global.moment)
48927
  }(this, (function (moment) { 'use strict';
@@ -48947,12 +48934,12 @@ webpackJsonp([1],[
48947
  weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
48948
  weekdaysParseExact : true,
48949
  longDateFormat : {
48950
- LT : 'h:mm A',
48951
- LTS : 'h:mm:ss A',
48952
  L : 'MM/DD/YYYY',
48953
  LL : 'MMMM [de] D [de] YYYY',
48954
- LLL : 'MMMM [de] D [de] YYYY h:mm A',
48955
- LLLL : 'dddd, MMMM [de] D [de] YYYY h:mm A'
48956
  },
48957
  calendar : {
48958
  sameDay : function () {
@@ -48976,7 +48963,6 @@ webpackJsonp([1],[
48976
  future : 'en %s',
48977
  past : 'hace %s',
48978
  s : 'unos segundos',
48979
- ss : '%d segundos',
48980
  m : 'un minuto',
48981
  mm : '%d minutos',
48982
  h : 'una hora',
@@ -49002,7 +48988,7 @@ webpackJsonp([1],[
49002
 
49003
 
49004
  /***/ },
49005
- /* 339 */
49006
  /***/ function(module, exports, __webpack_require__) {
49007
 
49008
  //! moment.js locale configuration
@@ -49011,7 +48997,7 @@ webpackJsonp([1],[
49011
  //! improvements : Illimar Tambek : https://github.com/ragulka
49012
 
49013
  ;(function (global, factory) {
49014
- true ? factory(__webpack_require__(301)) :
49015
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49016
  factory(global.moment)
49017
  }(this, (function (moment) { 'use strict';
@@ -49020,7 +49006,6 @@ webpackJsonp([1],[
49020
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
49021
  var format = {
49022
  's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
49023
- 'ss': [number + 'sekundi', number + 'sekundit'],
49024
  'm' : ['ühe minuti', 'üks minut'],
49025
  'mm': [number + ' minuti', number + ' minutit'],
49026
  'h' : ['ühe tunni', 'tund aega', 'üks tund'],
@@ -49063,7 +49048,6 @@ webpackJsonp([1],[
49063
  future : '%s pärast',
49064
  past : '%s tagasi',
49065
  s : processRelativeTime,
49066
- ss : processRelativeTime,
49067
  m : processRelativeTime,
49068
  mm : processRelativeTime,
49069
  h : processRelativeTime,
@@ -49089,7 +49073,7 @@ webpackJsonp([1],[
49089
 
49090
 
49091
  /***/ },
49092
- /* 340 */
49093
  /***/ function(module, exports, __webpack_require__) {
49094
 
49095
  //! moment.js locale configuration
@@ -49097,7 +49081,7 @@ webpackJsonp([1],[
49097
  //! author : Eneko Illarramendi : https://github.com/eillarra
49098
 
49099
  ;(function (global, factory) {
49100
- true ? factory(__webpack_require__(301)) :
49101
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49102
  factory(global.moment)
49103
  }(this, (function (moment) { 'use strict';
@@ -49135,7 +49119,6 @@ webpackJsonp([1],[
49135
  future : '%s barru',
49136
  past : 'duela %s',
49137
  s : 'segundo batzuk',
49138
- ss : '%d segundo',
49139
  m : 'minutu bat',
49140
  mm : '%d minutu',
49141
  h : 'ordu bat',
@@ -49161,7 +49144,7 @@ webpackJsonp([1],[
49161
 
49162
 
49163
  /***/ },
49164
- /* 341 */
49165
  /***/ function(module, exports, __webpack_require__) {
49166
 
49167
  //! moment.js locale configuration
@@ -49169,7 +49152,7 @@ webpackJsonp([1],[
49169
  //! author : Ebrahim Byagowi : https://github.com/ebraminio
49170
 
49171
  ;(function (global, factory) {
49172
- true ? factory(__webpack_require__(301)) :
49173
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49174
  factory(global.moment)
49175
  }(this, (function (moment) { 'use strict';
@@ -49238,7 +49221,6 @@ webpackJsonp([1],[
49238
  future : 'در %s',
49239
  past : '%s پیش',
49240
  s : 'چند ثانیه',
49241
- ss : 'ثانیه d%',
49242
  m : 'یک دقیقه',
49243
  mm : '%d دقیقه',
49244
  h : 'یک ساعت',
@@ -49274,7 +49256,7 @@ webpackJsonp([1],[
49274
 
49275
 
49276
  /***/ },
49277
- /* 342 */
49278
  /***/ function(module, exports, __webpack_require__) {
49279
 
49280
  //! moment.js locale configuration
@@ -49282,7 +49264,7 @@ webpackJsonp([1],[
49282
  //! author : Tarmo Aidantausta : https://github.com/bleadof
49283
 
49284
  ;(function (global, factory) {
49285
- true ? factory(__webpack_require__(301)) :
49286
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49287
  factory(global.moment)
49288
  }(this, (function (moment) { 'use strict';
@@ -49298,8 +49280,6 @@ webpackJsonp([1],[
49298
  switch (key) {
49299
  case 's':
49300
  return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
49301
- case 'ss':
49302
- return isFuture ? 'sekunnin' : 'sekuntia';
49303
  case 'm':
49304
  return isFuture ? 'minuutin' : 'minuutti';
49305
  case 'mm':
@@ -49363,7 +49343,6 @@ webpackJsonp([1],[
49363
  future : '%s päästä',
49364
  past : '%s sitten',
49365
  s : translate,
49366
- ss : translate,
49367
  m : translate,
49368
  mm : translate,
49369
  h : translate,
@@ -49389,7 +49368,7 @@ webpackJsonp([1],[
49389
 
49390
 
49391
  /***/ },
49392
- /* 343 */
49393
  /***/ function(module, exports, __webpack_require__) {
49394
 
49395
  //! moment.js locale configuration
@@ -49397,7 +49376,7 @@ webpackJsonp([1],[
49397
  //! author : Ragnar Johannesen : https://github.com/ragnar123
49398
 
49399
  ;(function (global, factory) {
49400
- true ? factory(__webpack_require__(301)) :
49401
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49402
  factory(global.moment)
49403
  }(this, (function (moment) { 'use strict';
@@ -49429,7 +49408,6 @@ webpackJsonp([1],[
49429
  future : 'um %s',
49430
  past : '%s síðani',
49431
  s : 'fá sekund',
49432
- ss : '%d sekundir',
49433
  m : 'ein minutt',
49434
  mm : '%d minuttir',
49435
  h : 'ein tími',
@@ -49455,7 +49433,7 @@ webpackJsonp([1],[
49455
 
49456
 
49457
  /***/ },
49458
- /* 344 */
49459
  /***/ function(module, exports, __webpack_require__) {
49460
 
49461
  //! moment.js locale configuration
@@ -49463,7 +49441,7 @@ webpackJsonp([1],[
49463
  //! author : John Fischer : https://github.com/jfroffice
49464
 
49465
  ;(function (global, factory) {
49466
- true ? factory(__webpack_require__(301)) :
49467
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49468
  factory(global.moment)
49469
  }(this, (function (moment) { 'use strict';
@@ -49475,7 +49453,7 @@ webpackJsonp([1],[
49475
  monthsParseExact : true,
49476
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49477
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49478
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
49479
  weekdaysParseExact : true,
49480
  longDateFormat : {
49481
  LT : 'HH:mm',
@@ -49497,7 +49475,6 @@ webpackJsonp([1],[
49497
  future : 'dans %s',
49498
  past : 'il y a %s',
49499
  s : 'quelques secondes',
49500
- ss : '%d secondes',
49501
  m : 'une minute',
49502
  mm : '%d minutes',
49503
  h : 'une heure',
@@ -49544,7 +49521,7 @@ webpackJsonp([1],[
49544
 
49545
 
49546
  /***/ },
49547
- /* 345 */
49548
  /***/ function(module, exports, __webpack_require__) {
49549
 
49550
  //! moment.js locale configuration
@@ -49552,7 +49529,7 @@ webpackJsonp([1],[
49552
  //! author : Jonathan Abourbih : https://github.com/jonbca
49553
 
49554
  ;(function (global, factory) {
49555
- true ? factory(__webpack_require__(301)) :
49556
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49557
  factory(global.moment)
49558
  }(this, (function (moment) { 'use strict';
@@ -49564,7 +49541,7 @@ webpackJsonp([1],[
49564
  monthsParseExact : true,
49565
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49566
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49567
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
49568
  weekdaysParseExact : true,
49569
  longDateFormat : {
49570
  LT : 'HH:mm',
@@ -49586,7 +49563,6 @@ webpackJsonp([1],[
49586
  future : 'dans %s',
49587
  past : 'il y a %s',
49588
  s : 'quelques secondes',
49589
- ss : '%d secondes',
49590
  m : 'une minute',
49591
  mm : '%d minutes',
49592
  h : 'une heure',
@@ -49624,7 +49600,7 @@ webpackJsonp([1],[
49624
 
49625
 
49626
  /***/ },
49627
- /* 346 */
49628
  /***/ function(module, exports, __webpack_require__) {
49629
 
49630
  //! moment.js locale configuration
@@ -49632,7 +49608,7 @@ webpackJsonp([1],[
49632
  //! author : Gaspard Bucher : https://github.com/gaspard
49633
 
49634
  ;(function (global, factory) {
49635
- true ? factory(__webpack_require__(301)) :
49636
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49637
  factory(global.moment)
49638
  }(this, (function (moment) { 'use strict';
@@ -49644,7 +49620,7 @@ webpackJsonp([1],[
49644
  monthsParseExact : true,
49645
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49646
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49647
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
49648
  weekdaysParseExact : true,
49649
  longDateFormat : {
49650
  LT : 'HH:mm',
@@ -49666,7 +49642,6 @@ webpackJsonp([1],[
49666
  future : 'dans %s',
49667
  past : 'il y a %s',
49668
  s : 'quelques secondes',
49669
- ss : '%d secondes',
49670
  m : 'une minute',
49671
  mm : '%d minutes',
49672
  h : 'une heure',
@@ -49708,7 +49683,7 @@ webpackJsonp([1],[
49708
 
49709
 
49710
  /***/ },
49711
- /* 347 */
49712
  /***/ function(module, exports, __webpack_require__) {
49713
 
49714
  //! moment.js locale configuration
@@ -49716,7 +49691,7 @@ webpackJsonp([1],[
49716
  //! author : Robin van der Vliet : https://github.com/robin0van0der0v
49717
 
49718
  ;(function (global, factory) {
49719
- true ? factory(__webpack_require__(301)) :
49720
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49721
  factory(global.moment)
49722
  }(this, (function (moment) { 'use strict';
@@ -49761,7 +49736,6 @@ webpackJsonp([1],[
49761
  future : 'oer %s',
49762
  past : '%s lyn',
49763
  s : 'in pear sekonden',
49764
- ss : '%d sekonden',
49765
  m : 'ien minút',
49766
  mm : '%d minuten',
49767
  h : 'ien oere',
@@ -49789,7 +49763,7 @@ webpackJsonp([1],[
49789
 
49790
 
49791
  /***/ },
49792
- /* 348 */
49793
  /***/ function(module, exports, __webpack_require__) {
49794
 
49795
  //! moment.js locale configuration
@@ -49797,7 +49771,7 @@ webpackJsonp([1],[
49797
  //! author : Jon Ashdown : https://github.com/jonashdown
49798
 
49799
  ;(function (global, factory) {
49800
- true ? factory(__webpack_require__(301)) :
49801
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49802
  factory(global.moment)
49803
  }(this, (function (moment) { 'use strict';
@@ -49842,7 +49816,6 @@ webpackJsonp([1],[
49842
  future : 'ann an %s',
49843
  past : 'bho chionn %s',
49844
  s : 'beagan diogan',
49845
- ss : '%d diogan',
49846
  m : 'mionaid',
49847
  mm : '%d mionaidean',
49848
  h : 'uair',
@@ -49871,7 +49844,7 @@ webpackJsonp([1],[
49871
 
49872
 
49873
  /***/ },
49874
- /* 349 */
49875
  /***/ function(module, exports, __webpack_require__) {
49876
 
49877
  //! moment.js locale configuration
@@ -49879,7 +49852,7 @@ webpackJsonp([1],[
49879
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
49880
 
49881
  ;(function (global, factory) {
49882
- true ? factory(__webpack_require__(301)) :
49883
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49884
  factory(global.moment)
49885
  }(this, (function (moment) { 'use strict';
@@ -49928,7 +49901,6 @@ webpackJsonp([1],[
49928
  },
49929
  past : 'hai %s',
49930
  s : 'uns segundos',
49931
- ss : '%d segundos',
49932
  m : 'un minuto',
49933
  mm : '%d minutos',
49934
  h : 'unha hora',
@@ -49954,7 +49926,7 @@ webpackJsonp([1],[
49954
 
49955
 
49956
  /***/ },
49957
- /* 350 */
49958
  /***/ function(module, exports, __webpack_require__) {
49959
 
49960
  //! moment.js locale configuration
@@ -49962,7 +49934,7 @@ webpackJsonp([1],[
49962
  //! author : The Discoverer : https://github.com/WikiDiscoverer
49963
 
49964
  ;(function (global, factory) {
49965
- true ? factory(__webpack_require__(301)) :
49966
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49967
  factory(global.moment)
49968
  }(this, (function (moment) { 'use strict';
@@ -49971,7 +49943,6 @@ webpackJsonp([1],[
49971
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
49972
  var format = {
49973
  's': ['thodde secondanim', 'thodde second'],
49974
- 'ss': [number + ' secondanim', number + ' second'],
49975
  'm': ['eka mintan', 'ek minute'],
49976
  'mm': [number + ' mintanim', number + ' mintam'],
49977
  'h': ['eka horan', 'ek hor'],
@@ -50015,7 +49986,6 @@ webpackJsonp([1],[
50015
  future : '%s',
50016
  past : '%s adim',
50017
  s : processRelativeTime,
50018
- ss : processRelativeTime,
50019
  m : processRelativeTime,
50020
  mm : processRelativeTime,
50021
  h : processRelativeTime,
@@ -50083,7 +50053,7 @@ webpackJsonp([1],[
50083
 
50084
 
50085
  /***/ },
50086
- /* 351 */
50087
  /***/ function(module, exports, __webpack_require__) {
50088
 
50089
  //! moment.js locale configuration
@@ -50091,7 +50061,7 @@ webpackJsonp([1],[
50091
  //! author : Kaushik Thanki : https://github.com/Kaushik1987
50092
 
50093
  ;(function (global, factory) {
50094
- true ? factory(__webpack_require__(301)) :
50095
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50096
  factory(global.moment)
50097
  }(this, (function (moment) { 'use strict';
@@ -50149,7 +50119,6 @@ webpackJsonp([1],[
50149
  future: '%s મા',
50150
  past: '%s પેહલા',
50151
  s: 'અમુક પળો',
50152
- ss: '%d સેકંડ',
50153
  m: 'એક મિનિટ',
50154
  mm: '%d મિનિટ',
50155
  h: 'એક કલાક',
@@ -50213,7 +50182,7 @@ webpackJsonp([1],[
50213
 
50214
 
50215
  /***/ },
50216
- /* 352 */
50217
  /***/ function(module, exports, __webpack_require__) {
50218
 
50219
  //! moment.js locale configuration
@@ -50223,7 +50192,7 @@ webpackJsonp([1],[
50223
  //! author : Tal Ater : https://github.com/TalAter
50224
 
50225
  ;(function (global, factory) {
50226
- true ? factory(__webpack_require__(301)) :
50227
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50228
  factory(global.moment)
50229
  }(this, (function (moment) { 'use strict';
@@ -50259,7 +50228,6 @@ webpackJsonp([1],[
50259
  future : 'בעוד %s',
50260
  past : 'לפני %s',
50261
  s : 'מספר שניות',
50262
- ss : '%d שניות',
50263
  m : 'דקה',
50264
  mm : '%d דקות',
50265
  h : 'שעה',
@@ -50318,7 +50286,7 @@ webpackJsonp([1],[
50318
 
50319
 
50320
  /***/ },
50321
- /* 353 */
50322
  /***/ function(module, exports, __webpack_require__) {
50323
 
50324
  //! moment.js locale configuration
@@ -50326,7 +50294,7 @@ webpackJsonp([1],[
50326
  //! author : Mayank Singhal : https://github.com/mayanksinghal
50327
 
50328
  ;(function (global, factory) {
50329
- true ? factory(__webpack_require__(301)) :
50330
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50331
  factory(global.moment)
50332
  }(this, (function (moment) { 'use strict';
@@ -50384,7 +50352,6 @@ webpackJsonp([1],[
50384
  future : '%s में',
50385
  past : '%s पहले',
50386
  s : 'कुछ ही क्षण',
50387
- ss : '%d सेकंड',
50388
  m : 'एक मिनट',
50389
  mm : '%d मिनट',
50390
  h : 'एक घंटा',
@@ -50448,7 +50415,7 @@ webpackJsonp([1],[
50448
 
50449
 
50450
  /***/ },
50451
- /* 354 */
50452
  /***/ function(module, exports, __webpack_require__) {
50453
 
50454
  //! moment.js locale configuration
@@ -50456,7 +50423,7 @@ webpackJsonp([1],[
50456
  //! author : Bojan Marković : https://github.com/bmarkovic
50457
 
50458
  ;(function (global, factory) {
50459
- true ? factory(__webpack_require__(301)) :
50460
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50461
  factory(global.moment)
50462
  }(this, (function (moment) { 'use strict';
@@ -50465,15 +50432,6 @@ webpackJsonp([1],[
50465
  function translate(number, withoutSuffix, key) {
50466
  var result = number + ' ';
50467
  switch (key) {
50468
- case 'ss':
50469
- if (number === 1) {
50470
- result += 'sekunda';
50471
- } else if (number === 2 || number === 3 || number === 4) {
50472
- result += 'sekunde';
50473
- } else {
50474
- result += 'sekundi';
50475
- }
50476
- return result;
50477
  case 'm':
50478
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
50479
  case 'mm':
@@ -50582,7 +50540,6 @@ webpackJsonp([1],[
50582
  future : 'za %s',
50583
  past : 'prije %s',
50584
  s : 'par sekundi',
50585
- ss : translate,
50586
  m : translate,
50587
  mm : translate,
50588
  h : translate,
@@ -50608,7 +50565,7 @@ webpackJsonp([1],[
50608
 
50609
 
50610
  /***/ },
50611
- /* 355 */
50612
  /***/ function(module, exports, __webpack_require__) {
50613
 
50614
  //! moment.js locale configuration
@@ -50616,7 +50573,7 @@ webpackJsonp([1],[
50616
  //! author : Adam Brunner : https://github.com/adambrunner
50617
 
50618
  ;(function (global, factory) {
50619
- true ? factory(__webpack_require__(301)) :
50620
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50621
  factory(global.moment)
50622
  }(this, (function (moment) { 'use strict';
@@ -50628,8 +50585,6 @@ webpackJsonp([1],[
50628
  switch (key) {
50629
  case 's':
50630
  return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
50631
- case 'ss':
50632
- return num + (isFuture || withoutSuffix) ? ' másodperc' : ' másodperce';
50633
  case 'm':
50634
  return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
50635
  case 'mm':
@@ -50698,7 +50653,6 @@ webpackJsonp([1],[
50698
  future : '%s múlva',
50699
  past : '%s',
50700
  s : translate,
50701
- ss : translate,
50702
  m : translate,
50703
  mm : translate,
50704
  h : translate,
@@ -50724,7 +50678,7 @@ webpackJsonp([1],[
50724
 
50725
 
50726
  /***/ },
50727
- /* 356 */
50728
  /***/ function(module, exports, __webpack_require__) {
50729
 
50730
  //! moment.js locale configuration
@@ -50732,7 +50686,7 @@ webpackJsonp([1],[
50732
  //! author : Armendarabyan : https://github.com/armendarabyan
50733
 
50734
  ;(function (global, factory) {
50735
- true ? factory(__webpack_require__(301)) :
50736
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50737
  factory(global.moment)
50738
  }(this, (function (moment) { 'use strict';
@@ -50771,7 +50725,6 @@ webpackJsonp([1],[
50771
  future : '%s հետո',
50772
  past : '%s առաջ',
50773
  s : 'մի քանի վայրկյան',
50774
- ss : '%d վայրկյան',
50775
  m : 'րոպե',
50776
  mm : '%d րոպե',
50777
  h : 'ժամ',
@@ -50825,7 +50778,7 @@ webpackJsonp([1],[
50825
 
50826
 
50827
  /***/ },
50828
- /* 357 */
50829
  /***/ function(module, exports, __webpack_require__) {
50830
 
50831
  //! moment.js locale configuration
@@ -50834,7 +50787,7 @@ webpackJsonp([1],[
50834
  //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
50835
 
50836
  ;(function (global, factory) {
50837
- true ? factory(__webpack_require__(301)) :
50838
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50839
  factory(global.moment)
50840
  }(this, (function (moment) { 'use strict';
@@ -50890,7 +50843,6 @@ webpackJsonp([1],[
50890
  future : 'dalam %s',
50891
  past : '%s yang lalu',
50892
  s : 'beberapa detik',
50893
- ss : '%d detik',
50894
  m : 'semenit',
50895
  mm : '%d menit',
50896
  h : 'sejam',
@@ -50914,7 +50866,7 @@ webpackJsonp([1],[
50914
 
50915
 
50916
  /***/ },
50917
- /* 358 */
50918
  /***/ function(module, exports, __webpack_require__) {
50919
 
50920
  //! moment.js locale configuration
@@ -50922,7 +50874,7 @@ webpackJsonp([1],[
50922
  //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
50923
 
50924
  ;(function (global, factory) {
50925
- true ? factory(__webpack_require__(301)) :
50926
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50927
  factory(global.moment)
50928
  }(this, (function (moment) { 'use strict';
@@ -50941,11 +50893,6 @@ webpackJsonp([1],[
50941
  switch (key) {
50942
  case 's':
50943
  return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
50944
- case 'ss':
50945
- if (plural(number)) {
50946
- return result + (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum');
50947
- }
50948
- return result + 'sekúnda';
50949
  case 'm':
50950
  return withoutSuffix ? 'mínúta' : 'mínútu';
50951
  case 'mm':
@@ -51026,7 +50973,6 @@ webpackJsonp([1],[
51026
  future : 'eftir %s',
51027
  past : 'fyrir %s síðan',
51028
  s : translate,
51029
- ss : translate,
51030
  m : translate,
51031
  mm : translate,
51032
  h : 'klukkustund',
@@ -51052,7 +50998,7 @@ webpackJsonp([1],[
51052
 
51053
 
51054
  /***/ },
51055
- /* 359 */
51056
  /***/ function(module, exports, __webpack_require__) {
51057
 
51058
  //! moment.js locale configuration
@@ -51061,7 +51007,7 @@ webpackJsonp([1],[
51061
  //! author: Mattia Larentis: https://github.com/nostalgiaz
51062
 
51063
  ;(function (global, factory) {
51064
- true ? factory(__webpack_require__(301)) :
51065
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51066
  factory(global.moment)
51067
  }(this, (function (moment) { 'use strict';
@@ -51079,7 +51025,7 @@ webpackJsonp([1],[
51079
  L : 'DD/MM/YYYY',
51080
  LL : 'D MMMM YYYY',
51081
  LLL : 'D MMMM YYYY HH:mm',
51082
- LLLL : 'dddd D MMMM YYYY HH:mm'
51083
  },
51084
  calendar : {
51085
  sameDay: '[Oggi alle] LT',
@@ -51102,7 +51048,6 @@ webpackJsonp([1],[
51102
  },
51103
  past : '%s fa',
51104
  s : 'alcuni secondi',
51105
- ss : '%d secondi',
51106
  m : 'un minuto',
51107
  mm : '%d minuti',
51108
  h : 'un\'ora',
@@ -51128,7 +51073,7 @@ webpackJsonp([1],[
51128
 
51129
 
51130
  /***/ },
51131
- /* 360 */
51132
  /***/ function(module, exports, __webpack_require__) {
51133
 
51134
  //! moment.js locale configuration
@@ -51136,7 +51081,7 @@ webpackJsonp([1],[
51136
  //! author : LI Long : https://github.com/baryon
51137
 
51138
  ;(function (global, factory) {
51139
- true ? factory(__webpack_require__(301)) :
51140
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51141
  factory(global.moment)
51142
  }(this, (function (moment) { 'use strict';
@@ -51194,7 +51139,6 @@ webpackJsonp([1],[
51194
  future : '%s後',
51195
  past : '%s前',
51196
  s : '数秒',
51197
- ss : '%d秒',
51198
  m : '1分',
51199
  mm : '%d分',
51200
  h : '1時間',
@@ -51214,7 +51158,7 @@ webpackJsonp([1],[
51214
 
51215
 
51216
  /***/ },
51217
- /* 361 */
51218
  /***/ function(module, exports, __webpack_require__) {
51219
 
51220
  //! moment.js locale configuration
@@ -51223,7 +51167,7 @@ webpackJsonp([1],[
51223
  //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
51224
 
51225
  ;(function (global, factory) {
51226
- true ? factory(__webpack_require__(301)) :
51227
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51228
  factory(global.moment)
51229
  }(this, (function (moment) { 'use strict';
@@ -51279,7 +51223,6 @@ webpackJsonp([1],[
51279
  future : 'wonten ing %s',
51280
  past : '%s ingkang kepengker',
51281
  s : 'sawetawis detik',
51282
- ss : '%d detik',
51283
  m : 'setunggal menit',
51284
  mm : '%d menit',
51285
  h : 'setunggal jam',
@@ -51303,7 +51246,7 @@ webpackJsonp([1],[
51303
 
51304
 
51305
  /***/ },
51306
- /* 362 */
51307
  /***/ function(module, exports, __webpack_require__) {
51308
 
51309
  //! moment.js locale configuration
@@ -51311,7 +51254,7 @@ webpackJsonp([1],[
51311
  //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili
51312
 
51313
  ;(function (global, factory) {
51314
- true ? factory(__webpack_require__(301)) :
51315
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51316
  factory(global.moment)
51317
  }(this, (function (moment) { 'use strict';
@@ -51361,7 +51304,6 @@ webpackJsonp([1],[
51361
  }
51362
  },
51363
  s : 'რამდენიმე წამი',
51364
- ss : '%d წამი',
51365
  m : 'წუთი',
51366
  mm : '%d წუთი',
51367
  h : 'საათი',
@@ -51398,7 +51340,7 @@ webpackJsonp([1],[
51398
 
51399
 
51400
  /***/ },
51401
- /* 363 */
51402
  /***/ function(module, exports, __webpack_require__) {
51403
 
51404
  //! moment.js locale configuration
@@ -51406,7 +51348,7 @@ webpackJsonp([1],[
51406
  //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
51407
 
51408
  ;(function (global, factory) {
51409
- true ? factory(__webpack_require__(301)) :
51410
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51411
  factory(global.moment)
51412
  }(this, (function (moment) { 'use strict';
@@ -51461,7 +51403,6 @@ webpackJsonp([1],[
51461
  future : '%s ішінде',
51462
  past : '%s бұрын',
51463
  s : 'бірнеше секунд',
51464
- ss : '%d секунд',
51465
  m : 'бір минут',
51466
  mm : '%d минут',
51467
  h : 'бір сағат',
@@ -51491,7 +51432,7 @@ webpackJsonp([1],[
51491
 
51492
 
51493
  /***/ },
51494
- /* 364 */
51495
  /***/ function(module, exports, __webpack_require__) {
51496
 
51497
  //! moment.js locale configuration
@@ -51499,7 +51440,7 @@ webpackJsonp([1],[
51499
  //! author : Kruy Vanna : https://github.com/kruyvanna
51500
 
51501
  ;(function (global, factory) {
51502
- true ? factory(__webpack_require__(301)) :
51503
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51504
  factory(global.moment)
51505
  }(this, (function (moment) { 'use strict';
@@ -51531,7 +51472,6 @@ webpackJsonp([1],[
51531
  future: '%sទៀត',
51532
  past: '%sមុន',
51533
  s: 'ប៉ុន្មានវិនាទី',
51534
- ss: '%d វិនាទី',
51535
  m: 'មួយនាទី',
51536
  mm: '%d នាទី',
51537
  h: 'មួយម៉ោង',
@@ -51555,7 +51495,7 @@ webpackJsonp([1],[
51555
 
51556
 
51557
  /***/ },
51558
- /* 365 */
51559
  /***/ function(module, exports, __webpack_require__) {
51560
 
51561
  //! moment.js locale configuration
@@ -51563,7 +51503,7 @@ webpackJsonp([1],[
51563
  //! author : Rajeev Naik : https://github.com/rajeevnaikte
51564
 
51565
  ;(function (global, factory) {
51566
- true ? factory(__webpack_require__(301)) :
51567
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51568
  factory(global.moment)
51569
  }(this, (function (moment) { 'use strict';
@@ -51621,7 +51561,6 @@ webpackJsonp([1],[
51621
  future : '%s ನಂತರ',
51622
  past : '%s ಹಿಂದೆ',
51623
  s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
51624
- ss : '%d ಸೆಕೆಂಡುಗಳು',
51625
  m : 'ಒಂದು ನಿಮಿಷ',
51626
  mm : '%d ನಿಮಿಷ',
51627
  h : 'ಒಂದು ಗಂಟೆ',
@@ -51687,7 +51626,7 @@ webpackJsonp([1],[
51687
 
51688
 
51689
  /***/ },
51690
- /* 366 */
51691
  /***/ function(module, exports, __webpack_require__) {
51692
 
51693
  //! moment.js locale configuration
@@ -51696,7 +51635,7 @@ webpackJsonp([1],[
51696
  //! author : Jeeeyul Lee <jeeeyul@gmail.com>
51697
 
51698
  ;(function (global, factory) {
51699
- true ? factory(__webpack_require__(301)) :
51700
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51701
  factory(global.moment)
51702
  }(this, (function (moment) { 'use strict';
@@ -51775,7 +51714,7 @@ webpackJsonp([1],[
51775
 
51776
 
51777
  /***/ },
51778
- /* 367 */
51779
  /***/ function(module, exports, __webpack_require__) {
51780
 
51781
  //! moment.js locale configuration
@@ -51783,7 +51722,7 @@ webpackJsonp([1],[
51783
  //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
51784
 
51785
  ;(function (global, factory) {
51786
- true ? factory(__webpack_require__(301)) :
51787
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51788
  factory(global.moment)
51789
  }(this, (function (moment) { 'use strict';
@@ -51839,7 +51778,6 @@ webpackJsonp([1],[
51839
  future : '%s ичинде',
51840
  past : '%s мурун',
51841
  s : 'бирнече секунд',
51842
- ss : '%d секунд',
51843
  m : 'бир мүнөт',
51844
  mm : '%d мүнөт',
51845
  h : 'бир саат',
@@ -51869,7 +51807,7 @@ webpackJsonp([1],[
51869
 
51870
 
51871
  /***/ },
51872
- /* 368 */
51873
  /***/ function(module, exports, __webpack_require__) {
51874
 
51875
  //! moment.js locale configuration
@@ -51878,7 +51816,7 @@ webpackJsonp([1],[
51878
  //! author : David Raison : https://github.com/kwisatz
51879
 
51880
  ;(function (global, factory) {
51881
- true ? factory(__webpack_require__(301)) :
51882
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51883
  factory(global.moment)
51884
  }(this, (function (moment) { 'use strict';
@@ -51986,7 +51924,6 @@ webpackJsonp([1],[
51986
  future : processFutureTime,
51987
  past : processPastTime,
51988
  s : 'e puer Sekonnen',
51989
- ss : '%d Sekonnen',
51990
  m : processRelativeTime,
51991
  mm : '%d Minutten',
51992
  h : processRelativeTime,
@@ -52012,7 +51949,7 @@ webpackJsonp([1],[
52012
 
52013
 
52014
  /***/ },
52015
- /* 369 */
52016
  /***/ function(module, exports, __webpack_require__) {
52017
 
52018
  //! moment.js locale configuration
@@ -52020,7 +51957,7 @@ webpackJsonp([1],[
52020
  //! author : Ryan Hart : https://github.com/ryanhart2
52021
 
52022
  ;(function (global, factory) {
52023
- true ? factory(__webpack_require__(301)) :
52024
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52025
  factory(global.moment)
52026
  }(this, (function (moment) { 'use strict';
@@ -52064,7 +52001,6 @@ webpackJsonp([1],[
52064
  future : 'ອີກ %s',
52065
  past : '%sຜ່ານມາ',
52066
  s : 'ບໍ່ເທົ່າໃດວິນາທີ',
52067
- ss : '%d ວິນາທີ' ,
52068
  m : '1 ນາທີ',
52069
  mm : '%d ນາທີ',
52070
  h : '1 ຊົ່ວໂມງ',
@@ -52088,7 +52024,7 @@ webpackJsonp([1],[
52088
 
52089
 
52090
  /***/ },
52091
- /* 370 */
52092
  /***/ function(module, exports, __webpack_require__) {
52093
 
52094
  //! moment.js locale configuration
@@ -52096,14 +52032,13 @@ webpackJsonp([1],[
52096
  //! author : Mindaugas Mozūras : https://github.com/mmozuras
52097
 
52098
  ;(function (global, factory) {
52099
- true ? factory(__webpack_require__(301)) :
52100
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52101
  factory(global.moment)
52102
  }(this, (function (moment) { 'use strict';
52103
 
52104
 
52105
  var units = {
52106
- 'ss' : 'sekundė_sekundžių_sekundes',
52107
  'm' : 'minutė_minutės_minutę',
52108
  'mm': 'minutės_minučių_minutes',
52109
  'h' : 'valanda_valandos_valandą',
@@ -52184,7 +52119,6 @@ webpackJsonp([1],[
52184
  future : 'po %s',
52185
  past : 'prieš %s',
52186
  s : translateSeconds,
52187
- ss : translate,
52188
  m : translateSingular,
52189
  mm : translate,
52190
  h : translateSingular,
@@ -52212,7 +52146,7 @@ webpackJsonp([1],[
52212
 
52213
 
52214
  /***/ },
52215
- /* 371 */
52216
  /***/ function(module, exports, __webpack_require__) {
52217
 
52218
  //! moment.js locale configuration
@@ -52221,14 +52155,13 @@ webpackJsonp([1],[
52221
  //! author : Jānis Elmeris : https://github.com/JanisE
52222
 
52223
  ;(function (global, factory) {
52224
- true ? factory(__webpack_require__(301)) :
52225
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52226
  factory(global.moment)
52227
  }(this, (function (moment) { 'use strict';
52228
 
52229
 
52230
  var units = {
52231
- 'ss': 'sekundes_sekundēm_sekunde_sekundes'.split('_'),
52232
  'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
52233
  'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
52234
  'h': 'stundas_stundām_stunda_stundas'.split('_'),
@@ -52290,7 +52223,6 @@ webpackJsonp([1],[
52290
  future : 'pēc %s',
52291
  past : 'pirms %s',
52292
  s : relativeSeconds,
52293
- ss : relativeTimeWithPlural,
52294
  m : relativeTimeWithSingular,
52295
  mm : relativeTimeWithPlural,
52296
  h : relativeTimeWithSingular,
@@ -52316,7 +52248,7 @@ webpackJsonp([1],[
52316
 
52317
 
52318
  /***/ },
52319
- /* 372 */
52320
  /***/ function(module, exports, __webpack_require__) {
52321
 
52322
  //! moment.js locale configuration
@@ -52324,7 +52256,7 @@ webpackJsonp([1],[
52324
  //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
52325
 
52326
  ;(function (global, factory) {
52327
- true ? factory(__webpack_require__(301)) :
52328
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52329
  factory(global.moment)
52330
  }(this, (function (moment) { 'use strict';
@@ -52332,7 +52264,6 @@ webpackJsonp([1],[
52332
 
52333
  var translator = {
52334
  words: { //Different grammatical cases
52335
- ss: ['sekund', 'sekunda', 'sekundi'],
52336
  m: ['jedan minut', 'jednog minuta'],
52337
  mm: ['minut', 'minuta', 'minuta'],
52338
  h: ['jedan sat', 'jednog sata'],
@@ -52408,7 +52339,6 @@ webpackJsonp([1],[
52408
  future : 'za %s',
52409
  past : 'prije %s',
52410
  s : 'nekoliko sekundi',
52411
- ss : translator.translate,
52412
  m : translator.translate,
52413
  mm : translator.translate,
52414
  h : translator.translate,
@@ -52434,7 +52364,7 @@ webpackJsonp([1],[
52434
 
52435
 
52436
  /***/ },
52437
- /* 373 */
52438
  /***/ function(module, exports, __webpack_require__) {
52439
 
52440
  //! moment.js locale configuration
@@ -52442,7 +52372,7 @@ webpackJsonp([1],[
52442
  //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
52443
 
52444
  ;(function (global, factory) {
52445
- true ? factory(__webpack_require__(301)) :
52446
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52447
  factory(global.moment)
52448
  }(this, (function (moment) { 'use strict';
@@ -52478,7 +52408,6 @@ webpackJsonp([1],[
52478
  future: 'i roto i %s',
52479
  past: '%s i mua',
52480
  s: 'te hēkona ruarua',
52481
- ss: '%d hēkona',
52482
  m: 'he meneti',
52483
  mm: '%d meneti',
52484
  h: 'te haora',
@@ -52504,7 +52433,7 @@ webpackJsonp([1],[
52504
 
52505
 
52506
  /***/ },
52507
- /* 374 */
52508
  /***/ function(module, exports, __webpack_require__) {
52509
 
52510
  //! moment.js locale configuration
@@ -52512,7 +52441,7 @@ webpackJsonp([1],[
52512
  //! author : Borislav Mickov : https://github.com/B0k0
52513
 
52514
  ;(function (global, factory) {
52515
- true ? factory(__webpack_require__(301)) :
52516
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52517
  factory(global.moment)
52518
  }(this, (function (moment) { 'use strict';
@@ -52556,7 +52485,6 @@ webpackJsonp([1],[
52556
  future : 'после %s',
52557
  past : 'пред %s',
52558
  s : 'неколку секунди',
52559
- ss : '%d секунди',
52560
  m : 'минута',
52561
  mm : '%d минути',
52562
  h : 'час',
@@ -52600,7 +52528,7 @@ webpackJsonp([1],[
52600
 
52601
 
52602
  /***/ },
52603
- /* 375 */
52604
  /***/ function(module, exports, __webpack_require__) {
52605
 
52606
  //! moment.js locale configuration
@@ -52608,7 +52536,7 @@ webpackJsonp([1],[
52608
  //! author : Floyd Pink : https://github.com/floydpink
52609
 
52610
  ;(function (global, factory) {
52611
- true ? factory(__webpack_require__(301)) :
52612
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52613
  factory(global.moment)
52614
  }(this, (function (moment) { 'use strict';
@@ -52641,7 +52569,6 @@ webpackJsonp([1],[
52641
  future : '%s കഴിഞ്ഞ്',
52642
  past : '%s മുൻപ്',
52643
  s : 'അൽപ നിമിഷങ്ങൾ',
52644
- ss : '%d സെക്കൻഡ്',
52645
  m : 'ഒരു മിനിറ്റ്',
52646
  mm : '%d മിനിറ്റ്',
52647
  h : 'ഒരു മണിക്കൂർ',
@@ -52687,7 +52614,7 @@ webpackJsonp([1],[
52687
 
52688
 
52689
  /***/ },
52690
- /* 376 */
52691
  /***/ function(module, exports, __webpack_require__) {
52692
 
52693
  //! moment.js locale configuration
@@ -52696,7 +52623,7 @@ webpackJsonp([1],[
52696
  //! author : Vivek Athalye : https://github.com/vnathalye
52697
 
52698
  ;(function (global, factory) {
52699
- true ? factory(__webpack_require__(301)) :
52700
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52701
  factory(global.moment)
52702
  }(this, (function (moment) { 'use strict';
@@ -52733,7 +52660,6 @@ webpackJsonp([1],[
52733
  if (withoutSuffix) {
52734
  switch (string) {
52735
  case 's': output = 'काही सेकंद'; break;
52736
- case 'ss': output = '%d सेकंद'; break;
52737
  case 'm': output = 'एक मिनिट'; break;
52738
  case 'mm': output = '%d मिनिटे'; break;
52739
  case 'h': output = 'एक तास'; break;
@@ -52749,7 +52675,6 @@ webpackJsonp([1],[
52749
  else {
52750
  switch (string) {
52751
  case 's': output = 'काही सेकंदां'; break;
52752
- case 'ss': output = '%d सेकंदां'; break;
52753
  case 'm': output = 'एका मिनिटा'; break;
52754
  case 'mm': output = '%d मिनिटां'; break;
52755
  case 'h': output = 'एका तासा'; break;
@@ -52792,7 +52717,6 @@ webpackJsonp([1],[
52792
  future: '%sमध्ये',
52793
  past: '%sपूर्वी',
52794
  s: relativeTimeMr,
52795
- ss: relativeTimeMr,
52796
  m: relativeTimeMr,
52797
  mm: relativeTimeMr,
52798
  h: relativeTimeMr,
@@ -52854,7 +52778,7 @@ webpackJsonp([1],[
52854
 
52855
 
52856
  /***/ },
52857
- /* 377 */
52858
  /***/ function(module, exports, __webpack_require__) {
52859
 
52860
  //! moment.js locale configuration
@@ -52862,7 +52786,7 @@ webpackJsonp([1],[
52862
  //! author : Weldan Jamili : https://github.com/weldan
52863
 
52864
  ;(function (global, factory) {
52865
- true ? factory(__webpack_require__(301)) :
52866
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52867
  factory(global.moment)
52868
  }(this, (function (moment) { 'use strict';
@@ -52918,7 +52842,6 @@ webpackJsonp([1],[
52918
  future : 'dalam %s',
52919
  past : '%s yang lepas',
52920
  s : 'beberapa saat',
52921
- ss : '%d saat',
52922
  m : 'seminit',
52923
  mm : '%d minit',
52924
  h : 'sejam',
@@ -52942,7 +52865,7 @@ webpackJsonp([1],[
52942
 
52943
 
52944
  /***/ },
52945
- /* 378 */
52946
  /***/ function(module, exports, __webpack_require__) {
52947
 
52948
  //! moment.js locale configuration
@@ -52951,7 +52874,7 @@ webpackJsonp([1],[
52951
  //! author : Weldan Jamili : https://github.com/weldan
52952
 
52953
  ;(function (global, factory) {
52954
- true ? factory(__webpack_require__(301)) :
52955
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52956
  factory(global.moment)
52957
  }(this, (function (moment) { 'use strict';
@@ -53007,7 +52930,6 @@ webpackJsonp([1],[
53007
  future : 'dalam %s',
53008
  past : '%s yang lepas',
53009
  s : 'beberapa saat',
53010
- ss : '%d saat',
53011
  m : 'seminit',
53012
  mm : '%d minit',
53013
  h : 'sejam',
@@ -53030,72 +52952,6 @@ webpackJsonp([1],[
53030
  })));
53031
 
53032
 
53033
- /***/ },
53034
- /* 379 */
53035
- /***/ function(module, exports, __webpack_require__) {
53036
-
53037
- //! moment.js locale configuration
53038
- //! locale : Maltese (Malta) [mt]
53039
- //! author : Alessandro Maruccia : https://github.com/alesma
53040
-
53041
- ;(function (global, factory) {
53042
- true ? factory(__webpack_require__(301)) :
53043
- typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53044
- factory(global.moment)
53045
- }(this, (function (moment) { 'use strict';
53046
-
53047
-
53048
- var mt = moment.defineLocale('mt', {
53049
- months : 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split('_'),
53050
- monthsShort : 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
53051
- weekdays : 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split('_'),
53052
- weekdaysShort : 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
53053
- weekdaysMin : 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
53054
- longDateFormat : {
53055
- LT : 'HH:mm',
53056
- LTS : 'HH:mm:ss',
53057
- L : 'DD/MM/YYYY',
53058
- LL : 'D MMMM YYYY',
53059
- LLL : 'D MMMM YYYY HH:mm',
53060
- LLLL : 'dddd, D MMMM YYYY HH:mm'
53061
- },
53062
- calendar : {
53063
- sameDay : '[Illum fil-]LT',
53064
- nextDay : '[Għada fil-]LT',
53065
- nextWeek : 'dddd [fil-]LT',
53066
- lastDay : '[Il-bieraħ fil-]LT',
53067
- lastWeek : 'dddd [li għadda] [fil-]LT',
53068
- sameElse : 'L'
53069
- },
53070
- relativeTime : {
53071
- future : 'f’ %s',
53072
- past : '%s ilu',
53073
- s : 'ftit sekondi',
53074
- ss : '%d sekondi',
53075
- m : 'minuta',
53076
- mm : '%d minuti',
53077
- h : 'siegħa',
53078
- hh : '%d siegħat',
53079
- d : 'ġurnata',
53080
- dd : '%d ġranet',
53081
- M : 'xahar',
53082
- MM : '%d xhur',
53083
- y : 'sena',
53084
- yy : '%d sni'
53085
- },
53086
- dayOfMonthOrdinalParse : /\d{1,2}º/,
53087
- ordinal: '%dº',
53088
- week : {
53089
- dow : 1, // Monday is the first day of the week.
53090
- doy : 4 // The week that contains Jan 4th is the first week of the year.
53091
- }
53092
- });
53093
-
53094
- return mt;
53095
-
53096
- })));
53097
-
53098
-
53099
  /***/ },
53100
  /* 380 */
53101
  /***/ function(module, exports, __webpack_require__) {
@@ -53107,7 +52963,7 @@ webpackJsonp([1],[
53107
  //! author : Tin Aung Lin : https://github.com/thanyawzinmin
53108
 
53109
  ;(function (global, factory) {
53110
- true ? factory(__webpack_require__(301)) :
53111
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53112
  factory(global.moment)
53113
  }(this, (function (moment) { 'use strict';
@@ -53165,7 +53021,6 @@ webpackJsonp([1],[
53165
  future: 'လာမည့် %s မှာ',
53166
  past: 'လွန်ခဲ့သော %s က',
53167
  s: 'စက္ကန်.အနည်းငယ်',
53168
- ss : '%d စက္ကန့်',
53169
  m: 'တစ်မိနစ်',
53170
  mm: '%d မိနစ်',
53171
  h: 'တစ်နာရီ',
@@ -53208,7 +53063,7 @@ webpackJsonp([1],[
53208
  //! Sigurd Gartmann : https://github.com/sigurdga
53209
 
53210
  ;(function (global, factory) {
53211
- true ? factory(__webpack_require__(301)) :
53212
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53213
  factory(global.moment)
53214
  }(this, (function (moment) { 'use strict';
@@ -53242,7 +53097,6 @@ webpackJsonp([1],[
53242
  future : 'om %s',
53243
  past : '%s siden',
53244
  s : 'noen sekunder',
53245
- ss : '%d sekunder',
53246
  m : 'ett minutt',
53247
  mm : '%d minutter',
53248
  h : 'en time',
@@ -53276,7 +53130,7 @@ webpackJsonp([1],[
53276
  //! author : suvash : https://github.com/suvash
53277
 
53278
  ;(function (global, factory) {
53279
- true ? factory(__webpack_require__(301)) :
53280
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53281
  factory(global.moment)
53282
  }(this, (function (moment) { 'use strict';
@@ -53373,7 +53227,6 @@ webpackJsonp([1],[
53373
  future : '%sमा',
53374
  past : '%s अगाडि',
53375
  s : 'केही क्षण',
53376
- ss : '%d सेकेण्ड',
53377
  m : 'एक मिनेट',
53378
  mm : '%d मिनेट',
53379
  h : 'एक घण्टा',
@@ -53406,7 +53259,7 @@ webpackJsonp([1],[
53406
  //! author : Jacob Middag : https://github.com/middagj
53407
 
53408
  ;(function (global, factory) {
53409
- true ? factory(__webpack_require__(301)) :
53410
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53411
  factory(global.moment)
53412
  }(this, (function (moment) { 'use strict';
@@ -53463,7 +53316,6 @@ webpackJsonp([1],[
53463
  future : 'over %s',
53464
  past : '%s geleden',
53465
  s : 'een paar seconden',
53466
- ss : '%d seconden',
53467
  m : 'één minuut',
53468
  mm : '%d minuten',
53469
  h : 'één uur',
@@ -53500,7 +53352,7 @@ webpackJsonp([1],[
53500
  //! author : Jacob Middag : https://github.com/middagj
53501
 
53502
  ;(function (global, factory) {
53503
- true ? factory(__webpack_require__(301)) :
53504
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53505
  factory(global.moment)
53506
  }(this, (function (moment) { 'use strict';
@@ -53557,7 +53409,6 @@ webpackJsonp([1],[
53557
  future : 'over %s',
53558
  past : '%s geleden',
53559
  s : 'een paar seconden',
53560
- ss : '%d seconden',
53561
  m : 'één minuut',
53562
  mm : '%d minuten',
53563
  h : 'één uur',
@@ -53593,7 +53444,7 @@ webpackJsonp([1],[
53593
  //! author : https://github.com/mechuwind
53594
 
53595
  ;(function (global, factory) {
53596
- true ? factory(__webpack_require__(301)) :
53597
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53598
  factory(global.moment)
53599
  }(this, (function (moment) { 'use strict';
@@ -53625,7 +53476,6 @@ webpackJsonp([1],[
53625
  future : 'om %s',
53626
  past : '%s sidan',
53627
  s : 'nokre sekund',
53628
- ss : '%d sekund',
53629
  m : 'eit minutt',
53630
  mm : '%d minutt',
53631
  h : 'ein time',
@@ -53659,7 +53509,7 @@ webpackJsonp([1],[
53659
  //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
53660
 
53661
  ;(function (global, factory) {
53662
- true ? factory(__webpack_require__(301)) :
53663
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53664
  factory(global.moment)
53665
  }(this, (function (moment) { 'use strict';
@@ -53717,7 +53567,6 @@ webpackJsonp([1],[
53717
  future : '%s ਵਿੱਚ',
53718
  past : '%s ਪਿਛਲੇ',
53719
  s : 'ਕੁਝ ਸਕਿੰਟ',
53720
- ss : '%d ਸਕਿੰਟ',
53721
  m : 'ਇਕ ਮਿੰਟ',
53722
  mm : '%d ਮਿੰਟ',
53723
  h : 'ਇੱਕ ਘੰਟਾ',
@@ -53789,7 +53638,7 @@ webpackJsonp([1],[
53789
  //! author : Rafal Hirsz : https://github.com/evoL
53790
 
53791
  ;(function (global, factory) {
53792
- true ? factory(__webpack_require__(301)) :
53793
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53794
  factory(global.moment)
53795
  }(this, (function (moment) { 'use strict';
@@ -53803,8 +53652,6 @@ webpackJsonp([1],[
53803
  function translate(number, withoutSuffix, key) {
53804
  var result = number + ' ';
53805
  switch (key) {
53806
- case 'ss':
53807
- return result + (plural(number) ? 'sekundy' : 'sekund');
53808
  case 'm':
53809
  return withoutSuffix ? 'minuta' : 'minutę';
53810
  case 'mm':
@@ -53887,7 +53734,6 @@ webpackJsonp([1],[
53887
  future : 'za %s',
53888
  past : '%s temu',
53889
  s : 'kilka sekund',
53890
- ss : translate,
53891
  m : translate,
53892
  mm : translate,
53893
  h : translate,
@@ -53921,7 +53767,7 @@ webpackJsonp([1],[
53921
  //! author : Jefferson : https://github.com/jalex79
53922
 
53923
  ;(function (global, factory) {
53924
- true ? factory(__webpack_require__(301)) :
53925
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53926
  factory(global.moment)
53927
  }(this, (function (moment) { 'use strict';
@@ -53958,7 +53804,6 @@ webpackJsonp([1],[
53958
  future : 'em %s',
53959
  past : 'há %s',
53960
  s : 'segundos',
53961
- ss : '%d segundos',
53962
  m : 'um minuto',
53963
  mm : '%d minutos',
53964
  h : 'uma hora',
@@ -53992,7 +53837,7 @@ webpackJsonp([1],[
53992
  //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
53993
 
53994
  ;(function (global, factory) {
53995
- true ? factory(__webpack_require__(301)) :
53996
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53997
  factory(global.moment)
53998
  }(this, (function (moment) { 'use strict';
@@ -54060,7 +53905,7 @@ webpackJsonp([1],[
54060
  //! author : Valentin Agachi : https://github.com/avaly
54061
 
54062
  ;(function (global, factory) {
54063
- true ? factory(__webpack_require__(301)) :
54064
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54065
  factory(global.moment)
54066
  }(this, (function (moment) { 'use strict';
@@ -54068,7 +53913,6 @@ webpackJsonp([1],[
54068
 
54069
  function relativeTimeWithPlural(number, withoutSuffix, key) {
54070
  var format = {
54071
- 'ss': 'secunde',
54072
  'mm': 'minute',
54073
  'hh': 'ore',
54074
  'dd': 'zile',
@@ -54109,7 +53953,6 @@ webpackJsonp([1],[
54109
  future : 'peste %s',
54110
  past : '%s în urmă',
54111
  s : 'câteva secunde',
54112
- ss : relativeTimeWithPlural,
54113
  m : 'un minut',
54114
  mm : relativeTimeWithPlural,
54115
  h : 'o oră',
@@ -54143,7 +53986,7 @@ webpackJsonp([1],[
54143
  //! author : Коренберг Марк : https://github.com/socketpair
54144
 
54145
  ;(function (global, factory) {
54146
- true ? factory(__webpack_require__(301)) :
54147
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54148
  factory(global.moment)
54149
  }(this, (function (moment) { 'use strict';
@@ -54155,7 +53998,6 @@ webpackJsonp([1],[
54155
  }
54156
  function relativeTimeWithPlural(number, withoutSuffix, key) {
54157
  var format = {
54158
- 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
54159
  'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
54160
  'hh': 'час_часа_часов',
54161
  'dd': 'день_дня_дней',
@@ -54207,12 +54049,12 @@ webpackJsonp([1],[
54207
  // Выражение, которое соотвествует только сокращённым формам
54208
  monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
54209
  longDateFormat : {
54210
- LT : 'H:mm',
54211
- LTS : 'H:mm:ss',
54212
  L : 'DD.MM.YYYY',
54213
  LL : 'D MMMM YYYY г.',
54214
- LLL : 'D MMMM YYYY г., H:mm',
54215
- LLLL : 'dddd, D MMMM YYYY г., H:mm'
54216
  },
54217
  calendar : {
54218
  sameDay: '[Сегодня в] LT',
@@ -54268,7 +54110,6 @@ webpackJsonp([1],[
54268
  future : 'через %s',
54269
  past : '%s назад',
54270
  s : 'несколько секунд',
54271
- ss : relativeTimeWithPlural,
54272
  m : relativeTimeWithPlural,
54273
  mm : relativeTimeWithPlural,
54274
  h : 'час',
@@ -54331,7 +54172,7 @@ webpackJsonp([1],[
54331
  //! author : Narain Sagar : https://github.com/narainsagar
54332
 
54333
  ;(function (global, factory) {
54334
- true ? factory(__webpack_require__(301)) :
54335
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54336
  factory(global.moment)
54337
  }(this, (function (moment) { 'use strict';
@@ -54397,7 +54238,6 @@ webpackJsonp([1],[
54397
  future : '%s پوء',
54398
  past : '%s اڳ',
54399
  s : 'چند سيڪنڊ',
54400
- ss : '%d سيڪنڊ',
54401
  m : 'هڪ منٽ',
54402
  mm : '%d منٽ',
54403
  h : 'هڪ ڪلاڪ',
@@ -54435,7 +54275,7 @@ webpackJsonp([1],[
54435
  //! authors : Bård Rolstad Henriksen : https://github.com/karamell
54436
 
54437
  ;(function (global, factory) {
54438
- true ? factory(__webpack_require__(301)) :
54439
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54440
  factory(global.moment)
54441
  }(this, (function (moment) { 'use strict';
@@ -54468,7 +54308,6 @@ webpackJsonp([1],[
54468
  future : '%s geažes',
54469
  past : 'maŋit %s',
54470
  s : 'moadde sekunddat',
54471
- ss: '%d sekunddat',
54472
  m : 'okta minuhta',
54473
  mm : '%d minuhtat',
54474
  h : 'okta diimmu',
@@ -54502,7 +54341,7 @@ webpackJsonp([1],[
54502
  //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
54503
 
54504
  ;(function (global, factory) {
54505
- true ? factory(__webpack_require__(301)) :
54506
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54507
  factory(global.moment)
54508
  }(this, (function (moment) { 'use strict';
@@ -54536,7 +54375,6 @@ webpackJsonp([1],[
54536
  future : '%sකින්',
54537
  past : '%sකට පෙර',
54538
  s : 'තත්පර කිහිපය',
54539
- ss : 'තත්පර %d',
54540
  m : 'මිනිත්තුව',
54541
  mm : 'මිනිත්තු %d',
54542
  h : 'පැය',
@@ -54580,7 +54418,7 @@ webpackJsonp([1],[
54580
  //! based on work of petrbela : https://github.com/petrbela
54581
 
54582
  ;(function (global, factory) {
54583
- true ? factory(__webpack_require__(301)) :
54584
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54585
  factory(global.moment)
54586
  }(this, (function (moment) { 'use strict';
@@ -54596,13 +54434,6 @@ webpackJsonp([1],[
54596
  switch (key) {
54597
  case 's': // a few seconds / in a few seconds / a few seconds ago
54598
  return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
54599
- case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
54600
- if (withoutSuffix || isFuture) {
54601
- return result + (plural(number) ? 'sekundy' : 'sekúnd');
54602
- } else {
54603
- return result + 'sekundami';
54604
- }
54605
- break;
54606
  case 'm': // a minute / in a minute / a minute ago
54607
  return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
54608
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
@@ -54708,7 +54539,6 @@ webpackJsonp([1],[
54708
  future : 'za %s',
54709
  past : 'pred %s',
54710
  s : translate,
54711
- ss : translate,
54712
  m : translate,
54713
  mm : translate,
54714
  h : translate,
@@ -54742,7 +54572,7 @@ webpackJsonp([1],[
54742
  //! author : Robert Sedovšek : https://github.com/sedovsek
54743
 
54744
  ;(function (global, factory) {
54745
- true ? factory(__webpack_require__(301)) :
54746
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54747
  factory(global.moment)
54748
  }(this, (function (moment) { 'use strict';
@@ -54753,17 +54583,6 @@ webpackJsonp([1],[
54753
  switch (key) {
54754
  case 's':
54755
  return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';
54756
- case 'ss':
54757
- if (number === 1) {
54758
- result += withoutSuffix ? 'sekundo' : 'sekundi';
54759
- } else if (number === 2) {
54760
- result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';
54761
- } else if (number < 5) {
54762
- result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';
54763
- } else {
54764
- result += withoutSuffix || isFuture ? 'sekund' : 'sekund';
54765
- }
54766
- return result;
54767
  case 'm':
54768
  return withoutSuffix ? 'ena minuta' : 'eno minuto';
54769
  case 'mm':
@@ -54887,7 +54706,6 @@ webpackJsonp([1],[
54887
  future : 'čez %s',
54888
  past : 'pred %s',
54889
  s : processRelativeTime,
54890
- ss : processRelativeTime,
54891
  m : processRelativeTime,
54892
  mm : processRelativeTime,
54893
  h : processRelativeTime,
@@ -54923,7 +54741,7 @@ webpackJsonp([1],[
54923
  //! author : Oerd Cukalla : https://github.com/oerd
54924
 
54925
  ;(function (global, factory) {
54926
- true ? factory(__webpack_require__(301)) :
54927
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54928
  factory(global.moment)
54929
  }(this, (function (moment) { 'use strict';
@@ -54963,7 +54781,6 @@ webpackJsonp([1],[
54963
  future : 'në %s',
54964
  past : '%s më parë',
54965
  s : 'disa sekonda',
54966
- ss : '%d sekonda',
54967
  m : 'një minutë',
54968
  mm : '%d minuta',
54969
  h : 'një orë',
@@ -54997,7 +54814,7 @@ webpackJsonp([1],[
54997
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
54998
 
54999
  ;(function (global, factory) {
55000
- true ? factory(__webpack_require__(301)) :
55001
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55002
  factory(global.moment)
55003
  }(this, (function (moment) { 'use strict';
@@ -55005,7 +54822,6 @@ webpackJsonp([1],[
55005
 
55006
  var translator = {
55007
  words: { //Different grammatical cases
55008
- ss: ['sekunda', 'sekunde', 'sekundi'],
55009
  m: ['jedan minut', 'jedne minute'],
55010
  mm: ['minut', 'minute', 'minuta'],
55011
  h: ['jedan sat', 'jednog sata'],
@@ -55080,7 +54896,6 @@ webpackJsonp([1],[
55080
  future : 'za %s',
55081
  past : 'pre %s',
55082
  s : 'nekoliko sekundi',
55083
- ss : translator.translate,
55084
  m : translator.translate,
55085
  mm : translator.translate,
55086
  h : translator.translate,
@@ -55114,7 +54929,7 @@ webpackJsonp([1],[
55114
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
55115
 
55116
  ;(function (global, factory) {
55117
- true ? factory(__webpack_require__(301)) :
55118
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55119
  factory(global.moment)
55120
  }(this, (function (moment) { 'use strict';
@@ -55122,7 +54937,6 @@ webpackJsonp([1],[
55122
 
55123
  var translator = {
55124
  words: { //Different grammatical cases
55125
- ss: ['секунда', 'секунде', 'секунди'],
55126
  m: ['један минут', 'једне минуте'],
55127
  mm: ['минут', 'минуте', 'минута'],
55128
  h: ['један сат', 'једног сата'],
@@ -55197,7 +55011,6 @@ webpackJsonp([1],[
55197
  future : 'за %s',
55198
  past : 'пре %s',
55199
  s : 'неколико секунди',
55200
- ss : translator.translate,
55201
  m : translator.translate,
55202
  mm : translator.translate,
55203
  h : translator.translate,
@@ -55231,7 +55044,7 @@ webpackJsonp([1],[
55231
  //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
55232
 
55233
  ;(function (global, factory) {
55234
- true ? factory(__webpack_require__(301)) :
55235
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55236
  factory(global.moment)
55237
  }(this, (function (moment) { 'use strict';
@@ -55265,7 +55078,6 @@ webpackJsonp([1],[
55265
  future : 'nga %s',
55266
  past : 'wenteka nga %s',
55267
  s : 'emizuzwana lomcane',
55268
- ss : '%d mzuzwana',
55269
  m : 'umzuzu',
55270
  mm : '%d emizuzu',
55271
  h : 'lihora',
@@ -55326,7 +55138,7 @@ webpackJsonp([1],[
55326
  //! author : Jens Alm : https://github.com/ulmus
55327
 
55328
  ;(function (global, factory) {
55329
- true ? factory(__webpack_require__(301)) :
55330
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55331
  factory(global.moment)
55332
  }(this, (function (moment) { 'use strict';
@@ -55360,7 +55172,6 @@ webpackJsonp([1],[
55360
  future : 'om %s',
55361
  past : 'för %s sedan',
55362
  s : 'några sekunder',
55363
- ss : '%d sekunder',
55364
  m : 'en minut',
55365
  mm : '%d minuter',
55366
  h : 'en timme',
@@ -55401,7 +55212,7 @@ webpackJsonp([1],[
55401
  //! author : Fahad Kassim : https://github.com/fadsel
55402
 
55403
  ;(function (global, factory) {
55404
- true ? factory(__webpack_require__(301)) :
55405
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55406
  factory(global.moment)
55407
  }(this, (function (moment) { 'use strict';
@@ -55434,7 +55245,6 @@ webpackJsonp([1],[
55434
  future : '%s baadaye',
55435
  past : 'tokea %s',
55436
  s : 'hivi punde',
55437
- ss : 'sekunde %d',
55438
  m : 'dakika moja',
55439
  mm : 'dakika %d',
55440
  h : 'saa limoja',
@@ -55466,7 +55276,7 @@ webpackJsonp([1],[
55466
  //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
55467
 
55468
  ;(function (global, factory) {
55469
- true ? factory(__webpack_require__(301)) :
55470
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55471
  factory(global.moment)
55472
  }(this, (function (moment) { 'use strict';
@@ -55523,7 +55333,6 @@ webpackJsonp([1],[
55523
  future : '%s இல்',
55524
  past : '%s முன்',
55525
  s : 'ஒரு சில விநாடிகள்',
55526
- ss : '%d விநாடிகள்',
55527
  m : 'ஒரு நிமிடம்',
55528
  mm : '%d நிமிடங்கள்',
55529
  h : 'ஒரு மணி நேரம்',
@@ -55602,7 +55411,7 @@ webpackJsonp([1],[
55602
  //! author : Krishna Chaitanya Thota : https://github.com/kcthota
55603
 
55604
  ;(function (global, factory) {
55605
- true ? factory(__webpack_require__(301)) :
55606
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55607
  factory(global.moment)
55608
  }(this, (function (moment) { 'use strict';
@@ -55635,7 +55444,6 @@ webpackJsonp([1],[
55635
  future : '%s లో',
55636
  past : '%s క్రితం',
55637
  s : 'కొన్ని క్షణాలు',
55638
- ss : '%d సెకన్లు',
55639
  m : 'ఒక నిమిషం',
55640
  mm : '%d నిమిషాలు',
55641
  h : 'ఒక గంట',
@@ -55698,7 +55506,7 @@ webpackJsonp([1],[
55698
  //! author : Onorio De J. Afonso : https://github.com/marobo
55699
 
55700
  ;(function (global, factory) {
55701
- true ? factory(__webpack_require__(301)) :
55702
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55703
  factory(global.moment)
55704
  }(this, (function (moment) { 'use strict';
@@ -55730,7 +55538,6 @@ webpackJsonp([1],[
55730
  future : 'iha %s',
55731
  past : '%s liuba',
55732
  s : 'minutu balun',
55733
- ss : 'minutu %d',
55734
  m : 'minutu ida',
55735
  mm : 'minutus %d',
55736
  h : 'horas ida',
@@ -55771,7 +55578,7 @@ webpackJsonp([1],[
55771
  //! author : Kridsada Thanabulpong : https://github.com/sirn
55772
 
55773
  ;(function (global, factory) {
55774
- true ? factory(__webpack_require__(301)) :
55775
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55776
  factory(global.moment)
55777
  }(this, (function (moment) { 'use strict';
@@ -55816,7 +55623,6 @@ webpackJsonp([1],[
55816
  future : 'อีก %s',
55817
  past : '%sที่แล้ว',
55818
  s : 'ไม่กี่วินาที',
55819
- ss : '%d วินาที',
55820
  m : '1 นาที',
55821
  mm : '%d นาที',
55822
  h : '1 ชั่วโมง',
@@ -55844,7 +55650,7 @@ webpackJsonp([1],[
55844
  //! author : Dan Hagman : https://github.com/hagmandan
55845
 
55846
  ;(function (global, factory) {
55847
- true ? factory(__webpack_require__(301)) :
55848
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55849
  factory(global.moment)
55850
  }(this, (function (moment) { 'use strict';
@@ -55876,7 +55682,6 @@ webpackJsonp([1],[
55876
  future : 'sa loob ng %s',
55877
  past : '%s ang nakalipas',
55878
  s : 'ilang segundo',
55879
- ss : '%d segundo',
55880
  m : 'isang minuto',
55881
  mm : '%d minuto',
55882
  h : 'isang oras',
@@ -55912,7 +55717,7 @@ webpackJsonp([1],[
55912
  //! author : Dominika Kruk : https://github.com/amaranthrose
55913
 
55914
  ;(function (global, factory) {
55915
- true ? factory(__webpack_require__(301)) :
55916
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55917
  factory(global.moment)
55918
  }(this, (function (moment) { 'use strict';
@@ -55947,8 +55752,6 @@ webpackJsonp([1],[
55947
  function translate(number, withoutSuffix, string, isFuture) {
55948
  var numberNoun = numberAsNoun(number);
55949
  switch (string) {
55950
- case 'ss':
55951
- return numberNoun + ' lup';
55952
  case 'mm':
55953
  return numberNoun + ' tup';
55954
  case 'hh':
@@ -56006,7 +55809,6 @@ webpackJsonp([1],[
56006
  future : translateFuture,
56007
  past : translatePast,
56008
  s : 'puS lup',
56009
- ss : translate,
56010
  m : 'wa’ tup',
56011
  mm : translate,
56012
  h : 'wa’ rep',
@@ -56041,7 +55843,7 @@ webpackJsonp([1],[
56041
  //! Burak Yiğit Kaya: https://github.com/BYK
56042
 
56043
  ;(function (global, factory) {
56044
- true ? factory(__webpack_require__(301)) :
56045
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56046
  factory(global.moment)
56047
  }(this, (function (moment) { 'use strict';
@@ -56094,7 +55896,6 @@ webpackJsonp([1],[
56094
  future : '%s sonra',
56095
  past : '%s önce',
56096
  s : 'birkaç saniye',
56097
- ss : '%d saniye',
56098
  m : 'bir dakika',
56099
  mm : '%d dakika',
56100
  h : 'bir saat',
@@ -56137,7 +55938,7 @@ webpackJsonp([1],[
56137
  //! author : Iustì Canun
56138
 
56139
  ;(function (global, factory) {
56140
- true ? factory(__webpack_require__(301)) :
56141
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56142
  factory(global.moment)
56143
  }(this, (function (moment) { 'use strict';
@@ -56182,7 +55983,6 @@ webpackJsonp([1],[
56182
  future : 'osprei %s',
56183
  past : 'ja%s',
56184
  s : processRelativeTime,
56185
- ss : processRelativeTime,
56186
  m : processRelativeTime,
56187
  mm : processRelativeTime,
56188
  h : processRelativeTime,
@@ -56205,7 +56005,6 @@ webpackJsonp([1],[
56205
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
56206
  var format = {
56207
  's': ['viensas secunds', '\'iensas secunds'],
56208
- 'ss': [number + ' secunds', '' + number + ' secunds'],
56209
  'm': ['\'n míut', '\'iens míut'],
56210
  'mm': [number + ' míuts', '' + number + ' míuts'],
56211
  'h': ['\'n þora', '\'iensa þora'],
@@ -56234,7 +56033,7 @@ webpackJsonp([1],[
56234
  //! author : Abdel Said : https://github.com/abdelsaid
56235
 
56236
  ;(function (global, factory) {
56237
- true ? factory(__webpack_require__(301)) :
56238
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56239
  factory(global.moment)
56240
  }(this, (function (moment) { 'use strict';
@@ -56266,7 +56065,6 @@ webpackJsonp([1],[
56266
  future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
56267
  past : 'ⵢⴰⵏ %s',
56268
  s : 'ⵉⵎⵉⴽ',
56269
- ss : '%d ⵉⵎⵉⴽ',
56270
  m : 'ⵎⵉⵏⵓⴺ',
56271
  mm : '%d ⵎⵉⵏⵓⴺ',
56272
  h : 'ⵙⴰⵄⴰ',
@@ -56298,7 +56096,7 @@ webpackJsonp([1],[
56298
  //! author : Abdel Said : https://github.com/abdelsaid
56299
 
56300
  ;(function (global, factory) {
56301
- true ? factory(__webpack_require__(301)) :
56302
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56303
  factory(global.moment)
56304
  }(this, (function (moment) { 'use strict';
@@ -56330,7 +56128,6 @@ webpackJsonp([1],[
56330
  future : 'dadkh s yan %s',
56331
  past : 'yan %s',
56332
  s : 'imik',
56333
- ss : '%d imik',
56334
  m : 'minuḍ',
56335
  mm : '%d minuḍ',
56336
  h : 'saɛa',
@@ -56363,7 +56160,7 @@ webpackJsonp([1],[
56363
  //! Author : Menelion Elensúle : https://github.com/Oire
56364
 
56365
  ;(function (global, factory) {
56366
- true ? factory(__webpack_require__(301)) :
56367
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56368
  factory(global.moment)
56369
  }(this, (function (moment) { 'use strict';
@@ -56375,7 +56172,6 @@ webpackJsonp([1],[
56375
  }
56376
  function relativeTimeWithPlural(number, withoutSuffix, key) {
56377
  var format = {
56378
- 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',
56379
  'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
56380
  'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
56381
  'dd': 'день_дні_днів',
@@ -56457,7 +56253,6 @@ webpackJsonp([1],[
56457
  future : 'за %s',
56458
  past : '%s тому',
56459
  s : 'декілька секунд',
56460
- ss : relativeTimeWithPlural,
56461
  m : relativeTimeWithPlural,
56462
  mm : relativeTimeWithPlural,
56463
  h : 'годину',
@@ -56521,7 +56316,7 @@ webpackJsonp([1],[
56521
  //! author : Zack : https://github.com/ZackVision
56522
 
56523
  ;(function (global, factory) {
56524
- true ? factory(__webpack_require__(301)) :
56525
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56526
  factory(global.moment)
56527
  }(this, (function (moment) { 'use strict';
@@ -56587,7 +56382,6 @@ webpackJsonp([1],[
56587
  future : '%s بعد',
56588
  past : '%s قبل',
56589
  s : 'چند سیکنڈ',
56590
- ss : '%d سیکنڈ',
56591
  m : 'ایک منٹ',
56592
  mm : '%d منٹ',
56593
  h : 'ایک گھنٹہ',
@@ -56625,7 +56419,7 @@ webpackJsonp([1],[
56625
  //! author : Sardor Muminov : https://github.com/muminoff
56626
 
56627
  ;(function (global, factory) {
56628
- true ? factory(__webpack_require__(301)) :
56629
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56630
  factory(global.moment)
56631
  }(this, (function (moment) { 'use strict';
@@ -56657,7 +56451,6 @@ webpackJsonp([1],[
56657
  future : 'Якин %s ичида',
56658
  past : 'Бир неча %s олдин',
56659
  s : 'фурсат',
56660
- ss : '%d фурсат',
56661
  m : 'бир дакика',
56662
  mm : '%d дакика',
56663
  h : 'бир соат',
@@ -56689,7 +56482,7 @@ webpackJsonp([1],[
56689
  //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
56690
 
56691
  ;(function (global, factory) {
56692
- true ? factory(__webpack_require__(301)) :
56693
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56694
  factory(global.moment)
56695
  }(this, (function (moment) { 'use strict';
@@ -56721,7 +56514,6 @@ webpackJsonp([1],[
56721
  future : 'Yaqin %s ichida',
56722
  past : 'Bir necha %s oldin',
56723
  s : 'soniya',
56724
- ss : '%d soniya',
56725
  m : 'bir daqiqa',
56726
  mm : '%d daqiqa',
56727
  h : 'bir soat',
@@ -56753,7 +56545,7 @@ webpackJsonp([1],[
56753
  //! author : Bang Nguyen : https://github.com/bangnk
56754
 
56755
  ;(function (global, factory) {
56756
- true ? factory(__webpack_require__(301)) :
56757
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56758
  factory(global.moment)
56759
  }(this, (function (moment) { 'use strict';
@@ -56802,7 +56594,6 @@ webpackJsonp([1],[
56802
  future : '%s tới',
56803
  past : '%s trước',
56804
  s : 'vài giây',
56805
- ss : '%d giây' ,
56806
  m : 'một phút',
56807
  mm : '%d phút',
56808
  h : 'một giờ',
@@ -56838,7 +56629,7 @@ webpackJsonp([1],[
56838
  //! author : Andrew Hood : https://github.com/andrewhood125
56839
 
56840
  ;(function (global, factory) {
56841
- true ? factory(__webpack_require__(301)) :
56842
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56843
  factory(global.moment)
56844
  }(this, (function (moment) { 'use strict';
@@ -56871,7 +56662,6 @@ webpackJsonp([1],[
56871
  future : 'í~ñ %s',
56872
  past : '%s á~gó',
56873
  s : 'á ~féw ~sécó~ñds',
56874
- ss : '%d s~écóñ~ds',
56875
  m : 'á ~míñ~úté',
56876
  mm : '%d m~íñú~tés',
56877
  h : 'á~ñ hó~úr',
@@ -56912,7 +56702,7 @@ webpackJsonp([1],[
56912
  //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
56913
 
56914
  ;(function (global, factory) {
56915
- true ? factory(__webpack_require__(301)) :
56916
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56917
  factory(global.moment)
56918
  }(this, (function (moment) { 'use strict';
@@ -56944,7 +56734,6 @@ webpackJsonp([1],[
56944
  future : 'ní %s',
56945
  past : '%s kọjá',
56946
  s : 'ìsẹjú aayá die',
56947
- ss :'aayá %d',
56948
  m : 'ìsẹjú kan',
56949
  mm : 'ìsẹjú %d',
56950
  h : 'wákati kan',
@@ -56979,7 +56768,7 @@ webpackJsonp([1],[
56979
  //! author : Zeno Zeng : https://github.com/zenozeng
56980
 
56981
  ;(function (global, factory) {
56982
- true ? factory(__webpack_require__(301)) :
56983
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56984
  factory(global.moment)
56985
  }(this, (function (moment) { 'use strict';
@@ -56994,14 +56783,14 @@ webpackJsonp([1],[
56994
  longDateFormat : {
56995
  LT : 'HH:mm',
56996
  LTS : 'HH:mm:ss',
56997
- L : 'YYYY/MM/DD',
56998
- LL : 'YYYY年M月D日',
56999
- LLL : 'YYYY年M月D日Ah点mm分',
57000
- LLLL : 'YYYY年M月D日ddddAh点mm分',
57001
- l : 'YYYY/M/D',
57002
- ll : 'YYYY年M月D日',
57003
- lll : 'YYYY年M月D日 HH:mm',
57004
- llll : 'YYYY年M月D日dddd HH:mm'
57005
  },
57006
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
57007
  meridiemHour: function (hour, meridiem) {
@@ -57062,7 +56851,6 @@ webpackJsonp([1],[
57062
  future : '%s内',
57063
  past : '%s前',
57064
  s : '几秒',
57065
- ss : '%d 秒',
57066
  m : '1 分钟',
57067
  mm : '%d 分钟',
57068
  h : '1 小时',
@@ -57097,7 +56885,7 @@ webpackJsonp([1],[
57097
  //! author : Konstantin : https://github.com/skfd
57098
 
57099
  ;(function (global, factory) {
57100
- true ? factory(__webpack_require__(301)) :
57101
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
57102
  factory(global.moment)
57103
  }(this, (function (moment) { 'use strict';
@@ -57112,14 +56900,14 @@ webpackJsonp([1],[
57112
  longDateFormat : {
57113
  LT : 'HH:mm',
57114
  LTS : 'HH:mm:ss',
57115
- L : 'YYYY/MM/DD',
57116
- LL : 'YYYY年M月D日',
57117
- LLL : 'YYYY年M月D日 HH:mm',
57118
- LLLL : 'YYYY年M月D日dddd HH:mm',
57119
- l : 'YYYY/M/D',
57120
- ll : 'YYYY年M月D日',
57121
- lll : 'YYYY年M月D日 HH:mm',
57122
- llll : 'YYYY年M月D日dddd HH:mm'
57123
  },
57124
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
57125
  meridiemHour : function (hour, meridiem) {
@@ -57178,7 +56966,6 @@ webpackJsonp([1],[
57178
  future : '%s內',
57179
  past : '%s前',
57180
  s : '幾秒',
57181
- ss : '%d 秒',
57182
  m : '1 分鐘',
57183
  mm : '%d 分鐘',
57184
  h : '1 小時',
@@ -57207,7 +56994,7 @@ webpackJsonp([1],[
57207
  //! author : Chris Lam : https://github.com/hehachris
57208
 
57209
  ;(function (global, factory) {
57210
- true ? factory(__webpack_require__(301)) :
57211
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
57212
  factory(global.moment)
57213
  }(this, (function (moment) { 'use strict';
@@ -57222,14 +57009,14 @@ webpackJsonp([1],[
57222
  longDateFormat : {
57223
  LT : 'HH:mm',
57224
  LTS : 'HH:mm:ss',
57225
- L : 'YYYY/MM/DD',
57226
- LL : 'YYYY年M月D日',
57227
- LLL : 'YYYY年M月D日 HH:mm',
57228
- LLLL : 'YYYY年M月D日dddd HH:mm',
57229
- l : 'YYYY/M/D',
57230
- ll : 'YYYY年M月D日',
57231
- lll : 'YYYY年M月D日 HH:mm',
57232
- llll : 'YYYY年M月D日dddd HH:mm'
57233
  },
57234
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
57235
  meridiemHour : function (hour, meridiem) {
@@ -57288,7 +57075,6 @@ webpackJsonp([1],[
57288
  future : '%s內',
57289
  past : '%s前',
57290
  s : '幾秒',
57291
- ss : '%d 秒',
57292
  m : '1 分鐘',
57293
  mm : '%d 分鐘',
57294
  h : '1 小時',
@@ -57506,7 +57292,7 @@ webpackJsonp([1],[
57506
 
57507
  module.exports = isRegExp;
57508
 
57509
- /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(302)(module)))
57510
 
57511
  /***/ },
57512
  /* 426 */
@@ -59809,11 +59595,11 @@ webpackJsonp([1],[
59809
 
59810
  var _mailpoet2 = _interopRequireDefault(_mailpoet);
59811
 
59812
- var _formFieldsSelectJsx = __webpack_require__(297);
59813
 
59814
  var _formFieldsSelectJsx2 = _interopRequireDefault(_formFieldsSelectJsx);
59815
 
59816
- var _formFieldsTextJsx = __webpack_require__(295);
59817
 
59818
  var _formFieldsTextJsx2 = _interopRequireDefault(_formFieldsTextJsx);
59819
 
7
  __webpack_require__(181);
8
  __webpack_require__(423);
9
  __webpack_require__(278);
10
+ __webpack_require__(293);
11
  __webpack_require__(534);
12
  __webpack_require__(433);
13
  __webpack_require__(525);
31555
  if (this.props.messages !== undefined) {
31556
  messages = this.props.messages;
31557
  }
31558
+ var extraActions = undefined;
31559
+ if (typeof this.props.renderExtraActions === 'function') {
31560
+ extraActions = this.props.renderExtraActions(this.state);
31561
+ }
31562
 
31563
  return _react2['default'].createElement(
31564
  'div',
31582
  onSelectFilter: this.handleFilter,
31583
  onEmptyTrash: this.handleEmptyTrash
31584
  }),
31585
+ extraActions,
31586
  _react2['default'].createElement(_listingPagesJsx2['default'], {
31587
  count: this.state.count,
31588
  page: this.state.page,
33897
 
33898
  /***/ },
33899
  /* 288 */
33900
+ /***/ function(module, exports, __webpack_require__) {
33901
+
33902
+ /* WEBPACK VAR INJECTION */(function(global) {"use strict";
33903
+
33904
+ if (!global["MailPoetLib"]) global["MailPoetLib"] = {};
33905
+ module.exports = global["MailPoetLib"]["FormFieldSelection"] = __webpack_require__(289);
33906
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
33907
+
33908
+ /***/ },
33909
+ /* 289 */
33910
  /***/ function(module, exports, __webpack_require__) {
33911
 
33912
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
33913
 
33914
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
33915
 
33916
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(34), __webpack_require__(275), __webpack_require__(290)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, ReactDOM, jQuery) {
33917
  var Selection = React.createClass({
33918
  displayName: 'Selection',
33919
 
 
 
 
 
 
 
 
 
 
33920
  allowMultipleValues: function allowMultipleValues() {
33921
  return this.props.field.multiple === true;
33922
  },
33923
  isSelect2Initialized: function isSelect2Initialized() {
33924
+ return jQuery('#' + this.refs.select.id).hasClass('select2-hidden-accessible') === true;
33925
  },
33926
  componentDidMount: function componentDidMount() {
33927
  if (this.allowMultipleValues() || this.props.field.forceSelect2) {
33932
  if (this.props.item !== undefined && prevProps.item !== undefined && this.props.item.id !== prevProps.item.id) {
33933
  jQuery('#' + this.refs.select.id).val(this.getSelectedValues()).trigger('change');
33934
  }
33935
+
33936
+ if (this.isSelect2Initialized() && this.getFieldId(this.props) !== this.getFieldId(prevProps) && this.props.field.resetSelect2OnUpdate !== undefined) {
33937
+ this.resetSelect2();
33938
+ }
33939
  },
33940
  componentWillUnmount: function componentWillUnmount() {
33941
  if (this.allowMultipleValues() || this.props.field.forceSelect2) {
33942
  this.destroySelect2();
33943
  }
33944
  },
33945
+ getFieldId: function getFieldId(data) {
33946
+ var props = data || this.props;
33947
+ return props.field.id || props.field.name;
33948
+ },
33949
+ resetSelect2: function resetSelect2() {
33950
+ this.destroySelect2();
33951
+ this.setupSelect2();
33952
+ },
33953
  destroySelect2: function destroySelect2() {
33954
  if (this.isSelect2Initialized()) {
33955
  jQuery('#' + this.refs.select.id).select2('destroy');
33956
+ this.cleanupAfterSelect2();
33957
  }
33958
  },
33959
+ cleanupAfterSelect2: function cleanupAfterSelect2() {
33960
+ // remove DOM elements created by Select2 that are not tracked by React
33961
+ jQuery('#' + this.refs.select.id).find('option:not(.default)').remove();
33962
+
33963
+ // unbind events (https://select2.org/programmatic-control/methods#event-unbinding)
33964
+ jQuery('#' + this.refs.select.id).off('select2:unselecting').off('select2:opening');
33965
+ },
33966
  setupSelect2: function setupSelect2() {
33967
  if (this.isSelect2Initialized()) {
33968
  return;
33969
  }
33970
 
33971
+ var select2Options = {
33972
  width: this.props.width || '',
33973
  templateResult: function templateResult(item) {
33974
  if (item.element && item.element.selected) {
33978
  }
33979
  return item.text;
33980
  }
33981
+ };
33982
+
33983
+ var remoteQuery = this.props.field.remoteQuery || null;
33984
+ if (remoteQuery) {
33985
+ select2Options = Object.assign(select2Options, {
33986
+ ajax: {
33987
+ url: window.ajaxurl,
33988
+ type: 'POST',
33989
+ dataType: 'json',
33990
+ data: function data(params) {
33991
+ return {
33992
+ action: 'mailpoet',
33993
+ api_version: window.mailpoet_api_version,
33994
+ token: window.mailpoet_token,
33995
+ endpoint: remoteQuery.endpoint,
33996
+ method: remoteQuery.method,
33997
+ data: Object.assign(remoteQuery.data, { query: params.term })
33998
+ };
33999
+ },
34000
+ processResults: function processResults(response) {
34001
+ return {
34002
+ results: response.data.map(function (item) {
34003
+ return { id: item.id || item.value, text: item.name || item.text };
34004
+ })
34005
+ };
34006
+ }
34007
+ },
34008
+ minimumInputLength: remoteQuery.minimumInputLength || 2
34009
+ });
34010
+ }
34011
+
34012
+ if (this.props.field.extendSelect2Options !== undefined) {
34013
+ select2Options = Object.assign(select2Options, this.props.field.extendSelect2Options);
34014
+ }
34015
+
34016
+ var select2 = jQuery('#' + this.refs.select.id).select2(select2Options);
34017
 
34018
  var hasRemoved = false;
34019
  select2.on('select2:unselecting', function () {
34027
  });
34028
 
34029
  select2.on('change', this.handleChange);
 
 
34030
  },
34031
  getSelectedValues: function getSelectedValues() {
34032
  if (this.props.field.selected !== undefined) {
34044
  }
34045
  return null;
34046
  },
34047
+ getItems: function getItems() {
34048
  var items = undefined;
34049
  if (typeof window['mailpoet_' + this.props.field.endpoint] !== 'undefined') {
34050
  items = window['mailpoet_' + this.props.field.endpoint];
34056
  if (this.props.field.filter !== undefined) {
34057
  items = items.filter(this.props.field.filter);
34058
  }
 
 
 
 
34059
  }
34060
+
34061
+ return items;
34062
  },
34063
  handleChange: function handleChange(e) {
34064
  var value = undefined;
34109
  // For single selects only, in order for the placeholder value to appear,
34110
  // we must have a blank <option> as the first option in the <select> control.
34111
  if (this.allowMultipleValues()) return undefined;
34112
+ if (this.props.field.placeholder) return React.createElement('option', { className: 'default' });
34113
  return undefined;
34114
  },
34115
  render: function render() {
34116
  var _this = this;
34117
 
34118
+ var items = this.getItems(this.props.field);
34119
+ var options = items.map(function (item, index) {
34120
  var label = _this.getLabel(item);
34121
  var searchLabel = _this.getSearchLabel(item);
34122
  var value = _this.getValue(item);
34125
  'option',
34126
  {
34127
  key: 'option-' + index,
34128
+ className: 'default',
34129
  value: value,
34130
  title: searchLabel
34131
  },
34136
  return React.createElement(
34137
  'select',
34138
  _extends({
34139
+ id: this.getFieldId(),
34140
  ref: 'select',
34141
  disabled: this.props.field.disabled,
34142
  'data-placeholder': this.props.field.placeholder,
34153
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
34154
 
34155
  /***/ },
34156
+ /* 290 */
34157
  /***/ function(module, exports, __webpack_require__) {
34158
 
34159
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;var require;var require;/*!
39905
 
39906
 
39907
  /***/ },
 
39908
  /* 291 */,
39909
+ /* 292 */,
39910
+ /* 293 */
39911
  /***/ function(module, exports, __webpack_require__) {
39912
 
39913
  /* WEBPACK VAR INJECTION */(function(global) {"use strict";
39914
 
39915
  if (!global["MailPoetLib"]) global["MailPoetLib"] = {};
39916
+ module.exports = global["MailPoetLib"]["Form"] = __webpack_require__(294);
39917
  /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
39918
 
39919
  /***/ },
39920
+ /* 294 */
39921
  /***/ function(module, exports, __webpack_require__) {
39922
 
39923
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
39924
 
39925
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(276), __webpack_require__(277), __webpack_require__(181), __webpack_require__(295), __webpack_require__(275)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, MailPoet, classNames, Router, FormField, jQuery) {
39926
  var Form = React.createClass({
39927
  displayName: 'Form',
39928
 
40155
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40156
 
40157
  /***/ },
40158
+ /* 295 */
40159
  /***/ function(module, exports, __webpack_require__) {
40160
 
40161
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
40162
 
40163
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(296), __webpack_require__(297), __webpack_require__(298), __webpack_require__(299), __webpack_require__(300), __webpack_require__(288), __webpack_require__(301), __webpack_require__(275)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, FormFieldText, FormFieldTextarea, FormFieldSelect, FormFieldRadio, FormFieldCheckbox, FormFieldSelection, FormFieldDate, jQuery) {
40164
  var FormField = React.createClass({
40165
  displayName: 'FormField',
40166
 
40291
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40292
 
40293
  /***/ },
40294
+ /* 296 */
40295
  /***/ function(module, exports, __webpack_require__) {
40296
 
40297
  'use strict';
40330
  module.exports = FormFieldText;
40331
 
40332
  /***/ },
40333
+ /* 297 */
40334
  /***/ function(module, exports, __webpack_require__) {
40335
 
40336
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict";
40359
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40360
 
40361
  /***/ },
40362
+ /* 298 */
40363
  /***/ function(module, exports, __webpack_require__) {
40364
 
40365
  'use strict';
40449
  module.exports = FormFieldSelect;
40450
 
40451
  /***/ },
40452
+ /* 299 */
40453
  /***/ function(module, exports, __webpack_require__) {
40454
 
40455
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict";
40496
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40497
 
40498
  /***/ },
40499
+ /* 300 */
40500
  /***/ function(module, exports, __webpack_require__) {
40501
 
40502
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
40551
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40552
 
40553
  /***/ },
40554
+ /* 301 */
40555
  /***/ function(module, exports, __webpack_require__) {
40556
 
40557
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict';
40566
 
40567
  function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
40568
 
40569
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(2), __webpack_require__(302)], __WEBPACK_AMD_DEFINE_RESULT__ = function (React, Moment) {
40570
  var FormFieldDateYear = (function (_React$Component) {
40571
  _inherits(FormFieldDateYear, _React$Component);
40572
 
40890
  }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
40891
 
40892
  /***/ },
40893
+ /* 302 */
40894
  /***/ function(module, exports, __webpack_require__) {
40895
 
40896
  var require;/* WEBPACK VAR INJECTION */(function(module) {//! moment.js
40897
+ //! version : 2.19.3
40898
  //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
40899
  //! license : MIT
40900
  //! momentjs.com
41554
 
41555
  // any word (or two) characters or numbers including two/three word month in arabic.
41556
  // includes scottish gaelic two word and hyphenated months
41557
+ var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;
41558
 
41559
 
41560
  var regexes = {};
42737
  try {
42738
  oldLocale = globalLocale._abbr;
42739
  var aliasedRequire = require;
42740
+ __webpack_require__(304)("./" + name);
42741
  getSetGlobalLocale(oldLocale);
42742
  } catch (e) {}
42743
  }
42924
  // note: all values past the year are optional and will default to the lowest possible value.
42925
  // [year, month, day , hour, minute, second, millisecond]
42926
  function configFromArray (config) {
42927
+ var i, date, input = [], currentDate, yearToUse;
42928
 
42929
  if (config._d) {
42930
  return;
42974
  }
42975
 
42976
  config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
 
 
42977
  // Apply timezone offset from input. The actual utcOffset can be changed
42978
  // with parseZone.
42979
  if (config._tzm != null) {
42985
  }
42986
 
42987
  // check for mismatching day of week
42988
+ if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== config._d.getDay()) {
42989
  getParsingFlags(config).weekdayMismatch = true;
42990
  }
42991
  }
44193
  return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
44194
  }
44195
 
44196
+ function toISOString() {
44197
  if (!this.isValid()) {
44198
  return null;
44199
  }
44200
+ var m = this.clone().utc();
 
44201
  if (m.year() < 0 || m.year() > 9999) {
44202
+ return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
44203
  }
44204
  if (isFunction(Date.prototype.toISOString)) {
44205
  // native implementation is ~50x faster, use it when we can
44206
+ return this.toDate().toISOString();
 
 
 
 
44207
  }
44208
+ return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
44209
  }
44210
 
44211
  /**
44561
 
44562
  addParseToken(['D', 'DD'], DATE);
44563
  addParseToken('Do', function (input, array) {
44564
+ array[DATE] = toInt(input.match(match1to2)[0], 10);
44565
  });
44566
 
44567
  // MOMENTS
45373
  // Side effect imports
45374
 
45375
 
45376
+ hooks.version = '2.19.3';
45377
 
45378
  setHookCallback(createLocal);
45379
 
45405
  hooks.calendarFormat = getCalendarFormat;
45406
  hooks.prototype = proto;
45407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45408
  return hooks;
45409
 
45410
  })));
45411
 
45412
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(303)(module)))
45413
 
45414
  /***/ },
45415
+ /* 303 */
45416
  /***/ function(module, exports) {
45417
 
45418
  module.exports = function(module) {
45428
 
45429
 
45430
  /***/ },
45431
+ /* 304 */
45432
  /***/ function(module, exports, __webpack_require__) {
45433
 
45434
  var map = {
45435
+ "./af": 305,
45436
+ "./af.js": 305,
45437
+ "./ar": 306,
45438
+ "./ar-dz": 307,
45439
+ "./ar-dz.js": 307,
45440
+ "./ar-kw": 308,
45441
+ "./ar-kw.js": 308,
45442
+ "./ar-ly": 309,
45443
+ "./ar-ly.js": 309,
45444
+ "./ar-ma": 310,
45445
+ "./ar-ma.js": 310,
45446
+ "./ar-sa": 311,
45447
+ "./ar-sa.js": 311,
45448
+ "./ar-tn": 312,
45449
+ "./ar-tn.js": 312,
45450
+ "./ar.js": 306,
45451
+ "./az": 313,
45452
+ "./az.js": 313,
45453
+ "./be": 314,
45454
+ "./be.js": 314,
45455
+ "./bg": 315,
45456
+ "./bg.js": 315,
45457
+ "./bm": 316,
45458
+ "./bm.js": 316,
45459
+ "./bn": 317,
45460
+ "./bn.js": 317,
45461
+ "./bo": 318,
45462
+ "./bo.js": 318,
45463
+ "./br": 319,
45464
+ "./br.js": 319,
45465
+ "./bs": 320,
45466
+ "./bs.js": 320,
45467
+ "./ca": 321,
45468
+ "./ca.js": 321,
45469
+ "./cs": 322,
45470
+ "./cs.js": 322,
45471
+ "./cv": 323,
45472
+ "./cv.js": 323,
45473
+ "./cy": 324,
45474
+ "./cy.js": 324,
45475
+ "./da": 325,
45476
+ "./da.js": 325,
45477
+ "./de": 326,
45478
+ "./de-at": 327,
45479
+ "./de-at.js": 327,
45480
+ "./de-ch": 328,
45481
+ "./de-ch.js": 328,
45482
+ "./de.js": 326,
45483
+ "./dv": 329,
45484
+ "./dv.js": 329,
45485
+ "./el": 330,
45486
+ "./el.js": 330,
45487
+ "./en-au": 331,
45488
+ "./en-au.js": 331,
45489
+ "./en-ca": 332,
45490
+ "./en-ca.js": 332,
45491
+ "./en-gb": 333,
45492
+ "./en-gb.js": 333,
45493
+ "./en-ie": 334,
45494
+ "./en-ie.js": 334,
45495
+ "./en-nz": 335,
45496
+ "./en-nz.js": 335,
45497
+ "./eo": 336,
45498
+ "./eo.js": 336,
45499
+ "./es": 337,
45500
+ "./es-do": 338,
45501
+ "./es-do.js": 338,
45502
+ "./es-us": 339,
45503
+ "./es-us.js": 339,
45504
+ "./es.js": 337,
45505
+ "./et": 340,
45506
+ "./et.js": 340,
45507
+ "./eu": 341,
45508
+ "./eu.js": 341,
45509
+ "./fa": 342,
45510
+ "./fa.js": 342,
45511
+ "./fi": 343,
45512
+ "./fi.js": 343,
45513
+ "./fo": 344,
45514
+ "./fo.js": 344,
45515
+ "./fr": 345,
45516
+ "./fr-ca": 346,
45517
+ "./fr-ca.js": 346,
45518
+ "./fr-ch": 347,
45519
+ "./fr-ch.js": 347,
45520
+ "./fr.js": 345,
45521
+ "./fy": 348,
45522
+ "./fy.js": 348,
45523
+ "./gd": 349,
45524
+ "./gd.js": 349,
45525
+ "./gl": 350,
45526
+ "./gl.js": 350,
45527
+ "./gom-latn": 351,
45528
+ "./gom-latn.js": 351,
45529
+ "./gu": 352,
45530
+ "./gu.js": 352,
45531
+ "./he": 353,
45532
+ "./he.js": 353,
45533
+ "./hi": 354,
45534
+ "./hi.js": 354,
45535
+ "./hr": 355,
45536
+ "./hr.js": 355,
45537
+ "./hu": 356,
45538
+ "./hu.js": 356,
45539
+ "./hy-am": 357,
45540
+ "./hy-am.js": 357,
45541
+ "./id": 358,
45542
+ "./id.js": 358,
45543
+ "./is": 359,
45544
+ "./is.js": 359,
45545
+ "./it": 360,
45546
+ "./it.js": 360,
45547
+ "./ja": 361,
45548
+ "./ja.js": 361,
45549
+ "./jv": 362,
45550
+ "./jv.js": 362,
45551
+ "./ka": 363,
45552
+ "./ka.js": 363,
45553
+ "./kk": 364,
45554
+ "./kk.js": 364,
45555
+ "./km": 365,
45556
+ "./km.js": 365,
45557
+ "./kn": 366,
45558
+ "./kn.js": 366,
45559
+ "./ko": 367,
45560
+ "./ko.js": 367,
45561
+ "./ky": 368,
45562
+ "./ky.js": 368,
45563
+ "./lb": 369,
45564
+ "./lb.js": 369,
45565
+ "./lo": 370,
45566
+ "./lo.js": 370,
45567
+ "./lt": 371,
45568
+ "./lt.js": 371,
45569
+ "./lv": 372,
45570
+ "./lv.js": 372,
45571
+ "./me": 373,
45572
+ "./me.js": 373,
45573
+ "./mi": 374,
45574
+ "./mi.js": 374,
45575
+ "./mk": 375,
45576
+ "./mk.js": 375,
45577
+ "./ml": 376,
45578
+ "./ml.js": 376,
45579
+ "./mr": 377,
45580
+ "./mr.js": 377,
45581
+ "./ms": 378,
45582
+ "./ms-my": 379,
45583
+ "./ms-my.js": 379,
45584
+ "./ms.js": 378,
 
 
45585
  "./my": 380,
45586
  "./my.js": 380,
45587
  "./nb": 381,
45680
  };
45681
  webpackContext.resolve = webpackContextResolve;
45682
  module.exports = webpackContext;
45683
+ webpackContext.id = 304;
45684
 
45685
 
45686
  /***/ },
45687
+ /* 305 */
45688
  /***/ function(module, exports, __webpack_require__) {
45689
 
45690
  //! moment.js locale configuration
45692
  //! author : Werner Mollentze : https://github.com/wernerm
45693
 
45694
  ;(function (global, factory) {
45695
+ true ? factory(__webpack_require__(302)) :
45696
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45697
  factory(global.moment)
45698
  }(this, (function (moment) { 'use strict';
45735
  future : 'oor %s',
45736
  past : '%s gelede',
45737
  s : '\'n paar sekondes',
 
45738
  m : '\'n minuut',
45739
  mm : '%d minute',
45740
  h : '\'n uur',
45762
 
45763
 
45764
  /***/ },
45765
+ /* 306 */
45766
  /***/ function(module, exports, __webpack_require__) {
45767
 
45768
  //! moment.js locale configuration
45772
  //! author : forabi https://github.com/forabi
45773
 
45774
  ;(function (global, factory) {
45775
+ true ? factory(__webpack_require__(302)) :
45776
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45777
  factory(global.moment)
45778
  }(this, (function (moment) { 'use strict';
45824
  };
45825
  };
45826
  var months = [
45827
+ 'كانون الثاني يناير',
45828
+ 'شباط فبراير',
45829
+ 'آذار مارس',
45830
+ 'نيسان أبريل',
45831
+ 'أيار مايو',
45832
+ 'حزيران يونيو',
45833
+ 'تموز يوليو',
45834
+ 'آب أغسطس',
45835
+ 'أيلول سبتمبر',
45836
+ 'تشرين الأول أكتوبر',
45837
+ 'تشرين الثاني نوفمبر',
45838
+ 'كانون الأول ديسمبر'
45839
  ];
45840
 
45841
  var ar = moment.defineLocale('ar', {
45876
  future : 'بعد %s',
45877
  past : 'منذ %s',
45878
  s : pluralize('s'),
 
45879
  m : pluralize('m'),
45880
  mm : pluralize('m'),
45881
  h : pluralize('h'),
45909
 
45910
 
45911
  /***/ },
45912
+ /* 307 */
45913
  /***/ function(module, exports, __webpack_require__) {
45914
 
45915
  //! moment.js locale configuration
45917
  //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme
45918
 
45919
  ;(function (global, factory) {
45920
+ true ? factory(__webpack_require__(302)) :
45921
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45922
  factory(global.moment)
45923
  }(this, (function (moment) { 'use strict';
45950
  future : 'في %s',
45951
  past : 'منذ %s',
45952
  s : 'ثوان',
 
45953
  m : 'دقيقة',
45954
  mm : '%d دقائق',
45955
  h : 'ساعة',
45973
 
45974
 
45975
  /***/ },
45976
+ /* 308 */
45977
  /***/ function(module, exports, __webpack_require__) {
45978
 
45979
  //! moment.js locale configuration
45981
  //! author : Nusret Parlak: https://github.com/nusretparlak
45982
 
45983
  ;(function (global, factory) {
45984
+ true ? factory(__webpack_require__(302)) :
45985
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
45986
  factory(global.moment)
45987
  }(this, (function (moment) { 'use strict';
46014
  future : 'في %s',
46015
  past : 'منذ %s',
46016
  s : 'ثوان',
 
46017
  m : 'دقيقة',
46018
  mm : '%d دقائق',
46019
  h : 'ساعة',
46037
 
46038
 
46039
  /***/ },
46040
+ /* 309 */
46041
  /***/ function(module, exports, __webpack_require__) {
46042
 
46043
  //! moment.js locale configuration
46045
  //! author : Ali Hmer: https://github.com/kikoanis
46046
 
46047
  ;(function (global, factory) {
46048
+ true ? factory(__webpack_require__(302)) :
46049
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46050
  factory(global.moment)
46051
  }(this, (function (moment) { 'use strict';
46137
  future : 'بعد %s',
46138
  past : 'منذ %s',
46139
  s : pluralize('s'),
 
46140
  m : pluralize('m'),
46141
  mm : pluralize('m'),
46142
  h : pluralize('h'),
46168
 
46169
 
46170
  /***/ },
46171
+ /* 310 */
46172
  /***/ function(module, exports, __webpack_require__) {
46173
 
46174
  //! moment.js locale configuration
46177
  //! author : Abdel Said : https://github.com/abdelsaid
46178
 
46179
  ;(function (global, factory) {
46180
+ true ? factory(__webpack_require__(302)) :
46181
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46182
  factory(global.moment)
46183
  }(this, (function (moment) { 'use strict';
46210
  future : 'في %s',
46211
  past : 'منذ %s',
46212
  s : 'ثوان',
 
46213
  m : 'دقيقة',
46214
  mm : '%d دقائق',
46215
  h : 'ساعة',
46233
 
46234
 
46235
  /***/ },
46236
+ /* 311 */
46237
  /***/ function(module, exports, __webpack_require__) {
46238
 
46239
  //! moment.js locale configuration
46241
  //! author : Suhail Alkowaileet : https://github.com/xsoh
46242
 
46243
  ;(function (global, factory) {
46244
+ true ? factory(__webpack_require__(302)) :
46245
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46246
  factory(global.moment)
46247
  }(this, (function (moment) { 'use strict';
46310
  future : 'في %s',
46311
  past : 'منذ %s',
46312
  s : 'ثوان',
 
46313
  m : 'دقيقة',
46314
  mm : '%d دقائق',
46315
  h : 'ساعة',
46343
 
46344
 
46345
  /***/ },
46346
+ /* 312 */
46347
  /***/ function(module, exports, __webpack_require__) {
46348
 
46349
  //! moment.js locale configuration
46351
  //! author : Nader Toukabri : https://github.com/naderio
46352
 
46353
  ;(function (global, factory) {
46354
+ true ? factory(__webpack_require__(302)) :
46355
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46356
  factory(global.moment)
46357
  }(this, (function (moment) { 'use strict';
46384
  future: 'في %s',
46385
  past: 'منذ %s',
46386
  s: 'ثوان',
 
46387
  m: 'دقيقة',
46388
  mm: '%d دقائق',
46389
  h: 'ساعة',
46407
 
46408
 
46409
  /***/ },
46410
+ /* 313 */
46411
  /***/ function(module, exports, __webpack_require__) {
46412
 
46413
  //! moment.js locale configuration
46415
  //! author : topchiyev : https://github.com/topchiyev
46416
 
46417
  ;(function (global, factory) {
46418
+ true ? factory(__webpack_require__(302)) :
46419
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46420
  factory(global.moment)
46421
  }(this, (function (moment) { 'use strict';
46469
  future : '%s sonra',
46470
  past : '%s əvvəl',
46471
  s : 'birneçə saniyyə',
 
46472
  m : 'bir dəqiqə',
46473
  mm : '%d dəqiqə',
46474
  h : 'bir saat',
46517
 
46518
 
46519
  /***/ },
46520
+ /* 314 */
46521
  /***/ function(module, exports, __webpack_require__) {
46522
 
46523
  //! moment.js locale configuration
46527
  //! Author : Menelion Elensúle : https://github.com/Oire
46528
 
46529
  ;(function (global, factory) {
46530
+ true ? factory(__webpack_require__(302)) :
46531
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46532
  factory(global.moment)
46533
  }(this, (function (moment) { 'use strict';
46539
  }
46540
  function relativeTimeWithPlural(number, withoutSuffix, key) {
46541
  var format = {
 
46542
  'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
46543
  'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
46544
  'dd': 'дзень_дні_дзён',
46656
 
46657
 
46658
  /***/ },
46659
+ /* 315 */
46660
  /***/ function(module, exports, __webpack_require__) {
46661
 
46662
  //! moment.js locale configuration
46664
  //! author : Krasen Borisov : https://github.com/kraz
46665
 
46666
  ;(function (global, factory) {
46667
+ true ? factory(__webpack_require__(302)) :
46668
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46669
  factory(global.moment)
46670
  }(this, (function (moment) { 'use strict';
46708
  future : 'след %s',
46709
  past : 'преди %s',
46710
  s : 'няколко секунди',
 
46711
  m : 'минута',
46712
  mm : '%d минути',
46713
  h : 'час',
46751
 
46752
 
46753
  /***/ },
46754
+ /* 316 */
46755
  /***/ function(module, exports, __webpack_require__) {
46756
 
46757
  //! moment.js locale configuration
46759
  //! author : Estelle Comment : https://github.com/estellecomment
46760
 
46761
  ;(function (global, factory) {
46762
+ true ? factory(__webpack_require__(302)) :
46763
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46764
  factory(global.moment)
46765
  }(this, (function (moment) { 'use strict';
46792
  future : '%s kɔnɔ',
46793
  past : 'a bɛ %s bɔ',
46794
  s : 'sanga dama dama',
 
46795
  m : 'miniti kelen',
46796
  mm : 'miniti %d',
46797
  h : 'lɛrɛ kelen',
46815
 
46816
 
46817
  /***/ },
46818
+ /* 317 */
46819
  /***/ function(module, exports, __webpack_require__) {
46820
 
46821
  //! moment.js locale configuration
46823
  //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
46824
 
46825
  ;(function (global, factory) {
46826
+ true ? factory(__webpack_require__(302)) :
46827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46828
  factory(global.moment)
46829
  }(this, (function (moment) { 'use strict';
46880
  future : '%s পরে',
46881
  past : '%s আগে',
46882
  s : 'কয়েক সেকেন্ড',
 
46883
  m : 'এক মিনিট',
46884
  mm : '%d মিনিট',
46885
  h : 'এক ঘন্টা',
46939
 
46940
 
46941
  /***/ },
46942
+ /* 318 */
46943
  /***/ function(module, exports, __webpack_require__) {
46944
 
46945
  //! moment.js locale configuration
46947
  //! author : Thupten N. Chakrishar : https://github.com/vajradog
46948
 
46949
  ;(function (global, factory) {
46950
+ true ? factory(__webpack_require__(302)) :
46951
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
46952
  factory(global.moment)
46953
  }(this, (function (moment) { 'use strict';
47004
  future : '%s ལ་',
47005
  past : '%s སྔན་ལ',
47006
  s : 'ལམ་སང',
 
47007
  m : 'སྐར་མ་གཅིག',
47008
  mm : '%d སྐར་མ',
47009
  h : 'ཆུ་ཚོད་གཅིག',
47063
 
47064
 
47065
  /***/ },
47066
+ /* 319 */
47067
  /***/ function(module, exports, __webpack_require__) {
47068
 
47069
  //! moment.js locale configuration
47071
  //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
47072
 
47073
  ;(function (global, factory) {
47074
+ true ? factory(__webpack_require__(302)) :
47075
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47076
  factory(global.moment)
47077
  }(this, (function (moment) { 'use strict';
47148
  future : 'a-benn %s',
47149
  past : '%s \'zo',
47150
  s : 'un nebeud segondennoù',
 
47151
  m : 'ur vunutenn',
47152
  mm : relativeTimeWithMutation,
47153
  h : 'un eur',
47176
 
47177
 
47178
  /***/ },
47179
+ /* 320 */
47180
  /***/ function(module, exports, __webpack_require__) {
47181
 
47182
  //! moment.js locale configuration
47185
  //! based on (hr) translation by Bojan Marković
47186
 
47187
  ;(function (global, factory) {
47188
+ true ? factory(__webpack_require__(302)) :
47189
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47190
  factory(global.moment)
47191
  }(this, (function (moment) { 'use strict';
47194
  function translate(number, withoutSuffix, key) {
47195
  var result = number + ' ';
47196
  switch (key) {
 
 
 
 
 
 
 
 
 
47197
  case 'm':
47198
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
47199
  case 'mm':
47299
  future : 'za %s',
47300
  past : 'prije %s',
47301
  s : 'par sekundi',
 
47302
  m : translate,
47303
  mm : translate,
47304
  h : translate,
47324
 
47325
 
47326
  /***/ },
47327
+ /* 321 */
47328
  /***/ function(module, exports, __webpack_require__) {
47329
 
47330
  //! moment.js locale configuration
47332
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
47333
 
47334
  ;(function (global, factory) {
47335
+ true ? factory(__webpack_require__(302)) :
47336
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47337
  factory(global.moment)
47338
  }(this, (function (moment) { 'use strict';
47383
  future : 'd\'aquí %s',
47384
  past : 'fa %s',
47385
  s : 'uns segons',
 
47386
  m : 'un minut',
47387
  mm : '%d minuts',
47388
  h : 'una hora',
47417
 
47418
 
47419
  /***/ },
47420
+ /* 322 */
47421
  /***/ function(module, exports, __webpack_require__) {
47422
 
47423
  //! moment.js locale configuration
47425
  //! author : petrbela : https://github.com/petrbela
47426
 
47427
  ;(function (global, factory) {
47428
+ true ? factory(__webpack_require__(302)) :
47429
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47430
  factory(global.moment)
47431
  }(this, (function (moment) { 'use strict';
47441
  switch (key) {
47442
  case 's': // a few seconds / in a few seconds / a few seconds ago
47443
  return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';
 
 
 
 
 
 
 
47444
  case 'm': // a minute / in a minute / a minute ago
47445
  return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');
47446
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
47569
  future : 'za %s',
47570
  past : 'před %s',
47571
  s : translate,
 
47572
  m : translate,
47573
  mm : translate,
47574
  h : translate,
47594
 
47595
 
47596
  /***/ },
47597
+ /* 323 */
47598
  /***/ function(module, exports, __webpack_require__) {
47599
 
47600
  //! moment.js locale configuration
47602
  //! author : Anatoly Mironov : https://github.com/mirontoli
47603
 
47604
  ;(function (global, factory) {
47605
+ true ? factory(__webpack_require__(302)) :
47606
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47607
  factory(global.moment)
47608
  }(this, (function (moment) { 'use strict';
47637
  },
47638
  past : '%s каялла',
47639
  s : 'пӗр-ик ҫеккунт',
 
47640
  m : 'пӗр минут',
47641
  mm : '%d минут',
47642
  h : 'пӗр сехет',
47662
 
47663
 
47664
  /***/ },
47665
+ /* 324 */
47666
  /***/ function(module, exports, __webpack_require__) {
47667
 
47668
  //! moment.js locale configuration
47671
  //! author : https://github.com/ryangreaves
47672
 
47673
  ;(function (global, factory) {
47674
+ true ? factory(__webpack_require__(302)) :
47675
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47676
  factory(global.moment)
47677
  }(this, (function (moment) { 'use strict';
47705
  future: 'mewn %s',
47706
  past: '%s yn ôl',
47707
  s: 'ychydig eiliadau',
 
47708
  m: 'munud',
47709
  mm: '%d munud',
47710
  h: 'awr',
47748
 
47749
 
47750
  /***/ },
47751
+ /* 325 */
47752
  /***/ function(module, exports, __webpack_require__) {
47753
 
47754
  //! moment.js locale configuration
47756
  //! author : Ulrik Nielsen : https://github.com/mrbase
47757
 
47758
  ;(function (global, factory) {
47759
+ true ? factory(__webpack_require__(302)) :
47760
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47761
  factory(global.moment)
47762
  }(this, (function (moment) { 'use strict';
47788
  future : 'om %s',
47789
  past : '%s siden',
47790
  s : 'få sekunder',
 
47791
  m : 'et minut',
47792
  mm : '%d minutter',
47793
  h : 'en time',
47813
 
47814
 
47815
  /***/ },
47816
+ /* 326 */
47817
  /***/ function(module, exports, __webpack_require__) {
47818
 
47819
  //! moment.js locale configuration
47823
  //! author : Mikolaj Dadela : https://github.com/mik01aj
47824
 
47825
  ;(function (global, factory) {
47826
+ true ? factory(__webpack_require__(302)) :
47827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47828
  factory(global.moment)
47829
  }(this, (function (moment) { 'use strict';
47871
  future : 'in %s',
47872
  past : 'vor %s',
47873
  s : 'ein paar Sekunden',
 
47874
  m : processRelativeTime,
47875
  mm : '%d Minuten',
47876
  h : processRelativeTime,
47896
 
47897
 
47898
  /***/ },
47899
+ /* 327 */
47900
  /***/ function(module, exports, __webpack_require__) {
47901
 
47902
  //! moment.js locale configuration
47907
  //! author : Mikolaj Dadela : https://github.com/mik01aj
47908
 
47909
  ;(function (global, factory) {
47910
+ true ? factory(__webpack_require__(302)) :
47911
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47912
  factory(global.moment)
47913
  }(this, (function (moment) { 'use strict';
47955
  future : 'in %s',
47956
  past : 'vor %s',
47957
  s : 'ein paar Sekunden',
 
47958
  m : processRelativeTime,
47959
  mm : '%d Minuten',
47960
  h : processRelativeTime,
47980
 
47981
 
47982
  /***/ },
47983
+ /* 328 */
47984
  /***/ function(module, exports, __webpack_require__) {
47985
 
47986
  //! moment.js locale configuration
47988
  //! author : sschueller : https://github.com/sschueller
47989
 
47990
  ;(function (global, factory) {
47991
+ true ? factory(__webpack_require__(302)) :
47992
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
47993
  factory(global.moment)
47994
  }(this, (function (moment) { 'use strict';
48019
  weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
48020
  weekdaysParseExact : true,
48021
  longDateFormat : {
48022
+ LT: 'HH.mm',
48023
+ LTS: 'HH.mm.ss',
48024
  L : 'DD.MM.YYYY',
48025
  LL : 'D. MMMM YYYY',
48026
+ LLL : 'D. MMMM YYYY HH.mm',
48027
+ LLLL : 'dddd, D. MMMM YYYY HH.mm'
48028
  },
48029
  calendar : {
48030
  sameDay: '[heute um] LT [Uhr]',
48038
  future : 'in %s',
48039
  past : 'vor %s',
48040
  s : 'ein paar Sekunden',
 
48041
  m : processRelativeTime,
48042
  mm : '%d Minuten',
48043
  h : processRelativeTime,
48063
 
48064
 
48065
  /***/ },
48066
+ /* 329 */
48067
  /***/ function(module, exports, __webpack_require__) {
48068
 
48069
  //! moment.js locale configuration
48071
  //! author : Jawish Hameed : https://github.com/jawish
48072
 
48073
  ;(function (global, factory) {
48074
+ true ? factory(__webpack_require__(302)) :
48075
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48076
  factory(global.moment)
48077
  }(this, (function (moment) { 'use strict';
48139
  future : 'ތެރޭގައި %s',
48140
  past : 'ކުރިން %s',
48141
  s : 'ސިކުންތުކޮޅެއް',
 
48142
  m : 'މިނިޓެއް',
48143
  mm : 'މިނިޓު %d',
48144
  h : 'ގަޑިއިރެއް',
48168
 
48169
 
48170
  /***/ },
48171
+ /* 330 */
48172
  /***/ function(module, exports, __webpack_require__) {
48173
 
48174
  //! moment.js locale configuration
48176
  //! author : Aggelos Karalias : https://github.com/mehiel
48177
 
48178
  ;(function (global, factory) {
48179
+ true ? factory(__webpack_require__(302)) :
48180
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48181
  factory(global.moment)
48182
  }(this, (function (moment) { 'use strict';
48248
  future : 'σε %s',
48249
  past : '%s πριν',
48250
  s : 'λίγα δευτερόλεπτα',
 
48251
  m : 'ένα λεπτό',
48252
  mm : '%d λεπτά',
48253
  h : 'μία ώρα',
48273
 
48274
 
48275
  /***/ },
48276
+ /* 331 */
48277
  /***/ function(module, exports, __webpack_require__) {
48278
 
48279
  //! moment.js locale configuration
48281
  //! author : Jared Morse : https://github.com/jarcoal
48282
 
48283
  ;(function (global, factory) {
48284
+ true ? factory(__webpack_require__(302)) :
48285
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48286
  factory(global.moment)
48287
  }(this, (function (moment) { 'use strict';
48313
  future : 'in %s',
48314
  past : '%s ago',
48315
  s : 'a few seconds',
 
48316
  m : 'a minute',
48317
  mm : '%d minutes',
48318
  h : 'an hour',
48345
 
48346
 
48347
  /***/ },
48348
+ /* 332 */
48349
  /***/ function(module, exports, __webpack_require__) {
48350
 
48351
  //! moment.js locale configuration
48353
  //! author : Jonathan Abourbih : https://github.com/jonbca
48354
 
48355
  ;(function (global, factory) {
48356
+ true ? factory(__webpack_require__(302)) :
48357
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48358
  factory(global.moment)
48359
  }(this, (function (moment) { 'use strict';
48385
  future : 'in %s',
48386
  past : '%s ago',
48387
  s : 'a few seconds',
 
48388
  m : 'a minute',
48389
  mm : '%d minutes',
48390
  h : 'an hour',
48413
 
48414
 
48415
  /***/ },
48416
+ /* 333 */
48417
  /***/ function(module, exports, __webpack_require__) {
48418
 
48419
  //! moment.js locale configuration
48421
  //! author : Chris Gedrim : https://github.com/chrisgedrim
48422
 
48423
  ;(function (global, factory) {
48424
+ true ? factory(__webpack_require__(302)) :
48425
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48426
  factory(global.moment)
48427
  }(this, (function (moment) { 'use strict';
48453
  future : 'in %s',
48454
  past : '%s ago',
48455
  s : 'a few seconds',
 
48456
  m : 'a minute',
48457
  mm : '%d minutes',
48458
  h : 'an hour',
48485
 
48486
 
48487
  /***/ },
48488
+ /* 334 */
48489
  /***/ function(module, exports, __webpack_require__) {
48490
 
48491
  //! moment.js locale configuration
48493
  //! author : Chris Cartlidge : https://github.com/chriscartlidge
48494
 
48495
  ;(function (global, factory) {
48496
+ true ? factory(__webpack_require__(302)) :
48497
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48498
  factory(global.moment)
48499
  }(this, (function (moment) { 'use strict';
48525
  future : 'in %s',
48526
  past : '%s ago',
48527
  s : 'a few seconds',
 
48528
  m : 'a minute',
48529
  mm : '%d minutes',
48530
  h : 'an hour',
48557
 
48558
 
48559
  /***/ },
48560
+ /* 335 */
48561
  /***/ function(module, exports, __webpack_require__) {
48562
 
48563
  //! moment.js locale configuration
48565
  //! author : Luke McGregor : https://github.com/lukemcgregor
48566
 
48567
  ;(function (global, factory) {
48568
+ true ? factory(__webpack_require__(302)) :
48569
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48570
  factory(global.moment)
48571
  }(this, (function (moment) { 'use strict';
48597
  future : 'in %s',
48598
  past : '%s ago',
48599
  s : 'a few seconds',
 
48600
  m : 'a minute',
48601
  mm : '%d minutes',
48602
  h : 'an hour',
48629
 
48630
 
48631
  /***/ },
48632
+ /* 336 */
48633
  /***/ function(module, exports, __webpack_require__) {
48634
 
48635
  //! moment.js locale configuration
48639
  //! comment : miestasmia corrected the translation by colindean
48640
 
48641
  ;(function (global, factory) {
48642
+ true ? factory(__webpack_require__(302)) :
48643
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48644
  factory(global.moment)
48645
  }(this, (function (moment) { 'use strict';
48682
  future : 'post %s',
48683
  past : 'antaŭ %s',
48684
  s : 'sekundoj',
 
48685
  m : 'minuto',
48686
  mm : '%d minutoj',
48687
  h : 'horo',
48707
 
48708
 
48709
  /***/ },
48710
+ /* 337 */
48711
  /***/ function(module, exports, __webpack_require__) {
48712
 
48713
  //! moment.js locale configuration
48715
  //! author : Julio Napurí : https://github.com/julionc
48716
 
48717
  ;(function (global, factory) {
48718
+ true ? factory(__webpack_require__(302)) :
48719
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48720
  factory(global.moment)
48721
  }(this, (function (moment) { 'use strict';
48779
  future : 'en %s',
48780
  past : 'hace %s',
48781
  s : 'unos segundos',
 
48782
  m : 'un minuto',
48783
  mm : '%d minutos',
48784
  h : 'una hora',
48804
 
48805
 
48806
  /***/ },
48807
+ /* 338 */
48808
  /***/ function(module, exports, __webpack_require__) {
48809
 
48810
  //! moment.js locale configuration
48811
  //! locale : Spanish (Dominican Republic) [es-do]
48812
 
48813
  ;(function (global, factory) {
48814
+ true ? factory(__webpack_require__(302)) :
48815
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48816
  factory(global.moment)
48817
  }(this, (function (moment) { 'use strict';
48875
  future : 'en %s',
48876
  past : 'hace %s',
48877
  s : 'unos segundos',
 
48878
  m : 'un minuto',
48879
  mm : '%d minutos',
48880
  h : 'una hora',
48900
 
48901
 
48902
  /***/ },
48903
+ /* 339 */
48904
  /***/ function(module, exports, __webpack_require__) {
48905
 
48906
  //! moment.js locale configuration
48908
  //! author : bustta : https://github.com/bustta
48909
 
48910
  ;(function (global, factory) {
48911
+ true ? factory(__webpack_require__(302)) :
48912
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
48913
  factory(global.moment)
48914
  }(this, (function (moment) { 'use strict';
48934
  weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
48935
  weekdaysParseExact : true,
48936
  longDateFormat : {
48937
+ LT : 'H:mm',
48938
+ LTS : 'H:mm:ss',
48939
  L : 'MM/DD/YYYY',
48940
  LL : 'MMMM [de] D [de] YYYY',
48941
+ LLL : 'MMMM [de] D [de] YYYY H:mm',
48942
+ LLLL : 'dddd, MMMM [de] D [de] YYYY H:mm'
48943
  },
48944
  calendar : {
48945
  sameDay : function () {
48963
  future : 'en %s',
48964
  past : 'hace %s',
48965
  s : 'unos segundos',
 
48966
  m : 'un minuto',
48967
  mm : '%d minutos',
48968
  h : 'una hora',
48988
 
48989
 
48990
  /***/ },
48991
+ /* 340 */
48992
  /***/ function(module, exports, __webpack_require__) {
48993
 
48994
  //! moment.js locale configuration
48997
  //! improvements : Illimar Tambek : https://github.com/ragulka
48998
 
48999
  ;(function (global, factory) {
49000
+ true ? factory(__webpack_require__(302)) :
49001
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49002
  factory(global.moment)
49003
  }(this, (function (moment) { 'use strict';
49006
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
49007
  var format = {
49008
  's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
 
49009
  'm' : ['ühe minuti', 'üks minut'],
49010
  'mm': [number + ' minuti', number + ' minutit'],
49011
  'h' : ['ühe tunni', 'tund aega', 'üks tund'],
49048
  future : '%s pärast',
49049
  past : '%s tagasi',
49050
  s : processRelativeTime,
 
49051
  m : processRelativeTime,
49052
  mm : processRelativeTime,
49053
  h : processRelativeTime,
49073
 
49074
 
49075
  /***/ },
49076
+ /* 341 */
49077
  /***/ function(module, exports, __webpack_require__) {
49078
 
49079
  //! moment.js locale configuration
49081
  //! author : Eneko Illarramendi : https://github.com/eillarra
49082
 
49083
  ;(function (global, factory) {
49084
+ true ? factory(__webpack_require__(302)) :
49085
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49086
  factory(global.moment)
49087
  }(this, (function (moment) { 'use strict';
49119
  future : '%s barru',
49120
  past : 'duela %s',
49121
  s : 'segundo batzuk',
 
49122
  m : 'minutu bat',
49123
  mm : '%d minutu',
49124
  h : 'ordu bat',
49144
 
49145
 
49146
  /***/ },
49147
+ /* 342 */
49148
  /***/ function(module, exports, __webpack_require__) {
49149
 
49150
  //! moment.js locale configuration
49152
  //! author : Ebrahim Byagowi : https://github.com/ebraminio
49153
 
49154
  ;(function (global, factory) {
49155
+ true ? factory(__webpack_require__(302)) :
49156
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49157
  factory(global.moment)
49158
  }(this, (function (moment) { 'use strict';
49221
  future : 'در %s',
49222
  past : '%s پیش',
49223
  s : 'چند ثانیه',
 
49224
  m : 'یک دقیقه',
49225
  mm : '%d دقیقه',
49226
  h : 'یک ساعت',
49256
 
49257
 
49258
  /***/ },
49259
+ /* 343 */
49260
  /***/ function(module, exports, __webpack_require__) {
49261
 
49262
  //! moment.js locale configuration
49264
  //! author : Tarmo Aidantausta : https://github.com/bleadof
49265
 
49266
  ;(function (global, factory) {
49267
+ true ? factory(__webpack_require__(302)) :
49268
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49269
  factory(global.moment)
49270
  }(this, (function (moment) { 'use strict';
49280
  switch (key) {
49281
  case 's':
49282
  return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
 
 
49283
  case 'm':
49284
  return isFuture ? 'minuutin' : 'minuutti';
49285
  case 'mm':
49343
  future : '%s päästä',
49344
  past : '%s sitten',
49345
  s : translate,
 
49346
  m : translate,
49347
  mm : translate,
49348
  h : translate,
49368
 
49369
 
49370
  /***/ },
49371
+ /* 344 */
49372
  /***/ function(module, exports, __webpack_require__) {
49373
 
49374
  //! moment.js locale configuration
49376
  //! author : Ragnar Johannesen : https://github.com/ragnar123
49377
 
49378
  ;(function (global, factory) {
49379
+ true ? factory(__webpack_require__(302)) :
49380
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49381
  factory(global.moment)
49382
  }(this, (function (moment) { 'use strict';
49408
  future : 'um %s',
49409
  past : '%s síðani',
49410
  s : 'fá sekund',
 
49411
  m : 'ein minutt',
49412
  mm : '%d minuttir',
49413
  h : 'ein tími',
49433
 
49434
 
49435
  /***/ },
49436
+ /* 345 */
49437
  /***/ function(module, exports, __webpack_require__) {
49438
 
49439
  //! moment.js locale configuration
49441
  //! author : John Fischer : https://github.com/jfroffice
49442
 
49443
  ;(function (global, factory) {
49444
+ true ? factory(__webpack_require__(302)) :
49445
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49446
  factory(global.moment)
49447
  }(this, (function (moment) { 'use strict';
49453
  monthsParseExact : true,
49454
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49455
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49456
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
49457
  weekdaysParseExact : true,
49458
  longDateFormat : {
49459
  LT : 'HH:mm',
49475
  future : 'dans %s',
49476
  past : 'il y a %s',
49477
  s : 'quelques secondes',
 
49478
  m : 'une minute',
49479
  mm : '%d minutes',
49480
  h : 'une heure',
49521
 
49522
 
49523
  /***/ },
49524
+ /* 346 */
49525
  /***/ function(module, exports, __webpack_require__) {
49526
 
49527
  //! moment.js locale configuration
49529
  //! author : Jonathan Abourbih : https://github.com/jonbca
49530
 
49531
  ;(function (global, factory) {
49532
+ true ? factory(__webpack_require__(302)) :
49533
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49534
  factory(global.moment)
49535
  }(this, (function (moment) { 'use strict';
49541
  monthsParseExact : true,
49542
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49543
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49544
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
49545
  weekdaysParseExact : true,
49546
  longDateFormat : {
49547
  LT : 'HH:mm',
49563
  future : 'dans %s',
49564
  past : 'il y a %s',
49565
  s : 'quelques secondes',
 
49566
  m : 'une minute',
49567
  mm : '%d minutes',
49568
  h : 'une heure',
49600
 
49601
 
49602
  /***/ },
49603
+ /* 347 */
49604
  /***/ function(module, exports, __webpack_require__) {
49605
 
49606
  //! moment.js locale configuration
49608
  //! author : Gaspard Bucher : https://github.com/gaspard
49609
 
49610
  ;(function (global, factory) {
49611
+ true ? factory(__webpack_require__(302)) :
49612
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49613
  factory(global.moment)
49614
  }(this, (function (moment) { 'use strict';
49620
  monthsParseExact : true,
49621
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
49622
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
49623
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
49624
  weekdaysParseExact : true,
49625
  longDateFormat : {
49626
  LT : 'HH:mm',
49642
  future : 'dans %s',
49643
  past : 'il y a %s',
49644
  s : 'quelques secondes',
 
49645
  m : 'une minute',
49646
  mm : '%d minutes',
49647
  h : 'une heure',
49683
 
49684
 
49685
  /***/ },
49686
+ /* 348 */
49687
  /***/ function(module, exports, __webpack_require__) {
49688
 
49689
  //! moment.js locale configuration
49691
  //! author : Robin van der Vliet : https://github.com/robin0van0der0v
49692
 
49693
  ;(function (global, factory) {
49694
+ true ? factory(__webpack_require__(302)) :
49695
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49696
  factory(global.moment)
49697
  }(this, (function (moment) { 'use strict';
49736
  future : 'oer %s',
49737
  past : '%s lyn',
49738
  s : 'in pear sekonden',
 
49739
  m : 'ien minút',
49740
  mm : '%d minuten',
49741
  h : 'ien oere',
49763
 
49764
 
49765
  /***/ },
49766
+ /* 349 */
49767
  /***/ function(module, exports, __webpack_require__) {
49768
 
49769
  //! moment.js locale configuration
49771
  //! author : Jon Ashdown : https://github.com/jonashdown
49772
 
49773
  ;(function (global, factory) {
49774
+ true ? factory(__webpack_require__(302)) :
49775
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49776
  factory(global.moment)
49777
  }(this, (function (moment) { 'use strict';
49816
  future : 'ann an %s',
49817
  past : 'bho chionn %s',
49818
  s : 'beagan diogan',
 
49819
  m : 'mionaid',
49820
  mm : '%d mionaidean',
49821
  h : 'uair',
49844
 
49845
 
49846
  /***/ },
49847
+ /* 350 */
49848
  /***/ function(module, exports, __webpack_require__) {
49849
 
49850
  //! moment.js locale configuration
49852
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
49853
 
49854
  ;(function (global, factory) {
49855
+ true ? factory(__webpack_require__(302)) :
49856
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49857
  factory(global.moment)
49858
  }(this, (function (moment) { 'use strict';
49901
  },
49902
  past : 'hai %s',
49903
  s : 'uns segundos',
 
49904
  m : 'un minuto',
49905
  mm : '%d minutos',
49906
  h : 'unha hora',
49926
 
49927
 
49928
  /***/ },
49929
+ /* 351 */
49930
  /***/ function(module, exports, __webpack_require__) {
49931
 
49932
  //! moment.js locale configuration
49934
  //! author : The Discoverer : https://github.com/WikiDiscoverer
49935
 
49936
  ;(function (global, factory) {
49937
+ true ? factory(__webpack_require__(302)) :
49938
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
49939
  factory(global.moment)
49940
  }(this, (function (moment) { 'use strict';
49943
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
49944
  var format = {
49945
  's': ['thodde secondanim', 'thodde second'],
 
49946
  'm': ['eka mintan', 'ek minute'],
49947
  'mm': [number + ' mintanim', number + ' mintam'],
49948
  'h': ['eka horan', 'ek hor'],
49986
  future : '%s',
49987
  past : '%s adim',
49988
  s : processRelativeTime,
 
49989
  m : processRelativeTime,
49990
  mm : processRelativeTime,
49991
  h : processRelativeTime,
50053
 
50054
 
50055
  /***/ },
50056
+ /* 352 */
50057
  /***/ function(module, exports, __webpack_require__) {
50058
 
50059
  //! moment.js locale configuration
50061
  //! author : Kaushik Thanki : https://github.com/Kaushik1987
50062
 
50063
  ;(function (global, factory) {
50064
+ true ? factory(__webpack_require__(302)) :
50065
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50066
  factory(global.moment)
50067
  }(this, (function (moment) { 'use strict';
50119
  future: '%s મા',
50120
  past: '%s પેહલા',
50121
  s: 'અમુક પળો',
 
50122
  m: 'એક મિનિટ',
50123
  mm: '%d મિનિટ',
50124
  h: 'એક કલાક',
50182
 
50183
 
50184
  /***/ },
50185
+ /* 353 */
50186
  /***/ function(module, exports, __webpack_require__) {
50187
 
50188
  //! moment.js locale configuration
50192
  //! author : Tal Ater : https://github.com/TalAter
50193
 
50194
  ;(function (global, factory) {
50195
+ true ? factory(__webpack_require__(302)) :
50196
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50197
  factory(global.moment)
50198
  }(this, (function (moment) { 'use strict';
50228
  future : 'בעוד %s',
50229
  past : 'לפני %s',
50230
  s : 'מספר שניות',
 
50231
  m : 'דקה',
50232
  mm : '%d דקות',
50233
  h : 'שעה',
50286
 
50287
 
50288
  /***/ },
50289
+ /* 354 */
50290
  /***/ function(module, exports, __webpack_require__) {
50291
 
50292
  //! moment.js locale configuration
50294
  //! author : Mayank Singhal : https://github.com/mayanksinghal
50295
 
50296
  ;(function (global, factory) {
50297
+ true ? factory(__webpack_require__(302)) :
50298
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50299
  factory(global.moment)
50300
  }(this, (function (moment) { 'use strict';
50352
  future : '%s में',
50353
  past : '%s पहले',
50354
  s : 'कुछ ही क्षण',
 
50355
  m : 'एक मिनट',
50356
  mm : '%d मिनट',
50357
  h : 'एक घंटा',
50415
 
50416
 
50417
  /***/ },
50418
+ /* 355 */
50419
  /***/ function(module, exports, __webpack_require__) {
50420
 
50421
  //! moment.js locale configuration
50423
  //! author : Bojan Marković : https://github.com/bmarkovic
50424
 
50425
  ;(function (global, factory) {
50426
+ true ? factory(__webpack_require__(302)) :
50427
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50428
  factory(global.moment)
50429
  }(this, (function (moment) { 'use strict';
50432
  function translate(number, withoutSuffix, key) {
50433
  var result = number + ' ';
50434
  switch (key) {
 
 
 
 
 
 
 
 
 
50435
  case 'm':
50436
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
50437
  case 'mm':
50540
  future : 'za %s',
50541
  past : 'prije %s',
50542
  s : 'par sekundi',
 
50543
  m : translate,
50544
  mm : translate,
50545
  h : translate,
50565
 
50566
 
50567
  /***/ },
50568
+ /* 356 */
50569
  /***/ function(module, exports, __webpack_require__) {
50570
 
50571
  //! moment.js locale configuration
50573
  //! author : Adam Brunner : https://github.com/adambrunner
50574
 
50575
  ;(function (global, factory) {
50576
+ true ? factory(__webpack_require__(302)) :
50577
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50578
  factory(global.moment)
50579
  }(this, (function (moment) { 'use strict';
50585
  switch (key) {
50586
  case 's':
50587
  return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
 
 
50588
  case 'm':
50589
  return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
50590
  case 'mm':
50653
  future : '%s múlva',
50654
  past : '%s',
50655
  s : translate,
 
50656
  m : translate,
50657
  mm : translate,
50658
  h : translate,
50678
 
50679
 
50680
  /***/ },
50681
+ /* 357 */
50682
  /***/ function(module, exports, __webpack_require__) {
50683
 
50684
  //! moment.js locale configuration
50686
  //! author : Armendarabyan : https://github.com/armendarabyan
50687
 
50688
  ;(function (global, factory) {
50689
+ true ? factory(__webpack_require__(302)) :
50690
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50691
  factory(global.moment)
50692
  }(this, (function (moment) { 'use strict';
50725
  future : '%s հետո',
50726
  past : '%s առաջ',
50727
  s : 'մի քանի վայրկյան',
 
50728
  m : 'րոպե',
50729
  mm : '%d րոպե',
50730
  h : 'ժամ',
50778
 
50779
 
50780
  /***/ },
50781
+ /* 358 */
50782
  /***/ function(module, exports, __webpack_require__) {
50783
 
50784
  //! moment.js locale configuration
50787
  //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
50788
 
50789
  ;(function (global, factory) {
50790
+ true ? factory(__webpack_require__(302)) :
50791
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50792
  factory(global.moment)
50793
  }(this, (function (moment) { 'use strict';
50843
  future : 'dalam %s',
50844
  past : '%s yang lalu',
50845
  s : 'beberapa detik',
 
50846
  m : 'semenit',
50847
  mm : '%d menit',
50848
  h : 'sejam',
50866
 
50867
 
50868
  /***/ },
50869
+ /* 359 */
50870
  /***/ function(module, exports, __webpack_require__) {
50871
 
50872
  //! moment.js locale configuration
50874
  //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
50875
 
50876
  ;(function (global, factory) {
50877
+ true ? factory(__webpack_require__(302)) :
50878
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
50879
  factory(global.moment)
50880
  }(this, (function (moment) { 'use strict';
50893
  switch (key) {
50894
  case 's':
50895
  return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
 
 
 
 
 
50896
  case 'm':
50897
  return withoutSuffix ? 'mínúta' : 'mínútu';
50898
  case 'mm':
50973
  future : 'eftir %s',
50974
  past : 'fyrir %s síðan',
50975
  s : translate,
 
50976
  m : translate,
50977
  mm : translate,
50978
  h : 'klukkustund',
50998
 
50999
 
51000
  /***/ },
51001
+ /* 360 */
51002
  /***/ function(module, exports, __webpack_require__) {
51003
 
51004
  //! moment.js locale configuration
51007
  //! author: Mattia Larentis: https://github.com/nostalgiaz
51008
 
51009
  ;(function (global, factory) {
51010
+ true ? factory(__webpack_require__(302)) :
51011
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51012
  factory(global.moment)
51013
  }(this, (function (moment) { 'use strict';
51025
  L : 'DD/MM/YYYY',
51026
  LL : 'D MMMM YYYY',
51027
  LLL : 'D MMMM YYYY HH:mm',
51028
+ LLLL : 'dddd, D MMMM YYYY HH:mm'
51029
  },
51030
  calendar : {
51031
  sameDay: '[Oggi alle] LT',
51048
  },
51049
  past : '%s fa',
51050
  s : 'alcuni secondi',
 
51051
  m : 'un minuto',
51052
  mm : '%d minuti',
51053
  h : 'un\'ora',
51073
 
51074
 
51075
  /***/ },
51076
+ /* 361 */
51077
  /***/ function(module, exports, __webpack_require__) {
51078
 
51079
  //! moment.js locale configuration
51081
  //! author : LI Long : https://github.com/baryon
51082
 
51083
  ;(function (global, factory) {
51084
+ true ? factory(__webpack_require__(302)) :
51085
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51086
  factory(global.moment)
51087
  }(this, (function (moment) { 'use strict';
51139
  future : '%s後',
51140
  past : '%s前',
51141
  s : '数秒',
 
51142
  m : '1分',
51143
  mm : '%d分',
51144
  h : '1時間',
51158
 
51159
 
51160
  /***/ },
51161
+ /* 362 */
51162
  /***/ function(module, exports, __webpack_require__) {
51163
 
51164
  //! moment.js locale configuration
51167
  //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
51168
 
51169
  ;(function (global, factory) {
51170
+ true ? factory(__webpack_require__(302)) :
51171
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51172
  factory(global.moment)
51173
  }(this, (function (moment) { 'use strict';
51223
  future : 'wonten ing %s',
51224
  past : '%s ingkang kepengker',
51225
  s : 'sawetawis detik',
 
51226
  m : 'setunggal menit',
51227
  mm : '%d menit',
51228
  h : 'setunggal jam',
51246
 
51247
 
51248
  /***/ },
51249
+ /* 363 */
51250
  /***/ function(module, exports, __webpack_require__) {
51251
 
51252
  //! moment.js locale configuration
51254
  //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili
51255
 
51256
  ;(function (global, factory) {
51257
+ true ? factory(__webpack_require__(302)) :
51258
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51259
  factory(global.moment)
51260
  }(this, (function (moment) { 'use strict';
51304
  }
51305
  },
51306
  s : 'რამდენიმე წამი',
 
51307
  m : 'წუთი',
51308
  mm : '%d წუთი',
51309
  h : 'საათი',
51340
 
51341
 
51342
  /***/ },
51343
+ /* 364 */
51344
  /***/ function(module, exports, __webpack_require__) {
51345
 
51346
  //! moment.js locale configuration
51348
  //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
51349
 
51350
  ;(function (global, factory) {
51351
+ true ? factory(__webpack_require__(302)) :
51352
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51353
  factory(global.moment)
51354
  }(this, (function (moment) { 'use strict';
51403
  future : '%s ішінде',
51404
  past : '%s бұрын',
51405
  s : 'бірнеше секунд',
 
51406
  m : 'бір минут',
51407
  mm : '%d минут',
51408
  h : 'бір сағат',
51432
 
51433
 
51434
  /***/ },
51435
+ /* 365 */
51436
  /***/ function(module, exports, __webpack_require__) {
51437
 
51438
  //! moment.js locale configuration
51440
  //! author : Kruy Vanna : https://github.com/kruyvanna
51441
 
51442
  ;(function (global, factory) {
51443
+ true ? factory(__webpack_require__(302)) :
51444
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51445
  factory(global.moment)
51446
  }(this, (function (moment) { 'use strict';
51472
  future: '%sទៀត',
51473
  past: '%sមុន',
51474
  s: 'ប៉ុន្មានវិនាទី',
 
51475
  m: 'មួយនាទី',
51476
  mm: '%d នាទី',
51477
  h: 'មួយម៉ោង',
51495
 
51496
 
51497
  /***/ },
51498
+ /* 366 */
51499
  /***/ function(module, exports, __webpack_require__) {
51500
 
51501
  //! moment.js locale configuration
51503
  //! author : Rajeev Naik : https://github.com/rajeevnaikte
51504
 
51505
  ;(function (global, factory) {
51506
+ true ? factory(__webpack_require__(302)) :
51507
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51508
  factory(global.moment)
51509
  }(this, (function (moment) { 'use strict';
51561
  future : '%s ನಂತರ',
51562
  past : '%s ಹಿಂದೆ',
51563
  s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
 
51564
  m : 'ಒಂದು ನಿಮಿಷ',
51565
  mm : '%d ನಿಮಿಷ',
51566
  h : 'ಒಂದು ಗಂಟೆ',
51626
 
51627
 
51628
  /***/ },
51629
+ /* 367 */
51630
  /***/ function(module, exports, __webpack_require__) {
51631
 
51632
  //! moment.js locale configuration
51635
  //! author : Jeeeyul Lee <jeeeyul@gmail.com>
51636
 
51637
  ;(function (global, factory) {
51638
+ true ? factory(__webpack_require__(302)) :
51639
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51640
  factory(global.moment)
51641
  }(this, (function (moment) { 'use strict';
51714
 
51715
 
51716
  /***/ },
51717
+ /* 368 */
51718
  /***/ function(module, exports, __webpack_require__) {
51719
 
51720
  //! moment.js locale configuration
51722
  //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
51723
 
51724
  ;(function (global, factory) {
51725
+ true ? factory(__webpack_require__(302)) :
51726
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51727
  factory(global.moment)
51728
  }(this, (function (moment) { 'use strict';
51778
  future : '%s ичинде',
51779
  past : '%s мурун',
51780
  s : 'бирнече секунд',
 
51781
  m : 'бир мүнөт',
51782
  mm : '%d мүнөт',
51783
  h : 'бир саат',
51807
 
51808
 
51809
  /***/ },
51810
+ /* 369 */
51811
  /***/ function(module, exports, __webpack_require__) {
51812
 
51813
  //! moment.js locale configuration
51816
  //! author : David Raison : https://github.com/kwisatz
51817
 
51818
  ;(function (global, factory) {
51819
+ true ? factory(__webpack_require__(302)) :
51820
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51821
  factory(global.moment)
51822
  }(this, (function (moment) { 'use strict';
51924
  future : processFutureTime,
51925
  past : processPastTime,
51926
  s : 'e puer Sekonnen',
 
51927
  m : processRelativeTime,
51928
  mm : '%d Minutten',
51929
  h : processRelativeTime,
51949
 
51950
 
51951
  /***/ },
51952
+ /* 370 */
51953
  /***/ function(module, exports, __webpack_require__) {
51954
 
51955
  //! moment.js locale configuration
51957
  //! author : Ryan Hart : https://github.com/ryanhart2
51958
 
51959
  ;(function (global, factory) {
51960
+ true ? factory(__webpack_require__(302)) :
51961
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
51962
  factory(global.moment)
51963
  }(this, (function (moment) { 'use strict';
52001
  future : 'ອີກ %s',
52002
  past : '%sຜ່ານມາ',
52003
  s : 'ບໍ່ເທົ່າໃດວິນາທີ',
 
52004
  m : '1 ນາທີ',
52005
  mm : '%d ນາທີ',
52006
  h : '1 ຊົ່ວໂມງ',
52024
 
52025
 
52026
  /***/ },
52027
+ /* 371 */
52028
  /***/ function(module, exports, __webpack_require__) {
52029
 
52030
  //! moment.js locale configuration
52032
  //! author : Mindaugas Mozūras : https://github.com/mmozuras
52033
 
52034
  ;(function (global, factory) {
52035
+ true ? factory(__webpack_require__(302)) :
52036
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52037
  factory(global.moment)
52038
  }(this, (function (moment) { 'use strict';
52039
 
52040
 
52041
  var units = {
 
52042
  'm' : 'minutė_minutės_minutę',
52043
  'mm': 'minutės_minučių_minutes',
52044
  'h' : 'valanda_valandos_valandą',
52119
  future : 'po %s',
52120
  past : 'prieš %s',
52121
  s : translateSeconds,
 
52122
  m : translateSingular,
52123
  mm : translate,
52124
  h : translateSingular,
52146
 
52147
 
52148
  /***/ },
52149
+ /* 372 */
52150
  /***/ function(module, exports, __webpack_require__) {
52151
 
52152
  //! moment.js locale configuration
52155
  //! author : Jānis Elmeris : https://github.com/JanisE
52156
 
52157
  ;(function (global, factory) {
52158
+ true ? factory(__webpack_require__(302)) :
52159
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52160
  factory(global.moment)
52161
  }(this, (function (moment) { 'use strict';
52162
 
52163
 
52164
  var units = {
 
52165
  'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
52166
  'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
52167
  'h': 'stundas_stundām_stunda_stundas'.split('_'),
52223
  future : 'pēc %s',
52224
  past : 'pirms %s',
52225
  s : relativeSeconds,
 
52226
  m : relativeTimeWithSingular,
52227
  mm : relativeTimeWithPlural,
52228
  h : relativeTimeWithSingular,
52248
 
52249
 
52250
  /***/ },
52251
+ /* 373 */
52252
  /***/ function(module, exports, __webpack_require__) {
52253
 
52254
  //! moment.js locale configuration
52256
  //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
52257
 
52258
  ;(function (global, factory) {
52259
+ true ? factory(__webpack_require__(302)) :
52260
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52261
  factory(global.moment)
52262
  }(this, (function (moment) { 'use strict';
52264
 
52265
  var translator = {
52266
  words: { //Different grammatical cases
 
52267
  m: ['jedan minut', 'jednog minuta'],
52268
  mm: ['minut', 'minuta', 'minuta'],
52269
  h: ['jedan sat', 'jednog sata'],
52339
  future : 'za %s',
52340
  past : 'prije %s',
52341
  s : 'nekoliko sekundi',
 
52342
  m : translator.translate,
52343
  mm : translator.translate,
52344
  h : translator.translate,
52364
 
52365
 
52366
  /***/ },
52367
+ /* 374 */
52368
  /***/ function(module, exports, __webpack_require__) {
52369
 
52370
  //! moment.js locale configuration
52372
  //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
52373
 
52374
  ;(function (global, factory) {
52375
+ true ? factory(__webpack_require__(302)) :
52376
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52377
  factory(global.moment)
52378
  }(this, (function (moment) { 'use strict';
52408
  future: 'i roto i %s',
52409
  past: '%s i mua',
52410
  s: 'te hēkona ruarua',
 
52411
  m: 'he meneti',
52412
  mm: '%d meneti',
52413
  h: 'te haora',
52433
 
52434
 
52435
  /***/ },
52436
+ /* 375 */
52437
  /***/ function(module, exports, __webpack_require__) {
52438
 
52439
  //! moment.js locale configuration
52441
  //! author : Borislav Mickov : https://github.com/B0k0
52442
 
52443
  ;(function (global, factory) {
52444
+ true ? factory(__webpack_require__(302)) :
52445
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52446
  factory(global.moment)
52447
  }(this, (function (moment) { 'use strict';
52485
  future : 'после %s',
52486
  past : 'пред %s',
52487
  s : 'неколку секунди',
 
52488
  m : 'минута',
52489
  mm : '%d минути',
52490
  h : 'час',
52528
 
52529
 
52530
  /***/ },
52531
+ /* 376 */
52532
  /***/ function(module, exports, __webpack_require__) {
52533
 
52534
  //! moment.js locale configuration
52536
  //! author : Floyd Pink : https://github.com/floydpink
52537
 
52538
  ;(function (global, factory) {
52539
+ true ? factory(__webpack_require__(302)) :
52540
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52541
  factory(global.moment)
52542
  }(this, (function (moment) { 'use strict';
52569
  future : '%s കഴിഞ്ഞ്',
52570
  past : '%s മുൻപ്',
52571
  s : 'അൽപ നിമിഷങ്ങൾ',
 
52572
  m : 'ഒരു മിനിറ്റ്',
52573
  mm : '%d മിനിറ്റ്',
52574
  h : 'ഒരു മണിക്കൂർ',
52614
 
52615
 
52616
  /***/ },
52617
+ /* 377 */
52618
  /***/ function(module, exports, __webpack_require__) {
52619
 
52620
  //! moment.js locale configuration
52623
  //! author : Vivek Athalye : https://github.com/vnathalye
52624
 
52625
  ;(function (global, factory) {
52626
+ true ? factory(__webpack_require__(302)) :
52627
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52628
  factory(global.moment)
52629
  }(this, (function (moment) { 'use strict';
52660
  if (withoutSuffix) {
52661
  switch (string) {
52662
  case 's': output = 'काही सेकंद'; break;
 
52663
  case 'm': output = 'एक मिनिट'; break;
52664
  case 'mm': output = '%d मिनिटे'; break;
52665
  case 'h': output = 'एक तास'; break;
52675
  else {
52676
  switch (string) {
52677
  case 's': output = 'काही सेकंदां'; break;
 
52678
  case 'm': output = 'एका मिनिटा'; break;
52679
  case 'mm': output = '%d मिनिटां'; break;
52680
  case 'h': output = 'एका तासा'; break;
52717
  future: '%sमध्ये',
52718
  past: '%sपूर्वी',
52719
  s: relativeTimeMr,
 
52720
  m: relativeTimeMr,
52721
  mm: relativeTimeMr,
52722
  h: relativeTimeMr,
52778
 
52779
 
52780
  /***/ },
52781
+ /* 378 */
52782
  /***/ function(module, exports, __webpack_require__) {
52783
 
52784
  //! moment.js locale configuration
52786
  //! author : Weldan Jamili : https://github.com/weldan
52787
 
52788
  ;(function (global, factory) {
52789
+ true ? factory(__webpack_require__(302)) :
52790
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52791
  factory(global.moment)
52792
  }(this, (function (moment) { 'use strict';
52842
  future : 'dalam %s',
52843
  past : '%s yang lepas',
52844
  s : 'beberapa saat',
 
52845
  m : 'seminit',
52846
  mm : '%d minit',
52847
  h : 'sejam',
52865
 
52866
 
52867
  /***/ },
52868
+ /* 379 */
52869
  /***/ function(module, exports, __webpack_require__) {
52870
 
52871
  //! moment.js locale configuration
52874
  //! author : Weldan Jamili : https://github.com/weldan
52875
 
52876
  ;(function (global, factory) {
52877
+ true ? factory(__webpack_require__(302)) :
52878
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52879
  factory(global.moment)
52880
  }(this, (function (moment) { 'use strict';
52930
  future : 'dalam %s',
52931
  past : '%s yang lepas',
52932
  s : 'beberapa saat',
 
52933
  m : 'seminit',
52934
  mm : '%d minit',
52935
  h : 'sejam',
52952
  })));
52953
 
52954
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52955
  /***/ },
52956
  /* 380 */
52957
  /***/ function(module, exports, __webpack_require__) {
52963
  //! author : Tin Aung Lin : https://github.com/thanyawzinmin
52964
 
52965
  ;(function (global, factory) {
52966
+ true ? factory(__webpack_require__(302)) :
52967
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
52968
  factory(global.moment)
52969
  }(this, (function (moment) { 'use strict';
53021
  future: 'လာမည့် %s မှာ',
53022
  past: 'လွန်ခဲ့သော %s က',
53023
  s: 'စက္ကန်.အနည်းငယ်',
 
53024
  m: 'တစ်မိနစ်',
53025
  mm: '%d မိနစ်',
53026
  h: 'တစ်နာရီ',
53063
  //! Sigurd Gartmann : https://github.com/sigurdga
53064
 
53065
  ;(function (global, factory) {
53066
+ true ? factory(__webpack_require__(302)) :
53067
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53068
  factory(global.moment)
53069
  }(this, (function (moment) { 'use strict';
53097
  future : 'om %s',
53098
  past : '%s siden',
53099
  s : 'noen sekunder',
 
53100
  m : 'ett minutt',
53101
  mm : '%d minutter',
53102
  h : 'en time',
53130
  //! author : suvash : https://github.com/suvash
53131
 
53132
  ;(function (global, factory) {
53133
+ true ? factory(__webpack_require__(302)) :
53134
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53135
  factory(global.moment)
53136
  }(this, (function (moment) { 'use strict';
53227
  future : '%sमा',
53228
  past : '%s अगाडि',
53229
  s : 'केही क्षण',
 
53230
  m : 'एक मिनेट',
53231
  mm : '%d मिनेट',
53232
  h : 'एक घण्टा',
53259
  //! author : Jacob Middag : https://github.com/middagj
53260
 
53261
  ;(function (global, factory) {
53262
+ true ? factory(__webpack_require__(302)) :
53263
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53264
  factory(global.moment)
53265
  }(this, (function (moment) { 'use strict';
53316
  future : 'over %s',
53317
  past : '%s geleden',
53318
  s : 'een paar seconden',
 
53319
  m : 'één minuut',
53320
  mm : '%d minuten',
53321
  h : 'één uur',
53352
  //! author : Jacob Middag : https://github.com/middagj
53353
 
53354
  ;(function (global, factory) {
53355
+ true ? factory(__webpack_require__(302)) :
53356
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53357
  factory(global.moment)
53358
  }(this, (function (moment) { 'use strict';
53409
  future : 'over %s',
53410
  past : '%s geleden',
53411
  s : 'een paar seconden',
 
53412
  m : 'één minuut',
53413
  mm : '%d minuten',
53414
  h : 'één uur',
53444
  //! author : https://github.com/mechuwind
53445
 
53446
  ;(function (global, factory) {
53447
+ true ? factory(__webpack_require__(302)) :
53448
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53449
  factory(global.moment)
53450
  }(this, (function (moment) { 'use strict';
53476
  future : 'om %s',
53477
  past : '%s sidan',
53478
  s : 'nokre sekund',
 
53479
  m : 'eit minutt',
53480
  mm : '%d minutt',
53481
  h : 'ein time',
53509
  //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
53510
 
53511
  ;(function (global, factory) {
53512
+ true ? factory(__webpack_require__(302)) :
53513
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53514
  factory(global.moment)
53515
  }(this, (function (moment) { 'use strict';
53567
  future : '%s ਵਿੱਚ',
53568
  past : '%s ਪਿਛਲੇ',
53569
  s : 'ਕੁਝ ਸਕਿੰਟ',
 
53570
  m : 'ਇਕ ਮਿੰਟ',
53571
  mm : '%d ਮਿੰਟ',
53572
  h : 'ਇੱਕ ਘੰਟਾ',
53638
  //! author : Rafal Hirsz : https://github.com/evoL
53639
 
53640
  ;(function (global, factory) {
53641
+ true ? factory(__webpack_require__(302)) :
53642
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53643
  factory(global.moment)
53644
  }(this, (function (moment) { 'use strict';
53652
  function translate(number, withoutSuffix, key) {
53653
  var result = number + ' ';
53654
  switch (key) {
 
 
53655
  case 'm':
53656
  return withoutSuffix ? 'minuta' : 'minutę';
53657
  case 'mm':
53734
  future : 'za %s',
53735
  past : '%s temu',
53736
  s : 'kilka sekund',
 
53737
  m : translate,
53738
  mm : translate,
53739
  h : translate,
53767
  //! author : Jefferson : https://github.com/jalex79
53768
 
53769
  ;(function (global, factory) {
53770
+ true ? factory(__webpack_require__(302)) :
53771
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53772
  factory(global.moment)
53773
  }(this, (function (moment) { 'use strict';
53804
  future : 'em %s',
53805
  past : 'há %s',
53806
  s : 'segundos',
 
53807
  m : 'um minuto',
53808
  mm : '%d minutos',
53809
  h : 'uma hora',
53837
  //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
53838
 
53839
  ;(function (global, factory) {
53840
+ true ? factory(__webpack_require__(302)) :
53841
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53842
  factory(global.moment)
53843
  }(this, (function (moment) { 'use strict';
53905
  //! author : Valentin Agachi : https://github.com/avaly
53906
 
53907
  ;(function (global, factory) {
53908
+ true ? factory(__webpack_require__(302)) :
53909
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53910
  factory(global.moment)
53911
  }(this, (function (moment) { 'use strict';
53913
 
53914
  function relativeTimeWithPlural(number, withoutSuffix, key) {
53915
  var format = {
 
53916
  'mm': 'minute',
53917
  'hh': 'ore',
53918
  'dd': 'zile',
53953
  future : 'peste %s',
53954
  past : '%s în urmă',
53955
  s : 'câteva secunde',
 
53956
  m : 'un minut',
53957
  mm : relativeTimeWithPlural,
53958
  h : 'o oră',
53986
  //! author : Коренберг Марк : https://github.com/socketpair
53987
 
53988
  ;(function (global, factory) {
53989
+ true ? factory(__webpack_require__(302)) :
53990
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
53991
  factory(global.moment)
53992
  }(this, (function (moment) { 'use strict';
53998
  }
53999
  function relativeTimeWithPlural(number, withoutSuffix, key) {
54000
  var format = {
 
54001
  'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
54002
  'hh': 'час_часа_часов',
54003
  'dd': 'день_дня_дней',
54049
  // Выражение, которое соотвествует только сокращённым формам
54050
  monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
54051
  longDateFormat : {
54052
+ LT : 'HH:mm',
54053
+ LTS : 'HH:mm:ss',
54054
  L : 'DD.MM.YYYY',
54055
  LL : 'D MMMM YYYY г.',
54056
+ LLL : 'D MMMM YYYY г., HH:mm',
54057
+ LLLL : 'dddd, D MMMM YYYY г., HH:mm'
54058
  },
54059
  calendar : {
54060
  sameDay: '[Сегодня в] LT',
54110
  future : 'через %s',
54111
  past : '%s назад',
54112
  s : 'несколько секунд',
 
54113
  m : relativeTimeWithPlural,
54114
  mm : relativeTimeWithPlural,
54115
  h : 'час',
54172
  //! author : Narain Sagar : https://github.com/narainsagar
54173
 
54174
  ;(function (global, factory) {
54175
+ true ? factory(__webpack_require__(302)) :
54176
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54177
  factory(global.moment)
54178
  }(this, (function (moment) { 'use strict';
54238
  future : '%s پوء',
54239
  past : '%s اڳ',
54240
  s : 'چند سيڪنڊ',
 
54241
  m : 'هڪ منٽ',
54242
  mm : '%d منٽ',
54243
  h : 'هڪ ڪلاڪ',
54275
  //! authors : Bård Rolstad Henriksen : https://github.com/karamell
54276
 
54277
  ;(function (global, factory) {
54278
+ true ? factory(__webpack_require__(302)) :
54279
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54280
  factory(global.moment)
54281
  }(this, (function (moment) { 'use strict';
54308
  future : '%s geažes',
54309
  past : 'maŋit %s',
54310
  s : 'moadde sekunddat',
 
54311
  m : 'okta minuhta',
54312
  mm : '%d minuhtat',
54313
  h : 'okta diimmu',
54341
  //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
54342
 
54343
  ;(function (global, factory) {
54344
+ true ? factory(__webpack_require__(302)) :
54345
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54346
  factory(global.moment)
54347
  }(this, (function (moment) { 'use strict';
54375
  future : '%sකින්',
54376
  past : '%sකට පෙර',
54377
  s : 'තත්පර කිහිපය',
 
54378
  m : 'මිනිත්තුව',
54379
  mm : 'මිනිත්තු %d',
54380
  h : 'පැය',
54418
  //! based on work of petrbela : https://github.com/petrbela
54419
 
54420
  ;(function (global, factory) {
54421
+ true ? factory(__webpack_require__(302)) :
54422
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54423
  factory(global.moment)
54424
  }(this, (function (moment) { 'use strict';
54434
  switch (key) {
54435
  case 's': // a few seconds / in a few seconds / a few seconds ago
54436
  return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
 
 
 
 
 
 
 
54437
  case 'm': // a minute / in a minute / a minute ago
54438
  return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
54439
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
54539
  future : 'za %s',
54540
  past : 'pred %s',
54541
  s : translate,
 
54542
  m : translate,
54543
  mm : translate,
54544
  h : translate,
54572
  //! author : Robert Sedovšek : https://github.com/sedovsek
54573
 
54574
  ;(function (global, factory) {
54575
+ true ? factory(__webpack_require__(302)) :
54576
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54577
  factory(global.moment)
54578
  }(this, (function (moment) { 'use strict';
54583
  switch (key) {
54584
  case 's':
54585
  return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';
 
 
 
 
 
 
 
 
 
 
 
54586
  case 'm':
54587
  return withoutSuffix ? 'ena minuta' : 'eno minuto';
54588
  case 'mm':
54706
  future : 'čez %s',
54707
  past : 'pred %s',
54708
  s : processRelativeTime,
 
54709
  m : processRelativeTime,
54710
  mm : processRelativeTime,
54711
  h : processRelativeTime,
54741
  //! author : Oerd Cukalla : https://github.com/oerd
54742
 
54743
  ;(function (global, factory) {
54744
+ true ? factory(__webpack_require__(302)) :
54745
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54746
  factory(global.moment)
54747
  }(this, (function (moment) { 'use strict';
54781
  future : 'në %s',
54782
  past : '%s më parë',
54783
  s : 'disa sekonda',
 
54784
  m : 'një minutë',
54785
  mm : '%d minuta',
54786
  h : 'një orë',
54814
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
54815
 
54816
  ;(function (global, factory) {
54817
+ true ? factory(__webpack_require__(302)) :
54818
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54819
  factory(global.moment)
54820
  }(this, (function (moment) { 'use strict';
54822
 
54823
  var translator = {
54824
  words: { //Different grammatical cases
 
54825
  m: ['jedan minut', 'jedne minute'],
54826
  mm: ['minut', 'minute', 'minuta'],
54827
  h: ['jedan sat', 'jednog sata'],
54896
  future : 'za %s',
54897
  past : 'pre %s',
54898
  s : 'nekoliko sekundi',
 
54899
  m : translator.translate,
54900
  mm : translator.translate,
54901
  h : translator.translate,
54929
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
54930
 
54931
  ;(function (global, factory) {
54932
+ true ? factory(__webpack_require__(302)) :
54933
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
54934
  factory(global.moment)
54935
  }(this, (function (moment) { 'use strict';
54937
 
54938
  var translator = {
54939
  words: { //Different grammatical cases
 
54940
  m: ['један минут', 'једне минуте'],
54941
  mm: ['минут', 'минуте', 'минута'],
54942
  h: ['један сат', 'једног сата'],
55011
  future : 'за %s',
55012
  past : 'пре %s',
55013
  s : 'неколико секунди',
 
55014
  m : translator.translate,
55015
  mm : translator.translate,
55016
  h : translator.translate,
55044
  //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
55045
 
55046
  ;(function (global, factory) {
55047
+ true ? factory(__webpack_require__(302)) :
55048
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55049
  factory(global.moment)
55050
  }(this, (function (moment) { 'use strict';
55078
  future : 'nga %s',
55079
  past : 'wenteka nga %s',
55080
  s : 'emizuzwana lomcane',
 
55081
  m : 'umzuzu',
55082
  mm : '%d emizuzu',
55083
  h : 'lihora',
55138
  //! author : Jens Alm : https://github.com/ulmus
55139
 
55140
  ;(function (global, factory) {
55141
+ true ? factory(__webpack_require__(302)) :
55142
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55143
  factory(global.moment)
55144
  }(this, (function (moment) { 'use strict';
55172
  future : 'om %s',
55173
  past : 'för %s sedan',
55174
  s : 'några sekunder',
 
55175
  m : 'en minut',
55176
  mm : '%d minuter',
55177
  h : 'en timme',
55212
  //! author : Fahad Kassim : https://github.com/fadsel
55213
 
55214
  ;(function (global, factory) {
55215
+ true ? factory(__webpack_require__(302)) :
55216
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55217
  factory(global.moment)
55218
  }(this, (function (moment) { 'use strict';
55245
  future : '%s baadaye',
55246
  past : 'tokea %s',
55247
  s : 'hivi punde',
 
55248
  m : 'dakika moja',
55249
  mm : 'dakika %d',
55250
  h : 'saa limoja',
55276
  //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
55277
 
55278
  ;(function (global, factory) {
55279
+ true ? factory(__webpack_require__(302)) :
55280
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55281
  factory(global.moment)
55282
  }(this, (function (moment) { 'use strict';
55333
  future : '%s இல்',
55334
  past : '%s முன்',
55335
  s : 'ஒரு சில விநாடிகள்',
 
55336
  m : 'ஒரு நிமிடம்',
55337
  mm : '%d நிமிடங்கள்',
55338
  h : 'ஒரு மணி நேரம்',
55411
  //! author : Krishna Chaitanya Thota : https://github.com/kcthota
55412
 
55413
  ;(function (global, factory) {
55414
+ true ? factory(__webpack_require__(302)) :
55415
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55416
  factory(global.moment)
55417
  }(this, (function (moment) { 'use strict';
55444
  future : '%s లో',
55445
  past : '%s క్రితం',
55446
  s : 'కొన్ని క్షణాలు',
 
55447
  m : 'ఒక నిమిషం',
55448
  mm : '%d నిమిషాలు',
55449
  h : 'ఒక గంట',
55506
  //! author : Onorio De J. Afonso : https://github.com/marobo
55507
 
55508
  ;(function (global, factory) {
55509
+ true ? factory(__webpack_require__(302)) :
55510
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55511
  factory(global.moment)
55512
  }(this, (function (moment) { 'use strict';
55538
  future : 'iha %s',
55539
  past : '%s liuba',
55540
  s : 'minutu balun',
 
55541
  m : 'minutu ida',
55542
  mm : 'minutus %d',
55543
  h : 'horas ida',
55578
  //! author : Kridsada Thanabulpong : https://github.com/sirn
55579
 
55580
  ;(function (global, factory) {
55581
+ true ? factory(__webpack_require__(302)) :
55582
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55583
  factory(global.moment)
55584
  }(this, (function (moment) { 'use strict';
55623
  future : 'อีก %s',
55624
  past : '%sที่แล้ว',
55625
  s : 'ไม่กี่วินาที',
 
55626
  m : '1 นาที',
55627
  mm : '%d นาที',
55628
  h : '1 ชั่วโมง',
55650
  //! author : Dan Hagman : https://github.com/hagmandan
55651
 
55652
  ;(function (global, factory) {
55653
+ true ? factory(__webpack_require__(302)) :
55654
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55655
  factory(global.moment)
55656
  }(this, (function (moment) { 'use strict';
55682
  future : 'sa loob ng %s',
55683
  past : '%s ang nakalipas',
55684
  s : 'ilang segundo',
 
55685
  m : 'isang minuto',
55686
  mm : '%d minuto',
55687
  h : 'isang oras',
55717
  //! author : Dominika Kruk : https://github.com/amaranthrose
55718
 
55719
  ;(function (global, factory) {
55720
+ true ? factory(__webpack_require__(302)) :
55721
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55722
  factory(global.moment)
55723
  }(this, (function (moment) { 'use strict';
55752
  function translate(number, withoutSuffix, string, isFuture) {
55753
  var numberNoun = numberAsNoun(number);
55754
  switch (string) {
 
 
55755
  case 'mm':
55756
  return numberNoun + ' tup';
55757
  case 'hh':
55809
  future : translateFuture,
55810
  past : translatePast,
55811
  s : 'puS lup',
 
55812
  m : 'wa’ tup',
55813
  mm : translate,
55814
  h : 'wa’ rep',
55843
  //! Burak Yiğit Kaya: https://github.com/BYK
55844
 
55845
  ;(function (global, factory) {
55846
+ true ? factory(__webpack_require__(302)) :
55847
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55848
  factory(global.moment)
55849
  }(this, (function (moment) { 'use strict';
55896
  future : '%s sonra',
55897
  past : '%s önce',
55898
  s : 'birkaç saniye',
 
55899
  m : 'bir dakika',
55900
  mm : '%d dakika',
55901
  h : 'bir saat',
55938
  //! author : Iustì Canun
55939
 
55940
  ;(function (global, factory) {
55941
+ true ? factory(__webpack_require__(302)) :
55942
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
55943
  factory(global.moment)
55944
  }(this, (function (moment) { 'use strict';
55983
  future : 'osprei %s',
55984
  past : 'ja%s',
55985
  s : processRelativeTime,
 
55986
  m : processRelativeTime,
55987
  mm : processRelativeTime,
55988
  h : processRelativeTime,
56005
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
56006
  var format = {
56007
  's': ['viensas secunds', '\'iensas secunds'],
 
56008
  'm': ['\'n míut', '\'iens míut'],
56009
  'mm': [number + ' míuts', '' + number + ' míuts'],
56010
  'h': ['\'n þora', '\'iensa þora'],
56033
  //! author : Abdel Said : https://github.com/abdelsaid
56034
 
56035
  ;(function (global, factory) {
56036
+ true ? factory(__webpack_require__(302)) :
56037
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56038
  factory(global.moment)
56039
  }(this, (function (moment) { 'use strict';
56065
  future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
56066
  past : 'ⵢⴰⵏ %s',
56067
  s : 'ⵉⵎⵉⴽ',
 
56068
  m : 'ⵎⵉⵏⵓⴺ',
56069
  mm : '%d ⵎⵉⵏⵓⴺ',
56070
  h : 'ⵙⴰⵄⴰ',
56096
  //! author : Abdel Said : https://github.com/abdelsaid
56097
 
56098
  ;(function (global, factory) {
56099
+ true ? factory(__webpack_require__(302)) :
56100
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56101
  factory(global.moment)
56102
  }(this, (function (moment) { 'use strict';
56128
  future : 'dadkh s yan %s',
56129
  past : 'yan %s',
56130
  s : 'imik',
 
56131
  m : 'minuḍ',
56132
  mm : '%d minuḍ',
56133
  h : 'saɛa',
56160
  //! Author : Menelion Elensúle : https://github.com/Oire
56161
 
56162
  ;(function (global, factory) {
56163
+ true ? factory(__webpack_require__(302)) :
56164
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56165
  factory(global.moment)
56166
  }(this, (function (moment) { 'use strict';
56172
  }
56173
  function relativeTimeWithPlural(number, withoutSuffix, key) {
56174
  var format = {
 
56175
  'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
56176
  'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
56177
  'dd': 'день_дні_днів',
56253
  future : 'за %s',
56254
  past : '%s тому',
56255
  s : 'декілька секунд',
 
56256
  m : relativeTimeWithPlural,
56257
  mm : relativeTimeWithPlural,
56258
  h : 'годину',
56316
  //! author : Zack : https://github.com/ZackVision
56317
 
56318
  ;(function (global, factory) {
56319
+ true ? factory(__webpack_require__(302)) :
56320
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56321
  factory(global.moment)
56322
  }(this, (function (moment) { 'use strict';
56382
  future : '%s بعد',
56383
  past : '%s قبل',
56384
  s : 'چند سیکنڈ',
 
56385
  m : 'ایک منٹ',
56386
  mm : '%d منٹ',
56387
  h : 'ایک گھنٹہ',
56419
  //! author : Sardor Muminov : https://github.com/muminoff
56420
 
56421
  ;(function (global, factory) {
56422
+ true ? factory(__webpack_require__(302)) :
56423
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56424
  factory(global.moment)
56425
  }(this, (function (moment) { 'use strict';
56451
  future : 'Якин %s ичида',
56452
  past : 'Бир неча %s олдин',
56453
  s : 'фурсат',
 
56454
  m : 'бир дакика',
56455
  mm : '%d дакика',
56456
  h : 'бир соат',
56482
  //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
56483
 
56484
  ;(function (global, factory) {
56485
+ true ? factory(__webpack_require__(302)) :
56486
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56487
  factory(global.moment)
56488
  }(this, (function (moment) { 'use strict';
56514
  future : 'Yaqin %s ichida',
56515
  past : 'Bir necha %s oldin',
56516
  s : 'soniya',
 
56517
  m : 'bir daqiqa',
56518
  mm : '%d daqiqa',
56519
  h : 'bir soat',
56545
  //! author : Bang Nguyen : https://github.com/bangnk
56546
 
56547
  ;(function (global, factory) {
56548
+ true ? factory(__webpack_require__(302)) :
56549
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56550
  factory(global.moment)
56551
  }(this, (function (moment) { 'use strict';
56594
  future : '%s tới',
56595
  past : '%s trước',
56596
  s : 'vài giây',
 
56597
  m : 'một phút',
56598
  mm : '%d phút',
56599
  h : 'một giờ',
56629
  //! author : Andrew Hood : https://github.com/andrewhood125
56630
 
56631
  ;(function (global, factory) {
56632
+ true ? factory(__webpack_require__(302)) :
56633
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56634
  factory(global.moment)
56635
  }(this, (function (moment) { 'use strict';
56662
  future : 'í~ñ %s',
56663
  past : '%s á~gó',
56664
  s : 'á ~féw ~sécó~ñds',
 
56665
  m : 'á ~míñ~úté',
56666
  mm : '%d m~íñú~tés',
56667
  h : 'á~ñ hó~úr',
56702
  //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
56703
 
56704
  ;(function (global, factory) {
56705
+ true ? factory(__webpack_require__(302)) :
56706
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56707
  factory(global.moment)
56708
  }(this, (function (moment) { 'use strict';
56734
  future : 'ní %s',
56735
  past : '%s kọjá',
56736
  s : 'ìsẹjú aayá die',
 
56737
  m : 'ìsẹjú kan',
56738
  mm : 'ìsẹjú %d',
56739
  h : 'wákati kan',
56768
  //! author : Zeno Zeng : https://github.com/zenozeng
56769
 
56770
  ;(function (global, factory) {
56771
+ true ? factory(__webpack_require__(302)) :
56772
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56773
  factory(global.moment)
56774
  }(this, (function (moment) { 'use strict';
56783
  longDateFormat : {
56784
  LT : 'HH:mm',
56785
  LTS : 'HH:mm:ss',
56786
+ L : 'YYYY年MMMD日',
56787
+ LL : 'YYYY年MMMD日',
56788
+ LLL : 'YYYY年MMMD日Ah点mm分',
56789
+ LLLL : 'YYYY年MMMD日ddddAh点mm分',
56790
+ l : 'YYYY年MMMD日',
56791
+ ll : 'YYYY年MMMD日',
56792
+ lll : 'YYYY年MMMD日 HH:mm',
56793
+ llll : 'YYYY年MMMD日dddd HH:mm'
56794
  },
56795
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
56796
  meridiemHour: function (hour, meridiem) {
56851
  future : '%s内',
56852
  past : '%s前',
56853
  s : '几秒',
 
56854
  m : '1 分钟',
56855
  mm : '%d 分钟',
56856
  h : '1 小时',
56885
  //! author : Konstantin : https://github.com/skfd
56886
 
56887
  ;(function (global, factory) {
56888
+ true ? factory(__webpack_require__(302)) :
56889
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56890
  factory(global.moment)
56891
  }(this, (function (moment) { 'use strict';
56900
  longDateFormat : {
56901
  LT : 'HH:mm',
56902
  LTS : 'HH:mm:ss',
56903
+ L : 'YYYY年MMMD日',
56904
+ LL : 'YYYY年MMMD日',
56905
+ LLL : 'YYYY年MMMD日 HH:mm',
56906
+ LLLL : 'YYYY年MMMD日dddd HH:mm',
56907
+ l : 'YYYY年MMMD日',
56908
+ ll : 'YYYY年MMMD日',
56909
+ lll : 'YYYY年MMMD日 HH:mm',
56910
+ llll : 'YYYY年MMMD日dddd HH:mm'
56911
  },
56912
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
56913
  meridiemHour : function (hour, meridiem) {
56966
  future : '%s內',
56967
  past : '%s前',
56968
  s : '幾秒',
 
56969
  m : '1 分鐘',
56970
  mm : '%d 分鐘',
56971
  h : '1 小時',
56994
  //! author : Chris Lam : https://github.com/hehachris
56995
 
56996
  ;(function (global, factory) {
56997
+ true ? factory(__webpack_require__(302)) :
56998
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
56999
  factory(global.moment)
57000
  }(this, (function (moment) { 'use strict';
57009
  longDateFormat : {
57010
  LT : 'HH:mm',
57011
  LTS : 'HH:mm:ss',
57012
+ L : 'YYYY年MMMD日',
57013
+ LL : 'YYYY年MMMD日',
57014
+ LLL : 'YYYY年MMMD日 HH:mm',
57015
+ LLLL : 'YYYY年MMMD日dddd HH:mm',
57016
+ l : 'YYYY年MMMD日',
57017
+ ll : 'YYYY年MMMD日',
57018
+ lll : 'YYYY年MMMD日 HH:mm',
57019
+ llll : 'YYYY年MMMD日dddd HH:mm'
57020
  },
57021
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
57022
  meridiemHour : function (hour, meridiem) {
57075
  future : '%s內',
57076
  past : '%s前',
57077
  s : '幾秒',
 
57078
  m : '1 分鐘',
57079
  mm : '%d 分鐘',
57080
  h : '1 小時',
57292
 
57293
  module.exports = isRegExp;
57294
 
57295
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(303)(module)))
57296
 
57297
  /***/ },
57298
  /* 426 */
59595
 
59596
  var _mailpoet2 = _interopRequireDefault(_mailpoet);
59597
 
59598
+ var _formFieldsSelectJsx = __webpack_require__(298);
59599
 
59600
  var _formFieldsSelectJsx2 = _interopRequireDefault(_formFieldsSelectJsx);
59601
 
59602
+ var _formFieldsTextJsx = __webpack_require__(296);
59603
 
59604
  var _formFieldsTextJsx2 = _interopRequireDefault(_formFieldsTextJsx);
59605
 
assets/js/{form_editor.901a1d16.js → form_editor.13982476.js} RENAMED
@@ -7719,11 +7719,11 @@ webpackJsonp([2],{
7719
  }
7720
 
7721
  var keyNames = {
7722
- 3: "Pause", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
7723
  19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
7724
  36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
7725
  46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod",
7726
- 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete", 145: "ScrollLock",
7727
  173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
7728
  221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete",
7729
  63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"
@@ -7870,9 +7870,6 @@ webpackJsonp([2],{
7870
  if (presto && event.keyCode == 34 && event["char"]) { return false }
7871
  var name = keyNames[event.keyCode];
7872
  if (name == null || event.altGraphKey) { return false }
7873
- // Ctrl-ScrollLock has keyCode 3, same as Ctrl-Pause,
7874
- // so we'll use event.code when available (Chrome 48+, FF 38+, Safari 10.1+)
7875
- if (event.keyCode == 3 && event.code) { name = event.code; }
7876
  return addModifierNames(name, event, noShift)
7877
  }
7878
 
@@ -8755,7 +8752,6 @@ webpackJsonp([2],{
8755
  clearCaches(cm);
8756
  regChange(cm);
8757
  }, true);
8758
-
8759
  option("lineSeparator", null, function (cm, val) {
8760
  cm.doc.lineSep = val;
8761
  if (!val) { return }
@@ -9162,7 +9158,7 @@ webpackJsonp([2],{
9162
 
9163
  var paste = cm.state.pasteIncoming || origin == "paste";
9164
  var textLines = splitLinesAuto(inserted), multiPaste = null;
9165
- // When pasting N lines into N selections, insert one line per selection
9166
  if (paste && sel.ranges.length > 1) {
9167
  if (lastCopied && lastCopied.text.join("\n") == inserted) {
9168
  if (sel.ranges.length % lastCopied.text.length == 0) {
@@ -10796,7 +10792,7 @@ webpackJsonp([2],{
10796
 
10797
  addLegacyProps(CodeMirror$1);
10798
 
10799
- CodeMirror$1.version = "5.34.0";
10800
 
10801
  return CodeMirror$1;
10802
 
@@ -10887,9 +10883,9 @@ webpackJsonp([2],{
10887
  return ret("qualifier", "qualifier");
10888
  } else if (/[:;{}\[\]\(\)]/.test(ch)) {
10889
  return ret(null, ch);
10890
- } else if (((ch == "u" || ch == "U") && stream.match(/rl(-prefix)?\(/i)) ||
10891
- ((ch == "d" || ch == "D") && stream.match("omain(", true, true)) ||
10892
- ((ch == "r" || ch == "R") && stream.match("egexp(", true, true))) {
10893
  stream.backUp(1);
10894
  state.tokenize = tokenParenthesized;
10895
  return ret("property", "word");
@@ -10972,16 +10968,16 @@ webpackJsonp([2],{
10972
  return pushContext(state, stream, "block");
10973
  } else if (type == "}" && state.context.prev) {
10974
  return popContext(state);
10975
- } else if (supportsAtComponent && /@component/i.test(type)) {
10976
  return pushContext(state, stream, "atComponentBlock");
10977
- } else if (/^@(-moz-)?document$/i.test(type)) {
10978
  return pushContext(state, stream, "documentTypes");
10979
- } else if (/^@(media|supports|(-moz-)?document|import)$/i.test(type)) {
10980
  return pushContext(state, stream, "atBlock");
10981
- } else if (/^@(font-face|counter-style)/i.test(type)) {
10982
  state.stateArg = type;
10983
  return "restricted_atBlock_before";
10984
- } else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/i.test(type)) {
10985
  return "keyframes";
10986
  } else if (type && type.charAt(0) == "@") {
10987
  return pushContext(state, stream, "at");
@@ -11603,7 +11599,7 @@ webpackJsonp([2],{
11603
  },
11604
  "@": function(stream) {
11605
  if (stream.eat("{")) return [null, "interpolation"];
11606
- if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/i, false)) return false;
11607
  stream.eatWhile(/[\w\\\-]/);
11608
  if (stream.match(/^\s*:/, false))
11609
  return ["variable-2", "variable-definition"];
7719
  }
7720
 
7721
  var keyNames = {
7722
+ 3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
7723
  19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
7724
  36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
7725
  46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod",
7726
+ 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 127: "Delete",
7727
  173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
7728
  221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete",
7729
  63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"
7870
  if (presto && event.keyCode == 34 && event["char"]) { return false }
7871
  var name = keyNames[event.keyCode];
7872
  if (name == null || event.altGraphKey) { return false }
 
 
 
7873
  return addModifierNames(name, event, noShift)
7874
  }
7875
 
8752
  clearCaches(cm);
8753
  regChange(cm);
8754
  }, true);
 
8755
  option("lineSeparator", null, function (cm, val) {
8756
  cm.doc.lineSep = val;
8757
  if (!val) { return }
9158
 
9159
  var paste = cm.state.pasteIncoming || origin == "paste";
9160
  var textLines = splitLinesAuto(inserted), multiPaste = null;
9161
+ // When pasing N lines into N selections, insert one line per selection
9162
  if (paste && sel.ranges.length > 1) {
9163
  if (lastCopied && lastCopied.text.join("\n") == inserted) {
9164
  if (sel.ranges.length % lastCopied.text.length == 0) {
10792
 
10793
  addLegacyProps(CodeMirror$1);
10794
 
10795
+ CodeMirror$1.version = "5.32.0";
10796
 
10797
  return CodeMirror$1;
10798
 
10883
  return ret("qualifier", "qualifier");
10884
  } else if (/[:;{}\[\]\(\)]/.test(ch)) {
10885
  return ret(null, ch);
10886
+ } else if ((ch == "u" && stream.match(/rl(-prefix)?\(/)) ||
10887
+ (ch == "d" && stream.match("omain(")) ||
10888
+ (ch == "r" && stream.match("egexp("))) {
10889
  stream.backUp(1);
10890
  state.tokenize = tokenParenthesized;
10891
  return ret("property", "word");
10968
  return pushContext(state, stream, "block");
10969
  } else if (type == "}" && state.context.prev) {
10970
  return popContext(state);
10971
+ } else if (supportsAtComponent && /@component/.test(type)) {
10972
  return pushContext(state, stream, "atComponentBlock");
10973
+ } else if (/^@(-moz-)?document$/.test(type)) {
10974
  return pushContext(state, stream, "documentTypes");
10975
+ } else if (/^@(media|supports|(-moz-)?document|import)$/.test(type)) {
10976
  return pushContext(state, stream, "atBlock");
10977
+ } else if (/^@(font-face|counter-style)/.test(type)) {
10978
  state.stateArg = type;
10979
  return "restricted_atBlock_before";
10980
+ } else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) {
10981
  return "keyframes";
10982
  } else if (type && type.charAt(0) == "@") {
10983
  return pushContext(state, stream, "at");
11599
  },
11600
  "@": function(stream) {
11601
  if (stream.eat("{")) return [null, "interpolation"];
11602
+ if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/, false)) return false;
11603
  stream.eatWhile(/[\w\\\-]/);
11604
  if (stream.match(/^\s*:/, false))
11605
  return ["variable-2", "variable-definition"];
assets/js/{mailpoet.5afefe4c.js → mailpoet.a55b11ee.js} RENAMED
@@ -23901,11 +23901,12 @@ webpackJsonp([3],[
23901
  /* 298 */,
23902
  /* 299 */,
23903
  /* 300 */,
23904
- /* 301 */
 
23905
  /***/ function(module, exports, __webpack_require__) {
23906
 
23907
  var require;/* WEBPACK VAR INJECTION */(function(module) {//! moment.js
23908
- //! version : 2.20.1
23909
  //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
23910
  //! license : MIT
23911
  //! momentjs.com
@@ -24565,7 +24566,7 @@ webpackJsonp([3],[
24565
 
24566
  // any word (or two) characters or numbers including two/three word month in arabic.
24567
  // includes scottish gaelic two word and hyphenated months
24568
- var matchWord = /[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;
24569
 
24570
 
24571
  var regexes = {};
@@ -25748,7 +25749,7 @@ webpackJsonp([3],[
25748
  try {
25749
  oldLocale = globalLocale._abbr;
25750
  var aliasedRequire = require;
25751
- __webpack_require__(303)("./" + name);
25752
  getSetGlobalLocale(oldLocale);
25753
  } catch (e) {}
25754
  }
@@ -25935,7 +25936,7 @@ webpackJsonp([3],[
25935
  // note: all values past the year are optional and will default to the lowest possible value.
25936
  // [year, month, day , hour, minute, second, millisecond]
25937
  function configFromArray (config) {
25938
- var i, date, input = [], currentDate, expectedWeekday, yearToUse;
25939
 
25940
  if (config._d) {
25941
  return;
@@ -25985,8 +25986,6 @@ webpackJsonp([3],[
25985
  }
25986
 
25987
  config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
25988
- expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();
25989
-
25990
  // Apply timezone offset from input. The actual utcOffset can be changed
25991
  // with parseZone.
25992
  if (config._tzm != null) {
@@ -25998,7 +25997,7 @@ webpackJsonp([3],[
25998
  }
25999
 
26000
  // check for mismatching day of week
26001
- if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {
26002
  getParsingFlags(config).weekdayMismatch = true;
26003
  }
26004
  }
@@ -27206,24 +27205,19 @@ webpackJsonp([3],[
27206
  return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
27207
  }
27208
 
27209
- function toISOString(keepOffset) {
27210
  if (!this.isValid()) {
27211
  return null;
27212
  }
27213
- var utc = keepOffset !== true;
27214
- var m = utc ? this.clone().utc() : this;
27215
  if (m.year() < 0 || m.year() > 9999) {
27216
- return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');
27217
  }
27218
  if (isFunction(Date.prototype.toISOString)) {
27219
  // native implementation is ~50x faster, use it when we can
27220
- if (utc) {
27221
- return this.toDate().toISOString();
27222
- } else {
27223
- return new Date(this._d.valueOf()).toISOString().replace('Z', formatMoment(m, 'Z'));
27224
- }
27225
  }
27226
- return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');
27227
  }
27228
 
27229
  /**
@@ -27579,7 +27573,7 @@ webpackJsonp([3],[
27579
 
27580
  addParseToken(['D', 'DD'], DATE);
27581
  addParseToken('Do', function (input, array) {
27582
- array[DATE] = toInt(input.match(match1to2)[0]);
27583
  });
27584
 
27585
  // MOMENTS
@@ -28391,7 +28385,7 @@ webpackJsonp([3],[
28391
  // Side effect imports
28392
 
28393
 
28394
- hooks.version = '2.20.1';
28395
 
28396
  setHookCallback(createLocal);
28397
 
@@ -28423,27 +28417,14 @@ webpackJsonp([3],[
28423
  hooks.calendarFormat = getCalendarFormat;
28424
  hooks.prototype = proto;
28425
 
28426
- // currently HTML5 input type only supports 24-hour formats
28427
- hooks.HTML5_FMT = {
28428
- DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // <input type="datetime-local" />
28429
- DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // <input type="datetime-local" step="1" />
28430
- DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // <input type="datetime-local" step="0.001" />
28431
- DATE: 'YYYY-MM-DD', // <input type="date" />
28432
- TIME: 'HH:mm', // <input type="time" />
28433
- TIME_SECONDS: 'HH:mm:ss', // <input type="time" step="1" />
28434
- TIME_MS: 'HH:mm:ss.SSS', // <input type="time" step="0.001" />
28435
- WEEK: 'YYYY-[W]WW', // <input type="week" />
28436
- MONTH: 'YYYY-MM' // <input type="month" />
28437
- };
28438
-
28439
  return hooks;
28440
 
28441
  })));
28442
 
28443
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(302)(module)))
28444
 
28445
  /***/ },
28446
- /* 302 */
28447
  /***/ function(module, exports) {
28448
 
28449
  module.exports = function(module) {
@@ -28459,162 +28440,160 @@ webpackJsonp([3],[
28459
 
28460
 
28461
  /***/ },
28462
- /* 303 */
28463
  /***/ function(module, exports, __webpack_require__) {
28464
 
28465
  var map = {
28466
- "./af": 304,
28467
- "./af.js": 304,
28468
- "./ar": 305,
28469
- "./ar-dz": 306,
28470
- "./ar-dz.js": 306,
28471
- "./ar-kw": 307,
28472
- "./ar-kw.js": 307,
28473
- "./ar-ly": 308,
28474
- "./ar-ly.js": 308,
28475
- "./ar-ma": 309,
28476
- "./ar-ma.js": 309,
28477
- "./ar-sa": 310,
28478
- "./ar-sa.js": 310,
28479
- "./ar-tn": 311,
28480
- "./ar-tn.js": 311,
28481
- "./ar.js": 305,
28482
- "./az": 312,
28483
- "./az.js": 312,
28484
- "./be": 313,
28485
- "./be.js": 313,
28486
- "./bg": 314,
28487
- "./bg.js": 314,
28488
- "./bm": 315,
28489
- "./bm.js": 315,
28490
- "./bn": 316,
28491
- "./bn.js": 316,
28492
- "./bo": 317,
28493
- "./bo.js": 317,
28494
- "./br": 318,
28495
- "./br.js": 318,
28496
- "./bs": 319,
28497
- "./bs.js": 319,
28498
- "./ca": 320,
28499
- "./ca.js": 320,
28500
- "./cs": 321,
28501
- "./cs.js": 321,
28502
- "./cv": 322,
28503
- "./cv.js": 322,
28504
- "./cy": 323,
28505
- "./cy.js": 323,
28506
- "./da": 324,
28507
- "./da.js": 324,
28508
- "./de": 325,
28509
- "./de-at": 326,
28510
- "./de-at.js": 326,
28511
- "./de-ch": 327,
28512
- "./de-ch.js": 327,
28513
- "./de.js": 325,
28514
- "./dv": 328,
28515
- "./dv.js": 328,
28516
- "./el": 329,
28517
- "./el.js": 329,
28518
- "./en-au": 330,
28519
- "./en-au.js": 330,
28520
- "./en-ca": 331,
28521
- "./en-ca.js": 331,
28522
- "./en-gb": 332,
28523
- "./en-gb.js": 332,
28524
- "./en-ie": 333,
28525
- "./en-ie.js": 333,
28526
- "./en-nz": 334,
28527
- "./en-nz.js": 334,
28528
- "./eo": 335,
28529
- "./eo.js": 335,
28530
- "./es": 336,
28531
- "./es-do": 337,
28532
- "./es-do.js": 337,
28533
- "./es-us": 338,
28534
- "./es-us.js": 338,
28535
- "./es.js": 336,
28536
- "./et": 339,
28537
- "./et.js": 339,
28538
- "./eu": 340,
28539
- "./eu.js": 340,
28540
- "./fa": 341,
28541
- "./fa.js": 341,
28542
- "./fi": 342,
28543
- "./fi.js": 342,
28544
- "./fo": 343,
28545
- "./fo.js": 343,
28546
- "./fr": 344,
28547
- "./fr-ca": 345,
28548
- "./fr-ca.js": 345,
28549
- "./fr-ch": 346,
28550
- "./fr-ch.js": 346,
28551
- "./fr.js": 344,
28552
- "./fy": 347,
28553
- "./fy.js": 347,
28554
- "./gd": 348,
28555
- "./gd.js": 348,
28556
- "./gl": 349,
28557
- "./gl.js": 349,
28558
- "./gom-latn": 350,
28559
- "./gom-latn.js": 350,
28560
- "./gu": 351,
28561
- "./gu.js": 351,
28562
- "./he": 352,
28563
- "./he.js": 352,
28564
- "./hi": 353,
28565
- "./hi.js": 353,
28566
- "./hr": 354,
28567
- "./hr.js": 354,
28568
- "./hu": 355,
28569
- "./hu.js": 355,
28570
- "./hy-am": 356,
28571
- "./hy-am.js": 356,
28572
- "./id": 357,
28573
- "./id.js": 357,
28574
- "./is": 358,
28575
- "./is.js": 358,
28576
- "./it": 359,
28577
- "./it.js": 359,
28578
- "./ja": 360,
28579
- "./ja.js": 360,
28580
- "./jv": 361,
28581
- "./jv.js": 361,
28582
- "./ka": 362,
28583
- "./ka.js": 362,
28584
- "./kk": 363,
28585
- "./kk.js": 363,
28586
- "./km": 364,
28587
- "./km.js": 364,
28588
- "./kn": 365,
28589
- "./kn.js": 365,
28590
- "./ko": 366,
28591
- "./ko.js": 366,
28592
- "./ky": 367,
28593
- "./ky.js": 367,
28594
- "./lb": 368,
28595
- "./lb.js": 368,
28596
- "./lo": 369,
28597
- "./lo.js": 369,
28598
- "./lt": 370,
28599
- "./lt.js": 370,
28600
- "./lv": 371,
28601
- "./lv.js": 371,
28602
- "./me": 372,
28603
- "./me.js": 372,
28604
- "./mi": 373,
28605
- "./mi.js": 373,
28606
- "./mk": 374,
28607
- "./mk.js": 374,
28608
- "./ml": 375,
28609
- "./ml.js": 375,
28610
- "./mr": 376,
28611
- "./mr.js": 376,
28612
- "./ms": 377,
28613
- "./ms-my": 378,
28614
- "./ms-my.js": 378,
28615
- "./ms.js": 377,
28616
- "./mt": 379,
28617
- "./mt.js": 379,
28618
  "./my": 380,
28619
  "./my.js": 380,
28620
  "./nb": 381,
@@ -28713,11 +28692,11 @@ webpackJsonp([3],[
28713
  };
28714
  webpackContext.resolve = webpackContextResolve;
28715
  module.exports = webpackContext;
28716
- webpackContext.id = 303;
28717
 
28718
 
28719
  /***/ },
28720
- /* 304 */
28721
  /***/ function(module, exports, __webpack_require__) {
28722
 
28723
  //! moment.js locale configuration
@@ -28725,7 +28704,7 @@ webpackJsonp([3],[
28725
  //! author : Werner Mollentze : https://github.com/wernerm
28726
 
28727
  ;(function (global, factory) {
28728
- true ? factory(__webpack_require__(301)) :
28729
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28730
  factory(global.moment)
28731
  }(this, (function (moment) { 'use strict';
@@ -28768,7 +28747,6 @@ webpackJsonp([3],[
28768
  future : 'oor %s',
28769
  past : '%s gelede',
28770
  s : '\'n paar sekondes',
28771
- ss : '%d sekondes',
28772
  m : '\'n minuut',
28773
  mm : '%d minute',
28774
  h : '\'n uur',
@@ -28796,7 +28774,7 @@ webpackJsonp([3],[
28796
 
28797
 
28798
  /***/ },
28799
- /* 305 */
28800
  /***/ function(module, exports, __webpack_require__) {
28801
 
28802
  //! moment.js locale configuration
@@ -28806,7 +28784,7 @@ webpackJsonp([3],[
28806
  //! author : forabi https://github.com/forabi
28807
 
28808
  ;(function (global, factory) {
28809
- true ? factory(__webpack_require__(301)) :
28810
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28811
  factory(global.moment)
28812
  }(this, (function (moment) { 'use strict';
@@ -28858,18 +28836,18 @@ webpackJsonp([3],[
28858
  };
28859
  };
28860
  var months = [
28861
- 'يناير',
28862
- 'فبراير',
28863
- 'مارس',
28864
- 'أبريل',
28865
- 'مايو',
28866
- 'يونيو',
28867
- 'يوليو',
28868
- 'أغسطس',
28869
- 'سبتمبر',
28870
- 'أكتوبر',
28871
- 'نوفمبر',
28872
- 'ديسمبر'
28873
  ];
28874
 
28875
  var ar = moment.defineLocale('ar', {
@@ -28910,7 +28888,6 @@ webpackJsonp([3],[
28910
  future : 'بعد %s',
28911
  past : 'منذ %s',
28912
  s : pluralize('s'),
28913
- ss : pluralize('s'),
28914
  m : pluralize('m'),
28915
  mm : pluralize('m'),
28916
  h : pluralize('h'),
@@ -28944,7 +28921,7 @@ webpackJsonp([3],[
28944
 
28945
 
28946
  /***/ },
28947
- /* 306 */
28948
  /***/ function(module, exports, __webpack_require__) {
28949
 
28950
  //! moment.js locale configuration
@@ -28952,7 +28929,7 @@ webpackJsonp([3],[
28952
  //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme
28953
 
28954
  ;(function (global, factory) {
28955
- true ? factory(__webpack_require__(301)) :
28956
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28957
  factory(global.moment)
28958
  }(this, (function (moment) { 'use strict';
@@ -28985,7 +28962,6 @@ webpackJsonp([3],[
28985
  future : 'في %s',
28986
  past : 'منذ %s',
28987
  s : 'ثوان',
28988
- ss : '%d ثانية',
28989
  m : 'دقيقة',
28990
  mm : '%d دقائق',
28991
  h : 'ساعة',
@@ -29009,7 +28985,7 @@ webpackJsonp([3],[
29009
 
29010
 
29011
  /***/ },
29012
- /* 307 */
29013
  /***/ function(module, exports, __webpack_require__) {
29014
 
29015
  //! moment.js locale configuration
@@ -29017,7 +28993,7 @@ webpackJsonp([3],[
29017
  //! author : Nusret Parlak: https://github.com/nusretparlak
29018
 
29019
  ;(function (global, factory) {
29020
- true ? factory(__webpack_require__(301)) :
29021
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29022
  factory(global.moment)
29023
  }(this, (function (moment) { 'use strict';
@@ -29050,7 +29026,6 @@ webpackJsonp([3],[
29050
  future : 'في %s',
29051
  past : 'منذ %s',
29052
  s : 'ثوان',
29053
- ss : '%d ثانية',
29054
  m : 'دقيقة',
29055
  mm : '%d دقائق',
29056
  h : 'ساعة',
@@ -29074,7 +29049,7 @@ webpackJsonp([3],[
29074
 
29075
 
29076
  /***/ },
29077
- /* 308 */
29078
  /***/ function(module, exports, __webpack_require__) {
29079
 
29080
  //! moment.js locale configuration
@@ -29082,7 +29057,7 @@ webpackJsonp([3],[
29082
  //! author : Ali Hmer: https://github.com/kikoanis
29083
 
29084
  ;(function (global, factory) {
29085
- true ? factory(__webpack_require__(301)) :
29086
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29087
  factory(global.moment)
29088
  }(this, (function (moment) { 'use strict';
@@ -29174,7 +29149,6 @@ webpackJsonp([3],[
29174
  future : 'بعد %s',
29175
  past : 'منذ %s',
29176
  s : pluralize('s'),
29177
- ss : pluralize('s'),
29178
  m : pluralize('m'),
29179
  mm : pluralize('m'),
29180
  h : pluralize('h'),
@@ -29206,7 +29180,7 @@ webpackJsonp([3],[
29206
 
29207
 
29208
  /***/ },
29209
- /* 309 */
29210
  /***/ function(module, exports, __webpack_require__) {
29211
 
29212
  //! moment.js locale configuration
@@ -29215,7 +29189,7 @@ webpackJsonp([3],[
29215
  //! author : Abdel Said : https://github.com/abdelsaid
29216
 
29217
  ;(function (global, factory) {
29218
- true ? factory(__webpack_require__(301)) :
29219
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29220
  factory(global.moment)
29221
  }(this, (function (moment) { 'use strict';
@@ -29248,7 +29222,6 @@ webpackJsonp([3],[
29248
  future : 'في %s',
29249
  past : 'منذ %s',
29250
  s : 'ثوان',
29251
- ss : '%d ثانية',
29252
  m : 'دقيقة',
29253
  mm : '%d دقائق',
29254
  h : 'ساعة',
@@ -29272,7 +29245,7 @@ webpackJsonp([3],[
29272
 
29273
 
29274
  /***/ },
29275
- /* 310 */
29276
  /***/ function(module, exports, __webpack_require__) {
29277
 
29278
  //! moment.js locale configuration
@@ -29280,7 +29253,7 @@ webpackJsonp([3],[
29280
  //! author : Suhail Alkowaileet : https://github.com/xsoh
29281
 
29282
  ;(function (global, factory) {
29283
- true ? factory(__webpack_require__(301)) :
29284
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29285
  factory(global.moment)
29286
  }(this, (function (moment) { 'use strict';
@@ -29349,7 +29322,6 @@ webpackJsonp([3],[
29349
  future : 'في %s',
29350
  past : 'منذ %s',
29351
  s : 'ثوان',
29352
- ss : '%d ثانية',
29353
  m : 'دقيقة',
29354
  mm : '%d دقائق',
29355
  h : 'ساعة',
@@ -29383,7 +29355,7 @@ webpackJsonp([3],[
29383
 
29384
 
29385
  /***/ },
29386
- /* 311 */
29387
  /***/ function(module, exports, __webpack_require__) {
29388
 
29389
  //! moment.js locale configuration
@@ -29391,7 +29363,7 @@ webpackJsonp([3],[
29391
  //! author : Nader Toukabri : https://github.com/naderio
29392
 
29393
  ;(function (global, factory) {
29394
- true ? factory(__webpack_require__(301)) :
29395
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29396
  factory(global.moment)
29397
  }(this, (function (moment) { 'use strict';
@@ -29424,7 +29396,6 @@ webpackJsonp([3],[
29424
  future: 'في %s',
29425
  past: 'منذ %s',
29426
  s: 'ثوان',
29427
- ss : '%d ثانية',
29428
  m: 'دقيقة',
29429
  mm: '%d دقائق',
29430
  h: 'ساعة',
@@ -29448,7 +29419,7 @@ webpackJsonp([3],[
29448
 
29449
 
29450
  /***/ },
29451
- /* 312 */
29452
  /***/ function(module, exports, __webpack_require__) {
29453
 
29454
  //! moment.js locale configuration
@@ -29456,7 +29427,7 @@ webpackJsonp([3],[
29456
  //! author : topchiyev : https://github.com/topchiyev
29457
 
29458
  ;(function (global, factory) {
29459
- true ? factory(__webpack_require__(301)) :
29460
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29461
  factory(global.moment)
29462
  }(this, (function (moment) { 'use strict';
@@ -29510,7 +29481,6 @@ webpackJsonp([3],[
29510
  future : '%s sonra',
29511
  past : '%s əvvəl',
29512
  s : 'birneçə saniyyə',
29513
- ss : '%d saniyə',
29514
  m : 'bir dəqiqə',
29515
  mm : '%d dəqiqə',
29516
  h : 'bir saat',
@@ -29559,7 +29529,7 @@ webpackJsonp([3],[
29559
 
29560
 
29561
  /***/ },
29562
- /* 313 */
29563
  /***/ function(module, exports, __webpack_require__) {
29564
 
29565
  //! moment.js locale configuration
@@ -29569,7 +29539,7 @@ webpackJsonp([3],[
29569
  //! Author : Menelion Elensúle : https://github.com/Oire
29570
 
29571
  ;(function (global, factory) {
29572
- true ? factory(__webpack_require__(301)) :
29573
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29574
  factory(global.moment)
29575
  }(this, (function (moment) { 'use strict';
@@ -29581,7 +29551,6 @@ webpackJsonp([3],[
29581
  }
29582
  function relativeTimeWithPlural(number, withoutSuffix, key) {
29583
  var format = {
29584
- 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
29585
  'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
29586
  'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
29587
  'dd': 'дзень_дні_дзён',
@@ -29699,7 +29668,7 @@ webpackJsonp([3],[
29699
 
29700
 
29701
  /***/ },
29702
- /* 314 */
29703
  /***/ function(module, exports, __webpack_require__) {
29704
 
29705
  //! moment.js locale configuration
@@ -29707,7 +29676,7 @@ webpackJsonp([3],[
29707
  //! author : Krasen Borisov : https://github.com/kraz
29708
 
29709
  ;(function (global, factory) {
29710
- true ? factory(__webpack_require__(301)) :
29711
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29712
  factory(global.moment)
29713
  }(this, (function (moment) { 'use strict';
@@ -29751,7 +29720,6 @@ webpackJsonp([3],[
29751
  future : 'след %s',
29752
  past : 'преди %s',
29753
  s : 'няколко секунди',
29754
- ss : '%d секунди',
29755
  m : 'минута',
29756
  mm : '%d минути',
29757
  h : 'час',
@@ -29795,7 +29763,7 @@ webpackJsonp([3],[
29795
 
29796
 
29797
  /***/ },
29798
- /* 315 */
29799
  /***/ function(module, exports, __webpack_require__) {
29800
 
29801
  //! moment.js locale configuration
@@ -29803,7 +29771,7 @@ webpackJsonp([3],[
29803
  //! author : Estelle Comment : https://github.com/estellecomment
29804
 
29805
  ;(function (global, factory) {
29806
- true ? factory(__webpack_require__(301)) :
29807
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29808
  factory(global.moment)
29809
  }(this, (function (moment) { 'use strict';
@@ -29836,7 +29804,6 @@ webpackJsonp([3],[
29836
  future : '%s kɔnɔ',
29837
  past : 'a bɛ %s bɔ',
29838
  s : 'sanga dama dama',
29839
- ss : 'sekondi %d',
29840
  m : 'miniti kelen',
29841
  mm : 'miniti %d',
29842
  h : 'lɛrɛ kelen',
@@ -29860,7 +29827,7 @@ webpackJsonp([3],[
29860
 
29861
 
29862
  /***/ },
29863
- /* 316 */
29864
  /***/ function(module, exports, __webpack_require__) {
29865
 
29866
  //! moment.js locale configuration
@@ -29868,7 +29835,7 @@ webpackJsonp([3],[
29868
  //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
29869
 
29870
  ;(function (global, factory) {
29871
- true ? factory(__webpack_require__(301)) :
29872
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29873
  factory(global.moment)
29874
  }(this, (function (moment) { 'use strict';
@@ -29925,7 +29892,6 @@ webpackJsonp([3],[
29925
  future : '%s পরে',
29926
  past : '%s আগে',
29927
  s : 'কয়েক সেকেন্ড',
29928
- ss : '%d সেকেন্ড',
29929
  m : 'এক মিনিট',
29930
  mm : '%d মিনিট',
29931
  h : 'এক ঘন্টা',
@@ -29985,7 +29951,7 @@ webpackJsonp([3],[
29985
 
29986
 
29987
  /***/ },
29988
- /* 317 */
29989
  /***/ function(module, exports, __webpack_require__) {
29990
 
29991
  //! moment.js locale configuration
@@ -29993,7 +29959,7 @@ webpackJsonp([3],[
29993
  //! author : Thupten N. Chakrishar : https://github.com/vajradog
29994
 
29995
  ;(function (global, factory) {
29996
- true ? factory(__webpack_require__(301)) :
29997
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29998
  factory(global.moment)
29999
  }(this, (function (moment) { 'use strict';
@@ -30050,7 +30016,6 @@ webpackJsonp([3],[
30050
  future : '%s ལ་',
30051
  past : '%s སྔན་ལ',
30052
  s : 'ལམ་སང',
30053
- ss : '%d སྐར་ཆ།',
30054
  m : 'སྐར་མ་གཅིག',
30055
  mm : '%d སྐར་མ',
30056
  h : 'ཆུ་ཚོད་གཅིག',
@@ -30110,7 +30075,7 @@ webpackJsonp([3],[
30110
 
30111
 
30112
  /***/ },
30113
- /* 318 */
30114
  /***/ function(module, exports, __webpack_require__) {
30115
 
30116
  //! moment.js locale configuration
@@ -30118,7 +30083,7 @@ webpackJsonp([3],[
30118
  //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
30119
 
30120
  ;(function (global, factory) {
30121
- true ? factory(__webpack_require__(301)) :
30122
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30123
  factory(global.moment)
30124
  }(this, (function (moment) { 'use strict';
@@ -30195,7 +30160,6 @@ webpackJsonp([3],[
30195
  future : 'a-benn %s',
30196
  past : '%s \'zo',
30197
  s : 'un nebeud segondennoù',
30198
- ss : '%d eilenn',
30199
  m : 'ur vunutenn',
30200
  mm : relativeTimeWithMutation,
30201
  h : 'un eur',
@@ -30224,7 +30188,7 @@ webpackJsonp([3],[
30224
 
30225
 
30226
  /***/ },
30227
- /* 319 */
30228
  /***/ function(module, exports, __webpack_require__) {
30229
 
30230
  //! moment.js locale configuration
@@ -30233,7 +30197,7 @@ webpackJsonp([3],[
30233
  //! based on (hr) translation by Bojan Marković
30234
 
30235
  ;(function (global, factory) {
30236
- true ? factory(__webpack_require__(301)) :
30237
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30238
  factory(global.moment)
30239
  }(this, (function (moment) { 'use strict';
@@ -30242,15 +30206,6 @@ webpackJsonp([3],[
30242
  function translate(number, withoutSuffix, key) {
30243
  var result = number + ' ';
30244
  switch (key) {
30245
- case 'ss':
30246
- if (number === 1) {
30247
- result += 'sekunda';
30248
- } else if (number === 2 || number === 3 || number === 4) {
30249
- result += 'sekunde';
30250
- } else {
30251
- result += 'sekundi';
30252
- }
30253
- return result;
30254
  case 'm':
30255
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
30256
  case 'mm':
@@ -30356,7 +30311,6 @@ webpackJsonp([3],[
30356
  future : 'za %s',
30357
  past : 'prije %s',
30358
  s : 'par sekundi',
30359
- ss : translate,
30360
  m : translate,
30361
  mm : translate,
30362
  h : translate,
@@ -30382,7 +30336,7 @@ webpackJsonp([3],[
30382
 
30383
 
30384
  /***/ },
30385
- /* 320 */
30386
  /***/ function(module, exports, __webpack_require__) {
30387
 
30388
  //! moment.js locale configuration
@@ -30390,7 +30344,7 @@ webpackJsonp([3],[
30390
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
30391
 
30392
  ;(function (global, factory) {
30393
- true ? factory(__webpack_require__(301)) :
30394
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30395
  factory(global.moment)
30396
  }(this, (function (moment) { 'use strict';
@@ -30441,7 +30395,6 @@ webpackJsonp([3],[
30441
  future : 'd\'aquí %s',
30442
  past : 'fa %s',
30443
  s : 'uns segons',
30444
- ss : '%d segons',
30445
  m : 'un minut',
30446
  mm : '%d minuts',
30447
  h : 'una hora',
@@ -30476,7 +30429,7 @@ webpackJsonp([3],[
30476
 
30477
 
30478
  /***/ },
30479
- /* 321 */
30480
  /***/ function(module, exports, __webpack_require__) {
30481
 
30482
  //! moment.js locale configuration
@@ -30484,7 +30437,7 @@ webpackJsonp([3],[
30484
  //! author : petrbela : https://github.com/petrbela
30485
 
30486
  ;(function (global, factory) {
30487
- true ? factory(__webpack_require__(301)) :
30488
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30489
  factory(global.moment)
30490
  }(this, (function (moment) { 'use strict';
@@ -30500,13 +30453,6 @@ webpackJsonp([3],[
30500
  switch (key) {
30501
  case 's': // a few seconds / in a few seconds / a few seconds ago
30502
  return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';
30503
- case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
30504
- if (withoutSuffix || isFuture) {
30505
- return result + (plural(number) ? 'sekundy' : 'sekund');
30506
- } else {
30507
- return result + 'sekundami';
30508
- }
30509
- break;
30510
  case 'm': // a minute / in a minute / a minute ago
30511
  return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');
30512
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
@@ -30635,7 +30581,6 @@ webpackJsonp([3],[
30635
  future : 'za %s',
30636
  past : 'před %s',
30637
  s : translate,
30638
- ss : translate,
30639
  m : translate,
30640
  mm : translate,
30641
  h : translate,
@@ -30661,7 +30606,7 @@ webpackJsonp([3],[
30661
 
30662
 
30663
  /***/ },
30664
- /* 322 */
30665
  /***/ function(module, exports, __webpack_require__) {
30666
 
30667
  //! moment.js locale configuration
@@ -30669,7 +30614,7 @@ webpackJsonp([3],[
30669
  //! author : Anatoly Mironov : https://github.com/mirontoli
30670
 
30671
  ;(function (global, factory) {
30672
- true ? factory(__webpack_require__(301)) :
30673
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30674
  factory(global.moment)
30675
  }(this, (function (moment) { 'use strict';
@@ -30704,7 +30649,6 @@ webpackJsonp([3],[
30704
  },
30705
  past : '%s каялла',
30706
  s : 'пӗр-ик ҫеккунт',
30707
- ss : '%d ҫеккунт',
30708
  m : 'пӗр минут',
30709
  mm : '%d минут',
30710
  h : 'пӗр сехет',
@@ -30730,7 +30674,7 @@ webpackJsonp([3],[
30730
 
30731
 
30732
  /***/ },
30733
- /* 323 */
30734
  /***/ function(module, exports, __webpack_require__) {
30735
 
30736
  //! moment.js locale configuration
@@ -30739,7 +30683,7 @@ webpackJsonp([3],[
30739
  //! author : https://github.com/ryangreaves
30740
 
30741
  ;(function (global, factory) {
30742
- true ? factory(__webpack_require__(301)) :
30743
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30744
  factory(global.moment)
30745
  }(this, (function (moment) { 'use strict';
@@ -30773,7 +30717,6 @@ webpackJsonp([3],[
30773
  future: 'mewn %s',
30774
  past: '%s yn ôl',
30775
  s: 'ychydig eiliadau',
30776
- ss: '%d eiliad',
30777
  m: 'munud',
30778
  mm: '%d munud',
30779
  h: 'awr',
@@ -30817,7 +30760,7 @@ webpackJsonp([3],[
30817
 
30818
 
30819
  /***/ },
30820
- /* 324 */
30821
  /***/ function(module, exports, __webpack_require__) {
30822
 
30823
  //! moment.js locale configuration
@@ -30825,7 +30768,7 @@ webpackJsonp([3],[
30825
  //! author : Ulrik Nielsen : https://github.com/mrbase
30826
 
30827
  ;(function (global, factory) {
30828
- true ? factory(__webpack_require__(301)) :
30829
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30830
  factory(global.moment)
30831
  }(this, (function (moment) { 'use strict';
@@ -30857,7 +30800,6 @@ webpackJsonp([3],[
30857
  future : 'om %s',
30858
  past : '%s siden',
30859
  s : 'få sekunder',
30860
- ss : '%d sekunder',
30861
  m : 'et minut',
30862
  mm : '%d minutter',
30863
  h : 'en time',
@@ -30883,7 +30825,7 @@ webpackJsonp([3],[
30883
 
30884
 
30885
  /***/ },
30886
- /* 325 */
30887
  /***/ function(module, exports, __webpack_require__) {
30888
 
30889
  //! moment.js locale configuration
@@ -30893,7 +30835,7 @@ webpackJsonp([3],[
30893
  //! author : Mikolaj Dadela : https://github.com/mik01aj
30894
 
30895
  ;(function (global, factory) {
30896
- true ? factory(__webpack_require__(301)) :
30897
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30898
  factory(global.moment)
30899
  }(this, (function (moment) { 'use strict';
@@ -30941,7 +30883,6 @@ webpackJsonp([3],[
30941
  future : 'in %s',
30942
  past : 'vor %s',
30943
  s : 'ein paar Sekunden',
30944
- ss : '%d Sekunden',
30945
  m : processRelativeTime,
30946
  mm : '%d Minuten',
30947
  h : processRelativeTime,
@@ -30967,7 +30908,7 @@ webpackJsonp([3],[
30967
 
30968
 
30969
  /***/ },
30970
- /* 326 */
30971
  /***/ function(module, exports, __webpack_require__) {
30972
 
30973
  //! moment.js locale configuration
@@ -30978,7 +30919,7 @@ webpackJsonp([3],[
30978
  //! author : Mikolaj Dadela : https://github.com/mik01aj
30979
 
30980
  ;(function (global, factory) {
30981
- true ? factory(__webpack_require__(301)) :
30982
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30983
  factory(global.moment)
30984
  }(this, (function (moment) { 'use strict';
@@ -31026,7 +30967,6 @@ webpackJsonp([3],[
31026
  future : 'in %s',
31027
  past : 'vor %s',
31028
  s : 'ein paar Sekunden',
31029
- ss : '%d Sekunden',
31030
  m : processRelativeTime,
31031
  mm : '%d Minuten',
31032
  h : processRelativeTime,
@@ -31052,7 +30992,7 @@ webpackJsonp([3],[
31052
 
31053
 
31054
  /***/ },
31055
- /* 327 */
31056
  /***/ function(module, exports, __webpack_require__) {
31057
 
31058
  //! moment.js locale configuration
@@ -31060,7 +31000,7 @@ webpackJsonp([3],[
31060
  //! author : sschueller : https://github.com/sschueller
31061
 
31062
  ;(function (global, factory) {
31063
- true ? factory(__webpack_require__(301)) :
31064
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31065
  factory(global.moment)
31066
  }(this, (function (moment) { 'use strict';
@@ -31091,12 +31031,12 @@ webpackJsonp([3],[
31091
  weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
31092
  weekdaysParseExact : true,
31093
  longDateFormat : {
31094
- LT: 'HH:mm',
31095
- LTS: 'HH:mm:ss',
31096
  L : 'DD.MM.YYYY',
31097
  LL : 'D. MMMM YYYY',
31098
- LLL : 'D. MMMM YYYY HH:mm',
31099
- LLLL : 'dddd, D. MMMM YYYY HH:mm'
31100
  },
31101
  calendar : {
31102
  sameDay: '[heute um] LT [Uhr]',
@@ -31110,7 +31050,6 @@ webpackJsonp([3],[
31110
  future : 'in %s',
31111
  past : 'vor %s',
31112
  s : 'ein paar Sekunden',
31113
- ss : '%d Sekunden',
31114
  m : processRelativeTime,
31115
  mm : '%d Minuten',
31116
  h : processRelativeTime,
@@ -31136,7 +31075,7 @@ webpackJsonp([3],[
31136
 
31137
 
31138
  /***/ },
31139
- /* 328 */
31140
  /***/ function(module, exports, __webpack_require__) {
31141
 
31142
  //! moment.js locale configuration
@@ -31144,7 +31083,7 @@ webpackJsonp([3],[
31144
  //! author : Jawish Hameed : https://github.com/jawish
31145
 
31146
  ;(function (global, factory) {
31147
- true ? factory(__webpack_require__(301)) :
31148
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31149
  factory(global.moment)
31150
  }(this, (function (moment) { 'use strict';
@@ -31212,7 +31151,6 @@ webpackJsonp([3],[
31212
  future : 'ތެރޭގައި %s',
31213
  past : 'ކުރިން %s',
31214
  s : 'ސިކުންތުކޮޅެއް',
31215
- ss : 'd% ސިކުންތު',
31216
  m : 'މިނިޓެއް',
31217
  mm : 'މިނިޓު %d',
31218
  h : 'ގަޑިއިރެއް',
@@ -31242,7 +31180,7 @@ webpackJsonp([3],[
31242
 
31243
 
31244
  /***/ },
31245
- /* 329 */
31246
  /***/ function(module, exports, __webpack_require__) {
31247
 
31248
  //! moment.js locale configuration
@@ -31250,7 +31188,7 @@ webpackJsonp([3],[
31250
  //! author : Aggelos Karalias : https://github.com/mehiel
31251
 
31252
  ;(function (global, factory) {
31253
- true ? factory(__webpack_require__(301)) :
31254
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31255
  factory(global.moment)
31256
  }(this, (function (moment) { 'use strict';
@@ -31322,7 +31260,6 @@ webpackJsonp([3],[
31322
  future : 'σε %s',
31323
  past : '%s πριν',
31324
  s : 'λίγα δευτερόλεπτα',
31325
- ss : '%d δευτερόλεπτα',
31326
  m : 'ένα λεπτό',
31327
  mm : '%d λεπτά',
31328
  h : 'μία ώρα',
@@ -31348,7 +31285,7 @@ webpackJsonp([3],[
31348
 
31349
 
31350
  /***/ },
31351
- /* 330 */
31352
  /***/ function(module, exports, __webpack_require__) {
31353
 
31354
  //! moment.js locale configuration
@@ -31356,7 +31293,7 @@ webpackJsonp([3],[
31356
  //! author : Jared Morse : https://github.com/jarcoal
31357
 
31358
  ;(function (global, factory) {
31359
- true ? factory(__webpack_require__(301)) :
31360
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31361
  factory(global.moment)
31362
  }(this, (function (moment) { 'use strict';
@@ -31388,7 +31325,6 @@ webpackJsonp([3],[
31388
  future : 'in %s',
31389
  past : '%s ago',
31390
  s : 'a few seconds',
31391
- ss : '%d seconds',
31392
  m : 'a minute',
31393
  mm : '%d minutes',
31394
  h : 'an hour',
@@ -31421,7 +31357,7 @@ webpackJsonp([3],[
31421
 
31422
 
31423
  /***/ },
31424
- /* 331 */
31425
  /***/ function(module, exports, __webpack_require__) {
31426
 
31427
  //! moment.js locale configuration
@@ -31429,7 +31365,7 @@ webpackJsonp([3],[
31429
  //! author : Jonathan Abourbih : https://github.com/jonbca
31430
 
31431
  ;(function (global, factory) {
31432
- true ? factory(__webpack_require__(301)) :
31433
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31434
  factory(global.moment)
31435
  }(this, (function (moment) { 'use strict';
@@ -31461,7 +31397,6 @@ webpackJsonp([3],[
31461
  future : 'in %s',
31462
  past : '%s ago',
31463
  s : 'a few seconds',
31464
- ss : '%d seconds',
31465
  m : 'a minute',
31466
  mm : '%d minutes',
31467
  h : 'an hour',
@@ -31490,7 +31425,7 @@ webpackJsonp([3],[
31490
 
31491
 
31492
  /***/ },
31493
- /* 332 */
31494
  /***/ function(module, exports, __webpack_require__) {
31495
 
31496
  //! moment.js locale configuration
@@ -31498,7 +31433,7 @@ webpackJsonp([3],[
31498
  //! author : Chris Gedrim : https://github.com/chrisgedrim
31499
 
31500
  ;(function (global, factory) {
31501
- true ? factory(__webpack_require__(301)) :
31502
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31503
  factory(global.moment)
31504
  }(this, (function (moment) { 'use strict';
@@ -31530,7 +31465,6 @@ webpackJsonp([3],[
31530
  future : 'in %s',
31531
  past : '%s ago',
31532
  s : 'a few seconds',
31533
- ss : '%d seconds',
31534
  m : 'a minute',
31535
  mm : '%d minutes',
31536
  h : 'an hour',
@@ -31563,7 +31497,7 @@ webpackJsonp([3],[
31563
 
31564
 
31565
  /***/ },
31566
- /* 333 */
31567
  /***/ function(module, exports, __webpack_require__) {
31568
 
31569
  //! moment.js locale configuration
@@ -31571,7 +31505,7 @@ webpackJsonp([3],[
31571
  //! author : Chris Cartlidge : https://github.com/chriscartlidge
31572
 
31573
  ;(function (global, factory) {
31574
- true ? factory(__webpack_require__(301)) :
31575
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31576
  factory(global.moment)
31577
  }(this, (function (moment) { 'use strict';
@@ -31603,7 +31537,6 @@ webpackJsonp([3],[
31603
  future : 'in %s',
31604
  past : '%s ago',
31605
  s : 'a few seconds',
31606
- ss : '%d seconds',
31607
  m : 'a minute',
31608
  mm : '%d minutes',
31609
  h : 'an hour',
@@ -31636,7 +31569,7 @@ webpackJsonp([3],[
31636
 
31637
 
31638
  /***/ },
31639
- /* 334 */
31640
  /***/ function(module, exports, __webpack_require__) {
31641
 
31642
  //! moment.js locale configuration
@@ -31644,7 +31577,7 @@ webpackJsonp([3],[
31644
  //! author : Luke McGregor : https://github.com/lukemcgregor
31645
 
31646
  ;(function (global, factory) {
31647
- true ? factory(__webpack_require__(301)) :
31648
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31649
  factory(global.moment)
31650
  }(this, (function (moment) { 'use strict';
@@ -31676,7 +31609,6 @@ webpackJsonp([3],[
31676
  future : 'in %s',
31677
  past : '%s ago',
31678
  s : 'a few seconds',
31679
- ss : '%d seconds',
31680
  m : 'a minute',
31681
  mm : '%d minutes',
31682
  h : 'an hour',
@@ -31709,7 +31641,7 @@ webpackJsonp([3],[
31709
 
31710
 
31711
  /***/ },
31712
- /* 335 */
31713
  /***/ function(module, exports, __webpack_require__) {
31714
 
31715
  //! moment.js locale configuration
@@ -31719,7 +31651,7 @@ webpackJsonp([3],[
31719
  //! comment : miestasmia corrected the translation by colindean
31720
 
31721
  ;(function (global, factory) {
31722
- true ? factory(__webpack_require__(301)) :
31723
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31724
  factory(global.moment)
31725
  }(this, (function (moment) { 'use strict';
@@ -31762,7 +31694,6 @@ webpackJsonp([3],[
31762
  future : 'post %s',
31763
  past : 'antaŭ %s',
31764
  s : 'sekundoj',
31765
- ss : '%d sekundoj',
31766
  m : 'minuto',
31767
  mm : '%d minutoj',
31768
  h : 'horo',
@@ -31788,7 +31719,7 @@ webpackJsonp([3],[
31788
 
31789
 
31790
  /***/ },
31791
- /* 336 */
31792
  /***/ function(module, exports, __webpack_require__) {
31793
 
31794
  //! moment.js locale configuration
@@ -31796,7 +31727,7 @@ webpackJsonp([3],[
31796
  //! author : Julio Napurí : https://github.com/julionc
31797
 
31798
  ;(function (global, factory) {
31799
- true ? factory(__webpack_require__(301)) :
31800
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31801
  factory(global.moment)
31802
  }(this, (function (moment) { 'use strict';
@@ -31860,7 +31791,6 @@ webpackJsonp([3],[
31860
  future : 'en %s',
31861
  past : 'hace %s',
31862
  s : 'unos segundos',
31863
- ss : '%d segundos',
31864
  m : 'un minuto',
31865
  mm : '%d minutos',
31866
  h : 'una hora',
@@ -31886,14 +31816,14 @@ webpackJsonp([3],[
31886
 
31887
 
31888
  /***/ },
31889
- /* 337 */
31890
  /***/ function(module, exports, __webpack_require__) {
31891
 
31892
  //! moment.js locale configuration
31893
  //! locale : Spanish (Dominican Republic) [es-do]
31894
 
31895
  ;(function (global, factory) {
31896
- true ? factory(__webpack_require__(301)) :
31897
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31898
  factory(global.moment)
31899
  }(this, (function (moment) { 'use strict';
@@ -31957,7 +31887,6 @@ webpackJsonp([3],[
31957
  future : 'en %s',
31958
  past : 'hace %s',
31959
  s : 'unos segundos',
31960
- ss : '%d segundos',
31961
  m : 'un minuto',
31962
  mm : '%d minutos',
31963
  h : 'una hora',
@@ -31983,7 +31912,7 @@ webpackJsonp([3],[
31983
 
31984
 
31985
  /***/ },
31986
- /* 338 */
31987
  /***/ function(module, exports, __webpack_require__) {
31988
 
31989
  //! moment.js locale configuration
@@ -31991,7 +31920,7 @@ webpackJsonp([3],[
31991
  //! author : bustta : https://github.com/bustta
31992
 
31993
  ;(function (global, factory) {
31994
- true ? factory(__webpack_require__(301)) :
31995
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31996
  factory(global.moment)
31997
  }(this, (function (moment) { 'use strict';
@@ -32017,12 +31946,12 @@ webpackJsonp([3],[
32017
  weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
32018
  weekdaysParseExact : true,
32019
  longDateFormat : {
32020
- LT : 'h:mm A',
32021
- LTS : 'h:mm:ss A',
32022
  L : 'MM/DD/YYYY',
32023
  LL : 'MMMM [de] D [de] YYYY',
32024
- LLL : 'MMMM [de] D [de] YYYY h:mm A',
32025
- LLLL : 'dddd, MMMM [de] D [de] YYYY h:mm A'
32026
  },
32027
  calendar : {
32028
  sameDay : function () {
@@ -32046,7 +31975,6 @@ webpackJsonp([3],[
32046
  future : 'en %s',
32047
  past : 'hace %s',
32048
  s : 'unos segundos',
32049
- ss : '%d segundos',
32050
  m : 'un minuto',
32051
  mm : '%d minutos',
32052
  h : 'una hora',
@@ -32072,7 +32000,7 @@ webpackJsonp([3],[
32072
 
32073
 
32074
  /***/ },
32075
- /* 339 */
32076
  /***/ function(module, exports, __webpack_require__) {
32077
 
32078
  //! moment.js locale configuration
@@ -32081,7 +32009,7 @@ webpackJsonp([3],[
32081
  //! improvements : Illimar Tambek : https://github.com/ragulka
32082
 
32083
  ;(function (global, factory) {
32084
- true ? factory(__webpack_require__(301)) :
32085
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32086
  factory(global.moment)
32087
  }(this, (function (moment) { 'use strict';
@@ -32090,7 +32018,6 @@ webpackJsonp([3],[
32090
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
32091
  var format = {
32092
  's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
32093
- 'ss': [number + 'sekundi', number + 'sekundit'],
32094
  'm' : ['ühe minuti', 'üks minut'],
32095
  'mm': [number + ' minuti', number + ' minutit'],
32096
  'h' : ['ühe tunni', 'tund aega', 'üks tund'],
@@ -32133,7 +32060,6 @@ webpackJsonp([3],[
32133
  future : '%s pärast',
32134
  past : '%s tagasi',
32135
  s : processRelativeTime,
32136
- ss : processRelativeTime,
32137
  m : processRelativeTime,
32138
  mm : processRelativeTime,
32139
  h : processRelativeTime,
@@ -32159,7 +32085,7 @@ webpackJsonp([3],[
32159
 
32160
 
32161
  /***/ },
32162
- /* 340 */
32163
  /***/ function(module, exports, __webpack_require__) {
32164
 
32165
  //! moment.js locale configuration
@@ -32167,7 +32093,7 @@ webpackJsonp([3],[
32167
  //! author : Eneko Illarramendi : https://github.com/eillarra
32168
 
32169
  ;(function (global, factory) {
32170
- true ? factory(__webpack_require__(301)) :
32171
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32172
  factory(global.moment)
32173
  }(this, (function (moment) { 'use strict';
@@ -32205,7 +32131,6 @@ webpackJsonp([3],[
32205
  future : '%s barru',
32206
  past : 'duela %s',
32207
  s : 'segundo batzuk',
32208
- ss : '%d segundo',
32209
  m : 'minutu bat',
32210
  mm : '%d minutu',
32211
  h : 'ordu bat',
@@ -32231,7 +32156,7 @@ webpackJsonp([3],[
32231
 
32232
 
32233
  /***/ },
32234
- /* 341 */
32235
  /***/ function(module, exports, __webpack_require__) {
32236
 
32237
  //! moment.js locale configuration
@@ -32239,7 +32164,7 @@ webpackJsonp([3],[
32239
  //! author : Ebrahim Byagowi : https://github.com/ebraminio
32240
 
32241
  ;(function (global, factory) {
32242
- true ? factory(__webpack_require__(301)) :
32243
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32244
  factory(global.moment)
32245
  }(this, (function (moment) { 'use strict';
@@ -32308,7 +32233,6 @@ webpackJsonp([3],[
32308
  future : 'در %s',
32309
  past : '%s پیش',
32310
  s : 'چند ثانیه',
32311
- ss : 'ثانیه d%',
32312
  m : 'یک دقیقه',
32313
  mm : '%d دقیقه',
32314
  h : 'یک ساعت',
@@ -32344,7 +32268,7 @@ webpackJsonp([3],[
32344
 
32345
 
32346
  /***/ },
32347
- /* 342 */
32348
  /***/ function(module, exports, __webpack_require__) {
32349
 
32350
  //! moment.js locale configuration
@@ -32352,7 +32276,7 @@ webpackJsonp([3],[
32352
  //! author : Tarmo Aidantausta : https://github.com/bleadof
32353
 
32354
  ;(function (global, factory) {
32355
- true ? factory(__webpack_require__(301)) :
32356
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32357
  factory(global.moment)
32358
  }(this, (function (moment) { 'use strict';
@@ -32368,8 +32292,6 @@ webpackJsonp([3],[
32368
  switch (key) {
32369
  case 's':
32370
  return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
32371
- case 'ss':
32372
- return isFuture ? 'sekunnin' : 'sekuntia';
32373
  case 'm':
32374
  return isFuture ? 'minuutin' : 'minuutti';
32375
  case 'mm':
@@ -32433,7 +32355,6 @@ webpackJsonp([3],[
32433
  future : '%s päästä',
32434
  past : '%s sitten',
32435
  s : translate,
32436
- ss : translate,
32437
  m : translate,
32438
  mm : translate,
32439
  h : translate,
@@ -32459,7 +32380,7 @@ webpackJsonp([3],[
32459
 
32460
 
32461
  /***/ },
32462
- /* 343 */
32463
  /***/ function(module, exports, __webpack_require__) {
32464
 
32465
  //! moment.js locale configuration
@@ -32467,7 +32388,7 @@ webpackJsonp([3],[
32467
  //! author : Ragnar Johannesen : https://github.com/ragnar123
32468
 
32469
  ;(function (global, factory) {
32470
- true ? factory(__webpack_require__(301)) :
32471
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32472
  factory(global.moment)
32473
  }(this, (function (moment) { 'use strict';
@@ -32499,7 +32420,6 @@ webpackJsonp([3],[
32499
  future : 'um %s',
32500
  past : '%s síðani',
32501
  s : 'fá sekund',
32502
- ss : '%d sekundir',
32503
  m : 'ein minutt',
32504
  mm : '%d minuttir',
32505
  h : 'ein tími',
@@ -32525,7 +32445,7 @@ webpackJsonp([3],[
32525
 
32526
 
32527
  /***/ },
32528
- /* 344 */
32529
  /***/ function(module, exports, __webpack_require__) {
32530
 
32531
  //! moment.js locale configuration
@@ -32533,7 +32453,7 @@ webpackJsonp([3],[
32533
  //! author : John Fischer : https://github.com/jfroffice
32534
 
32535
  ;(function (global, factory) {
32536
- true ? factory(__webpack_require__(301)) :
32537
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32538
  factory(global.moment)
32539
  }(this, (function (moment) { 'use strict';
@@ -32545,7 +32465,7 @@ webpackJsonp([3],[
32545
  monthsParseExact : true,
32546
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32547
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32548
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
32549
  weekdaysParseExact : true,
32550
  longDateFormat : {
32551
  LT : 'HH:mm',
@@ -32567,7 +32487,6 @@ webpackJsonp([3],[
32567
  future : 'dans %s',
32568
  past : 'il y a %s',
32569
  s : 'quelques secondes',
32570
- ss : '%d secondes',
32571
  m : 'une minute',
32572
  mm : '%d minutes',
32573
  h : 'une heure',
@@ -32614,7 +32533,7 @@ webpackJsonp([3],[
32614
 
32615
 
32616
  /***/ },
32617
- /* 345 */
32618
  /***/ function(module, exports, __webpack_require__) {
32619
 
32620
  //! moment.js locale configuration
@@ -32622,7 +32541,7 @@ webpackJsonp([3],[
32622
  //! author : Jonathan Abourbih : https://github.com/jonbca
32623
 
32624
  ;(function (global, factory) {
32625
- true ? factory(__webpack_require__(301)) :
32626
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32627
  factory(global.moment)
32628
  }(this, (function (moment) { 'use strict';
@@ -32634,7 +32553,7 @@ webpackJsonp([3],[
32634
  monthsParseExact : true,
32635
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32636
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32637
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
32638
  weekdaysParseExact : true,
32639
  longDateFormat : {
32640
  LT : 'HH:mm',
@@ -32656,7 +32575,6 @@ webpackJsonp([3],[
32656
  future : 'dans %s',
32657
  past : 'il y a %s',
32658
  s : 'quelques secondes',
32659
- ss : '%d secondes',
32660
  m : 'une minute',
32661
  mm : '%d minutes',
32662
  h : 'une heure',
@@ -32694,7 +32612,7 @@ webpackJsonp([3],[
32694
 
32695
 
32696
  /***/ },
32697
- /* 346 */
32698
  /***/ function(module, exports, __webpack_require__) {
32699
 
32700
  //! moment.js locale configuration
@@ -32702,7 +32620,7 @@ webpackJsonp([3],[
32702
  //! author : Gaspard Bucher : https://github.com/gaspard
32703
 
32704
  ;(function (global, factory) {
32705
- true ? factory(__webpack_require__(301)) :
32706
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32707
  factory(global.moment)
32708
  }(this, (function (moment) { 'use strict';
@@ -32714,7 +32632,7 @@ webpackJsonp([3],[
32714
  monthsParseExact : true,
32715
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32716
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32717
- weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),
32718
  weekdaysParseExact : true,
32719
  longDateFormat : {
32720
  LT : 'HH:mm',
@@ -32736,7 +32654,6 @@ webpackJsonp([3],[
32736
  future : 'dans %s',
32737
  past : 'il y a %s',
32738
  s : 'quelques secondes',
32739
- ss : '%d secondes',
32740
  m : 'une minute',
32741
  mm : '%d minutes',
32742
  h : 'une heure',
@@ -32778,7 +32695,7 @@ webpackJsonp([3],[
32778
 
32779
 
32780
  /***/ },
32781
- /* 347 */
32782
  /***/ function(module, exports, __webpack_require__) {
32783
 
32784
  //! moment.js locale configuration
@@ -32786,7 +32703,7 @@ webpackJsonp([3],[
32786
  //! author : Robin van der Vliet : https://github.com/robin0van0der0v
32787
 
32788
  ;(function (global, factory) {
32789
- true ? factory(__webpack_require__(301)) :
32790
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32791
  factory(global.moment)
32792
  }(this, (function (moment) { 'use strict';
@@ -32831,7 +32748,6 @@ webpackJsonp([3],[
32831
  future : 'oer %s',
32832
  past : '%s lyn',
32833
  s : 'in pear sekonden',
32834
- ss : '%d sekonden',
32835
  m : 'ien minút',
32836
  mm : '%d minuten',
32837
  h : 'ien oere',
@@ -32859,7 +32775,7 @@ webpackJsonp([3],[
32859
 
32860
 
32861
  /***/ },
32862
- /* 348 */
32863
  /***/ function(module, exports, __webpack_require__) {
32864
 
32865
  //! moment.js locale configuration
@@ -32867,7 +32783,7 @@ webpackJsonp([3],[
32867
  //! author : Jon Ashdown : https://github.com/jonashdown
32868
 
32869
  ;(function (global, factory) {
32870
- true ? factory(__webpack_require__(301)) :
32871
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32872
  factory(global.moment)
32873
  }(this, (function (moment) { 'use strict';
@@ -32912,7 +32828,6 @@ webpackJsonp([3],[
32912
  future : 'ann an %s',
32913
  past : 'bho chionn %s',
32914
  s : 'beagan diogan',
32915
- ss : '%d diogan',
32916
  m : 'mionaid',
32917
  mm : '%d mionaidean',
32918
  h : 'uair',
@@ -32941,7 +32856,7 @@ webpackJsonp([3],[
32941
 
32942
 
32943
  /***/ },
32944
- /* 349 */
32945
  /***/ function(module, exports, __webpack_require__) {
32946
 
32947
  //! moment.js locale configuration
@@ -32949,7 +32864,7 @@ webpackJsonp([3],[
32949
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
32950
 
32951
  ;(function (global, factory) {
32952
- true ? factory(__webpack_require__(301)) :
32953
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32954
  factory(global.moment)
32955
  }(this, (function (moment) { 'use strict';
@@ -32998,7 +32913,6 @@ webpackJsonp([3],[
32998
  },
32999
  past : 'hai %s',
33000
  s : 'uns segundos',
33001
- ss : '%d segundos',
33002
  m : 'un minuto',
33003
  mm : '%d minutos',
33004
  h : 'unha hora',
@@ -33024,7 +32938,7 @@ webpackJsonp([3],[
33024
 
33025
 
33026
  /***/ },
33027
- /* 350 */
33028
  /***/ function(module, exports, __webpack_require__) {
33029
 
33030
  //! moment.js locale configuration
@@ -33032,7 +32946,7 @@ webpackJsonp([3],[
33032
  //! author : The Discoverer : https://github.com/WikiDiscoverer
33033
 
33034
  ;(function (global, factory) {
33035
- true ? factory(__webpack_require__(301)) :
33036
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33037
  factory(global.moment)
33038
  }(this, (function (moment) { 'use strict';
@@ -33041,7 +32955,6 @@ webpackJsonp([3],[
33041
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
33042
  var format = {
33043
  's': ['thodde secondanim', 'thodde second'],
33044
- 'ss': [number + ' secondanim', number + ' second'],
33045
  'm': ['eka mintan', 'ek minute'],
33046
  'mm': [number + ' mintanim', number + ' mintam'],
33047
  'h': ['eka horan', 'ek hor'],
@@ -33085,7 +32998,6 @@ webpackJsonp([3],[
33085
  future : '%s',
33086
  past : '%s adim',
33087
  s : processRelativeTime,
33088
- ss : processRelativeTime,
33089
  m : processRelativeTime,
33090
  mm : processRelativeTime,
33091
  h : processRelativeTime,
@@ -33153,7 +33065,7 @@ webpackJsonp([3],[
33153
 
33154
 
33155
  /***/ },
33156
- /* 351 */
33157
  /***/ function(module, exports, __webpack_require__) {
33158
 
33159
  //! moment.js locale configuration
@@ -33161,7 +33073,7 @@ webpackJsonp([3],[
33161
  //! author : Kaushik Thanki : https://github.com/Kaushik1987
33162
 
33163
  ;(function (global, factory) {
33164
- true ? factory(__webpack_require__(301)) :
33165
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33166
  factory(global.moment)
33167
  }(this, (function (moment) { 'use strict';
@@ -33219,7 +33131,6 @@ webpackJsonp([3],[
33219
  future: '%s મા',
33220
  past: '%s પેહલા',
33221
  s: 'અમુક પળો',
33222
- ss: '%d સેકંડ',
33223
  m: 'એક મિનિટ',
33224
  mm: '%d મિનિટ',
33225
  h: 'એક કલાક',
@@ -33283,7 +33194,7 @@ webpackJsonp([3],[
33283
 
33284
 
33285
  /***/ },
33286
- /* 352 */
33287
  /***/ function(module, exports, __webpack_require__) {
33288
 
33289
  //! moment.js locale configuration
@@ -33293,7 +33204,7 @@ webpackJsonp([3],[
33293
  //! author : Tal Ater : https://github.com/TalAter
33294
 
33295
  ;(function (global, factory) {
33296
- true ? factory(__webpack_require__(301)) :
33297
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33298
  factory(global.moment)
33299
  }(this, (function (moment) { 'use strict';
@@ -33329,7 +33240,6 @@ webpackJsonp([3],[
33329
  future : 'בעוד %s',
33330
  past : 'לפני %s',
33331
  s : 'מספר שניות',
33332
- ss : '%d שניות',
33333
  m : 'דקה',
33334
  mm : '%d דקות',
33335
  h : 'שעה',
@@ -33388,7 +33298,7 @@ webpackJsonp([3],[
33388
 
33389
 
33390
  /***/ },
33391
- /* 353 */
33392
  /***/ function(module, exports, __webpack_require__) {
33393
 
33394
  //! moment.js locale configuration
@@ -33396,7 +33306,7 @@ webpackJsonp([3],[
33396
  //! author : Mayank Singhal : https://github.com/mayanksinghal
33397
 
33398
  ;(function (global, factory) {
33399
- true ? factory(__webpack_require__(301)) :
33400
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33401
  factory(global.moment)
33402
  }(this, (function (moment) { 'use strict';
@@ -33454,7 +33364,6 @@ webpackJsonp([3],[
33454
  future : '%s में',
33455
  past : '%s पहले',
33456
  s : 'कुछ ही क्षण',
33457
- ss : '%d सेकंड',
33458
  m : 'एक मिनट',
33459
  mm : '%d मिनट',
33460
  h : 'एक घंटा',
@@ -33518,7 +33427,7 @@ webpackJsonp([3],[
33518
 
33519
 
33520
  /***/ },
33521
- /* 354 */
33522
  /***/ function(module, exports, __webpack_require__) {
33523
 
33524
  //! moment.js locale configuration
@@ -33526,7 +33435,7 @@ webpackJsonp([3],[
33526
  //! author : Bojan Marković : https://github.com/bmarkovic
33527
 
33528
  ;(function (global, factory) {
33529
- true ? factory(__webpack_require__(301)) :
33530
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33531
  factory(global.moment)
33532
  }(this, (function (moment) { 'use strict';
@@ -33535,15 +33444,6 @@ webpackJsonp([3],[
33535
  function translate(number, withoutSuffix, key) {
33536
  var result = number + ' ';
33537
  switch (key) {
33538
- case 'ss':
33539
- if (number === 1) {
33540
- result += 'sekunda';
33541
- } else if (number === 2 || number === 3 || number === 4) {
33542
- result += 'sekunde';
33543
- } else {
33544
- result += 'sekundi';
33545
- }
33546
- return result;
33547
  case 'm':
33548
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
33549
  case 'mm':
@@ -33652,7 +33552,6 @@ webpackJsonp([3],[
33652
  future : 'za %s',
33653
  past : 'prije %s',
33654
  s : 'par sekundi',
33655
- ss : translate,
33656
  m : translate,
33657
  mm : translate,
33658
  h : translate,
@@ -33678,7 +33577,7 @@ webpackJsonp([3],[
33678
 
33679
 
33680
  /***/ },
33681
- /* 355 */
33682
  /***/ function(module, exports, __webpack_require__) {
33683
 
33684
  //! moment.js locale configuration
@@ -33686,7 +33585,7 @@ webpackJsonp([3],[
33686
  //! author : Adam Brunner : https://github.com/adambrunner
33687
 
33688
  ;(function (global, factory) {
33689
- true ? factory(__webpack_require__(301)) :
33690
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33691
  factory(global.moment)
33692
  }(this, (function (moment) { 'use strict';
@@ -33698,8 +33597,6 @@ webpackJsonp([3],[
33698
  switch (key) {
33699
  case 's':
33700
  return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
33701
- case 'ss':
33702
- return num + (isFuture || withoutSuffix) ? ' másodperc' : ' másodperce';
33703
  case 'm':
33704
  return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
33705
  case 'mm':
@@ -33768,7 +33665,6 @@ webpackJsonp([3],[
33768
  future : '%s múlva',
33769
  past : '%s',
33770
  s : translate,
33771
- ss : translate,
33772
  m : translate,
33773
  mm : translate,
33774
  h : translate,
@@ -33794,7 +33690,7 @@ webpackJsonp([3],[
33794
 
33795
 
33796
  /***/ },
33797
- /* 356 */
33798
  /***/ function(module, exports, __webpack_require__) {
33799
 
33800
  //! moment.js locale configuration
@@ -33802,7 +33698,7 @@ webpackJsonp([3],[
33802
  //! author : Armendarabyan : https://github.com/armendarabyan
33803
 
33804
  ;(function (global, factory) {
33805
- true ? factory(__webpack_require__(301)) :
33806
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33807
  factory(global.moment)
33808
  }(this, (function (moment) { 'use strict';
@@ -33841,7 +33737,6 @@ webpackJsonp([3],[
33841
  future : '%s հետո',
33842
  past : '%s առաջ',
33843
  s : 'մի քանի վայրկյան',
33844
- ss : '%d վայրկյան',
33845
  m : 'րոպե',
33846
  mm : '%d րոպե',
33847
  h : 'ժամ',
@@ -33895,7 +33790,7 @@ webpackJsonp([3],[
33895
 
33896
 
33897
  /***/ },
33898
- /* 357 */
33899
  /***/ function(module, exports, __webpack_require__) {
33900
 
33901
  //! moment.js locale configuration
@@ -33904,7 +33799,7 @@ webpackJsonp([3],[
33904
  //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
33905
 
33906
  ;(function (global, factory) {
33907
- true ? factory(__webpack_require__(301)) :
33908
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33909
  factory(global.moment)
33910
  }(this, (function (moment) { 'use strict';
@@ -33960,7 +33855,6 @@ webpackJsonp([3],[
33960
  future : 'dalam %s',
33961
  past : '%s yang lalu',
33962
  s : 'beberapa detik',
33963
- ss : '%d detik',
33964
  m : 'semenit',
33965
  mm : '%d menit',
33966
  h : 'sejam',
@@ -33984,7 +33878,7 @@ webpackJsonp([3],[
33984
 
33985
 
33986
  /***/ },
33987
- /* 358 */
33988
  /***/ function(module, exports, __webpack_require__) {
33989
 
33990
  //! moment.js locale configuration
@@ -33992,7 +33886,7 @@ webpackJsonp([3],[
33992
  //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
33993
 
33994
  ;(function (global, factory) {
33995
- true ? factory(__webpack_require__(301)) :
33996
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33997
  factory(global.moment)
33998
  }(this, (function (moment) { 'use strict';
@@ -34011,11 +33905,6 @@ webpackJsonp([3],[
34011
  switch (key) {
34012
  case 's':
34013
  return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
34014
- case 'ss':
34015
- if (plural(number)) {
34016
- return result + (withoutSuffix || isFuture ? 'sekúndur' : 'sekúndum');
34017
- }
34018
- return result + 'sekúnda';
34019
  case 'm':
34020
  return withoutSuffix ? 'mínúta' : 'mínútu';
34021
  case 'mm':
@@ -34096,7 +33985,6 @@ webpackJsonp([3],[
34096
  future : 'eftir %s',
34097
  past : 'fyrir %s síðan',
34098
  s : translate,
34099
- ss : translate,
34100
  m : translate,
34101
  mm : translate,
34102
  h : 'klukkustund',
@@ -34122,7 +34010,7 @@ webpackJsonp([3],[
34122
 
34123
 
34124
  /***/ },
34125
- /* 359 */
34126
  /***/ function(module, exports, __webpack_require__) {
34127
 
34128
  //! moment.js locale configuration
@@ -34131,7 +34019,7 @@ webpackJsonp([3],[
34131
  //! author: Mattia Larentis: https://github.com/nostalgiaz
34132
 
34133
  ;(function (global, factory) {
34134
- true ? factory(__webpack_require__(301)) :
34135
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34136
  factory(global.moment)
34137
  }(this, (function (moment) { 'use strict';
@@ -34149,7 +34037,7 @@ webpackJsonp([3],[
34149
  L : 'DD/MM/YYYY',
34150
  LL : 'D MMMM YYYY',
34151
  LLL : 'D MMMM YYYY HH:mm',
34152
- LLLL : 'dddd D MMMM YYYY HH:mm'
34153
  },
34154
  calendar : {
34155
  sameDay: '[Oggi alle] LT',
@@ -34172,7 +34060,6 @@ webpackJsonp([3],[
34172
  },
34173
  past : '%s fa',
34174
  s : 'alcuni secondi',
34175
- ss : '%d secondi',
34176
  m : 'un minuto',
34177
  mm : '%d minuti',
34178
  h : 'un\'ora',
@@ -34198,7 +34085,7 @@ webpackJsonp([3],[
34198
 
34199
 
34200
  /***/ },
34201
- /* 360 */
34202
  /***/ function(module, exports, __webpack_require__) {
34203
 
34204
  //! moment.js locale configuration
@@ -34206,7 +34093,7 @@ webpackJsonp([3],[
34206
  //! author : LI Long : https://github.com/baryon
34207
 
34208
  ;(function (global, factory) {
34209
- true ? factory(__webpack_require__(301)) :
34210
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34211
  factory(global.moment)
34212
  }(this, (function (moment) { 'use strict';
@@ -34264,7 +34151,6 @@ webpackJsonp([3],[
34264
  future : '%s後',
34265
  past : '%s前',
34266
  s : '数秒',
34267
- ss : '%d秒',
34268
  m : '1分',
34269
  mm : '%d分',
34270
  h : '1時間',
@@ -34284,7 +34170,7 @@ webpackJsonp([3],[
34284
 
34285
 
34286
  /***/ },
34287
- /* 361 */
34288
  /***/ function(module, exports, __webpack_require__) {
34289
 
34290
  //! moment.js locale configuration
@@ -34293,7 +34179,7 @@ webpackJsonp([3],[
34293
  //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
34294
 
34295
  ;(function (global, factory) {
34296
- true ? factory(__webpack_require__(301)) :
34297
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34298
  factory(global.moment)
34299
  }(this, (function (moment) { 'use strict';
@@ -34349,7 +34235,6 @@ webpackJsonp([3],[
34349
  future : 'wonten ing %s',
34350
  past : '%s ingkang kepengker',
34351
  s : 'sawetawis detik',
34352
- ss : '%d detik',
34353
  m : 'setunggal menit',
34354
  mm : '%d menit',
34355
  h : 'setunggal jam',
@@ -34373,7 +34258,7 @@ webpackJsonp([3],[
34373
 
34374
 
34375
  /***/ },
34376
- /* 362 */
34377
  /***/ function(module, exports, __webpack_require__) {
34378
 
34379
  //! moment.js locale configuration
@@ -34381,7 +34266,7 @@ webpackJsonp([3],[
34381
  //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili
34382
 
34383
  ;(function (global, factory) {
34384
- true ? factory(__webpack_require__(301)) :
34385
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34386
  factory(global.moment)
34387
  }(this, (function (moment) { 'use strict';
@@ -34431,7 +34316,6 @@ webpackJsonp([3],[
34431
  }
34432
  },
34433
  s : 'რამდენიმე წამი',
34434
- ss : '%d წამი',
34435
  m : 'წუთი',
34436
  mm : '%d წუთი',
34437
  h : 'საათი',
@@ -34468,7 +34352,7 @@ webpackJsonp([3],[
34468
 
34469
 
34470
  /***/ },
34471
- /* 363 */
34472
  /***/ function(module, exports, __webpack_require__) {
34473
 
34474
  //! moment.js locale configuration
@@ -34476,7 +34360,7 @@ webpackJsonp([3],[
34476
  //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
34477
 
34478
  ;(function (global, factory) {
34479
- true ? factory(__webpack_require__(301)) :
34480
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34481
  factory(global.moment)
34482
  }(this, (function (moment) { 'use strict';
@@ -34531,7 +34415,6 @@ webpackJsonp([3],[
34531
  future : '%s ішінде',
34532
  past : '%s бұрын',
34533
  s : 'бірнеше секунд',
34534
- ss : '%d секунд',
34535
  m : 'бір минут',
34536
  mm : '%d минут',
34537
  h : 'бір сағат',
@@ -34561,7 +34444,7 @@ webpackJsonp([3],[
34561
 
34562
 
34563
  /***/ },
34564
- /* 364 */
34565
  /***/ function(module, exports, __webpack_require__) {
34566
 
34567
  //! moment.js locale configuration
@@ -34569,7 +34452,7 @@ webpackJsonp([3],[
34569
  //! author : Kruy Vanna : https://github.com/kruyvanna
34570
 
34571
  ;(function (global, factory) {
34572
- true ? factory(__webpack_require__(301)) :
34573
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34574
  factory(global.moment)
34575
  }(this, (function (moment) { 'use strict';
@@ -34601,7 +34484,6 @@ webpackJsonp([3],[
34601
  future: '%sទៀត',
34602
  past: '%sមុន',
34603
  s: 'ប៉ុន្មានវិនាទី',
34604
- ss: '%d វិនាទី',
34605
  m: 'មួយនាទី',
34606
  mm: '%d នាទី',
34607
  h: 'មួយម៉ោង',
@@ -34625,7 +34507,7 @@ webpackJsonp([3],[
34625
 
34626
 
34627
  /***/ },
34628
- /* 365 */
34629
  /***/ function(module, exports, __webpack_require__) {
34630
 
34631
  //! moment.js locale configuration
@@ -34633,7 +34515,7 @@ webpackJsonp([3],[
34633
  //! author : Rajeev Naik : https://github.com/rajeevnaikte
34634
 
34635
  ;(function (global, factory) {
34636
- true ? factory(__webpack_require__(301)) :
34637
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34638
  factory(global.moment)
34639
  }(this, (function (moment) { 'use strict';
@@ -34691,7 +34573,6 @@ webpackJsonp([3],[
34691
  future : '%s ನಂತರ',
34692
  past : '%s ಹಿಂದೆ',
34693
  s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
34694
- ss : '%d ಸೆಕೆಂಡುಗಳು',
34695
  m : 'ಒಂದು ನಿಮಿಷ',
34696
  mm : '%d ನಿಮಿಷ',
34697
  h : 'ಒಂದು ಗಂಟೆ',
@@ -34757,7 +34638,7 @@ webpackJsonp([3],[
34757
 
34758
 
34759
  /***/ },
34760
- /* 366 */
34761
  /***/ function(module, exports, __webpack_require__) {
34762
 
34763
  //! moment.js locale configuration
@@ -34766,7 +34647,7 @@ webpackJsonp([3],[
34766
  //! author : Jeeeyul Lee <jeeeyul@gmail.com>
34767
 
34768
  ;(function (global, factory) {
34769
- true ? factory(__webpack_require__(301)) :
34770
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34771
  factory(global.moment)
34772
  }(this, (function (moment) { 'use strict';
@@ -34845,7 +34726,7 @@ webpackJsonp([3],[
34845
 
34846
 
34847
  /***/ },
34848
- /* 367 */
34849
  /***/ function(module, exports, __webpack_require__) {
34850
 
34851
  //! moment.js locale configuration
@@ -34853,7 +34734,7 @@ webpackJsonp([3],[
34853
  //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
34854
 
34855
  ;(function (global, factory) {
34856
- true ? factory(__webpack_require__(301)) :
34857
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34858
  factory(global.moment)
34859
  }(this, (function (moment) { 'use strict';
@@ -34909,7 +34790,6 @@ webpackJsonp([3],[
34909
  future : '%s ичинде',
34910
  past : '%s мурун',
34911
  s : 'бирнече секунд',
34912
- ss : '%d секунд',
34913
  m : 'бир мүнөт',
34914
  mm : '%d мүнөт',
34915
  h : 'бир саат',
@@ -34939,7 +34819,7 @@ webpackJsonp([3],[
34939
 
34940
 
34941
  /***/ },
34942
- /* 368 */
34943
  /***/ function(module, exports, __webpack_require__) {
34944
 
34945
  //! moment.js locale configuration
@@ -34948,7 +34828,7 @@ webpackJsonp([3],[
34948
  //! author : David Raison : https://github.com/kwisatz
34949
 
34950
  ;(function (global, factory) {
34951
- true ? factory(__webpack_require__(301)) :
34952
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34953
  factory(global.moment)
34954
  }(this, (function (moment) { 'use strict';
@@ -35056,7 +34936,6 @@ webpackJsonp([3],[
35056
  future : processFutureTime,
35057
  past : processPastTime,
35058
  s : 'e puer Sekonnen',
35059
- ss : '%d Sekonnen',
35060
  m : processRelativeTime,
35061
  mm : '%d Minutten',
35062
  h : processRelativeTime,
@@ -35082,7 +34961,7 @@ webpackJsonp([3],[
35082
 
35083
 
35084
  /***/ },
35085
- /* 369 */
35086
  /***/ function(module, exports, __webpack_require__) {
35087
 
35088
  //! moment.js locale configuration
@@ -35090,7 +34969,7 @@ webpackJsonp([3],[
35090
  //! author : Ryan Hart : https://github.com/ryanhart2
35091
 
35092
  ;(function (global, factory) {
35093
- true ? factory(__webpack_require__(301)) :
35094
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35095
  factory(global.moment)
35096
  }(this, (function (moment) { 'use strict';
@@ -35134,7 +35013,6 @@ webpackJsonp([3],[
35134
  future : 'ອີກ %s',
35135
  past : '%sຜ່ານມາ',
35136
  s : 'ບໍ່ເທົ່າໃດວິນາທີ',
35137
- ss : '%d ວິນາທີ' ,
35138
  m : '1 ນາທີ',
35139
  mm : '%d ນາທີ',
35140
  h : '1 ຊົ່ວໂມງ',
@@ -35158,7 +35036,7 @@ webpackJsonp([3],[
35158
 
35159
 
35160
  /***/ },
35161
- /* 370 */
35162
  /***/ function(module, exports, __webpack_require__) {
35163
 
35164
  //! moment.js locale configuration
@@ -35166,14 +35044,13 @@ webpackJsonp([3],[
35166
  //! author : Mindaugas Mozūras : https://github.com/mmozuras
35167
 
35168
  ;(function (global, factory) {
35169
- true ? factory(__webpack_require__(301)) :
35170
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35171
  factory(global.moment)
35172
  }(this, (function (moment) { 'use strict';
35173
 
35174
 
35175
  var units = {
35176
- 'ss' : 'sekundė_sekundžių_sekundes',
35177
  'm' : 'minutė_minutės_minutę',
35178
  'mm': 'minutės_minučių_minutes',
35179
  'h' : 'valanda_valandos_valandą',
@@ -35254,7 +35131,6 @@ webpackJsonp([3],[
35254
  future : 'po %s',
35255
  past : 'prieš %s',
35256
  s : translateSeconds,
35257
- ss : translate,
35258
  m : translateSingular,
35259
  mm : translate,
35260
  h : translateSingular,
@@ -35282,7 +35158,7 @@ webpackJsonp([3],[
35282
 
35283
 
35284
  /***/ },
35285
- /* 371 */
35286
  /***/ function(module, exports, __webpack_require__) {
35287
 
35288
  //! moment.js locale configuration
@@ -35291,14 +35167,13 @@ webpackJsonp([3],[
35291
  //! author : Jānis Elmeris : https://github.com/JanisE
35292
 
35293
  ;(function (global, factory) {
35294
- true ? factory(__webpack_require__(301)) :
35295
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35296
  factory(global.moment)
35297
  }(this, (function (moment) { 'use strict';
35298
 
35299
 
35300
  var units = {
35301
- 'ss': 'sekundes_sekundēm_sekunde_sekundes'.split('_'),
35302
  'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
35303
  'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
35304
  'h': 'stundas_stundām_stunda_stundas'.split('_'),
@@ -35360,7 +35235,6 @@ webpackJsonp([3],[
35360
  future : 'pēc %s',
35361
  past : 'pirms %s',
35362
  s : relativeSeconds,
35363
- ss : relativeTimeWithPlural,
35364
  m : relativeTimeWithSingular,
35365
  mm : relativeTimeWithPlural,
35366
  h : relativeTimeWithSingular,
@@ -35386,7 +35260,7 @@ webpackJsonp([3],[
35386
 
35387
 
35388
  /***/ },
35389
- /* 372 */
35390
  /***/ function(module, exports, __webpack_require__) {
35391
 
35392
  //! moment.js locale configuration
@@ -35394,7 +35268,7 @@ webpackJsonp([3],[
35394
  //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
35395
 
35396
  ;(function (global, factory) {
35397
- true ? factory(__webpack_require__(301)) :
35398
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35399
  factory(global.moment)
35400
  }(this, (function (moment) { 'use strict';
@@ -35402,7 +35276,6 @@ webpackJsonp([3],[
35402
 
35403
  var translator = {
35404
  words: { //Different grammatical cases
35405
- ss: ['sekund', 'sekunda', 'sekundi'],
35406
  m: ['jedan minut', 'jednog minuta'],
35407
  mm: ['minut', 'minuta', 'minuta'],
35408
  h: ['jedan sat', 'jednog sata'],
@@ -35478,7 +35351,6 @@ webpackJsonp([3],[
35478
  future : 'za %s',
35479
  past : 'prije %s',
35480
  s : 'nekoliko sekundi',
35481
- ss : translator.translate,
35482
  m : translator.translate,
35483
  mm : translator.translate,
35484
  h : translator.translate,
@@ -35504,7 +35376,7 @@ webpackJsonp([3],[
35504
 
35505
 
35506
  /***/ },
35507
- /* 373 */
35508
  /***/ function(module, exports, __webpack_require__) {
35509
 
35510
  //! moment.js locale configuration
@@ -35512,7 +35384,7 @@ webpackJsonp([3],[
35512
  //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
35513
 
35514
  ;(function (global, factory) {
35515
- true ? factory(__webpack_require__(301)) :
35516
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35517
  factory(global.moment)
35518
  }(this, (function (moment) { 'use strict';
@@ -35548,7 +35420,6 @@ webpackJsonp([3],[
35548
  future: 'i roto i %s',
35549
  past: '%s i mua',
35550
  s: 'te hēkona ruarua',
35551
- ss: '%d hēkona',
35552
  m: 'he meneti',
35553
  mm: '%d meneti',
35554
  h: 'te haora',
@@ -35574,7 +35445,7 @@ webpackJsonp([3],[
35574
 
35575
 
35576
  /***/ },
35577
- /* 374 */
35578
  /***/ function(module, exports, __webpack_require__) {
35579
 
35580
  //! moment.js locale configuration
@@ -35582,7 +35453,7 @@ webpackJsonp([3],[
35582
  //! author : Borislav Mickov : https://github.com/B0k0
35583
 
35584
  ;(function (global, factory) {
35585
- true ? factory(__webpack_require__(301)) :
35586
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35587
  factory(global.moment)
35588
  }(this, (function (moment) { 'use strict';
@@ -35626,7 +35497,6 @@ webpackJsonp([3],[
35626
  future : 'после %s',
35627
  past : 'пред %s',
35628
  s : 'неколку секунди',
35629
- ss : '%d секунди',
35630
  m : 'минута',
35631
  mm : '%d минути',
35632
  h : 'час',
@@ -35670,7 +35540,7 @@ webpackJsonp([3],[
35670
 
35671
 
35672
  /***/ },
35673
- /* 375 */
35674
  /***/ function(module, exports, __webpack_require__) {
35675
 
35676
  //! moment.js locale configuration
@@ -35678,7 +35548,7 @@ webpackJsonp([3],[
35678
  //! author : Floyd Pink : https://github.com/floydpink
35679
 
35680
  ;(function (global, factory) {
35681
- true ? factory(__webpack_require__(301)) :
35682
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35683
  factory(global.moment)
35684
  }(this, (function (moment) { 'use strict';
@@ -35711,7 +35581,6 @@ webpackJsonp([3],[
35711
  future : '%s കഴിഞ്ഞ്',
35712
  past : '%s മുൻപ്',
35713
  s : 'അൽപ നിമിഷങ്ങൾ',
35714
- ss : '%d സെക്കൻഡ്',
35715
  m : 'ഒരു മിനിറ്റ്',
35716
  mm : '%d മിനിറ്റ്',
35717
  h : 'ഒരു മണിക്കൂർ',
@@ -35757,7 +35626,7 @@ webpackJsonp([3],[
35757
 
35758
 
35759
  /***/ },
35760
- /* 376 */
35761
  /***/ function(module, exports, __webpack_require__) {
35762
 
35763
  //! moment.js locale configuration
@@ -35766,7 +35635,7 @@ webpackJsonp([3],[
35766
  //! author : Vivek Athalye : https://github.com/vnathalye
35767
 
35768
  ;(function (global, factory) {
35769
- true ? factory(__webpack_require__(301)) :
35770
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35771
  factory(global.moment)
35772
  }(this, (function (moment) { 'use strict';
@@ -35803,7 +35672,6 @@ webpackJsonp([3],[
35803
  if (withoutSuffix) {
35804
  switch (string) {
35805
  case 's': output = 'काही सेकंद'; break;
35806
- case 'ss': output = '%d सेकंद'; break;
35807
  case 'm': output = 'एक मिनिट'; break;
35808
  case 'mm': output = '%d मिनिटे'; break;
35809
  case 'h': output = 'एक तास'; break;
@@ -35819,7 +35687,6 @@ webpackJsonp([3],[
35819
  else {
35820
  switch (string) {
35821
  case 's': output = 'काही सेकंदां'; break;
35822
- case 'ss': output = '%d सेकंदां'; break;
35823
  case 'm': output = 'एका मिनिटा'; break;
35824
  case 'mm': output = '%d मिनिटां'; break;
35825
  case 'h': output = 'एका तासा'; break;
@@ -35862,7 +35729,6 @@ webpackJsonp([3],[
35862
  future: '%sमध्ये',
35863
  past: '%sपूर्वी',
35864
  s: relativeTimeMr,
35865
- ss: relativeTimeMr,
35866
  m: relativeTimeMr,
35867
  mm: relativeTimeMr,
35868
  h: relativeTimeMr,
@@ -35924,7 +35790,7 @@ webpackJsonp([3],[
35924
 
35925
 
35926
  /***/ },
35927
- /* 377 */
35928
  /***/ function(module, exports, __webpack_require__) {
35929
 
35930
  //! moment.js locale configuration
@@ -35932,7 +35798,7 @@ webpackJsonp([3],[
35932
  //! author : Weldan Jamili : https://github.com/weldan
35933
 
35934
  ;(function (global, factory) {
35935
- true ? factory(__webpack_require__(301)) :
35936
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35937
  factory(global.moment)
35938
  }(this, (function (moment) { 'use strict';
@@ -35988,7 +35854,6 @@ webpackJsonp([3],[
35988
  future : 'dalam %s',
35989
  past : '%s yang lepas',
35990
  s : 'beberapa saat',
35991
- ss : '%d saat',
35992
  m : 'seminit',
35993
  mm : '%d minit',
35994
  h : 'sejam',
@@ -36012,7 +35877,7 @@ webpackJsonp([3],[
36012
 
36013
 
36014
  /***/ },
36015
- /* 378 */
36016
  /***/ function(module, exports, __webpack_require__) {
36017
 
36018
  //! moment.js locale configuration
@@ -36021,7 +35886,7 @@ webpackJsonp([3],[
36021
  //! author : Weldan Jamili : https://github.com/weldan
36022
 
36023
  ;(function (global, factory) {
36024
- true ? factory(__webpack_require__(301)) :
36025
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36026
  factory(global.moment)
36027
  }(this, (function (moment) { 'use strict';
@@ -36077,7 +35942,6 @@ webpackJsonp([3],[
36077
  future : 'dalam %s',
36078
  past : '%s yang lepas',
36079
  s : 'beberapa saat',
36080
- ss : '%d saat',
36081
  m : 'seminit',
36082
  mm : '%d minit',
36083
  h : 'sejam',
@@ -36100,72 +35964,6 @@ webpackJsonp([3],[
36100
  })));
36101
 
36102
 
36103
- /***/ },
36104
- /* 379 */
36105
- /***/ function(module, exports, __webpack_require__) {
36106
-
36107
- //! moment.js locale configuration
36108
- //! locale : Maltese (Malta) [mt]
36109
- //! author : Alessandro Maruccia : https://github.com/alesma
36110
-
36111
- ;(function (global, factory) {
36112
- true ? factory(__webpack_require__(301)) :
36113
- typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36114
- factory(global.moment)
36115
- }(this, (function (moment) { 'use strict';
36116
-
36117
-
36118
- var mt = moment.defineLocale('mt', {
36119
- months : 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split('_'),
36120
- monthsShort : 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
36121
- weekdays : 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split('_'),
36122
- weekdaysShort : 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
36123
- weekdaysMin : 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
36124
- longDateFormat : {
36125
- LT : 'HH:mm',
36126
- LTS : 'HH:mm:ss',
36127
- L : 'DD/MM/YYYY',
36128
- LL : 'D MMMM YYYY',
36129
- LLL : 'D MMMM YYYY HH:mm',
36130
- LLLL : 'dddd, D MMMM YYYY HH:mm'
36131
- },
36132
- calendar : {
36133
- sameDay : '[Illum fil-]LT',
36134
- nextDay : '[Għada fil-]LT',
36135
- nextWeek : 'dddd [fil-]LT',
36136
- lastDay : '[Il-bieraħ fil-]LT',
36137
- lastWeek : 'dddd [li għadda] [fil-]LT',
36138
- sameElse : 'L'
36139
- },
36140
- relativeTime : {
36141
- future : 'f’ %s',
36142
- past : '%s ilu',
36143
- s : 'ftit sekondi',
36144
- ss : '%d sekondi',
36145
- m : 'minuta',
36146
- mm : '%d minuti',
36147
- h : 'siegħa',
36148
- hh : '%d siegħat',
36149
- d : 'ġurnata',
36150
- dd : '%d ġranet',
36151
- M : 'xahar',
36152
- MM : '%d xhur',
36153
- y : 'sena',
36154
- yy : '%d sni'
36155
- },
36156
- dayOfMonthOrdinalParse : /\d{1,2}º/,
36157
- ordinal: '%dº',
36158
- week : {
36159
- dow : 1, // Monday is the first day of the week.
36160
- doy : 4 // The week that contains Jan 4th is the first week of the year.
36161
- }
36162
- });
36163
-
36164
- return mt;
36165
-
36166
- })));
36167
-
36168
-
36169
  /***/ },
36170
  /* 380 */
36171
  /***/ function(module, exports, __webpack_require__) {
@@ -36177,7 +35975,7 @@ webpackJsonp([3],[
36177
  //! author : Tin Aung Lin : https://github.com/thanyawzinmin
36178
 
36179
  ;(function (global, factory) {
36180
- true ? factory(__webpack_require__(301)) :
36181
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36182
  factory(global.moment)
36183
  }(this, (function (moment) { 'use strict';
@@ -36235,7 +36033,6 @@ webpackJsonp([3],[
36235
  future: 'လာမည့် %s မှာ',
36236
  past: 'လွန်ခဲ့သော %s က',
36237
  s: 'စက္ကန်.အနည်းငယ်',
36238
- ss : '%d စက္ကန့်',
36239
  m: 'တစ်မိနစ်',
36240
  mm: '%d မိနစ်',
36241
  h: 'တစ်နာရီ',
@@ -36278,7 +36075,7 @@ webpackJsonp([3],[
36278
  //! Sigurd Gartmann : https://github.com/sigurdga
36279
 
36280
  ;(function (global, factory) {
36281
- true ? factory(__webpack_require__(301)) :
36282
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36283
  factory(global.moment)
36284
  }(this, (function (moment) { 'use strict';
@@ -36312,7 +36109,6 @@ webpackJsonp([3],[
36312
  future : 'om %s',
36313
  past : '%s siden',
36314
  s : 'noen sekunder',
36315
- ss : '%d sekunder',
36316
  m : 'ett minutt',
36317
  mm : '%d minutter',
36318
  h : 'en time',
@@ -36346,7 +36142,7 @@ webpackJsonp([3],[
36346
  //! author : suvash : https://github.com/suvash
36347
 
36348
  ;(function (global, factory) {
36349
- true ? factory(__webpack_require__(301)) :
36350
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36351
  factory(global.moment)
36352
  }(this, (function (moment) { 'use strict';
@@ -36443,7 +36239,6 @@ webpackJsonp([3],[
36443
  future : '%sमा',
36444
  past : '%s अगाडि',
36445
  s : 'केही क्षण',
36446
- ss : '%d सेकेण्ड',
36447
  m : 'एक मिनेट',
36448
  mm : '%d मिनेट',
36449
  h : 'एक घण्टा',
@@ -36476,7 +36271,7 @@ webpackJsonp([3],[
36476
  //! author : Jacob Middag : https://github.com/middagj
36477
 
36478
  ;(function (global, factory) {
36479
- true ? factory(__webpack_require__(301)) :
36480
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36481
  factory(global.moment)
36482
  }(this, (function (moment) { 'use strict';
@@ -36533,7 +36328,6 @@ webpackJsonp([3],[
36533
  future : 'over %s',
36534
  past : '%s geleden',
36535
  s : 'een paar seconden',
36536
- ss : '%d seconden',
36537
  m : 'één minuut',
36538
  mm : '%d minuten',
36539
  h : 'één uur',
@@ -36570,7 +36364,7 @@ webpackJsonp([3],[
36570
  //! author : Jacob Middag : https://github.com/middagj
36571
 
36572
  ;(function (global, factory) {
36573
- true ? factory(__webpack_require__(301)) :
36574
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36575
  factory(global.moment)
36576
  }(this, (function (moment) { 'use strict';
@@ -36627,7 +36421,6 @@ webpackJsonp([3],[
36627
  future : 'over %s',
36628
  past : '%s geleden',
36629
  s : 'een paar seconden',
36630
- ss : '%d seconden',
36631
  m : 'één minuut',
36632
  mm : '%d minuten',
36633
  h : 'één uur',
@@ -36663,7 +36456,7 @@ webpackJsonp([3],[
36663
  //! author : https://github.com/mechuwind
36664
 
36665
  ;(function (global, factory) {
36666
- true ? factory(__webpack_require__(301)) :
36667
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36668
  factory(global.moment)
36669
  }(this, (function (moment) { 'use strict';
@@ -36695,7 +36488,6 @@ webpackJsonp([3],[
36695
  future : 'om %s',
36696
  past : '%s sidan',
36697
  s : 'nokre sekund',
36698
- ss : '%d sekund',
36699
  m : 'eit minutt',
36700
  mm : '%d minutt',
36701
  h : 'ein time',
@@ -36729,7 +36521,7 @@ webpackJsonp([3],[
36729
  //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
36730
 
36731
  ;(function (global, factory) {
36732
- true ? factory(__webpack_require__(301)) :
36733
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36734
  factory(global.moment)
36735
  }(this, (function (moment) { 'use strict';
@@ -36787,7 +36579,6 @@ webpackJsonp([3],[
36787
  future : '%s ਵਿੱਚ',
36788
  past : '%s ਪਿਛਲੇ',
36789
  s : 'ਕੁਝ ਸਕਿੰਟ',
36790
- ss : '%d ਸਕਿੰਟ',
36791
  m : 'ਇਕ ਮਿੰਟ',
36792
  mm : '%d ਮਿੰਟ',
36793
  h : 'ਇੱਕ ਘੰਟਾ',
@@ -36859,7 +36650,7 @@ webpackJsonp([3],[
36859
  //! author : Rafal Hirsz : https://github.com/evoL
36860
 
36861
  ;(function (global, factory) {
36862
- true ? factory(__webpack_require__(301)) :
36863
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36864
  factory(global.moment)
36865
  }(this, (function (moment) { 'use strict';
@@ -36873,8 +36664,6 @@ webpackJsonp([3],[
36873
  function translate(number, withoutSuffix, key) {
36874
  var result = number + ' ';
36875
  switch (key) {
36876
- case 'ss':
36877
- return result + (plural(number) ? 'sekundy' : 'sekund');
36878
  case 'm':
36879
  return withoutSuffix ? 'minuta' : 'minutę';
36880
  case 'mm':
@@ -36957,7 +36746,6 @@ webpackJsonp([3],[
36957
  future : 'za %s',
36958
  past : '%s temu',
36959
  s : 'kilka sekund',
36960
- ss : translate,
36961
  m : translate,
36962
  mm : translate,
36963
  h : translate,
@@ -36991,7 +36779,7 @@ webpackJsonp([3],[
36991
  //! author : Jefferson : https://github.com/jalex79
36992
 
36993
  ;(function (global, factory) {
36994
- true ? factory(__webpack_require__(301)) :
36995
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36996
  factory(global.moment)
36997
  }(this, (function (moment) { 'use strict';
@@ -37028,7 +36816,6 @@ webpackJsonp([3],[
37028
  future : 'em %s',
37029
  past : 'há %s',
37030
  s : 'segundos',
37031
- ss : '%d segundos',
37032
  m : 'um minuto',
37033
  mm : '%d minutos',
37034
  h : 'uma hora',
@@ -37062,7 +36849,7 @@ webpackJsonp([3],[
37062
  //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
37063
 
37064
  ;(function (global, factory) {
37065
- true ? factory(__webpack_require__(301)) :
37066
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37067
  factory(global.moment)
37068
  }(this, (function (moment) { 'use strict';
@@ -37130,7 +36917,7 @@ webpackJsonp([3],[
37130
  //! author : Valentin Agachi : https://github.com/avaly
37131
 
37132
  ;(function (global, factory) {
37133
- true ? factory(__webpack_require__(301)) :
37134
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37135
  factory(global.moment)
37136
  }(this, (function (moment) { 'use strict';
@@ -37138,7 +36925,6 @@ webpackJsonp([3],[
37138
 
37139
  function relativeTimeWithPlural(number, withoutSuffix, key) {
37140
  var format = {
37141
- 'ss': 'secunde',
37142
  'mm': 'minute',
37143
  'hh': 'ore',
37144
  'dd': 'zile',
@@ -37179,7 +36965,6 @@ webpackJsonp([3],[
37179
  future : 'peste %s',
37180
  past : '%s în urmă',
37181
  s : 'câteva secunde',
37182
- ss : relativeTimeWithPlural,
37183
  m : 'un minut',
37184
  mm : relativeTimeWithPlural,
37185
  h : 'o oră',
@@ -37213,7 +36998,7 @@ webpackJsonp([3],[
37213
  //! author : Коренберг Марк : https://github.com/socketpair
37214
 
37215
  ;(function (global, factory) {
37216
- true ? factory(__webpack_require__(301)) :
37217
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37218
  factory(global.moment)
37219
  }(this, (function (moment) { 'use strict';
@@ -37225,7 +37010,6 @@ webpackJsonp([3],[
37225
  }
37226
  function relativeTimeWithPlural(number, withoutSuffix, key) {
37227
  var format = {
37228
- 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',
37229
  'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
37230
  'hh': 'час_часа_часов',
37231
  'dd': 'день_дня_дней',
@@ -37277,12 +37061,12 @@ webpackJsonp([3],[
37277
  // Выражение, которое соотвествует только сокращённым формам
37278
  monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
37279
  longDateFormat : {
37280
- LT : 'H:mm',
37281
- LTS : 'H:mm:ss',
37282
  L : 'DD.MM.YYYY',
37283
  LL : 'D MMMM YYYY г.',
37284
- LLL : 'D MMMM YYYY г., H:mm',
37285
- LLLL : 'dddd, D MMMM YYYY г., H:mm'
37286
  },
37287
  calendar : {
37288
  sameDay: '[Сегодня в] LT',
@@ -37338,7 +37122,6 @@ webpackJsonp([3],[
37338
  future : 'через %s',
37339
  past : '%s назад',
37340
  s : 'несколько секунд',
37341
- ss : relativeTimeWithPlural,
37342
  m : relativeTimeWithPlural,
37343
  mm : relativeTimeWithPlural,
37344
  h : 'час',
@@ -37401,7 +37184,7 @@ webpackJsonp([3],[
37401
  //! author : Narain Sagar : https://github.com/narainsagar
37402
 
37403
  ;(function (global, factory) {
37404
- true ? factory(__webpack_require__(301)) :
37405
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37406
  factory(global.moment)
37407
  }(this, (function (moment) { 'use strict';
@@ -37467,7 +37250,6 @@ webpackJsonp([3],[
37467
  future : '%s پوء',
37468
  past : '%s اڳ',
37469
  s : 'چند سيڪنڊ',
37470
- ss : '%d سيڪنڊ',
37471
  m : 'هڪ منٽ',
37472
  mm : '%d منٽ',
37473
  h : 'هڪ ڪلاڪ',
@@ -37505,7 +37287,7 @@ webpackJsonp([3],[
37505
  //! authors : Bård Rolstad Henriksen : https://github.com/karamell
37506
 
37507
  ;(function (global, factory) {
37508
- true ? factory(__webpack_require__(301)) :
37509
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37510
  factory(global.moment)
37511
  }(this, (function (moment) { 'use strict';
@@ -37538,7 +37320,6 @@ webpackJsonp([3],[
37538
  future : '%s geažes',
37539
  past : 'maŋit %s',
37540
  s : 'moadde sekunddat',
37541
- ss: '%d sekunddat',
37542
  m : 'okta minuhta',
37543
  mm : '%d minuhtat',
37544
  h : 'okta diimmu',
@@ -37572,7 +37353,7 @@ webpackJsonp([3],[
37572
  //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
37573
 
37574
  ;(function (global, factory) {
37575
- true ? factory(__webpack_require__(301)) :
37576
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37577
  factory(global.moment)
37578
  }(this, (function (moment) { 'use strict';
@@ -37606,7 +37387,6 @@ webpackJsonp([3],[
37606
  future : '%sකින්',
37607
  past : '%sකට පෙර',
37608
  s : 'තත්පර කිහිපය',
37609
- ss : 'තත්පර %d',
37610
  m : 'මිනිත්තුව',
37611
  mm : 'මිනිත්තු %d',
37612
  h : 'පැය',
@@ -37650,7 +37430,7 @@ webpackJsonp([3],[
37650
  //! based on work of petrbela : https://github.com/petrbela
37651
 
37652
  ;(function (global, factory) {
37653
- true ? factory(__webpack_require__(301)) :
37654
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37655
  factory(global.moment)
37656
  }(this, (function (moment) { 'use strict';
@@ -37666,13 +37446,6 @@ webpackJsonp([3],[
37666
  switch (key) {
37667
  case 's': // a few seconds / in a few seconds / a few seconds ago
37668
  return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
37669
- case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
37670
- if (withoutSuffix || isFuture) {
37671
- return result + (plural(number) ? 'sekundy' : 'sekúnd');
37672
- } else {
37673
- return result + 'sekundami';
37674
- }
37675
- break;
37676
  case 'm': // a minute / in a minute / a minute ago
37677
  return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
37678
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
@@ -37778,7 +37551,6 @@ webpackJsonp([3],[
37778
  future : 'za %s',
37779
  past : 'pred %s',
37780
  s : translate,
37781
- ss : translate,
37782
  m : translate,
37783
  mm : translate,
37784
  h : translate,
@@ -37812,7 +37584,7 @@ webpackJsonp([3],[
37812
  //! author : Robert Sedovšek : https://github.com/sedovsek
37813
 
37814
  ;(function (global, factory) {
37815
- true ? factory(__webpack_require__(301)) :
37816
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37817
  factory(global.moment)
37818
  }(this, (function (moment) { 'use strict';
@@ -37823,17 +37595,6 @@ webpackJsonp([3],[
37823
  switch (key) {
37824
  case 's':
37825
  return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';
37826
- case 'ss':
37827
- if (number === 1) {
37828
- result += withoutSuffix ? 'sekundo' : 'sekundi';
37829
- } else if (number === 2) {
37830
- result += withoutSuffix || isFuture ? 'sekundi' : 'sekundah';
37831
- } else if (number < 5) {
37832
- result += withoutSuffix || isFuture ? 'sekunde' : 'sekundah';
37833
- } else {
37834
- result += withoutSuffix || isFuture ? 'sekund' : 'sekund';
37835
- }
37836
- return result;
37837
  case 'm':
37838
  return withoutSuffix ? 'ena minuta' : 'eno minuto';
37839
  case 'mm':
@@ -37957,7 +37718,6 @@ webpackJsonp([3],[
37957
  future : 'čez %s',
37958
  past : 'pred %s',
37959
  s : processRelativeTime,
37960
- ss : processRelativeTime,
37961
  m : processRelativeTime,
37962
  mm : processRelativeTime,
37963
  h : processRelativeTime,
@@ -37993,7 +37753,7 @@ webpackJsonp([3],[
37993
  //! author : Oerd Cukalla : https://github.com/oerd
37994
 
37995
  ;(function (global, factory) {
37996
- true ? factory(__webpack_require__(301)) :
37997
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37998
  factory(global.moment)
37999
  }(this, (function (moment) { 'use strict';
@@ -38033,7 +37793,6 @@ webpackJsonp([3],[
38033
  future : 'në %s',
38034
  past : '%s më parë',
38035
  s : 'disa sekonda',
38036
- ss : '%d sekonda',
38037
  m : 'një minutë',
38038
  mm : '%d minuta',
38039
  h : 'një orë',
@@ -38067,7 +37826,7 @@ webpackJsonp([3],[
38067
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
38068
 
38069
  ;(function (global, factory) {
38070
- true ? factory(__webpack_require__(301)) :
38071
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38072
  factory(global.moment)
38073
  }(this, (function (moment) { 'use strict';
@@ -38075,7 +37834,6 @@ webpackJsonp([3],[
38075
 
38076
  var translator = {
38077
  words: { //Different grammatical cases
38078
- ss: ['sekunda', 'sekunde', 'sekundi'],
38079
  m: ['jedan minut', 'jedne minute'],
38080
  mm: ['minut', 'minute', 'minuta'],
38081
  h: ['jedan sat', 'jednog sata'],
@@ -38150,7 +37908,6 @@ webpackJsonp([3],[
38150
  future : 'za %s',
38151
  past : 'pre %s',
38152
  s : 'nekoliko sekundi',
38153
- ss : translator.translate,
38154
  m : translator.translate,
38155
  mm : translator.translate,
38156
  h : translator.translate,
@@ -38184,7 +37941,7 @@ webpackJsonp([3],[
38184
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
38185
 
38186
  ;(function (global, factory) {
38187
- true ? factory(__webpack_require__(301)) :
38188
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38189
  factory(global.moment)
38190
  }(this, (function (moment) { 'use strict';
@@ -38192,7 +37949,6 @@ webpackJsonp([3],[
38192
 
38193
  var translator = {
38194
  words: { //Different grammatical cases
38195
- ss: ['секунда', 'секунде', 'секунди'],
38196
  m: ['један минут', 'једне минуте'],
38197
  mm: ['минут', 'минуте', 'минута'],
38198
  h: ['један сат', 'једног сата'],
@@ -38267,7 +38023,6 @@ webpackJsonp([3],[
38267
  future : 'за %s',
38268
  past : 'пре %s',
38269
  s : 'неколико секунди',
38270
- ss : translator.translate,
38271
  m : translator.translate,
38272
  mm : translator.translate,
38273
  h : translator.translate,
@@ -38301,7 +38056,7 @@ webpackJsonp([3],[
38301
  //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
38302
 
38303
  ;(function (global, factory) {
38304
- true ? factory(__webpack_require__(301)) :
38305
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38306
  factory(global.moment)
38307
  }(this, (function (moment) { 'use strict';
@@ -38335,7 +38090,6 @@ webpackJsonp([3],[
38335
  future : 'nga %s',
38336
  past : 'wenteka nga %s',
38337
  s : 'emizuzwana lomcane',
38338
- ss : '%d mzuzwana',
38339
  m : 'umzuzu',
38340
  mm : '%d emizuzu',
38341
  h : 'lihora',
@@ -38396,7 +38150,7 @@ webpackJsonp([3],[
38396
  //! author : Jens Alm : https://github.com/ulmus
38397
 
38398
  ;(function (global, factory) {
38399
- true ? factory(__webpack_require__(301)) :
38400
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38401
  factory(global.moment)
38402
  }(this, (function (moment) { 'use strict';
@@ -38430,7 +38184,6 @@ webpackJsonp([3],[
38430
  future : 'om %s',
38431
  past : 'för %s sedan',
38432
  s : 'några sekunder',
38433
- ss : '%d sekunder',
38434
  m : 'en minut',
38435
  mm : '%d minuter',
38436
  h : 'en timme',
@@ -38471,7 +38224,7 @@ webpackJsonp([3],[
38471
  //! author : Fahad Kassim : https://github.com/fadsel
38472
 
38473
  ;(function (global, factory) {
38474
- true ? factory(__webpack_require__(301)) :
38475
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38476
  factory(global.moment)
38477
  }(this, (function (moment) { 'use strict';
@@ -38504,7 +38257,6 @@ webpackJsonp([3],[
38504
  future : '%s baadaye',
38505
  past : 'tokea %s',
38506
  s : 'hivi punde',
38507
- ss : 'sekunde %d',
38508
  m : 'dakika moja',
38509
  mm : 'dakika %d',
38510
  h : 'saa limoja',
@@ -38536,7 +38288,7 @@ webpackJsonp([3],[
38536
  //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
38537
 
38538
  ;(function (global, factory) {
38539
- true ? factory(__webpack_require__(301)) :
38540
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38541
  factory(global.moment)
38542
  }(this, (function (moment) { 'use strict';
@@ -38593,7 +38345,6 @@ webpackJsonp([3],[
38593
  future : '%s இல்',
38594
  past : '%s முன்',
38595
  s : 'ஒரு சில விநாடிகள்',
38596
- ss : '%d விநாடிகள்',
38597
  m : 'ஒரு நிமிடம்',
38598
  mm : '%d நிமிடங்கள்',
38599
  h : 'ஒரு மணி நேரம்',
@@ -38672,7 +38423,7 @@ webpackJsonp([3],[
38672
  //! author : Krishna Chaitanya Thota : https://github.com/kcthota
38673
 
38674
  ;(function (global, factory) {
38675
- true ? factory(__webpack_require__(301)) :
38676
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38677
  factory(global.moment)
38678
  }(this, (function (moment) { 'use strict';
@@ -38705,7 +38456,6 @@ webpackJsonp([3],[
38705
  future : '%s లో',
38706
  past : '%s క్రితం',
38707
  s : 'కొన్ని క్షణాలు',
38708
- ss : '%d సెకన్లు',
38709
  m : 'ఒక నిమిషం',
38710
  mm : '%d నిమిషాలు',
38711
  h : 'ఒక గంట',
@@ -38768,7 +38518,7 @@ webpackJsonp([3],[
38768
  //! author : Onorio De J. Afonso : https://github.com/marobo
38769
 
38770
  ;(function (global, factory) {
38771
- true ? factory(__webpack_require__(301)) :
38772
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38773
  factory(global.moment)
38774
  }(this, (function (moment) { 'use strict';
@@ -38800,7 +38550,6 @@ webpackJsonp([3],[
38800
  future : 'iha %s',
38801
  past : '%s liuba',
38802
  s : 'minutu balun',
38803
- ss : 'minutu %d',
38804
  m : 'minutu ida',
38805
  mm : 'minutus %d',
38806
  h : 'horas ida',
@@ -38841,7 +38590,7 @@ webpackJsonp([3],[
38841
  //! author : Kridsada Thanabulpong : https://github.com/sirn
38842
 
38843
  ;(function (global, factory) {
38844
- true ? factory(__webpack_require__(301)) :
38845
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38846
  factory(global.moment)
38847
  }(this, (function (moment) { 'use strict';
@@ -38886,7 +38635,6 @@ webpackJsonp([3],[
38886
  future : 'อีก %s',
38887
  past : '%sที่แล้ว',
38888
  s : 'ไม่กี่วินาที',
38889
- ss : '%d วินาที',
38890
  m : '1 นาที',
38891
  mm : '%d นาที',
38892
  h : '1 ชั่วโมง',
@@ -38914,7 +38662,7 @@ webpackJsonp([3],[
38914
  //! author : Dan Hagman : https://github.com/hagmandan
38915
 
38916
  ;(function (global, factory) {
38917
- true ? factory(__webpack_require__(301)) :
38918
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38919
  factory(global.moment)
38920
  }(this, (function (moment) { 'use strict';
@@ -38946,7 +38694,6 @@ webpackJsonp([3],[
38946
  future : 'sa loob ng %s',
38947
  past : '%s ang nakalipas',
38948
  s : 'ilang segundo',
38949
- ss : '%d segundo',
38950
  m : 'isang minuto',
38951
  mm : '%d minuto',
38952
  h : 'isang oras',
@@ -38982,7 +38729,7 @@ webpackJsonp([3],[
38982
  //! author : Dominika Kruk : https://github.com/amaranthrose
38983
 
38984
  ;(function (global, factory) {
38985
- true ? factory(__webpack_require__(301)) :
38986
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38987
  factory(global.moment)
38988
  }(this, (function (moment) { 'use strict';
@@ -39017,8 +38764,6 @@ webpackJsonp([3],[
39017
  function translate(number, withoutSuffix, string, isFuture) {
39018
  var numberNoun = numberAsNoun(number);
39019
  switch (string) {
39020
- case 'ss':
39021
- return numberNoun + ' lup';
39022
  case 'mm':
39023
  return numberNoun + ' tup';
39024
  case 'hh':
@@ -39076,7 +38821,6 @@ webpackJsonp([3],[
39076
  future : translateFuture,
39077
  past : translatePast,
39078
  s : 'puS lup',
39079
- ss : translate,
39080
  m : 'wa’ tup',
39081
  mm : translate,
39082
  h : 'wa’ rep',
@@ -39111,7 +38855,7 @@ webpackJsonp([3],[
39111
  //! Burak Yiğit Kaya: https://github.com/BYK
39112
 
39113
  ;(function (global, factory) {
39114
- true ? factory(__webpack_require__(301)) :
39115
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39116
  factory(global.moment)
39117
  }(this, (function (moment) { 'use strict';
@@ -39164,7 +38908,6 @@ webpackJsonp([3],[
39164
  future : '%s sonra',
39165
  past : '%s önce',
39166
  s : 'birkaç saniye',
39167
- ss : '%d saniye',
39168
  m : 'bir dakika',
39169
  mm : '%d dakika',
39170
  h : 'bir saat',
@@ -39207,7 +38950,7 @@ webpackJsonp([3],[
39207
  //! author : Iustì Canun
39208
 
39209
  ;(function (global, factory) {
39210
- true ? factory(__webpack_require__(301)) :
39211
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39212
  factory(global.moment)
39213
  }(this, (function (moment) { 'use strict';
@@ -39252,7 +38995,6 @@ webpackJsonp([3],[
39252
  future : 'osprei %s',
39253
  past : 'ja%s',
39254
  s : processRelativeTime,
39255
- ss : processRelativeTime,
39256
  m : processRelativeTime,
39257
  mm : processRelativeTime,
39258
  h : processRelativeTime,
@@ -39275,7 +39017,6 @@ webpackJsonp([3],[
39275
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
39276
  var format = {
39277
  's': ['viensas secunds', '\'iensas secunds'],
39278
- 'ss': [number + ' secunds', '' + number + ' secunds'],
39279
  'm': ['\'n míut', '\'iens míut'],
39280
  'mm': [number + ' míuts', '' + number + ' míuts'],
39281
  'h': ['\'n þora', '\'iensa þora'],
@@ -39304,7 +39045,7 @@ webpackJsonp([3],[
39304
  //! author : Abdel Said : https://github.com/abdelsaid
39305
 
39306
  ;(function (global, factory) {
39307
- true ? factory(__webpack_require__(301)) :
39308
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39309
  factory(global.moment)
39310
  }(this, (function (moment) { 'use strict';
@@ -39336,7 +39077,6 @@ webpackJsonp([3],[
39336
  future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
39337
  past : 'ⵢⴰⵏ %s',
39338
  s : 'ⵉⵎⵉⴽ',
39339
- ss : '%d ⵉⵎⵉⴽ',
39340
  m : 'ⵎⵉⵏⵓⴺ',
39341
  mm : '%d ⵎⵉⵏⵓⴺ',
39342
  h : 'ⵙⴰⵄⴰ',
@@ -39368,7 +39108,7 @@ webpackJsonp([3],[
39368
  //! author : Abdel Said : https://github.com/abdelsaid
39369
 
39370
  ;(function (global, factory) {
39371
- true ? factory(__webpack_require__(301)) :
39372
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39373
  factory(global.moment)
39374
  }(this, (function (moment) { 'use strict';
@@ -39400,7 +39140,6 @@ webpackJsonp([3],[
39400
  future : 'dadkh s yan %s',
39401
  past : 'yan %s',
39402
  s : 'imik',
39403
- ss : '%d imik',
39404
  m : 'minuḍ',
39405
  mm : '%d minuḍ',
39406
  h : 'saɛa',
@@ -39433,7 +39172,7 @@ webpackJsonp([3],[
39433
  //! Author : Menelion Elensúle : https://github.com/Oire
39434
 
39435
  ;(function (global, factory) {
39436
- true ? factory(__webpack_require__(301)) :
39437
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39438
  factory(global.moment)
39439
  }(this, (function (moment) { 'use strict';
@@ -39445,7 +39184,6 @@ webpackJsonp([3],[
39445
  }
39446
  function relativeTimeWithPlural(number, withoutSuffix, key) {
39447
  var format = {
39448
- 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',
39449
  'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
39450
  'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
39451
  'dd': 'день_дні_днів',
@@ -39527,7 +39265,6 @@ webpackJsonp([3],[
39527
  future : 'за %s',
39528
  past : '%s тому',
39529
  s : 'декілька секунд',
39530
- ss : relativeTimeWithPlural,
39531
  m : relativeTimeWithPlural,
39532
  mm : relativeTimeWithPlural,
39533
  h : 'годину',
@@ -39591,7 +39328,7 @@ webpackJsonp([3],[
39591
  //! author : Zack : https://github.com/ZackVision
39592
 
39593
  ;(function (global, factory) {
39594
- true ? factory(__webpack_require__(301)) :
39595
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39596
  factory(global.moment)
39597
  }(this, (function (moment) { 'use strict';
@@ -39657,7 +39394,6 @@ webpackJsonp([3],[
39657
  future : '%s بعد',
39658
  past : '%s قبل',
39659
  s : 'چند سیکنڈ',
39660
- ss : '%d سیکنڈ',
39661
  m : 'ایک منٹ',
39662
  mm : '%d منٹ',
39663
  h : 'ایک گھنٹہ',
@@ -39695,7 +39431,7 @@ webpackJsonp([3],[
39695
  //! author : Sardor Muminov : https://github.com/muminoff
39696
 
39697
  ;(function (global, factory) {
39698
- true ? factory(__webpack_require__(301)) :
39699
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39700
  factory(global.moment)
39701
  }(this, (function (moment) { 'use strict';
@@ -39727,7 +39463,6 @@ webpackJsonp([3],[
39727
  future : 'Якин %s ичида',
39728
  past : 'Бир неча %s олдин',
39729
  s : 'фурсат',
39730
- ss : '%d фурсат',
39731
  m : 'бир дакика',
39732
  mm : '%d дакика',
39733
  h : 'бир соат',
@@ -39759,7 +39494,7 @@ webpackJsonp([3],[
39759
  //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
39760
 
39761
  ;(function (global, factory) {
39762
- true ? factory(__webpack_require__(301)) :
39763
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39764
  factory(global.moment)
39765
  }(this, (function (moment) { 'use strict';
@@ -39791,7 +39526,6 @@ webpackJsonp([3],[
39791
  future : 'Yaqin %s ichida',
39792
  past : 'Bir necha %s oldin',
39793
  s : 'soniya',
39794
- ss : '%d soniya',
39795
  m : 'bir daqiqa',
39796
  mm : '%d daqiqa',
39797
  h : 'bir soat',
@@ -39823,7 +39557,7 @@ webpackJsonp([3],[
39823
  //! author : Bang Nguyen : https://github.com/bangnk
39824
 
39825
  ;(function (global, factory) {
39826
- true ? factory(__webpack_require__(301)) :
39827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39828
  factory(global.moment)
39829
  }(this, (function (moment) { 'use strict';
@@ -39872,7 +39606,6 @@ webpackJsonp([3],[
39872
  future : '%s tới',
39873
  past : '%s trước',
39874
  s : 'vài giây',
39875
- ss : '%d giây' ,
39876
  m : 'một phút',
39877
  mm : '%d phút',
39878
  h : 'một giờ',
@@ -39908,7 +39641,7 @@ webpackJsonp([3],[
39908
  //! author : Andrew Hood : https://github.com/andrewhood125
39909
 
39910
  ;(function (global, factory) {
39911
- true ? factory(__webpack_require__(301)) :
39912
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39913
  factory(global.moment)
39914
  }(this, (function (moment) { 'use strict';
@@ -39941,7 +39674,6 @@ webpackJsonp([3],[
39941
  future : 'í~ñ %s',
39942
  past : '%s á~gó',
39943
  s : 'á ~féw ~sécó~ñds',
39944
- ss : '%d s~écóñ~ds',
39945
  m : 'á ~míñ~úté',
39946
  mm : '%d m~íñú~tés',
39947
  h : 'á~ñ hó~úr',
@@ -39982,7 +39714,7 @@ webpackJsonp([3],[
39982
  //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
39983
 
39984
  ;(function (global, factory) {
39985
- true ? factory(__webpack_require__(301)) :
39986
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39987
  factory(global.moment)
39988
  }(this, (function (moment) { 'use strict';
@@ -40014,7 +39746,6 @@ webpackJsonp([3],[
40014
  future : 'ní %s',
40015
  past : '%s kọjá',
40016
  s : 'ìsẹjú aayá die',
40017
- ss :'aayá %d',
40018
  m : 'ìsẹjú kan',
40019
  mm : 'ìsẹjú %d',
40020
  h : 'wákati kan',
@@ -40049,7 +39780,7 @@ webpackJsonp([3],[
40049
  //! author : Zeno Zeng : https://github.com/zenozeng
40050
 
40051
  ;(function (global, factory) {
40052
- true ? factory(__webpack_require__(301)) :
40053
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
40054
  factory(global.moment)
40055
  }(this, (function (moment) { 'use strict';
@@ -40064,14 +39795,14 @@ webpackJsonp([3],[
40064
  longDateFormat : {
40065
  LT : 'HH:mm',
40066
  LTS : 'HH:mm:ss',
40067
- L : 'YYYY/MM/DD',
40068
- LL : 'YYYY年M月D日',
40069
- LLL : 'YYYY年M月D日Ah点mm分',
40070
- LLLL : 'YYYY年M月D日ddddAh点mm分',
40071
- l : 'YYYY/M/D',
40072
- ll : 'YYYY年M月D日',
40073
- lll : 'YYYY年M月D日 HH:mm',
40074
- llll : 'YYYY年M月D日dddd HH:mm'
40075
  },
40076
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
40077
  meridiemHour: function (hour, meridiem) {
@@ -40132,7 +39863,6 @@ webpackJsonp([3],[
40132
  future : '%s内',
40133
  past : '%s前',
40134
  s : '几秒',
40135
- ss : '%d 秒',
40136
  m : '1 分钟',
40137
  mm : '%d 分钟',
40138
  h : '1 小时',
@@ -40167,7 +39897,7 @@ webpackJsonp([3],[
40167
  //! author : Konstantin : https://github.com/skfd
40168
 
40169
  ;(function (global, factory) {
40170
- true ? factory(__webpack_require__(301)) :
40171
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
40172
  factory(global.moment)
40173
  }(this, (function (moment) { 'use strict';
@@ -40182,14 +39912,14 @@ webpackJsonp([3],[
40182
  longDateFormat : {
40183
  LT : 'HH:mm',
40184
  LTS : 'HH:mm:ss',
40185
- L : 'YYYY/MM/DD',
40186
- LL : 'YYYY年M月D日',
40187
- LLL : 'YYYY年M月D日 HH:mm',
40188
- LLLL : 'YYYY年M月D日dddd HH:mm',
40189
- l : 'YYYY/M/D',
40190
- ll : 'YYYY年M月D日',
40191
- lll : 'YYYY年M月D日 HH:mm',
40192
- llll : 'YYYY年M月D日dddd HH:mm'
40193
  },
40194
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
40195
  meridiemHour : function (hour, meridiem) {
@@ -40248,7 +39978,6 @@ webpackJsonp([3],[
40248
  future : '%s內',
40249
  past : '%s前',
40250
  s : '幾秒',
40251
- ss : '%d 秒',
40252
  m : '1 分鐘',
40253
  mm : '%d 分鐘',
40254
  h : '1 小時',
@@ -40277,7 +40006,7 @@ webpackJsonp([3],[
40277
  //! author : Chris Lam : https://github.com/hehachris
40278
 
40279
  ;(function (global, factory) {
40280
- true ? factory(__webpack_require__(301)) :
40281
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
40282
  factory(global.moment)
40283
  }(this, (function (moment) { 'use strict';
@@ -40292,14 +40021,14 @@ webpackJsonp([3],[
40292
  longDateFormat : {
40293
  LT : 'HH:mm',
40294
  LTS : 'HH:mm:ss',
40295
- L : 'YYYY/MM/DD',
40296
- LL : 'YYYY年M月D日',
40297
- LLL : 'YYYY年M月D日 HH:mm',
40298
- LLLL : 'YYYY年M月D日dddd HH:mm',
40299
- l : 'YYYY/M/D',
40300
- ll : 'YYYY年M月D日',
40301
- lll : 'YYYY年M月D日 HH:mm',
40302
- llll : 'YYYY年M月D日dddd HH:mm'
40303
  },
40304
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
40305
  meridiemHour : function (hour, meridiem) {
@@ -40358,7 +40087,6 @@ webpackJsonp([3],[
40358
  future : '%s內',
40359
  past : '%s前',
40360
  s : '幾秒',
40361
- ss : '%d 秒',
40362
  m : '1 分鐘',
40363
  mm : '%d 分鐘',
40364
  h : '1 小時',
@@ -50634,7 +50362,7 @@ webpackJsonp([3],[
50634
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
50635
  __webpack_require__(276),
50636
  __webpack_require__(275),
50637
- __webpack_require__(301)
50638
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function ( // eslint-disable-line func-names
50639
  mp,
50640
  jQuery,
23901
  /* 298 */,
23902
  /* 299 */,
23903
  /* 300 */,
23904
+ /* 301 */,
23905
+ /* 302 */
23906
  /***/ function(module, exports, __webpack_require__) {
23907
 
23908
  var require;/* WEBPACK VAR INJECTION */(function(module) {//! moment.js
23909
+ //! version : 2.19.3
23910
  //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
23911
  //! license : MIT
23912
  //! momentjs.com
24566
 
24567
  // any word (or two) characters or numbers including two/three word month in arabic.
24568
  // includes scottish gaelic two word and hyphenated months
24569
+ var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;
24570
 
24571
 
24572
  var regexes = {};
25749
  try {
25750
  oldLocale = globalLocale._abbr;
25751
  var aliasedRequire = require;
25752
+ __webpack_require__(304)("./" + name);
25753
  getSetGlobalLocale(oldLocale);
25754
  } catch (e) {}
25755
  }
25936
  // note: all values past the year are optional and will default to the lowest possible value.
25937
  // [year, month, day , hour, minute, second, millisecond]
25938
  function configFromArray (config) {
25939
+ var i, date, input = [], currentDate, yearToUse;
25940
 
25941
  if (config._d) {
25942
  return;
25986
  }
25987
 
25988
  config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
 
 
25989
  // Apply timezone offset from input. The actual utcOffset can be changed
25990
  // with parseZone.
25991
  if (config._tzm != null) {
25997
  }
25998
 
25999
  // check for mismatching day of week
26000
+ if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== config._d.getDay()) {
26001
  getParsingFlags(config).weekdayMismatch = true;
26002
  }
26003
  }
27205
  return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
27206
  }
27207
 
27208
+ function toISOString() {
27209
  if (!this.isValid()) {
27210
  return null;
27211
  }
27212
+ var m = this.clone().utc();
 
27213
  if (m.year() < 0 || m.year() > 9999) {
27214
+ return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
27215
  }
27216
  if (isFunction(Date.prototype.toISOString)) {
27217
  // native implementation is ~50x faster, use it when we can
27218
+ return this.toDate().toISOString();
 
 
 
 
27219
  }
27220
+ return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
27221
  }
27222
 
27223
  /**
27573
 
27574
  addParseToken(['D', 'DD'], DATE);
27575
  addParseToken('Do', function (input, array) {
27576
+ array[DATE] = toInt(input.match(match1to2)[0], 10);
27577
  });
27578
 
27579
  // MOMENTS
28385
  // Side effect imports
28386
 
28387
 
28388
+ hooks.version = '2.19.3';
28389
 
28390
  setHookCallback(createLocal);
28391
 
28417
  hooks.calendarFormat = getCalendarFormat;
28418
  hooks.prototype = proto;
28419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28420
  return hooks;
28421
 
28422
  })));
28423
 
28424
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(303)(module)))
28425
 
28426
  /***/ },
28427
+ /* 303 */
28428
  /***/ function(module, exports) {
28429
 
28430
  module.exports = function(module) {
28440
 
28441
 
28442
  /***/ },
28443
+ /* 304 */
28444
  /***/ function(module, exports, __webpack_require__) {
28445
 
28446
  var map = {
28447
+ "./af": 305,
28448
+ "./af.js": 305,
28449
+ "./ar": 306,
28450
+ "./ar-dz": 307,
28451
+ "./ar-dz.js": 307,
28452
+ "./ar-kw": 308,
28453
+ "./ar-kw.js": 308,
28454
+ "./ar-ly": 309,
28455
+ "./ar-ly.js": 309,
28456
+ "./ar-ma": 310,
28457
+ "./ar-ma.js": 310,
28458
+ "./ar-sa": 311,
28459
+ "./ar-sa.js": 311,
28460
+ "./ar-tn": 312,
28461
+ "./ar-tn.js": 312,
28462
+ "./ar.js": 306,
28463
+ "./az": 313,
28464
+ "./az.js": 313,
28465
+ "./be": 314,
28466
+ "./be.js": 314,
28467
+ "./bg": 315,
28468
+ "./bg.js": 315,
28469
+ "./bm": 316,
28470
+ "./bm.js": 316,
28471
+ "./bn": 317,
28472
+ "./bn.js": 317,
28473
+ "./bo": 318,
28474
+ "./bo.js": 318,
28475
+ "./br": 319,
28476
+ "./br.js": 319,
28477
+ "./bs": 320,
28478
+ "./bs.js": 320,
28479
+ "./ca": 321,
28480
+ "./ca.js": 321,
28481
+ "./cs": 322,
28482
+ "./cs.js": 322,
28483
+ "./cv": 323,
28484
+ "./cv.js": 323,
28485
+ "./cy": 324,
28486
+ "./cy.js": 324,
28487
+ "./da": 325,
28488
+ "./da.js": 325,
28489
+ "./de": 326,
28490
+ "./de-at": 327,
28491
+ "./de-at.js": 327,
28492
+ "./de-ch": 328,
28493
+ "./de-ch.js": 328,
28494
+ "./de.js": 326,
28495
+ "./dv": 329,
28496
+ "./dv.js": 329,
28497
+ "./el": 330,
28498
+ "./el.js": 330,
28499
+ "./en-au": 331,
28500
+ "./en-au.js": 331,
28501
+ "./en-ca": 332,
28502
+ "./en-ca.js": 332,
28503
+ "./en-gb": 333,
28504
+ "./en-gb.js": 333,
28505
+ "./en-ie": 334,
28506
+ "./en-ie.js": 334,
28507
+ "./en-nz": 335,
28508
+ "./en-nz.js": 335,
28509
+ "./eo": 336,
28510
+ "./eo.js": 336,
28511
+ "./es": 337,
28512
+ "./es-do": 338,
28513
+ "./es-do.js": 338,
28514
+ "./es-us": 339,
28515
+ "./es-us.js": 339,
28516
+ "./es.js": 337,
28517
+ "./et": 340,
28518
+ "./et.js": 340,
28519
+ "./eu": 341,
28520
+ "./eu.js": 341,
28521
+ "./fa": 342,
28522
+ "./fa.js": 342,
28523
+ "./fi": 343,
28524
+ "./fi.js": 343,
28525
+ "./fo": 344,
28526
+ "./fo.js": 344,
28527
+ "./fr": 345,
28528
+ "./fr-ca": 346,
28529
+ "./fr-ca.js": 346,
28530
+ "./fr-ch": 347,
28531
+ "./fr-ch.js": 347,
28532
+ "./fr.js": 345,
28533
+ "./fy": 348,
28534
+ "./fy.js": 348,
28535
+ "./gd": 349,
28536
+ "./gd.js": 349,
28537
+ "./gl": 350,
28538
+ "./gl.js": 350,
28539
+ "./gom-latn": 351,
28540
+ "./gom-latn.js": 351,
28541
+ "./gu": 352,
28542
+ "./gu.js": 352,
28543
+ "./he": 353,
28544
+ "./he.js": 353,
28545
+ "./hi": 354,
28546
+ "./hi.js": 354,
28547
+ "./hr": 355,
28548
+ "./hr.js": 355,
28549
+ "./hu": 356,
28550
+ "./hu.js": 356,
28551
+ "./hy-am": 357,
28552
+ "./hy-am.js": 357,
28553
+ "./id": 358,
28554
+ "./id.js": 358,
28555
+ "./is": 359,
28556
+ "./is.js": 359,
28557
+ "./it": 360,
28558
+ "./it.js": 360,
28559
+ "./ja": 361,
28560
+ "./ja.js": 361,
28561
+ "./jv": 362,
28562
+ "./jv.js": 362,
28563
+ "./ka": 363,
28564
+ "./ka.js": 363,
28565
+ "./kk": 364,
28566
+ "./kk.js": 364,
28567
+ "./km": 365,
28568
+ "./km.js": 365,
28569
+ "./kn": 366,
28570
+ "./kn.js": 366,
28571
+ "./ko": 367,
28572
+ "./ko.js": 367,
28573
+ "./ky": 368,
28574
+ "./ky.js": 368,
28575
+ "./lb": 369,
28576
+ "./lb.js": 369,
28577
+ "./lo": 370,
28578
+ "./lo.js": 370,
28579
+ "./lt": 371,
28580
+ "./lt.js": 371,
28581
+ "./lv": 372,
28582
+ "./lv.js": 372,
28583
+ "./me": 373,
28584
+ "./me.js": 373,
28585
+ "./mi": 374,
28586
+ "./mi.js": 374,
28587
+ "./mk": 375,
28588
+ "./mk.js": 375,
28589
+ "./ml": 376,
28590
+ "./ml.js": 376,
28591
+ "./mr": 377,
28592
+ "./mr.js": 377,
28593
+ "./ms": 378,
28594
+ "./ms-my": 379,
28595
+ "./ms-my.js": 379,
28596
+ "./ms.js": 378,
 
 
28597
  "./my": 380,
28598
  "./my.js": 380,
28599
  "./nb": 381,
28692
  };
28693
  webpackContext.resolve = webpackContextResolve;
28694
  module.exports = webpackContext;
28695
+ webpackContext.id = 304;
28696
 
28697
 
28698
  /***/ },
28699
+ /* 305 */
28700
  /***/ function(module, exports, __webpack_require__) {
28701
 
28702
  //! moment.js locale configuration
28704
  //! author : Werner Mollentze : https://github.com/wernerm
28705
 
28706
  ;(function (global, factory) {
28707
+ true ? factory(__webpack_require__(302)) :
28708
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28709
  factory(global.moment)
28710
  }(this, (function (moment) { 'use strict';
28747
  future : 'oor %s',
28748
  past : '%s gelede',
28749
  s : '\'n paar sekondes',
 
28750
  m : '\'n minuut',
28751
  mm : '%d minute',
28752
  h : '\'n uur',
28774
 
28775
 
28776
  /***/ },
28777
+ /* 306 */
28778
  /***/ function(module, exports, __webpack_require__) {
28779
 
28780
  //! moment.js locale configuration
28784
  //! author : forabi https://github.com/forabi
28785
 
28786
  ;(function (global, factory) {
28787
+ true ? factory(__webpack_require__(302)) :
28788
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28789
  factory(global.moment)
28790
  }(this, (function (moment) { 'use strict';
28836
  };
28837
  };
28838
  var months = [
28839
+ 'كانون الثاني يناير',
28840
+ 'شباط فبراير',
28841
+ 'آذار مارس',
28842
+ 'نيسان أبريل',
28843
+ 'أيار مايو',
28844
+ 'حزيران يونيو',
28845
+ 'تموز يوليو',
28846
+ 'آب أغسطس',
28847
+ 'أيلول سبتمبر',
28848
+ 'تشرين الأول أكتوبر',
28849
+ 'تشرين الثاني نوفمبر',
28850
+ 'كانون الأول ديسمبر'
28851
  ];
28852
 
28853
  var ar = moment.defineLocale('ar', {
28888
  future : 'بعد %s',
28889
  past : 'منذ %s',
28890
  s : pluralize('s'),
 
28891
  m : pluralize('m'),
28892
  mm : pluralize('m'),
28893
  h : pluralize('h'),
28921
 
28922
 
28923
  /***/ },
28924
+ /* 307 */
28925
  /***/ function(module, exports, __webpack_require__) {
28926
 
28927
  //! moment.js locale configuration
28929
  //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme
28930
 
28931
  ;(function (global, factory) {
28932
+ true ? factory(__webpack_require__(302)) :
28933
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28934
  factory(global.moment)
28935
  }(this, (function (moment) { 'use strict';
28962
  future : 'في %s',
28963
  past : 'منذ %s',
28964
  s : 'ثوان',
 
28965
  m : 'دقيقة',
28966
  mm : '%d دقائق',
28967
  h : 'ساعة',
28985
 
28986
 
28987
  /***/ },
28988
+ /* 308 */
28989
  /***/ function(module, exports, __webpack_require__) {
28990
 
28991
  //! moment.js locale configuration
28993
  //! author : Nusret Parlak: https://github.com/nusretparlak
28994
 
28995
  ;(function (global, factory) {
28996
+ true ? factory(__webpack_require__(302)) :
28997
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
28998
  factory(global.moment)
28999
  }(this, (function (moment) { 'use strict';
29026
  future : 'في %s',
29027
  past : 'منذ %s',
29028
  s : 'ثوان',
 
29029
  m : 'دقيقة',
29030
  mm : '%d دقائق',
29031
  h : 'ساعة',
29049
 
29050
 
29051
  /***/ },
29052
+ /* 309 */
29053
  /***/ function(module, exports, __webpack_require__) {
29054
 
29055
  //! moment.js locale configuration
29057
  //! author : Ali Hmer: https://github.com/kikoanis
29058
 
29059
  ;(function (global, factory) {
29060
+ true ? factory(__webpack_require__(302)) :
29061
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29062
  factory(global.moment)
29063
  }(this, (function (moment) { 'use strict';
29149
  future : 'بعد %s',
29150
  past : 'منذ %s',
29151
  s : pluralize('s'),
 
29152
  m : pluralize('m'),
29153
  mm : pluralize('m'),
29154
  h : pluralize('h'),
29180
 
29181
 
29182
  /***/ },
29183
+ /* 310 */
29184
  /***/ function(module, exports, __webpack_require__) {
29185
 
29186
  //! moment.js locale configuration
29189
  //! author : Abdel Said : https://github.com/abdelsaid
29190
 
29191
  ;(function (global, factory) {
29192
+ true ? factory(__webpack_require__(302)) :
29193
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29194
  factory(global.moment)
29195
  }(this, (function (moment) { 'use strict';
29222
  future : 'في %s',
29223
  past : 'منذ %s',
29224
  s : 'ثوان',
 
29225
  m : 'دقيقة',
29226
  mm : '%d دقائق',
29227
  h : 'ساعة',
29245
 
29246
 
29247
  /***/ },
29248
+ /* 311 */
29249
  /***/ function(module, exports, __webpack_require__) {
29250
 
29251
  //! moment.js locale configuration
29253
  //! author : Suhail Alkowaileet : https://github.com/xsoh
29254
 
29255
  ;(function (global, factory) {
29256
+ true ? factory(__webpack_require__(302)) :
29257
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29258
  factory(global.moment)
29259
  }(this, (function (moment) { 'use strict';
29322
  future : 'في %s',
29323
  past : 'منذ %s',
29324
  s : 'ثوان',
 
29325
  m : 'دقيقة',
29326
  mm : '%d دقائق',
29327
  h : 'ساعة',
29355
 
29356
 
29357
  /***/ },
29358
+ /* 312 */
29359
  /***/ function(module, exports, __webpack_require__) {
29360
 
29361
  //! moment.js locale configuration
29363
  //! author : Nader Toukabri : https://github.com/naderio
29364
 
29365
  ;(function (global, factory) {
29366
+ true ? factory(__webpack_require__(302)) :
29367
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29368
  factory(global.moment)
29369
  }(this, (function (moment) { 'use strict';
29396
  future: 'في %s',
29397
  past: 'منذ %s',
29398
  s: 'ثوان',
 
29399
  m: 'دقيقة',
29400
  mm: '%d دقائق',
29401
  h: 'ساعة',
29419
 
29420
 
29421
  /***/ },
29422
+ /* 313 */
29423
  /***/ function(module, exports, __webpack_require__) {
29424
 
29425
  //! moment.js locale configuration
29427
  //! author : topchiyev : https://github.com/topchiyev
29428
 
29429
  ;(function (global, factory) {
29430
+ true ? factory(__webpack_require__(302)) :
29431
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29432
  factory(global.moment)
29433
  }(this, (function (moment) { 'use strict';
29481
  future : '%s sonra',
29482
  past : '%s əvvəl',
29483
  s : 'birneçə saniyyə',
 
29484
  m : 'bir dəqiqə',
29485
  mm : '%d dəqiqə',
29486
  h : 'bir saat',
29529
 
29530
 
29531
  /***/ },
29532
+ /* 314 */
29533
  /***/ function(module, exports, __webpack_require__) {
29534
 
29535
  //! moment.js locale configuration
29539
  //! Author : Menelion Elensúle : https://github.com/Oire
29540
 
29541
  ;(function (global, factory) {
29542
+ true ? factory(__webpack_require__(302)) :
29543
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29544
  factory(global.moment)
29545
  }(this, (function (moment) { 'use strict';
29551
  }
29552
  function relativeTimeWithPlural(number, withoutSuffix, key) {
29553
  var format = {
 
29554
  'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
29555
  'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
29556
  'dd': 'дзень_дні_дзён',
29668
 
29669
 
29670
  /***/ },
29671
+ /* 315 */
29672
  /***/ function(module, exports, __webpack_require__) {
29673
 
29674
  //! moment.js locale configuration
29676
  //! author : Krasen Borisov : https://github.com/kraz
29677
 
29678
  ;(function (global, factory) {
29679
+ true ? factory(__webpack_require__(302)) :
29680
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29681
  factory(global.moment)
29682
  }(this, (function (moment) { 'use strict';
29720
  future : 'след %s',
29721
  past : 'преди %s',
29722
  s : 'няколко секунди',
 
29723
  m : 'минута',
29724
  mm : '%d минути',
29725
  h : 'час',
29763
 
29764
 
29765
  /***/ },
29766
+ /* 316 */
29767
  /***/ function(module, exports, __webpack_require__) {
29768
 
29769
  //! moment.js locale configuration
29771
  //! author : Estelle Comment : https://github.com/estellecomment
29772
 
29773
  ;(function (global, factory) {
29774
+ true ? factory(__webpack_require__(302)) :
29775
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29776
  factory(global.moment)
29777
  }(this, (function (moment) { 'use strict';
29804
  future : '%s kɔnɔ',
29805
  past : 'a bɛ %s bɔ',
29806
  s : 'sanga dama dama',
 
29807
  m : 'miniti kelen',
29808
  mm : 'miniti %d',
29809
  h : 'lɛrɛ kelen',
29827
 
29828
 
29829
  /***/ },
29830
+ /* 317 */
29831
  /***/ function(module, exports, __webpack_require__) {
29832
 
29833
  //! moment.js locale configuration
29835
  //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
29836
 
29837
  ;(function (global, factory) {
29838
+ true ? factory(__webpack_require__(302)) :
29839
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29840
  factory(global.moment)
29841
  }(this, (function (moment) { 'use strict';
29892
  future : '%s পরে',
29893
  past : '%s আগে',
29894
  s : 'কয়েক সেকেন্ড',
 
29895
  m : 'এক মিনিট',
29896
  mm : '%d মিনিট',
29897
  h : 'এক ঘন্টা',
29951
 
29952
 
29953
  /***/ },
29954
+ /* 318 */
29955
  /***/ function(module, exports, __webpack_require__) {
29956
 
29957
  //! moment.js locale configuration
29959
  //! author : Thupten N. Chakrishar : https://github.com/vajradog
29960
 
29961
  ;(function (global, factory) {
29962
+ true ? factory(__webpack_require__(302)) :
29963
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
29964
  factory(global.moment)
29965
  }(this, (function (moment) { 'use strict';
30016
  future : '%s ལ་',
30017
  past : '%s སྔན་ལ',
30018
  s : 'ལམ་སང',
 
30019
  m : 'སྐར་མ་གཅིག',
30020
  mm : '%d སྐར་མ',
30021
  h : 'ཆུ་ཚོད་གཅིག',
30075
 
30076
 
30077
  /***/ },
30078
+ /* 319 */
30079
  /***/ function(module, exports, __webpack_require__) {
30080
 
30081
  //! moment.js locale configuration
30083
  //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
30084
 
30085
  ;(function (global, factory) {
30086
+ true ? factory(__webpack_require__(302)) :
30087
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30088
  factory(global.moment)
30089
  }(this, (function (moment) { 'use strict';
30160
  future : 'a-benn %s',
30161
  past : '%s \'zo',
30162
  s : 'un nebeud segondennoù',
 
30163
  m : 'ur vunutenn',
30164
  mm : relativeTimeWithMutation,
30165
  h : 'un eur',
30188
 
30189
 
30190
  /***/ },
30191
+ /* 320 */
30192
  /***/ function(module, exports, __webpack_require__) {
30193
 
30194
  //! moment.js locale configuration
30197
  //! based on (hr) translation by Bojan Marković
30198
 
30199
  ;(function (global, factory) {
30200
+ true ? factory(__webpack_require__(302)) :
30201
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30202
  factory(global.moment)
30203
  }(this, (function (moment) { 'use strict';
30206
  function translate(number, withoutSuffix, key) {
30207
  var result = number + ' ';
30208
  switch (key) {
 
 
 
 
 
 
 
 
 
30209
  case 'm':
30210
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
30211
  case 'mm':
30311
  future : 'za %s',
30312
  past : 'prije %s',
30313
  s : 'par sekundi',
 
30314
  m : translate,
30315
  mm : translate,
30316
  h : translate,
30336
 
30337
 
30338
  /***/ },
30339
+ /* 321 */
30340
  /***/ function(module, exports, __webpack_require__) {
30341
 
30342
  //! moment.js locale configuration
30344
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
30345
 
30346
  ;(function (global, factory) {
30347
+ true ? factory(__webpack_require__(302)) :
30348
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30349
  factory(global.moment)
30350
  }(this, (function (moment) { 'use strict';
30395
  future : 'd\'aquí %s',
30396
  past : 'fa %s',
30397
  s : 'uns segons',
 
30398
  m : 'un minut',
30399
  mm : '%d minuts',
30400
  h : 'una hora',
30429
 
30430
 
30431
  /***/ },
30432
+ /* 322 */
30433
  /***/ function(module, exports, __webpack_require__) {
30434
 
30435
  //! moment.js locale configuration
30437
  //! author : petrbela : https://github.com/petrbela
30438
 
30439
  ;(function (global, factory) {
30440
+ true ? factory(__webpack_require__(302)) :
30441
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30442
  factory(global.moment)
30443
  }(this, (function (moment) { 'use strict';
30453
  switch (key) {
30454
  case 's': // a few seconds / in a few seconds / a few seconds ago
30455
  return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami';
 
 
 
 
 
 
 
30456
  case 'm': // a minute / in a minute / a minute ago
30457
  return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou');
30458
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
30581
  future : 'za %s',
30582
  past : 'před %s',
30583
  s : translate,
 
30584
  m : translate,
30585
  mm : translate,
30586
  h : translate,
30606
 
30607
 
30608
  /***/ },
30609
+ /* 323 */
30610
  /***/ function(module, exports, __webpack_require__) {
30611
 
30612
  //! moment.js locale configuration
30614
  //! author : Anatoly Mironov : https://github.com/mirontoli
30615
 
30616
  ;(function (global, factory) {
30617
+ true ? factory(__webpack_require__(302)) :
30618
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30619
  factory(global.moment)
30620
  }(this, (function (moment) { 'use strict';
30649
  },
30650
  past : '%s каялла',
30651
  s : 'пӗр-ик ҫеккунт',
 
30652
  m : 'пӗр минут',
30653
  mm : '%d минут',
30654
  h : 'пӗр сехет',
30674
 
30675
 
30676
  /***/ },
30677
+ /* 324 */
30678
  /***/ function(module, exports, __webpack_require__) {
30679
 
30680
  //! moment.js locale configuration
30683
  //! author : https://github.com/ryangreaves
30684
 
30685
  ;(function (global, factory) {
30686
+ true ? factory(__webpack_require__(302)) :
30687
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30688
  factory(global.moment)
30689
  }(this, (function (moment) { 'use strict';
30717
  future: 'mewn %s',
30718
  past: '%s yn ôl',
30719
  s: 'ychydig eiliadau',
 
30720
  m: 'munud',
30721
  mm: '%d munud',
30722
  h: 'awr',
30760
 
30761
 
30762
  /***/ },
30763
+ /* 325 */
30764
  /***/ function(module, exports, __webpack_require__) {
30765
 
30766
  //! moment.js locale configuration
30768
  //! author : Ulrik Nielsen : https://github.com/mrbase
30769
 
30770
  ;(function (global, factory) {
30771
+ true ? factory(__webpack_require__(302)) :
30772
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30773
  factory(global.moment)
30774
  }(this, (function (moment) { 'use strict';
30800
  future : 'om %s',
30801
  past : '%s siden',
30802
  s : 'få sekunder',
 
30803
  m : 'et minut',
30804
  mm : '%d minutter',
30805
  h : 'en time',
30825
 
30826
 
30827
  /***/ },
30828
+ /* 326 */
30829
  /***/ function(module, exports, __webpack_require__) {
30830
 
30831
  //! moment.js locale configuration
30835
  //! author : Mikolaj Dadela : https://github.com/mik01aj
30836
 
30837
  ;(function (global, factory) {
30838
+ true ? factory(__webpack_require__(302)) :
30839
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30840
  factory(global.moment)
30841
  }(this, (function (moment) { 'use strict';
30883
  future : 'in %s',
30884
  past : 'vor %s',
30885
  s : 'ein paar Sekunden',
 
30886
  m : processRelativeTime,
30887
  mm : '%d Minuten',
30888
  h : processRelativeTime,
30908
 
30909
 
30910
  /***/ },
30911
+ /* 327 */
30912
  /***/ function(module, exports, __webpack_require__) {
30913
 
30914
  //! moment.js locale configuration
30919
  //! author : Mikolaj Dadela : https://github.com/mik01aj
30920
 
30921
  ;(function (global, factory) {
30922
+ true ? factory(__webpack_require__(302)) :
30923
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
30924
  factory(global.moment)
30925
  }(this, (function (moment) { 'use strict';
30967
  future : 'in %s',
30968
  past : 'vor %s',
30969
  s : 'ein paar Sekunden',
 
30970
  m : processRelativeTime,
30971
  mm : '%d Minuten',
30972
  h : processRelativeTime,
30992
 
30993
 
30994
  /***/ },
30995
+ /* 328 */
30996
  /***/ function(module, exports, __webpack_require__) {
30997
 
30998
  //! moment.js locale configuration
31000
  //! author : sschueller : https://github.com/sschueller
31001
 
31002
  ;(function (global, factory) {
31003
+ true ? factory(__webpack_require__(302)) :
31004
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31005
  factory(global.moment)
31006
  }(this, (function (moment) { 'use strict';
31031
  weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
31032
  weekdaysParseExact : true,
31033
  longDateFormat : {
31034
+ LT: 'HH.mm',
31035
+ LTS: 'HH.mm.ss',
31036
  L : 'DD.MM.YYYY',
31037
  LL : 'D. MMMM YYYY',
31038
+ LLL : 'D. MMMM YYYY HH.mm',
31039
+ LLLL : 'dddd, D. MMMM YYYY HH.mm'
31040
  },
31041
  calendar : {
31042
  sameDay: '[heute um] LT [Uhr]',
31050
  future : 'in %s',
31051
  past : 'vor %s',
31052
  s : 'ein paar Sekunden',
 
31053
  m : processRelativeTime,
31054
  mm : '%d Minuten',
31055
  h : processRelativeTime,
31075
 
31076
 
31077
  /***/ },
31078
+ /* 329 */
31079
  /***/ function(module, exports, __webpack_require__) {
31080
 
31081
  //! moment.js locale configuration
31083
  //! author : Jawish Hameed : https://github.com/jawish
31084
 
31085
  ;(function (global, factory) {
31086
+ true ? factory(__webpack_require__(302)) :
31087
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31088
  factory(global.moment)
31089
  }(this, (function (moment) { 'use strict';
31151
  future : 'ތެރޭގައި %s',
31152
  past : 'ކުރިން %s',
31153
  s : 'ސިކުންތުކޮޅެއް',
 
31154
  m : 'މިނިޓެއް',
31155
  mm : 'މިނިޓު %d',
31156
  h : 'ގަޑިއިރެއް',
31180
 
31181
 
31182
  /***/ },
31183
+ /* 330 */
31184
  /***/ function(module, exports, __webpack_require__) {
31185
 
31186
  //! moment.js locale configuration
31188
  //! author : Aggelos Karalias : https://github.com/mehiel
31189
 
31190
  ;(function (global, factory) {
31191
+ true ? factory(__webpack_require__(302)) :
31192
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31193
  factory(global.moment)
31194
  }(this, (function (moment) { 'use strict';
31260
  future : 'σε %s',
31261
  past : '%s πριν',
31262
  s : 'λίγα δευτερόλεπτα',
 
31263
  m : 'ένα λεπτό',
31264
  mm : '%d λεπτά',
31265
  h : 'μία ώρα',
31285
 
31286
 
31287
  /***/ },
31288
+ /* 331 */
31289
  /***/ function(module, exports, __webpack_require__) {
31290
 
31291
  //! moment.js locale configuration
31293
  //! author : Jared Morse : https://github.com/jarcoal
31294
 
31295
  ;(function (global, factory) {
31296
+ true ? factory(__webpack_require__(302)) :
31297
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31298
  factory(global.moment)
31299
  }(this, (function (moment) { 'use strict';
31325
  future : 'in %s',
31326
  past : '%s ago',
31327
  s : 'a few seconds',
 
31328
  m : 'a minute',
31329
  mm : '%d minutes',
31330
  h : 'an hour',
31357
 
31358
 
31359
  /***/ },
31360
+ /* 332 */
31361
  /***/ function(module, exports, __webpack_require__) {
31362
 
31363
  //! moment.js locale configuration
31365
  //! author : Jonathan Abourbih : https://github.com/jonbca
31366
 
31367
  ;(function (global, factory) {
31368
+ true ? factory(__webpack_require__(302)) :
31369
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31370
  factory(global.moment)
31371
  }(this, (function (moment) { 'use strict';
31397
  future : 'in %s',
31398
  past : '%s ago',
31399
  s : 'a few seconds',
 
31400
  m : 'a minute',
31401
  mm : '%d minutes',
31402
  h : 'an hour',
31425
 
31426
 
31427
  /***/ },
31428
+ /* 333 */
31429
  /***/ function(module, exports, __webpack_require__) {
31430
 
31431
  //! moment.js locale configuration
31433
  //! author : Chris Gedrim : https://github.com/chrisgedrim
31434
 
31435
  ;(function (global, factory) {
31436
+ true ? factory(__webpack_require__(302)) :
31437
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31438
  factory(global.moment)
31439
  }(this, (function (moment) { 'use strict';
31465
  future : 'in %s',
31466
  past : '%s ago',
31467
  s : 'a few seconds',
 
31468
  m : 'a minute',
31469
  mm : '%d minutes',
31470
  h : 'an hour',
31497
 
31498
 
31499
  /***/ },
31500
+ /* 334 */
31501
  /***/ function(module, exports, __webpack_require__) {
31502
 
31503
  //! moment.js locale configuration
31505
  //! author : Chris Cartlidge : https://github.com/chriscartlidge
31506
 
31507
  ;(function (global, factory) {
31508
+ true ? factory(__webpack_require__(302)) :
31509
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31510
  factory(global.moment)
31511
  }(this, (function (moment) { 'use strict';
31537
  future : 'in %s',
31538
  past : '%s ago',
31539
  s : 'a few seconds',
 
31540
  m : 'a minute',
31541
  mm : '%d minutes',
31542
  h : 'an hour',
31569
 
31570
 
31571
  /***/ },
31572
+ /* 335 */
31573
  /***/ function(module, exports, __webpack_require__) {
31574
 
31575
  //! moment.js locale configuration
31577
  //! author : Luke McGregor : https://github.com/lukemcgregor
31578
 
31579
  ;(function (global, factory) {
31580
+ true ? factory(__webpack_require__(302)) :
31581
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31582
  factory(global.moment)
31583
  }(this, (function (moment) { 'use strict';
31609
  future : 'in %s',
31610
  past : '%s ago',
31611
  s : 'a few seconds',
 
31612
  m : 'a minute',
31613
  mm : '%d minutes',
31614
  h : 'an hour',
31641
 
31642
 
31643
  /***/ },
31644
+ /* 336 */
31645
  /***/ function(module, exports, __webpack_require__) {
31646
 
31647
  //! moment.js locale configuration
31651
  //! comment : miestasmia corrected the translation by colindean
31652
 
31653
  ;(function (global, factory) {
31654
+ true ? factory(__webpack_require__(302)) :
31655
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31656
  factory(global.moment)
31657
  }(this, (function (moment) { 'use strict';
31694
  future : 'post %s',
31695
  past : 'antaŭ %s',
31696
  s : 'sekundoj',
 
31697
  m : 'minuto',
31698
  mm : '%d minutoj',
31699
  h : 'horo',
31719
 
31720
 
31721
  /***/ },
31722
+ /* 337 */
31723
  /***/ function(module, exports, __webpack_require__) {
31724
 
31725
  //! moment.js locale configuration
31727
  //! author : Julio Napurí : https://github.com/julionc
31728
 
31729
  ;(function (global, factory) {
31730
+ true ? factory(__webpack_require__(302)) :
31731
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31732
  factory(global.moment)
31733
  }(this, (function (moment) { 'use strict';
31791
  future : 'en %s',
31792
  past : 'hace %s',
31793
  s : 'unos segundos',
 
31794
  m : 'un minuto',
31795
  mm : '%d minutos',
31796
  h : 'una hora',
31816
 
31817
 
31818
  /***/ },
31819
+ /* 338 */
31820
  /***/ function(module, exports, __webpack_require__) {
31821
 
31822
  //! moment.js locale configuration
31823
  //! locale : Spanish (Dominican Republic) [es-do]
31824
 
31825
  ;(function (global, factory) {
31826
+ true ? factory(__webpack_require__(302)) :
31827
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31828
  factory(global.moment)
31829
  }(this, (function (moment) { 'use strict';
31887
  future : 'en %s',
31888
  past : 'hace %s',
31889
  s : 'unos segundos',
 
31890
  m : 'un minuto',
31891
  mm : '%d minutos',
31892
  h : 'una hora',
31912
 
31913
 
31914
  /***/ },
31915
+ /* 339 */
31916
  /***/ function(module, exports, __webpack_require__) {
31917
 
31918
  //! moment.js locale configuration
31920
  //! author : bustta : https://github.com/bustta
31921
 
31922
  ;(function (global, factory) {
31923
+ true ? factory(__webpack_require__(302)) :
31924
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
31925
  factory(global.moment)
31926
  }(this, (function (moment) { 'use strict';
31946
  weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
31947
  weekdaysParseExact : true,
31948
  longDateFormat : {
31949
+ LT : 'H:mm',
31950
+ LTS : 'H:mm:ss',
31951
  L : 'MM/DD/YYYY',
31952
  LL : 'MMMM [de] D [de] YYYY',
31953
+ LLL : 'MMMM [de] D [de] YYYY H:mm',
31954
+ LLLL : 'dddd, MMMM [de] D [de] YYYY H:mm'
31955
  },
31956
  calendar : {
31957
  sameDay : function () {
31975
  future : 'en %s',
31976
  past : 'hace %s',
31977
  s : 'unos segundos',
 
31978
  m : 'un minuto',
31979
  mm : '%d minutos',
31980
  h : 'una hora',
32000
 
32001
 
32002
  /***/ },
32003
+ /* 340 */
32004
  /***/ function(module, exports, __webpack_require__) {
32005
 
32006
  //! moment.js locale configuration
32009
  //! improvements : Illimar Tambek : https://github.com/ragulka
32010
 
32011
  ;(function (global, factory) {
32012
+ true ? factory(__webpack_require__(302)) :
32013
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32014
  factory(global.moment)
32015
  }(this, (function (moment) { 'use strict';
32018
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
32019
  var format = {
32020
  's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
 
32021
  'm' : ['ühe minuti', 'üks minut'],
32022
  'mm': [number + ' minuti', number + ' minutit'],
32023
  'h' : ['ühe tunni', 'tund aega', 'üks tund'],
32060
  future : '%s pärast',
32061
  past : '%s tagasi',
32062
  s : processRelativeTime,
 
32063
  m : processRelativeTime,
32064
  mm : processRelativeTime,
32065
  h : processRelativeTime,
32085
 
32086
 
32087
  /***/ },
32088
+ /* 341 */
32089
  /***/ function(module, exports, __webpack_require__) {
32090
 
32091
  //! moment.js locale configuration
32093
  //! author : Eneko Illarramendi : https://github.com/eillarra
32094
 
32095
  ;(function (global, factory) {
32096
+ true ? factory(__webpack_require__(302)) :
32097
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32098
  factory(global.moment)
32099
  }(this, (function (moment) { 'use strict';
32131
  future : '%s barru',
32132
  past : 'duela %s',
32133
  s : 'segundo batzuk',
 
32134
  m : 'minutu bat',
32135
  mm : '%d minutu',
32136
  h : 'ordu bat',
32156
 
32157
 
32158
  /***/ },
32159
+ /* 342 */
32160
  /***/ function(module, exports, __webpack_require__) {
32161
 
32162
  //! moment.js locale configuration
32164
  //! author : Ebrahim Byagowi : https://github.com/ebraminio
32165
 
32166
  ;(function (global, factory) {
32167
+ true ? factory(__webpack_require__(302)) :
32168
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32169
  factory(global.moment)
32170
  }(this, (function (moment) { 'use strict';
32233
  future : 'در %s',
32234
  past : '%s پیش',
32235
  s : 'چند ثانیه',
 
32236
  m : 'یک دقیقه',
32237
  mm : '%d دقیقه',
32238
  h : 'یک ساعت',
32268
 
32269
 
32270
  /***/ },
32271
+ /* 343 */
32272
  /***/ function(module, exports, __webpack_require__) {
32273
 
32274
  //! moment.js locale configuration
32276
  //! author : Tarmo Aidantausta : https://github.com/bleadof
32277
 
32278
  ;(function (global, factory) {
32279
+ true ? factory(__webpack_require__(302)) :
32280
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32281
  factory(global.moment)
32282
  }(this, (function (moment) { 'use strict';
32292
  switch (key) {
32293
  case 's':
32294
  return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
 
 
32295
  case 'm':
32296
  return isFuture ? 'minuutin' : 'minuutti';
32297
  case 'mm':
32355
  future : '%s päästä',
32356
  past : '%s sitten',
32357
  s : translate,
 
32358
  m : translate,
32359
  mm : translate,
32360
  h : translate,
32380
 
32381
 
32382
  /***/ },
32383
+ /* 344 */
32384
  /***/ function(module, exports, __webpack_require__) {
32385
 
32386
  //! moment.js locale configuration
32388
  //! author : Ragnar Johannesen : https://github.com/ragnar123
32389
 
32390
  ;(function (global, factory) {
32391
+ true ? factory(__webpack_require__(302)) :
32392
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32393
  factory(global.moment)
32394
  }(this, (function (moment) { 'use strict';
32420
  future : 'um %s',
32421
  past : '%s síðani',
32422
  s : 'fá sekund',
 
32423
  m : 'ein minutt',
32424
  mm : '%d minuttir',
32425
  h : 'ein tími',
32445
 
32446
 
32447
  /***/ },
32448
+ /* 345 */
32449
  /***/ function(module, exports, __webpack_require__) {
32450
 
32451
  //! moment.js locale configuration
32453
  //! author : John Fischer : https://github.com/jfroffice
32454
 
32455
  ;(function (global, factory) {
32456
+ true ? factory(__webpack_require__(302)) :
32457
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32458
  factory(global.moment)
32459
  }(this, (function (moment) { 'use strict';
32465
  monthsParseExact : true,
32466
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32467
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32468
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
32469
  weekdaysParseExact : true,
32470
  longDateFormat : {
32471
  LT : 'HH:mm',
32487
  future : 'dans %s',
32488
  past : 'il y a %s',
32489
  s : 'quelques secondes',
 
32490
  m : 'une minute',
32491
  mm : '%d minutes',
32492
  h : 'une heure',
32533
 
32534
 
32535
  /***/ },
32536
+ /* 346 */
32537
  /***/ function(module, exports, __webpack_require__) {
32538
 
32539
  //! moment.js locale configuration
32541
  //! author : Jonathan Abourbih : https://github.com/jonbca
32542
 
32543
  ;(function (global, factory) {
32544
+ true ? factory(__webpack_require__(302)) :
32545
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32546
  factory(global.moment)
32547
  }(this, (function (moment) { 'use strict';
32553
  monthsParseExact : true,
32554
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32555
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32556
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
32557
  weekdaysParseExact : true,
32558
  longDateFormat : {
32559
  LT : 'HH:mm',
32575
  future : 'dans %s',
32576
  past : 'il y a %s',
32577
  s : 'quelques secondes',
 
32578
  m : 'une minute',
32579
  mm : '%d minutes',
32580
  h : 'une heure',
32612
 
32613
 
32614
  /***/ },
32615
+ /* 347 */
32616
  /***/ function(module, exports, __webpack_require__) {
32617
 
32618
  //! moment.js locale configuration
32620
  //! author : Gaspard Bucher : https://github.com/gaspard
32621
 
32622
  ;(function (global, factory) {
32623
+ true ? factory(__webpack_require__(302)) :
32624
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32625
  factory(global.moment)
32626
  }(this, (function (moment) { 'use strict';
32632
  monthsParseExact : true,
32633
  weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
32634
  weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
32635
+ weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
32636
  weekdaysParseExact : true,
32637
  longDateFormat : {
32638
  LT : 'HH:mm',
32654
  future : 'dans %s',
32655
  past : 'il y a %s',
32656
  s : 'quelques secondes',
 
32657
  m : 'une minute',
32658
  mm : '%d minutes',
32659
  h : 'une heure',
32695
 
32696
 
32697
  /***/ },
32698
+ /* 348 */
32699
  /***/ function(module, exports, __webpack_require__) {
32700
 
32701
  //! moment.js locale configuration
32703
  //! author : Robin van der Vliet : https://github.com/robin0van0der0v
32704
 
32705
  ;(function (global, factory) {
32706
+ true ? factory(__webpack_require__(302)) :
32707
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32708
  factory(global.moment)
32709
  }(this, (function (moment) { 'use strict';
32748
  future : 'oer %s',
32749
  past : '%s lyn',
32750
  s : 'in pear sekonden',
 
32751
  m : 'ien minút',
32752
  mm : '%d minuten',
32753
  h : 'ien oere',
32775
 
32776
 
32777
  /***/ },
32778
+ /* 349 */
32779
  /***/ function(module, exports, __webpack_require__) {
32780
 
32781
  //! moment.js locale configuration
32783
  //! author : Jon Ashdown : https://github.com/jonashdown
32784
 
32785
  ;(function (global, factory) {
32786
+ true ? factory(__webpack_require__(302)) :
32787
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32788
  factory(global.moment)
32789
  }(this, (function (moment) { 'use strict';
32828
  future : 'ann an %s',
32829
  past : 'bho chionn %s',
32830
  s : 'beagan diogan',
 
32831
  m : 'mionaid',
32832
  mm : '%d mionaidean',
32833
  h : 'uair',
32856
 
32857
 
32858
  /***/ },
32859
+ /* 350 */
32860
  /***/ function(module, exports, __webpack_require__) {
32861
 
32862
  //! moment.js locale configuration
32864
  //! author : Juan G. Hurtado : https://github.com/juanghurtado
32865
 
32866
  ;(function (global, factory) {
32867
+ true ? factory(__webpack_require__(302)) :
32868
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32869
  factory(global.moment)
32870
  }(this, (function (moment) { 'use strict';
32913
  },
32914
  past : 'hai %s',
32915
  s : 'uns segundos',
 
32916
  m : 'un minuto',
32917
  mm : '%d minutos',
32918
  h : 'unha hora',
32938
 
32939
 
32940
  /***/ },
32941
+ /* 351 */
32942
  /***/ function(module, exports, __webpack_require__) {
32943
 
32944
  //! moment.js locale configuration
32946
  //! author : The Discoverer : https://github.com/WikiDiscoverer
32947
 
32948
  ;(function (global, factory) {
32949
+ true ? factory(__webpack_require__(302)) :
32950
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
32951
  factory(global.moment)
32952
  }(this, (function (moment) { 'use strict';
32955
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
32956
  var format = {
32957
  's': ['thodde secondanim', 'thodde second'],
 
32958
  'm': ['eka mintan', 'ek minute'],
32959
  'mm': [number + ' mintanim', number + ' mintam'],
32960
  'h': ['eka horan', 'ek hor'],
32998
  future : '%s',
32999
  past : '%s adim',
33000
  s : processRelativeTime,
 
33001
  m : processRelativeTime,
33002
  mm : processRelativeTime,
33003
  h : processRelativeTime,
33065
 
33066
 
33067
  /***/ },
33068
+ /* 352 */
33069
  /***/ function(module, exports, __webpack_require__) {
33070
 
33071
  //! moment.js locale configuration
33073
  //! author : Kaushik Thanki : https://github.com/Kaushik1987
33074
 
33075
  ;(function (global, factory) {
33076
+ true ? factory(__webpack_require__(302)) :
33077
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33078
  factory(global.moment)
33079
  }(this, (function (moment) { 'use strict';
33131
  future: '%s મા',
33132
  past: '%s પેહલા',
33133
  s: 'અમુક પળો',
 
33134
  m: 'એક મિનિટ',
33135
  mm: '%d મિનિટ',
33136
  h: 'એક કલાક',
33194
 
33195
 
33196
  /***/ },
33197
+ /* 353 */
33198
  /***/ function(module, exports, __webpack_require__) {
33199
 
33200
  //! moment.js locale configuration
33204
  //! author : Tal Ater : https://github.com/TalAter
33205
 
33206
  ;(function (global, factory) {
33207
+ true ? factory(__webpack_require__(302)) :
33208
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33209
  factory(global.moment)
33210
  }(this, (function (moment) { 'use strict';
33240
  future : 'בעוד %s',
33241
  past : 'לפני %s',
33242
  s : 'מספר שניות',
 
33243
  m : 'דקה',
33244
  mm : '%d דקות',
33245
  h : 'שעה',
33298
 
33299
 
33300
  /***/ },
33301
+ /* 354 */
33302
  /***/ function(module, exports, __webpack_require__) {
33303
 
33304
  //! moment.js locale configuration
33306
  //! author : Mayank Singhal : https://github.com/mayanksinghal
33307
 
33308
  ;(function (global, factory) {
33309
+ true ? factory(__webpack_require__(302)) :
33310
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33311
  factory(global.moment)
33312
  }(this, (function (moment) { 'use strict';
33364
  future : '%s में',
33365
  past : '%s पहले',
33366
  s : 'कुछ ही क्षण',
 
33367
  m : 'एक मिनट',
33368
  mm : '%d मिनट',
33369
  h : 'एक घंटा',
33427
 
33428
 
33429
  /***/ },
33430
+ /* 355 */
33431
  /***/ function(module, exports, __webpack_require__) {
33432
 
33433
  //! moment.js locale configuration
33435
  //! author : Bojan Marković : https://github.com/bmarkovic
33436
 
33437
  ;(function (global, factory) {
33438
+ true ? factory(__webpack_require__(302)) :
33439
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33440
  factory(global.moment)
33441
  }(this, (function (moment) { 'use strict';
33444
  function translate(number, withoutSuffix, key) {
33445
  var result = number + ' ';
33446
  switch (key) {
 
 
 
 
 
 
 
 
 
33447
  case 'm':
33448
  return withoutSuffix ? 'jedna minuta' : 'jedne minute';
33449
  case 'mm':
33552
  future : 'za %s',
33553
  past : 'prije %s',
33554
  s : 'par sekundi',
 
33555
  m : translate,
33556
  mm : translate,
33557
  h : translate,
33577
 
33578
 
33579
  /***/ },
33580
+ /* 356 */
33581
  /***/ function(module, exports, __webpack_require__) {
33582
 
33583
  //! moment.js locale configuration
33585
  //! author : Adam Brunner : https://github.com/adambrunner
33586
 
33587
  ;(function (global, factory) {
33588
+ true ? factory(__webpack_require__(302)) :
33589
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33590
  factory(global.moment)
33591
  }(this, (function (moment) { 'use strict';
33597
  switch (key) {
33598
  case 's':
33599
  return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
 
 
33600
  case 'm':
33601
  return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
33602
  case 'mm':
33665
  future : '%s múlva',
33666
  past : '%s',
33667
  s : translate,
 
33668
  m : translate,
33669
  mm : translate,
33670
  h : translate,
33690
 
33691
 
33692
  /***/ },
33693
+ /* 357 */
33694
  /***/ function(module, exports, __webpack_require__) {
33695
 
33696
  //! moment.js locale configuration
33698
  //! author : Armendarabyan : https://github.com/armendarabyan
33699
 
33700
  ;(function (global, factory) {
33701
+ true ? factory(__webpack_require__(302)) :
33702
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33703
  factory(global.moment)
33704
  }(this, (function (moment) { 'use strict';
33737
  future : '%s հետո',
33738
  past : '%s առաջ',
33739
  s : 'մի քանի վայրկյան',
 
33740
  m : 'րոպե',
33741
  mm : '%d րոպե',
33742
  h : 'ժամ',
33790
 
33791
 
33792
  /***/ },
33793
+ /* 358 */
33794
  /***/ function(module, exports, __webpack_require__) {
33795
 
33796
  //! moment.js locale configuration
33799
  //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
33800
 
33801
  ;(function (global, factory) {
33802
+ true ? factory(__webpack_require__(302)) :
33803
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33804
  factory(global.moment)
33805
  }(this, (function (moment) { 'use strict';
33855
  future : 'dalam %s',
33856
  past : '%s yang lalu',
33857
  s : 'beberapa detik',
 
33858
  m : 'semenit',
33859
  mm : '%d menit',
33860
  h : 'sejam',
33878
 
33879
 
33880
  /***/ },
33881
+ /* 359 */
33882
  /***/ function(module, exports, __webpack_require__) {
33883
 
33884
  //! moment.js locale configuration
33886
  //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
33887
 
33888
  ;(function (global, factory) {
33889
+ true ? factory(__webpack_require__(302)) :
33890
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
33891
  factory(global.moment)
33892
  }(this, (function (moment) { 'use strict';
33905
  switch (key) {
33906
  case 's':
33907
  return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
 
 
 
 
 
33908
  case 'm':
33909
  return withoutSuffix ? 'mínúta' : 'mínútu';
33910
  case 'mm':
33985
  future : 'eftir %s',
33986
  past : 'fyrir %s síðan',
33987
  s : translate,
 
33988
  m : translate,
33989
  mm : translate,
33990
  h : 'klukkustund',
34010
 
34011
 
34012
  /***/ },
34013
+ /* 360 */
34014
  /***/ function(module, exports, __webpack_require__) {
34015
 
34016
  //! moment.js locale configuration
34019
  //! author: Mattia Larentis: https://github.com/nostalgiaz
34020
 
34021
  ;(function (global, factory) {
34022
+ true ? factory(__webpack_require__(302)) :
34023
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34024
  factory(global.moment)
34025
  }(this, (function (moment) { 'use strict';
34037
  L : 'DD/MM/YYYY',
34038
  LL : 'D MMMM YYYY',
34039
  LLL : 'D MMMM YYYY HH:mm',
34040
+ LLLL : 'dddd, D MMMM YYYY HH:mm'
34041
  },
34042
  calendar : {
34043
  sameDay: '[Oggi alle] LT',
34060
  },
34061
  past : '%s fa',
34062
  s : 'alcuni secondi',
 
34063
  m : 'un minuto',
34064
  mm : '%d minuti',
34065
  h : 'un\'ora',
34085
 
34086
 
34087
  /***/ },
34088
+ /* 361 */
34089
  /***/ function(module, exports, __webpack_require__) {
34090
 
34091
  //! moment.js locale configuration
34093
  //! author : LI Long : https://github.com/baryon
34094
 
34095
  ;(function (global, factory) {
34096
+ true ? factory(__webpack_require__(302)) :
34097
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34098
  factory(global.moment)
34099
  }(this, (function (moment) { 'use strict';
34151
  future : '%s後',
34152
  past : '%s前',
34153
  s : '数秒',
 
34154
  m : '1分',
34155
  mm : '%d分',
34156
  h : '1時間',
34170
 
34171
 
34172
  /***/ },
34173
+ /* 362 */
34174
  /***/ function(module, exports, __webpack_require__) {
34175
 
34176
  //! moment.js locale configuration
34179
  //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
34180
 
34181
  ;(function (global, factory) {
34182
+ true ? factory(__webpack_require__(302)) :
34183
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34184
  factory(global.moment)
34185
  }(this, (function (moment) { 'use strict';
34235
  future : 'wonten ing %s',
34236
  past : '%s ingkang kepengker',
34237
  s : 'sawetawis detik',
 
34238
  m : 'setunggal menit',
34239
  mm : '%d menit',
34240
  h : 'setunggal jam',
34258
 
34259
 
34260
  /***/ },
34261
+ /* 363 */
34262
  /***/ function(module, exports, __webpack_require__) {
34263
 
34264
  //! moment.js locale configuration
34266
  //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili
34267
 
34268
  ;(function (global, factory) {
34269
+ true ? factory(__webpack_require__(302)) :
34270
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34271
  factory(global.moment)
34272
  }(this, (function (moment) { 'use strict';
34316
  }
34317
  },
34318
  s : 'რამდენიმე წამი',
 
34319
  m : 'წუთი',
34320
  mm : '%d წუთი',
34321
  h : 'საათი',
34352
 
34353
 
34354
  /***/ },
34355
+ /* 364 */
34356
  /***/ function(module, exports, __webpack_require__) {
34357
 
34358
  //! moment.js locale configuration
34360
  //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
34361
 
34362
  ;(function (global, factory) {
34363
+ true ? factory(__webpack_require__(302)) :
34364
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34365
  factory(global.moment)
34366
  }(this, (function (moment) { 'use strict';
34415
  future : '%s ішінде',
34416
  past : '%s бұрын',
34417
  s : 'бірнеше секунд',
 
34418
  m : 'бір минут',
34419
  mm : '%d минут',
34420
  h : 'бір сағат',
34444
 
34445
 
34446
  /***/ },
34447
+ /* 365 */
34448
  /***/ function(module, exports, __webpack_require__) {
34449
 
34450
  //! moment.js locale configuration
34452
  //! author : Kruy Vanna : https://github.com/kruyvanna
34453
 
34454
  ;(function (global, factory) {
34455
+ true ? factory(__webpack_require__(302)) :
34456
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34457
  factory(global.moment)
34458
  }(this, (function (moment) { 'use strict';
34484
  future: '%sទៀត',
34485
  past: '%sមុន',
34486
  s: 'ប៉ុន្មានវិនាទី',
 
34487
  m: 'មួយនាទី',
34488
  mm: '%d នាទី',
34489
  h: 'មួយម៉ោង',
34507
 
34508
 
34509
  /***/ },
34510
+ /* 366 */
34511
  /***/ function(module, exports, __webpack_require__) {
34512
 
34513
  //! moment.js locale configuration
34515
  //! author : Rajeev Naik : https://github.com/rajeevnaikte
34516
 
34517
  ;(function (global, factory) {
34518
+ true ? factory(__webpack_require__(302)) :
34519
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34520
  factory(global.moment)
34521
  }(this, (function (moment) { 'use strict';
34573
  future : '%s ನಂತರ',
34574
  past : '%s ಹಿಂದೆ',
34575
  s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
 
34576
  m : 'ಒಂದು ನಿಮಿಷ',
34577
  mm : '%d ನಿಮಿಷ',
34578
  h : 'ಒಂದು ಗಂಟೆ',
34638
 
34639
 
34640
  /***/ },
34641
+ /* 367 */
34642
  /***/ function(module, exports, __webpack_require__) {
34643
 
34644
  //! moment.js locale configuration
34647
  //! author : Jeeeyul Lee <jeeeyul@gmail.com>
34648
 
34649
  ;(function (global, factory) {
34650
+ true ? factory(__webpack_require__(302)) :
34651
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34652
  factory(global.moment)
34653
  }(this, (function (moment) { 'use strict';
34726
 
34727
 
34728
  /***/ },
34729
+ /* 368 */
34730
  /***/ function(module, exports, __webpack_require__) {
34731
 
34732
  //! moment.js locale configuration
34734
  //! author : Chyngyz Arystan uulu : https://github.com/chyngyz
34735
 
34736
  ;(function (global, factory) {
34737
+ true ? factory(__webpack_require__(302)) :
34738
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34739
  factory(global.moment)
34740
  }(this, (function (moment) { 'use strict';
34790
  future : '%s ичинде',
34791
  past : '%s мурун',
34792
  s : 'бирнече секунд',
 
34793
  m : 'бир мүнөт',
34794
  mm : '%d мүнөт',
34795
  h : 'бир саат',
34819
 
34820
 
34821
  /***/ },
34822
+ /* 369 */
34823
  /***/ function(module, exports, __webpack_require__) {
34824
 
34825
  //! moment.js locale configuration
34828
  //! author : David Raison : https://github.com/kwisatz
34829
 
34830
  ;(function (global, factory) {
34831
+ true ? factory(__webpack_require__(302)) :
34832
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34833
  factory(global.moment)
34834
  }(this, (function (moment) { 'use strict';
34936
  future : processFutureTime,
34937
  past : processPastTime,
34938
  s : 'e puer Sekonnen',
 
34939
  m : processRelativeTime,
34940
  mm : '%d Minutten',
34941
  h : processRelativeTime,
34961
 
34962
 
34963
  /***/ },
34964
+ /* 370 */
34965
  /***/ function(module, exports, __webpack_require__) {
34966
 
34967
  //! moment.js locale configuration
34969
  //! author : Ryan Hart : https://github.com/ryanhart2
34970
 
34971
  ;(function (global, factory) {
34972
+ true ? factory(__webpack_require__(302)) :
34973
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
34974
  factory(global.moment)
34975
  }(this, (function (moment) { 'use strict';
35013
  future : 'ອີກ %s',
35014
  past : '%sຜ່ານມາ',
35015
  s : 'ບໍ່ເທົ່າໃດວິນາທີ',
 
35016
  m : '1 ນາທີ',
35017
  mm : '%d ນາທີ',
35018
  h : '1 ຊົ່ວໂມງ',
35036
 
35037
 
35038
  /***/ },
35039
+ /* 371 */
35040
  /***/ function(module, exports, __webpack_require__) {
35041
 
35042
  //! moment.js locale configuration
35044
  //! author : Mindaugas Mozūras : https://github.com/mmozuras
35045
 
35046
  ;(function (global, factory) {
35047
+ true ? factory(__webpack_require__(302)) :
35048
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35049
  factory(global.moment)
35050
  }(this, (function (moment) { 'use strict';
35051
 
35052
 
35053
  var units = {
 
35054
  'm' : 'minutė_minutės_minutę',
35055
  'mm': 'minutės_minučių_minutes',
35056
  'h' : 'valanda_valandos_valandą',
35131
  future : 'po %s',
35132
  past : 'prieš %s',
35133
  s : translateSeconds,
 
35134
  m : translateSingular,
35135
  mm : translate,
35136
  h : translateSingular,
35158
 
35159
 
35160
  /***/ },
35161
+ /* 372 */
35162
  /***/ function(module, exports, __webpack_require__) {
35163
 
35164
  //! moment.js locale configuration
35167
  //! author : Jānis Elmeris : https://github.com/JanisE
35168
 
35169
  ;(function (global, factory) {
35170
+ true ? factory(__webpack_require__(302)) :
35171
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35172
  factory(global.moment)
35173
  }(this, (function (moment) { 'use strict';
35174
 
35175
 
35176
  var units = {
 
35177
  'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
35178
  'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
35179
  'h': 'stundas_stundām_stunda_stundas'.split('_'),
35235
  future : 'pēc %s',
35236
  past : 'pirms %s',
35237
  s : relativeSeconds,
 
35238
  m : relativeTimeWithSingular,
35239
  mm : relativeTimeWithPlural,
35240
  h : relativeTimeWithSingular,
35260
 
35261
 
35262
  /***/ },
35263
+ /* 373 */
35264
  /***/ function(module, exports, __webpack_require__) {
35265
 
35266
  //! moment.js locale configuration
35268
  //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
35269
 
35270
  ;(function (global, factory) {
35271
+ true ? factory(__webpack_require__(302)) :
35272
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35273
  factory(global.moment)
35274
  }(this, (function (moment) { 'use strict';
35276
 
35277
  var translator = {
35278
  words: { //Different grammatical cases
 
35279
  m: ['jedan minut', 'jednog minuta'],
35280
  mm: ['minut', 'minuta', 'minuta'],
35281
  h: ['jedan sat', 'jednog sata'],
35351
  future : 'za %s',
35352
  past : 'prije %s',
35353
  s : 'nekoliko sekundi',
 
35354
  m : translator.translate,
35355
  mm : translator.translate,
35356
  h : translator.translate,
35376
 
35377
 
35378
  /***/ },
35379
+ /* 374 */
35380
  /***/ function(module, exports, __webpack_require__) {
35381
 
35382
  //! moment.js locale configuration
35384
  //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
35385
 
35386
  ;(function (global, factory) {
35387
+ true ? factory(__webpack_require__(302)) :
35388
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35389
  factory(global.moment)
35390
  }(this, (function (moment) { 'use strict';
35420
  future: 'i roto i %s',
35421
  past: '%s i mua',
35422
  s: 'te hēkona ruarua',
 
35423
  m: 'he meneti',
35424
  mm: '%d meneti',
35425
  h: 'te haora',
35445
 
35446
 
35447
  /***/ },
35448
+ /* 375 */
35449
  /***/ function(module, exports, __webpack_require__) {
35450
 
35451
  //! moment.js locale configuration
35453
  //! author : Borislav Mickov : https://github.com/B0k0
35454
 
35455
  ;(function (global, factory) {
35456
+ true ? factory(__webpack_require__(302)) :
35457
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35458
  factory(global.moment)
35459
  }(this, (function (moment) { 'use strict';
35497
  future : 'после %s',
35498
  past : 'пред %s',
35499
  s : 'неколку секунди',
 
35500
  m : 'минута',
35501
  mm : '%d минути',
35502
  h : 'час',
35540
 
35541
 
35542
  /***/ },
35543
+ /* 376 */
35544
  /***/ function(module, exports, __webpack_require__) {
35545
 
35546
  //! moment.js locale configuration
35548
  //! author : Floyd Pink : https://github.com/floydpink
35549
 
35550
  ;(function (global, factory) {
35551
+ true ? factory(__webpack_require__(302)) :
35552
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35553
  factory(global.moment)
35554
  }(this, (function (moment) { 'use strict';
35581
  future : '%s കഴിഞ്ഞ്',
35582
  past : '%s മുൻപ്',
35583
  s : 'അൽപ നിമിഷങ്ങൾ',
 
35584
  m : 'ഒരു മിനിറ്റ്',
35585
  mm : '%d മിനിറ്റ്',
35586
  h : 'ഒരു മണിക്കൂർ',
35626
 
35627
 
35628
  /***/ },
35629
+ /* 377 */
35630
  /***/ function(module, exports, __webpack_require__) {
35631
 
35632
  //! moment.js locale configuration
35635
  //! author : Vivek Athalye : https://github.com/vnathalye
35636
 
35637
  ;(function (global, factory) {
35638
+ true ? factory(__webpack_require__(302)) :
35639
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35640
  factory(global.moment)
35641
  }(this, (function (moment) { 'use strict';
35672
  if (withoutSuffix) {
35673
  switch (string) {
35674
  case 's': output = 'काही सेकंद'; break;
 
35675
  case 'm': output = 'एक मिनिट'; break;
35676
  case 'mm': output = '%d मिनिटे'; break;
35677
  case 'h': output = 'एक तास'; break;
35687
  else {
35688
  switch (string) {
35689
  case 's': output = 'काही सेकंदां'; break;
 
35690
  case 'm': output = 'एका मिनिटा'; break;
35691
  case 'mm': output = '%d मिनिटां'; break;
35692
  case 'h': output = 'एका तासा'; break;
35729
  future: '%sमध्ये',
35730
  past: '%sपूर्वी',
35731
  s: relativeTimeMr,
 
35732
  m: relativeTimeMr,
35733
  mm: relativeTimeMr,
35734
  h: relativeTimeMr,
35790
 
35791
 
35792
  /***/ },
35793
+ /* 378 */
35794
  /***/ function(module, exports, __webpack_require__) {
35795
 
35796
  //! moment.js locale configuration
35798
  //! author : Weldan Jamili : https://github.com/weldan
35799
 
35800
  ;(function (global, factory) {
35801
+ true ? factory(__webpack_require__(302)) :
35802
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35803
  factory(global.moment)
35804
  }(this, (function (moment) { 'use strict';
35854
  future : 'dalam %s',
35855
  past : '%s yang lepas',
35856
  s : 'beberapa saat',
 
35857
  m : 'seminit',
35858
  mm : '%d minit',
35859
  h : 'sejam',
35877
 
35878
 
35879
  /***/ },
35880
+ /* 379 */
35881
  /***/ function(module, exports, __webpack_require__) {
35882
 
35883
  //! moment.js locale configuration
35886
  //! author : Weldan Jamili : https://github.com/weldan
35887
 
35888
  ;(function (global, factory) {
35889
+ true ? factory(__webpack_require__(302)) :
35890
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35891
  factory(global.moment)
35892
  }(this, (function (moment) { 'use strict';
35942
  future : 'dalam %s',
35943
  past : '%s yang lepas',
35944
  s : 'beberapa saat',
 
35945
  m : 'seminit',
35946
  mm : '%d minit',
35947
  h : 'sejam',
35964
  })));
35965
 
35966
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35967
  /***/ },
35968
  /* 380 */
35969
  /***/ function(module, exports, __webpack_require__) {
35975
  //! author : Tin Aung Lin : https://github.com/thanyawzinmin
35976
 
35977
  ;(function (global, factory) {
35978
+ true ? factory(__webpack_require__(302)) :
35979
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
35980
  factory(global.moment)
35981
  }(this, (function (moment) { 'use strict';
36033
  future: 'လာမည့် %s မှာ',
36034
  past: 'လွန်ခဲ့သော %s က',
36035
  s: 'စက္ကန်.အနည်းငယ်',
 
36036
  m: 'တစ်မိနစ်',
36037
  mm: '%d မိနစ်',
36038
  h: 'တစ်နာရီ',
36075
  //! Sigurd Gartmann : https://github.com/sigurdga
36076
 
36077
  ;(function (global, factory) {
36078
+ true ? factory(__webpack_require__(302)) :
36079
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36080
  factory(global.moment)
36081
  }(this, (function (moment) { 'use strict';
36109
  future : 'om %s',
36110
  past : '%s siden',
36111
  s : 'noen sekunder',
 
36112
  m : 'ett minutt',
36113
  mm : '%d minutter',
36114
  h : 'en time',
36142
  //! author : suvash : https://github.com/suvash
36143
 
36144
  ;(function (global, factory) {
36145
+ true ? factory(__webpack_require__(302)) :
36146
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36147
  factory(global.moment)
36148
  }(this, (function (moment) { 'use strict';
36239
  future : '%sमा',
36240
  past : '%s अगाडि',
36241
  s : 'केही क्षण',
 
36242
  m : 'एक मिनेट',
36243
  mm : '%d मिनेट',
36244
  h : 'एक घण्टा',
36271
  //! author : Jacob Middag : https://github.com/middagj
36272
 
36273
  ;(function (global, factory) {
36274
+ true ? factory(__webpack_require__(302)) :
36275
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36276
  factory(global.moment)
36277
  }(this, (function (moment) { 'use strict';
36328
  future : 'over %s',
36329
  past : '%s geleden',
36330
  s : 'een paar seconden',
 
36331
  m : 'één minuut',
36332
  mm : '%d minuten',
36333
  h : 'één uur',
36364
  //! author : Jacob Middag : https://github.com/middagj
36365
 
36366
  ;(function (global, factory) {
36367
+ true ? factory(__webpack_require__(302)) :
36368
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36369
  factory(global.moment)
36370
  }(this, (function (moment) { 'use strict';
36421
  future : 'over %s',
36422
  past : '%s geleden',
36423
  s : 'een paar seconden',
 
36424
  m : 'één minuut',
36425
  mm : '%d minuten',
36426
  h : 'één uur',
36456
  //! author : https://github.com/mechuwind
36457
 
36458
  ;(function (global, factory) {
36459
+ true ? factory(__webpack_require__(302)) :
36460
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36461
  factory(global.moment)
36462
  }(this, (function (moment) { 'use strict';
36488
  future : 'om %s',
36489
  past : '%s sidan',
36490
  s : 'nokre sekund',
 
36491
  m : 'eit minutt',
36492
  mm : '%d minutt',
36493
  h : 'ein time',
36521
  //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
36522
 
36523
  ;(function (global, factory) {
36524
+ true ? factory(__webpack_require__(302)) :
36525
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36526
  factory(global.moment)
36527
  }(this, (function (moment) { 'use strict';
36579
  future : '%s ਵਿੱਚ',
36580
  past : '%s ਪਿਛਲੇ',
36581
  s : 'ਕੁਝ ਸਕਿੰਟ',
 
36582
  m : 'ਇਕ ਮਿੰਟ',
36583
  mm : '%d ਮਿੰਟ',
36584
  h : 'ਇੱਕ ਘੰਟਾ',
36650
  //! author : Rafal Hirsz : https://github.com/evoL
36651
 
36652
  ;(function (global, factory) {
36653
+ true ? factory(__webpack_require__(302)) :
36654
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36655
  factory(global.moment)
36656
  }(this, (function (moment) { 'use strict';
36664
  function translate(number, withoutSuffix, key) {
36665
  var result = number + ' ';
36666
  switch (key) {
 
 
36667
  case 'm':
36668
  return withoutSuffix ? 'minuta' : 'minutę';
36669
  case 'mm':
36746
  future : 'za %s',
36747
  past : '%s temu',
36748
  s : 'kilka sekund',
 
36749
  m : translate,
36750
  mm : translate,
36751
  h : translate,
36779
  //! author : Jefferson : https://github.com/jalex79
36780
 
36781
  ;(function (global, factory) {
36782
+ true ? factory(__webpack_require__(302)) :
36783
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36784
  factory(global.moment)
36785
  }(this, (function (moment) { 'use strict';
36816
  future : 'em %s',
36817
  past : 'há %s',
36818
  s : 'segundos',
 
36819
  m : 'um minuto',
36820
  mm : '%d minutos',
36821
  h : 'uma hora',
36849
  //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
36850
 
36851
  ;(function (global, factory) {
36852
+ true ? factory(__webpack_require__(302)) :
36853
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36854
  factory(global.moment)
36855
  }(this, (function (moment) { 'use strict';
36917
  //! author : Valentin Agachi : https://github.com/avaly
36918
 
36919
  ;(function (global, factory) {
36920
+ true ? factory(__webpack_require__(302)) :
36921
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
36922
  factory(global.moment)
36923
  }(this, (function (moment) { 'use strict';
36925
 
36926
  function relativeTimeWithPlural(number, withoutSuffix, key) {
36927
  var format = {
 
36928
  'mm': 'minute',
36929
  'hh': 'ore',
36930
  'dd': 'zile',
36965
  future : 'peste %s',
36966
  past : '%s în urmă',
36967
  s : 'câteva secunde',
 
36968
  m : 'un minut',
36969
  mm : relativeTimeWithPlural,
36970
  h : 'o oră',
36998
  //! author : Коренберг Марк : https://github.com/socketpair
36999
 
37000
  ;(function (global, factory) {
37001
+ true ? factory(__webpack_require__(302)) :
37002
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37003
  factory(global.moment)
37004
  }(this, (function (moment) { 'use strict';
37010
  }
37011
  function relativeTimeWithPlural(number, withoutSuffix, key) {
37012
  var format = {
 
37013
  'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
37014
  'hh': 'час_часа_часов',
37015
  'dd': 'день_дня_дней',
37061
  // Выражение, которое соотвествует только сокращённым формам
37062
  monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
37063
  longDateFormat : {
37064
+ LT : 'HH:mm',
37065
+ LTS : 'HH:mm:ss',
37066
  L : 'DD.MM.YYYY',
37067
  LL : 'D MMMM YYYY г.',
37068
+ LLL : 'D MMMM YYYY г., HH:mm',
37069
+ LLLL : 'dddd, D MMMM YYYY г., HH:mm'
37070
  },
37071
  calendar : {
37072
  sameDay: '[Сегодня в] LT',
37122
  future : 'через %s',
37123
  past : '%s назад',
37124
  s : 'несколько секунд',
 
37125
  m : relativeTimeWithPlural,
37126
  mm : relativeTimeWithPlural,
37127
  h : 'час',
37184
  //! author : Narain Sagar : https://github.com/narainsagar
37185
 
37186
  ;(function (global, factory) {
37187
+ true ? factory(__webpack_require__(302)) :
37188
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37189
  factory(global.moment)
37190
  }(this, (function (moment) { 'use strict';
37250
  future : '%s پوء',
37251
  past : '%s اڳ',
37252
  s : 'چند سيڪنڊ',
 
37253
  m : 'هڪ منٽ',
37254
  mm : '%d منٽ',
37255
  h : 'هڪ ڪلاڪ',
37287
  //! authors : Bård Rolstad Henriksen : https://github.com/karamell
37288
 
37289
  ;(function (global, factory) {
37290
+ true ? factory(__webpack_require__(302)) :
37291
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37292
  factory(global.moment)
37293
  }(this, (function (moment) { 'use strict';
37320
  future : '%s geažes',
37321
  past : 'maŋit %s',
37322
  s : 'moadde sekunddat',
 
37323
  m : 'okta minuhta',
37324
  mm : '%d minuhtat',
37325
  h : 'okta diimmu',
37353
  //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
37354
 
37355
  ;(function (global, factory) {
37356
+ true ? factory(__webpack_require__(302)) :
37357
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37358
  factory(global.moment)
37359
  }(this, (function (moment) { 'use strict';
37387
  future : '%sකින්',
37388
  past : '%sකට පෙර',
37389
  s : 'තත්පර කිහිපය',
 
37390
  m : 'මිනිත්තුව',
37391
  mm : 'මිනිත්තු %d',
37392
  h : 'පැය',
37430
  //! based on work of petrbela : https://github.com/petrbela
37431
 
37432
  ;(function (global, factory) {
37433
+ true ? factory(__webpack_require__(302)) :
37434
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37435
  factory(global.moment)
37436
  }(this, (function (moment) { 'use strict';
37446
  switch (key) {
37447
  case 's': // a few seconds / in a few seconds / a few seconds ago
37448
  return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami';
 
 
 
 
 
 
 
37449
  case 'm': // a minute / in a minute / a minute ago
37450
  return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou');
37451
  case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
37551
  future : 'za %s',
37552
  past : 'pred %s',
37553
  s : translate,
 
37554
  m : translate,
37555
  mm : translate,
37556
  h : translate,
37584
  //! author : Robert Sedovšek : https://github.com/sedovsek
37585
 
37586
  ;(function (global, factory) {
37587
+ true ? factory(__webpack_require__(302)) :
37588
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37589
  factory(global.moment)
37590
  }(this, (function (moment) { 'use strict';
37595
  switch (key) {
37596
  case 's':
37597
  return withoutSuffix || isFuture ? 'nekaj sekund' : 'nekaj sekundami';
 
 
 
 
 
 
 
 
 
 
 
37598
  case 'm':
37599
  return withoutSuffix ? 'ena minuta' : 'eno minuto';
37600
  case 'mm':
37718
  future : 'čez %s',
37719
  past : 'pred %s',
37720
  s : processRelativeTime,
 
37721
  m : processRelativeTime,
37722
  mm : processRelativeTime,
37723
  h : processRelativeTime,
37753
  //! author : Oerd Cukalla : https://github.com/oerd
37754
 
37755
  ;(function (global, factory) {
37756
+ true ? factory(__webpack_require__(302)) :
37757
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37758
  factory(global.moment)
37759
  }(this, (function (moment) { 'use strict';
37793
  future : 'në %s',
37794
  past : '%s më parë',
37795
  s : 'disa sekonda',
 
37796
  m : 'një minutë',
37797
  mm : '%d minuta',
37798
  h : 'një orë',
37826
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
37827
 
37828
  ;(function (global, factory) {
37829
+ true ? factory(__webpack_require__(302)) :
37830
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37831
  factory(global.moment)
37832
  }(this, (function (moment) { 'use strict';
37834
 
37835
  var translator = {
37836
  words: { //Different grammatical cases
 
37837
  m: ['jedan minut', 'jedne minute'],
37838
  mm: ['minut', 'minute', 'minuta'],
37839
  h: ['jedan sat', 'jednog sata'],
37908
  future : 'za %s',
37909
  past : 'pre %s',
37910
  s : 'nekoliko sekundi',
 
37911
  m : translator.translate,
37912
  mm : translator.translate,
37913
  h : translator.translate,
37941
  //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
37942
 
37943
  ;(function (global, factory) {
37944
+ true ? factory(__webpack_require__(302)) :
37945
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
37946
  factory(global.moment)
37947
  }(this, (function (moment) { 'use strict';
37949
 
37950
  var translator = {
37951
  words: { //Different grammatical cases
 
37952
  m: ['један минут', 'једне минуте'],
37953
  mm: ['минут', 'минуте', 'минута'],
37954
  h: ['један сат', 'једног сата'],
38023
  future : 'за %s',
38024
  past : 'пре %s',
38025
  s : 'неколико секунди',
 
38026
  m : translator.translate,
38027
  mm : translator.translate,
38028
  h : translator.translate,
38056
  //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
38057
 
38058
  ;(function (global, factory) {
38059
+ true ? factory(__webpack_require__(302)) :
38060
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38061
  factory(global.moment)
38062
  }(this, (function (moment) { 'use strict';
38090
  future : 'nga %s',
38091
  past : 'wenteka nga %s',
38092
  s : 'emizuzwana lomcane',
 
38093
  m : 'umzuzu',
38094
  mm : '%d emizuzu',
38095
  h : 'lihora',
38150
  //! author : Jens Alm : https://github.com/ulmus
38151
 
38152
  ;(function (global, factory) {
38153
+ true ? factory(__webpack_require__(302)) :
38154
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38155
  factory(global.moment)
38156
  }(this, (function (moment) { 'use strict';
38184
  future : 'om %s',
38185
  past : 'för %s sedan',
38186
  s : 'några sekunder',
 
38187
  m : 'en minut',
38188
  mm : '%d minuter',
38189
  h : 'en timme',
38224
  //! author : Fahad Kassim : https://github.com/fadsel
38225
 
38226
  ;(function (global, factory) {
38227
+ true ? factory(__webpack_require__(302)) :
38228
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38229
  factory(global.moment)
38230
  }(this, (function (moment) { 'use strict';
38257
  future : '%s baadaye',
38258
  past : 'tokea %s',
38259
  s : 'hivi punde',
 
38260
  m : 'dakika moja',
38261
  mm : 'dakika %d',
38262
  h : 'saa limoja',
38288
  //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
38289
 
38290
  ;(function (global, factory) {
38291
+ true ? factory(__webpack_require__(302)) :
38292
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38293
  factory(global.moment)
38294
  }(this, (function (moment) { 'use strict';
38345
  future : '%s இல்',
38346
  past : '%s முன்',
38347
  s : 'ஒரு சில விநாடிகள்',
 
38348
  m : 'ஒரு நிமிடம்',
38349
  mm : '%d நிமிடங்கள்',
38350
  h : 'ஒரு மணி நேரம்',
38423
  //! author : Krishna Chaitanya Thota : https://github.com/kcthota
38424
 
38425
  ;(function (global, factory) {
38426
+ true ? factory(__webpack_require__(302)) :
38427
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38428
  factory(global.moment)
38429
  }(this, (function (moment) { 'use strict';
38456
  future : '%s లో',
38457
  past : '%s క్రితం',
38458
  s : 'కొన్ని క్షణాలు',
 
38459
  m : 'ఒక నిమిషం',
38460
  mm : '%d నిమిషాలు',
38461
  h : 'ఒక గంట',
38518
  //! author : Onorio De J. Afonso : https://github.com/marobo
38519
 
38520
  ;(function (global, factory) {
38521
+ true ? factory(__webpack_require__(302)) :
38522
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38523
  factory(global.moment)
38524
  }(this, (function (moment) { 'use strict';
38550
  future : 'iha %s',
38551
  past : '%s liuba',
38552
  s : 'minutu balun',
 
38553
  m : 'minutu ida',
38554
  mm : 'minutus %d',
38555
  h : 'horas ida',
38590
  //! author : Kridsada Thanabulpong : https://github.com/sirn
38591
 
38592
  ;(function (global, factory) {
38593
+ true ? factory(__webpack_require__(302)) :
38594
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38595
  factory(global.moment)
38596
  }(this, (function (moment) { 'use strict';
38635
  future : 'อีก %s',
38636
  past : '%sที่แล้ว',
38637
  s : 'ไม่กี่วินาที',
 
38638
  m : '1 นาที',
38639
  mm : '%d นาที',
38640
  h : '1 ชั่วโมง',
38662
  //! author : Dan Hagman : https://github.com/hagmandan
38663
 
38664
  ;(function (global, factory) {
38665
+ true ? factory(__webpack_require__(302)) :
38666
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38667
  factory(global.moment)
38668
  }(this, (function (moment) { 'use strict';
38694
  future : 'sa loob ng %s',
38695
  past : '%s ang nakalipas',
38696
  s : 'ilang segundo',
 
38697
  m : 'isang minuto',
38698
  mm : '%d minuto',
38699
  h : 'isang oras',
38729
  //! author : Dominika Kruk : https://github.com/amaranthrose
38730
 
38731
  ;(function (global, factory) {
38732
+ true ? factory(__webpack_require__(302)) :
38733
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38734
  factory(global.moment)
38735
  }(this, (function (moment) { 'use strict';
38764
  function translate(number, withoutSuffix, string, isFuture) {
38765
  var numberNoun = numberAsNoun(number);
38766
  switch (string) {
 
 
38767
  case 'mm':
38768
  return numberNoun + ' tup';
38769
  case 'hh':
38821
  future : translateFuture,
38822
  past : translatePast,
38823
  s : 'puS lup',
 
38824
  m : 'wa’ tup',
38825
  mm : translate,
38826
  h : 'wa’ rep',
38855
  //! Burak Yiğit Kaya: https://github.com/BYK
38856
 
38857
  ;(function (global, factory) {
38858
+ true ? factory(__webpack_require__(302)) :
38859
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38860
  factory(global.moment)
38861
  }(this, (function (moment) { 'use strict';
38908
  future : '%s sonra',
38909
  past : '%s önce',
38910
  s : 'birkaç saniye',
 
38911
  m : 'bir dakika',
38912
  mm : '%d dakika',
38913
  h : 'bir saat',
38950
  //! author : Iustì Canun
38951
 
38952
  ;(function (global, factory) {
38953
+ true ? factory(__webpack_require__(302)) :
38954
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
38955
  factory(global.moment)
38956
  }(this, (function (moment) { 'use strict';
38995
  future : 'osprei %s',
38996
  past : 'ja%s',
38997
  s : processRelativeTime,
 
38998
  m : processRelativeTime,
38999
  mm : processRelativeTime,
39000
  h : processRelativeTime,
39017
  function processRelativeTime(number, withoutSuffix, key, isFuture) {
39018
  var format = {
39019
  's': ['viensas secunds', '\'iensas secunds'],
 
39020
  'm': ['\'n míut', '\'iens míut'],
39021
  'mm': [number + ' míuts', '' + number + ' míuts'],
39022
  'h': ['\'n þora', '\'iensa þora'],
39045
  //! author : Abdel Said : https://github.com/abdelsaid
39046
 
39047
  ;(function (global, factory) {
39048
+ true ? factory(__webpack_require__(302)) :
39049
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39050
  factory(global.moment)
39051
  }(this, (function (moment) { 'use strict';
39077
  future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
39078
  past : 'ⵢⴰⵏ %s',
39079
  s : 'ⵉⵎⵉⴽ',
 
39080
  m : 'ⵎⵉⵏⵓⴺ',
39081
  mm : '%d ⵎⵉⵏⵓⴺ',
39082
  h : 'ⵙⴰⵄⴰ',
39108
  //! author : Abdel Said : https://github.com/abdelsaid
39109
 
39110
  ;(function (global, factory) {
39111
+ true ? factory(__webpack_require__(302)) :
39112
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39113
  factory(global.moment)
39114
  }(this, (function (moment) { 'use strict';
39140
  future : 'dadkh s yan %s',
39141
  past : 'yan %s',
39142
  s : 'imik',
 
39143
  m : 'minuḍ',
39144
  mm : '%d minuḍ',
39145
  h : 'saɛa',
39172
  //! Author : Menelion Elensúle : https://github.com/Oire
39173
 
39174
  ;(function (global, factory) {
39175
+ true ? factory(__webpack_require__(302)) :
39176
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39177
  factory(global.moment)
39178
  }(this, (function (moment) { 'use strict';
39184
  }
39185
  function relativeTimeWithPlural(number, withoutSuffix, key) {
39186
  var format = {
 
39187
  'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',
39188
  'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',
39189
  'dd': 'день_дні_днів',
39265
  future : 'за %s',
39266
  past : '%s тому',
39267
  s : 'декілька секунд',
 
39268
  m : relativeTimeWithPlural,
39269
  mm : relativeTimeWithPlural,
39270
  h : 'годину',
39328
  //! author : Zack : https://github.com/ZackVision
39329
 
39330
  ;(function (global, factory) {
39331
+ true ? factory(__webpack_require__(302)) :
39332
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39333
  factory(global.moment)
39334
  }(this, (function (moment) { 'use strict';
39394
  future : '%s بعد',
39395
  past : '%s قبل',
39396
  s : 'چند سیکنڈ',
 
39397
  m : 'ایک منٹ',
39398
  mm : '%d منٹ',
39399
  h : 'ایک گھنٹہ',
39431
  //! author : Sardor Muminov : https://github.com/muminoff
39432
 
39433
  ;(function (global, factory) {
39434
+ true ? factory(__webpack_require__(302)) :
39435
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39436
  factory(global.moment)
39437
  }(this, (function (moment) { 'use strict';
39463
  future : 'Якин %s ичида',
39464
  past : 'Бир неча %s олдин',
39465
  s : 'фурсат',
 
39466
  m : 'бир дакика',
39467
  mm : '%d дакика',
39468
  h : 'бир соат',
39494
  //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
39495
 
39496
  ;(function (global, factory) {
39497
+ true ? factory(__webpack_require__(302)) :
39498
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39499
  factory(global.moment)
39500
  }(this, (function (moment) { 'use strict';
39526
  future : 'Yaqin %s ichida',
39527
  past : 'Bir necha %s oldin',
39528
  s : 'soniya',
 
39529
  m : 'bir daqiqa',
39530
  mm : '%d daqiqa',
39531
  h : 'bir soat',
39557
  //! author : Bang Nguyen : https://github.com/bangnk
39558
 
39559
  ;(function (global, factory) {
39560
+ true ? factory(__webpack_require__(302)) :
39561
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39562
  factory(global.moment)
39563
  }(this, (function (moment) { 'use strict';
39606
  future : '%s tới',
39607
  past : '%s trước',
39608
  s : 'vài giây',
 
39609
  m : 'một phút',
39610
  mm : '%d phút',
39611
  h : 'một giờ',
39641
  //! author : Andrew Hood : https://github.com/andrewhood125
39642
 
39643
  ;(function (global, factory) {
39644
+ true ? factory(__webpack_require__(302)) :
39645
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39646
  factory(global.moment)
39647
  }(this, (function (moment) { 'use strict';
39674
  future : 'í~ñ %s',
39675
  past : '%s á~gó',
39676
  s : 'á ~féw ~sécó~ñds',
 
39677
  m : 'á ~míñ~úté',
39678
  mm : '%d m~íñú~tés',
39679
  h : 'á~ñ hó~úr',
39714
  //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe
39715
 
39716
  ;(function (global, factory) {
39717
+ true ? factory(__webpack_require__(302)) :
39718
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39719
  factory(global.moment)
39720
  }(this, (function (moment) { 'use strict';
39746
  future : 'ní %s',
39747
  past : '%s kọjá',
39748
  s : 'ìsẹjú aayá die',
 
39749
  m : 'ìsẹjú kan',
39750
  mm : 'ìsẹjú %d',
39751
  h : 'wákati kan',
39780
  //! author : Zeno Zeng : https://github.com/zenozeng
39781
 
39782
  ;(function (global, factory) {
39783
+ true ? factory(__webpack_require__(302)) :
39784
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39785
  factory(global.moment)
39786
  }(this, (function (moment) { 'use strict';
39795
  longDateFormat : {
39796
  LT : 'HH:mm',
39797
  LTS : 'HH:mm:ss',
39798
+ L : 'YYYY年MMMD日',
39799
+ LL : 'YYYY年MMMD日',
39800
+ LLL : 'YYYY年MMMD日Ah点mm分',
39801
+ LLLL : 'YYYY年MMMD日ddddAh点mm分',
39802
+ l : 'YYYY年MMMD日',
39803
+ ll : 'YYYY年MMMD日',
39804
+ lll : 'YYYY年MMMD日 HH:mm',
39805
+ llll : 'YYYY年MMMD日dddd HH:mm'
39806
  },
39807
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
39808
  meridiemHour: function (hour, meridiem) {
39863
  future : '%s内',
39864
  past : '%s前',
39865
  s : '几秒',
 
39866
  m : '1 分钟',
39867
  mm : '%d 分钟',
39868
  h : '1 小时',
39897
  //! author : Konstantin : https://github.com/skfd
39898
 
39899
  ;(function (global, factory) {
39900
+ true ? factory(__webpack_require__(302)) :
39901
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
39902
  factory(global.moment)
39903
  }(this, (function (moment) { 'use strict';
39912
  longDateFormat : {
39913
  LT : 'HH:mm',
39914
  LTS : 'HH:mm:ss',
39915
+ L : 'YYYY年MMMD日',
39916
+ LL : 'YYYY年MMMD日',
39917
+ LLL : 'YYYY年MMMD日 HH:mm',
39918
+ LLLL : 'YYYY年MMMD日dddd HH:mm',
39919
+ l : 'YYYY年MMMD日',
39920
+ ll : 'YYYY年MMMD日',
39921
+ lll : 'YYYY年MMMD日 HH:mm',
39922
+ llll : 'YYYY年MMMD日dddd HH:mm'
39923
  },
39924
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
39925
  meridiemHour : function (hour, meridiem) {
39978
  future : '%s內',
39979
  past : '%s前',
39980
  s : '幾秒',
 
39981
  m : '1 分鐘',
39982
  mm : '%d 分鐘',
39983
  h : '1 小時',
40006
  //! author : Chris Lam : https://github.com/hehachris
40007
 
40008
  ;(function (global, factory) {
40009
+ true ? factory(__webpack_require__(302)) :
40010
  typeof define === 'function' && define.amd ? define(['../moment'], factory) :
40011
  factory(global.moment)
40012
  }(this, (function (moment) { 'use strict';
40021
  longDateFormat : {
40022
  LT : 'HH:mm',
40023
  LTS : 'HH:mm:ss',
40024
+ L : 'YYYY年MMMD日',
40025
+ LL : 'YYYY年MMMD日',
40026
+ LLL : 'YYYY年MMMD日 HH:mm',
40027
+ LLLL : 'YYYY年MMMD日dddd HH:mm',
40028
+ l : 'YYYY年MMMD日',
40029
+ ll : 'YYYY年MMMD日',
40030
+ lll : 'YYYY年MMMD日 HH:mm',
40031
+ llll : 'YYYY年MMMD日dddd HH:mm'
40032
  },
40033
  meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
40034
  meridiemHour : function (hour, meridiem) {
40087
  future : '%s內',
40088
  past : '%s前',
40089
  s : '幾秒',
 
40090
  m : '1 分鐘',
40091
  mm : '%d 分鐘',
40092
  h : '1 小時',
50362
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
50363
  __webpack_require__(276),
50364
  __webpack_require__(275),
50365
+ __webpack_require__(302)
50366
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function ( // eslint-disable-line func-names
50367
  mp,
50368
  jQuery,
assets/js/manifest.json CHANGED
@@ -1,10 +1,10 @@
1
  {
2
  "mp2migrator.js": "mp2migrator.dc0d6e2b.js",
3
  "public.js": "public.ea9ffa3f.js",
4
- "admin.js": "admin.aaa81cde.js",
5
- "admin_vendor.js": "admin_vendor.1b9d5c2b.js",
6
- "form_editor.js": "form_editor.901a1d16.js",
7
- "mailpoet.js": "mailpoet.5afefe4c.js",
8
  "newsletter_editor.js": "newsletter_editor.6416262e.js",
9
- "vendor.js": "vendor.c171af1b.js"
10
  }
1
  {
2
  "mp2migrator.js": "mp2migrator.dc0d6e2b.js",
3
  "public.js": "public.ea9ffa3f.js",
4
+ "admin.js": "admin.e914b58f.js",
5
+ "admin_vendor.js": "admin_vendor.d60039d9.js",
6
+ "form_editor.js": "form_editor.13982476.js",
7
+ "mailpoet.js": "mailpoet.a55b11ee.js",
8
  "newsletter_editor.js": "newsletter_editor.6416262e.js",
9
+ "vendor.js": "vendor.e9cd522f.js"
10
  }
assets/js/newsletter_editor.6416262e.js CHANGED
@@ -108,7 +108,7 @@ webpackJsonp([4],{
108
  __webpack_require__(577);
109
  __webpack_require__(578);
110
  __webpack_require__(576);
111
- __webpack_require__(289);
112
  __webpack_require__(579);
113
  __webpack_require__(580);
114
  __webpack_require__(581);
@@ -1728,7 +1728,7 @@ webpackJsonp([4],{
1728
 
1729
  /***/ },
1730
 
1731
- /***/ 289:
1732
  /***/ function(module, exports, __webpack_require__) {
1733
 
1734
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;var require;var require;/*!
@@ -36721,7 +36721,7 @@ webpackJsonp([4],{
36721
  __webpack_require__(605),
36722
  __webpack_require__(607),
36723
  __webpack_require__(609),
36724
- __webpack_require__(289)
36725
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function (
36726
  Backbone,
36727
  Marionette,
108
  __webpack_require__(577);
109
  __webpack_require__(578);
110
  __webpack_require__(576);
111
+ __webpack_require__(290);
112
  __webpack_require__(579);
113
  __webpack_require__(580);
114
  __webpack_require__(581);
1728
 
1729
  /***/ },
1730
 
1731
+ /***/ 290:
1732
  /***/ function(module, exports, __webpack_require__) {
1733
 
1734
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;var require;var require;/*!
36721
  __webpack_require__(605),
36722
  __webpack_require__(607),
36723
  __webpack_require__(609),
36724
+ __webpack_require__(290)
36725
  ], __WEBPACK_AMD_DEFINE_RESULT__ = function (
36726
  Backbone,
36727
  Marionette,
assets/js/{vendor.c171af1b.js → vendor.e9cd522f.js} RENAMED
@@ -76,7 +76,7 @@
76
  /******/ script.charset = 'utf-8';
77
  /******/ script.async = true;
78
 
79
- /******/ script.src = __webpack_require__.p + "" + ({"0":"admin","1":"admin_vendor","2":"form_editor","3":"mailpoet","4":"newsletter_editor"}[chunkId]||chunkId) + "." + {"0":"aaa81cde","1":"1b9d5c2b","2":"901a1d16","3":"5afefe4c","4":"6416262e"}[chunkId] + ".chunk.js";
80
  /******/ head.appendChild(script);
81
  /******/ }
82
  /******/ };
76
  /******/ script.charset = 'utf-8';
77
  /******/ script.async = true;
78
 
79
+ /******/ script.src = __webpack_require__.p + "" + ({"0":"admin","1":"admin_vendor","2":"form_editor","3":"mailpoet","4":"newsletter_editor"}[chunkId]||chunkId) + "." + {"0":"e914b58f","1":"d60039d9","2":"13982476","3":"a55b11ee","4":"6416262e"}[chunkId] + ".chunk.js";
80
  /******/ head.appendChild(script);
81
  /******/ }
82
  /******/ };
lang/index.php CHANGED
@@ -1,3 +0,0 @@
1
- <?php
2
-
3
- // Silence is golden
 
 
 
lang/mailpoet-sq.mo CHANGED
Binary file
lang/mailpoet.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
7
- "POT-Creation-Date: 2018-01-30 18:36:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -1331,7 +1331,7 @@ msgstr ""
1331
  msgid "Trash"
1332
  msgstr ""
1333
 
1334
- #: lib/Models/Model.php:55 views/subscribers/importExport/import/step2.html:137
1335
  msgid "Another record already exists. Please specify a different \"%1$s\"."
1336
  msgstr ""
1337
 
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://support.mailpoet.com/\n"
7
+ "POT-Creation-Date: 2018-02-06 12:39:21+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
1331
  msgid "Trash"
1332
  msgstr ""
1333
 
1334
+ #: lib/Models/Model.php:60 views/subscribers/importExport/import/step2.html:137
1335
  msgid "Another record already exists. Please specify a different \"%1$s\"."
1336
  msgstr ""
1337
 
lib/API/JSON/Response.php CHANGED
@@ -9,6 +9,7 @@ abstract class Response {
9
  const STATUS_UNAUTHORIZED = 401;
10
  const STATUS_FORBIDDEN = 403;
11
  const STATUS_NOT_FOUND = 404;
 
12
  const STATUS_UNKNOWN = 500;
13
 
14
  public $status;
9
  const STATUS_UNAUTHORIZED = 401;
10
  const STATUS_FORBIDDEN = 403;
11
  const STATUS_NOT_FOUND = 404;
12
+ const STATUS_CONFLICT = 409;
13
  const STATUS_UNKNOWN = 500;
14
 
15
  public $status;
lib/Cron/Workers/Scheduler.php CHANGED
@@ -106,10 +106,8 @@ class Scheduler {
106
 
107
  function processScheduledStandardNewsletter($newsletter, $queue) {
108
  $segments = $newsletter->segments()->findArray();
109
- $segment_ids = array_map(function($segment) {
110
- return $segment['id'];
111
- }, $segments);
112
- $subscribers = Subscriber::getSubscribedInSegments($segment_ids)->findArray();
113
  $subscribers = Helpers::flattenArray($subscribers);
114
  // update current queue
115
  $queue->subscribers = serialize(
106
 
107
  function processScheduledStandardNewsletter($newsletter, $queue) {
108
  $segments = $newsletter->segments()->findArray();
109
+ $finder = new SubscribersFinder();
110
+ $subscribers = $finder->getSubscribersByList($segments);
 
 
111
  $subscribers = Helpers::flattenArray($subscribers);
112
  // update current queue
113
  $queue->subscribers = serialize(
lib/Models/Model.php CHANGED
@@ -5,6 +5,8 @@ namespace MailPoet\Models;
5
  if(!defined('ABSPATH')) exit;
6
 
7
  class Model extends \Sudzy\ValidModel {
 
 
8
  protected $_errors;
9
  protected $_new_record;
10
 
@@ -26,13 +28,16 @@ class Model extends \Sudzy\ValidModel {
26
  }
27
  }
28
 
29
- function setError($error = '') {
 
 
 
30
  if(!empty($error)) {
31
  if(is_array($error)) {
32
  $this->_errors = array_merge($this->_errors, $error);
33
  $this->_errors = array_unique($this->_errors);
34
  } else {
35
- $this->_errors[] = $error;
36
  }
37
  }
38
  }
@@ -54,7 +59,8 @@ class Model extends \Sudzy\ValidModel {
54
  sprintf(
55
  __('Another record already exists. Please specify a different "%1$s".', 'mailpoet'),
56
  $column
57
- )
 
58
  );
59
  } else {
60
  $this->setError($e->getMessage());
5
  if(!defined('ABSPATH')) exit;
6
 
7
  class Model extends \Sudzy\ValidModel {
8
+ const DUPLICATE_RECORD = 23000;
9
+
10
  protected $_errors;
11
  protected $_new_record;
12
 
28
  }
29
  }
30
 
31
+ function setError($error = '', $error_code = null) {
32
+ if(!$error_code) {
33
+ $error_code = count($this->_errors);
34
+ }
35
  if(!empty($error)) {
36
  if(is_array($error)) {
37
  $this->_errors = array_merge($this->_errors, $error);
38
  $this->_errors = array_unique($this->_errors);
39
  } else {
40
+ $this->_errors[$error_code] = $error;
41
  }
42
  }
43
  }
59
  sprintf(
60
  __('Another record already exists. Please specify a different "%1$s".', 'mailpoet'),
61
  $column
62
+ ),
63
+ Model::DUPLICATE_RECORD
64
  );
65
  } else {
66
  $this->setError($e->getMessage());
lib/Models/Segment.php CHANGED
@@ -258,9 +258,15 @@ class Segment extends Model {
258
  static function bulkDelete($orm) {
259
  $count = parent::bulkAction($orm, function($ids) {
260
  // delete segments (only default)
261
- Segment::whereIn('id', $ids)
262
  ->where('type', Segment::TYPE_DEFAULT)
 
 
 
 
 
263
  ->deleteMany();
 
264
  });
265
 
266
  return array('count' => $count);
258
  static function bulkDelete($orm) {
259
  $count = parent::bulkAction($orm, function($ids) {
260
  // delete segments (only default)
261
+ $segments = Segment::whereIn('id', $ids)
262
  ->where('type', Segment::TYPE_DEFAULT)
263
+ ->findMany();
264
+ $ids = array_map(function($segment) {
265
+ return $segment->id;
266
+ }, $segments);
267
+ SubscriberSegment::whereIn('segment_id', $ids)
268
  ->deleteMany();
269
+ Segment::whereIn('id', $ids)->deleteMany();
270
  });
271
 
272
  return array('count' => $count);
mailpoet.php CHANGED
@@ -4,7 +4,7 @@ if(!defined('ABSPATH')) exit;
4
 
5
  /*
6
  * Plugin Name: MailPoet 3 (New)
7
- * Version: 3.4.0
8
  * Plugin URI: http://www.mailpoet.com
9
  * Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
10
  * Author: MailPoet
@@ -20,7 +20,7 @@ if(!defined('ABSPATH')) exit;
20
  */
21
 
22
  $mailpoet_plugin = array(
23
- 'version' => '3.4.0',
24
  'filename' => __FILE__,
25
  'path' => dirname(__FILE__),
26
  'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',
4
 
5
  /*
6
  * Plugin Name: MailPoet 3 (New)
7
+ * Version: 3.4.1
8
  * Plugin URI: http://www.mailpoet.com
9
  * Description: Create and send newsletters, post notifications and welcome emails from your WordPress.
10
  * Author: MailPoet
20
  */
21
 
22
  $mailpoet_plugin = array(
23
+ 'version' => '3.4.1',
24
  'filename' => __FILE__,
25
  'path' => dirname(__FILE__),
26
  'autoloader' => dirname(__FILE__) . '/vendor/autoload.php',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: newsletter, email, welcome email, post notification, autoresponder, signup
4
  Requires at least: 4.7
5
  Tested up to: 4.9
6
  Requires PHP: 5.3
7
- Stable tag: 3.4.0
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -116,6 +116,10 @@ Stop by our [support site](https://www.mailpoet.com/support).
116
 
117
  == Changelog ==
118
 
 
 
 
 
119
  = 3.4.0 - 2018-01-30 =
120
  * Added: choices of templates are now categorized for clarity;
121
  * Fixed: plugin activation to be able to create all plugin tables with MySQL strict mode enabled. Thank you @deltafactory!
4
  Requires at least: 4.7
5
  Tested up to: 4.9
6
  Requires PHP: 5.3
7
+ Stable tag: 3.4.1
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
116
 
117
  == Changelog ==
118
 
119
+ = 3.4.1 - 2018-02-06 =
120
+ * Fixed: previously saved templates are now under "Your saved templates";
121
+ * Improved: imported templates with no matching category are now added to "Your saved templates".
122
+
123
  = 3.4.0 - 2018-01-30 =
124
  * Added: choices of templates are now categorized for clarity;
125
  * Fixed: plugin activation to be able to create all plugin tables with MySQL strict mode enabled. Thank you @deltafactory!
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit1540fc5119aa91bb83bcddb25ab5cc21::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInite79e0602371dec1278355bef6ebff5d4::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInite79e0602371dec1278355bef6ebff5d4
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInite79e0602371dec1278355bef6ebff5d4::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequiree79e0602371dec1278355bef6ebff5d4($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequiree79e0602371dec1278355bef6ebff5d4($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit1540fc5119aa91bb83bcddb25ab5cc21
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit1540fc5119aa91bb83bcddb25ab5cc21', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit1540fc5119aa91bb83bcddb25ab5cc21', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
+ $includeFiles = Composer\Autoload\ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire1540fc5119aa91bb83bcddb25ab5cc21($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire1540fc5119aa91bb83bcddb25ab5cc21($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInite79e0602371dec1278355bef6ebff5d4
8
  {
9
  public static $files = array (
10
  '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
@@ -985,10 +985,10 @@ class ComposerStaticInite79e0602371dec1278355bef6ebff5d4
985
  public static function getInitializer(ClassLoader $loader)
986
  {
987
  return \Closure::bind(function () use ($loader) {
988
- $loader->prefixLengthsPsr4 = ComposerStaticInite79e0602371dec1278355bef6ebff5d4::$prefixLengthsPsr4;
989
- $loader->prefixDirsPsr4 = ComposerStaticInite79e0602371dec1278355bef6ebff5d4::$prefixDirsPsr4;
990
- $loader->prefixesPsr0 = ComposerStaticInite79e0602371dec1278355bef6ebff5d4::$prefixesPsr0;
991
- $loader->classMap = ComposerStaticInite79e0602371dec1278355bef6ebff5d4::$classMap;
992
 
993
  }, null, ClassLoader::class);
994
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21
8
  {
9
  public static $files = array (
10
  '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
985
  public static function getInitializer(ClassLoader $loader)
986
  {
987
  return \Closure::bind(function () use ($loader) {
988
+ $loader->prefixLengthsPsr4 = ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::$prefixLengthsPsr4;
989
+ $loader->prefixDirsPsr4 = ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::$prefixDirsPsr4;
990
+ $loader->prefixesPsr0 = ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::$prefixesPsr0;
991
+ $loader->classMap = ComposerStaticInit1540fc5119aa91bb83bcddb25ab5cc21::$classMap;
992
 
993
  }, null, ClassLoader::class);
994
  }