@ably/ui 11.7.0 → 11.7.1-dev.abfa747

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +7 -7
  2. package/core/Code/component.css +2 -0
  3. package/core/CompanyAutocomplete/component.js +2 -1
  4. package/core/CompanyAutocomplete/component.js.LICENSE.txt +1 -0
  5. package/core/FeaturedLink/component.css +2 -11
  6. package/core/FeaturedLink.jsx +12 -5
  7. package/core/Footer/component.css +3 -3
  8. package/core/Footer.jsx +15 -15
  9. package/core/Meganav/component.css +6 -6
  10. package/core/Meganav.jsx +348 -756
  11. package/core/MeganavBlogPostsList/component.js +2 -1
  12. package/core/MeganavBlogPostsList/component.js.LICENSE.txt +1 -0
  13. package/core/MeganavBlogPostsList.jsx +12 -5
  14. package/core/MeganavContentCompany.jsx +307 -715
  15. package/core/MeganavContentDevelopers.jsx +1 -1
  16. package/core/MeganavContentProducts.jsx +13 -6
  17. package/core/MeganavItemsMobile.jsx +12 -5
  18. package/core/MeganavItemsSignedIn.jsx +12 -5
  19. package/core/MeganavSearch.jsx +12 -5
  20. package/core/MeganavSearchPanel.jsx +12 -5
  21. package/core/MeganavSearchSuggestions.jsx +12 -5
  22. package/core/Notice.jsx +2 -2
  23. package/core/Uptime.jsx +301 -709
  24. package/core/fonts/jetBrains-mono.css +3 -0
  25. package/core/fonts/manrope.css +3 -0
  26. package/core/scripts.js +2 -1
  27. package/core/scripts.js.LICENSE.txt +1 -0
  28. package/core/styles.css +221 -94
  29. package/package.json +3 -3
  30. package/src/core/FeaturedLink/component.css +2 -11
  31. package/src/core/FeaturedLink/component.html.erb +14 -5
  32. package/src/core/FeaturedLink/component.jsx +10 -4
  33. package/src/core/FeaturedLink/component.rb +3 -1
  34. package/src/core/Footer/component.css +3 -3
  35. package/src/core/Footer/component.html.erb +14 -14
  36. package/src/core/Footer/component.jsx +15 -15
  37. package/src/core/Meganav/component.css +6 -6
  38. package/src/core/MeganavContentDevelopers/component.html.erb +1 -1
  39. package/src/core/MeganavContentDevelopers/component.jsx +1 -1
  40. package/src/core/MeganavContentProducts/component.html.erb +1 -1
  41. package/src/core/MeganavContentProducts/component.jsx +1 -1
  42. package/src/core/Notice/component.html.erb +2 -2
  43. package/src/core/Notice/component.jsx +2 -2
  44. package/src/core/fonts/jetBrains-mono.css +3 -0
  45. package/src/core/fonts/manrope.css +3 -0
  46. package/src/core/styles/buttons.css +5 -5
  47. package/src/core/styles/forms.css +5 -5
  48. package/src/core/styles/properties.css +153 -45
  49. package/src/core/styles/text.css +58 -39
  50. package/src/core/utils/syntax-highlighter.css +2 -0
  51. package/tailwind.config.js +179 -49
@@ -11,14 +11,6 @@
11
11
  return /******/ (() => { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ({
13
13
 
14
- /***/ 7757:
15
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
16
-
17
- /* unused reexport */ __webpack_require__(5666);
18
-
19
-
20
- /***/ }),
21
-
22
14
  /***/ 9787:
23
15
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
24
16
 
@@ -119,24 +111,31 @@ var ConnectStateWrapper = function ConnectStateWrapper(Component, selectors) {
119
111
  var FeaturedLink = function FeaturedLink(_ref) {
120
112
  var url = _ref.url,
121
113
  _ref$textSize = _ref.textSize,
122
- textSize = _ref$textSize === void 0 ? "text-menu3" : _ref$textSize,
114
+ textSize = _ref$textSize === void 0 ? "text-p2" : _ref$textSize,
123
115
  _ref$iconColor = _ref.iconColor,
124
116
  iconColor = _ref$iconColor === void 0 ? "text-cool-black" : _ref$iconColor,
125
117
  _ref$flush = _ref.flush,
126
118
  flush = _ref$flush === void 0 ? false : _ref$flush,
119
+ _ref$reverse = _ref.reverse,
120
+ reverse = _ref$reverse === void 0 ? false : _ref$reverse,
127
121
  children = _ref.children;
128
122
  return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement("a", {
129
123
  href: url,
130
- className: "ui-featured-link ".concat(textSize, " ").concat(flush ? "" : "py-8", " "),
124
+ className: "ui-featured-link group ".concat(textSize, " ").concat(flush ? "" : "py-8"),
131
125
  style: {
132
126
  "--featured-link-icon-size": "var(".concat(textSize.replace("text", "--fs"), ")")
133
127
  }
134
- }, children, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__["default"], {
128
+ }, reverse ? /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__["default"], {
135
129
  name: "icon-gui-link-arrow",
136
130
  size: "calc(var(--featured-link-icon-size) * 1.25)",
137
131
  color: iconColor,
138
- additionalCSS: "ui-featured-link-icon"
139
- }));
132
+ additionalCSS: "ui-featured-link-icon align-middle mr-8 relative -top-1 -right-4 transition-all group-hover:right-0 transform rotate-180"
133
+ }), children) : /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null, children, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_Icon_component_jsx__WEBPACK_IMPORTED_MODULE_2__["default"], {
134
+ name: "icon-gui-link-arrow",
135
+ size: "calc(var(--featured-link-icon-size) * 1.25)",
136
+ color: iconColor,
137
+ additionalCSS: "ui-featured-link-icon align-middle ml-8 relative -top-1 -left-4 transition-all group-hover:left-0"
138
+ })));
140
139
  };
141
140
 
142
141
  FeaturedLink.propTypes = {
@@ -302,782 +301,375 @@ var createRemoteDataStore = function createRemoteDataStore(reducers) {
302
301
 
303
302
  /***/ }),
304
303
 
305
- /***/ 5666:
304
+ /***/ 6073:
306
305
  /***/ ((module) => {
307
306
 
308
- /**
309
- * Copyright (c) 2014-present, Facebook, Inc.
310
- *
311
- * This source code is licensed under the MIT license found in the
312
- * LICENSE file in the root directory of this source tree.
313
- */
314
-
315
- var runtime = (function (exports) {
316
- "use strict";
317
-
318
- var Op = Object.prototype;
319
- var hasOwn = Op.hasOwnProperty;
320
- var undefined; // More compressible than void 0.
321
- var $Symbol = typeof Symbol === "function" ? Symbol : {};
322
- var iteratorSymbol = $Symbol.iterator || "@@iterator";
323
- var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
324
- var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
325
-
326
- function define(obj, key, value) {
327
- Object.defineProperty(obj, key, {
328
- value: value,
329
- enumerable: true,
330
- configurable: true,
331
- writable: true
332
- });
333
- return obj[key];
307
+ "use strict";
308
+ module.exports = __WEBPACK_EXTERNAL_MODULE__6073__;
309
+
310
+ /***/ }),
311
+
312
+ /***/ 5225:
313
+ /***/ ((module) => {
314
+
315
+ "use strict";
316
+ module.exports = __WEBPACK_EXTERNAL_MODULE__5225__;
317
+
318
+ /***/ }),
319
+
320
+ /***/ 5293:
321
+ /***/ ((module) => {
322
+
323
+ "use strict";
324
+ module.exports = __WEBPACK_EXTERNAL_MODULE__5293__;
325
+
326
+ /***/ }),
327
+
328
+ /***/ 7061:
329
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
330
+
331
+ var _typeof = (__webpack_require__(8698)["default"]);
332
+ function _regeneratorRuntime() {
333
+ "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
334
+ module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
335
+ return e;
336
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports;
337
+ var t,
338
+ e = {},
339
+ r = Object.prototype,
340
+ n = r.hasOwnProperty,
341
+ o = Object.defineProperty || function (t, e, r) {
342
+ t[e] = r.value;
343
+ },
344
+ i = "function" == typeof Symbol ? Symbol : {},
345
+ a = i.iterator || "@@iterator",
346
+ c = i.asyncIterator || "@@asyncIterator",
347
+ u = i.toStringTag || "@@toStringTag";
348
+ function define(t, e, r) {
349
+ return Object.defineProperty(t, e, {
350
+ value: r,
351
+ enumerable: !0,
352
+ configurable: !0,
353
+ writable: !0
354
+ }), t[e];
334
355
  }
335
356
  try {
336
- // IE 8 has a broken Object.defineProperty that only works on DOM objects.
337
357
  define({}, "");
338
- } catch (err) {
339
- define = function(obj, key, value) {
340
- return obj[key] = value;
358
+ } catch (t) {
359
+ define = function define(t, e, r) {
360
+ return t[e] = r;
341
361
  };
342
362
  }
343
-
344
- function wrap(innerFn, outerFn, self, tryLocsList) {
345
- // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
346
- var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
347
- var generator = Object.create(protoGenerator.prototype);
348
- var context = new Context(tryLocsList || []);
349
-
350
- // The ._invoke method unifies the implementations of the .next,
351
- // .throw, and .return methods.
352
- generator._invoke = makeInvokeMethod(innerFn, self, context);
353
-
354
- return generator;
363
+ function wrap(t, e, r, n) {
364
+ var i = e && e.prototype instanceof Generator ? e : Generator,
365
+ a = Object.create(i.prototype),
366
+ c = new Context(n || []);
367
+ return o(a, "_invoke", {
368
+ value: makeInvokeMethod(t, r, c)
369
+ }), a;
355
370
  }
356
- exports.wrap = wrap;
357
-
358
- // Try/catch helper to minimize deoptimizations. Returns a completion
359
- // record like context.tryEntries[i].completion. This interface could
360
- // have been (and was previously) designed to take a closure to be
361
- // invoked without arguments, but in all the cases we care about we
362
- // already have an existing method we want to call, so there's no need
363
- // to create a new function object. We can even get away with assuming
364
- // the method takes exactly one argument, since that happens to be true
365
- // in every case, so we don't have to touch the arguments object. The
366
- // only additional allocation required is the completion record, which
367
- // has a stable shape and so hopefully should be cheap to allocate.
368
- function tryCatch(fn, obj, arg) {
371
+ function tryCatch(t, e, r) {
369
372
  try {
370
- return { type: "normal", arg: fn.call(obj, arg) };
371
- } catch (err) {
372
- return { type: "throw", arg: err };
373
+ return {
374
+ type: "normal",
375
+ arg: t.call(e, r)
376
+ };
377
+ } catch (t) {
378
+ return {
379
+ type: "throw",
380
+ arg: t
381
+ };
373
382
  }
374
383
  }
375
-
376
- var GenStateSuspendedStart = "suspendedStart";
377
- var GenStateSuspendedYield = "suspendedYield";
378
- var GenStateExecuting = "executing";
379
- var GenStateCompleted = "completed";
380
-
381
- // Returning this object from the innerFn has the same effect as
382
- // breaking out of the dispatch switch statement.
383
- var ContinueSentinel = {};
384
-
385
- // Dummy constructor functions that we use as the .constructor and
386
- // .constructor.prototype properties for functions that return Generator
387
- // objects. For full spec compliance, you may wish to configure your
388
- // minifier not to mangle the names of these two functions.
384
+ e.wrap = wrap;
385
+ var h = "suspendedStart",
386
+ l = "suspendedYield",
387
+ f = "executing",
388
+ s = "completed",
389
+ y = {};
389
390
  function Generator() {}
390
391
  function GeneratorFunction() {}
391
392
  function GeneratorFunctionPrototype() {}
392
-
393
- // This is a polyfill for %IteratorPrototype% for environments that
394
- // don't natively support it.
395
- var IteratorPrototype = {};
396
- IteratorPrototype[iteratorSymbol] = function () {
393
+ var p = {};
394
+ define(p, a, function () {
397
395
  return this;
398
- };
399
-
400
- var getProto = Object.getPrototypeOf;
401
- var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
402
- if (NativeIteratorPrototype &&
403
- NativeIteratorPrototype !== Op &&
404
- hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
405
- // This environment has a native %IteratorPrototype%; use it instead
406
- // of the polyfill.
407
- IteratorPrototype = NativeIteratorPrototype;
408
- }
409
-
410
- var Gp = GeneratorFunctionPrototype.prototype =
411
- Generator.prototype = Object.create(IteratorPrototype);
412
- GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
413
- GeneratorFunctionPrototype.constructor = GeneratorFunction;
414
- GeneratorFunction.displayName = define(
415
- GeneratorFunctionPrototype,
416
- toStringTagSymbol,
417
- "GeneratorFunction"
418
- );
419
-
420
- // Helper for defining the .next, .throw, and .return methods of the
421
- // Iterator interface in terms of a single ._invoke method.
422
- function defineIteratorMethods(prototype) {
423
- ["next", "throw", "return"].forEach(function(method) {
424
- define(prototype, method, function(arg) {
425
- return this._invoke(method, arg);
396
+ });
397
+ var d = Object.getPrototypeOf,
398
+ v = d && d(d(values([])));
399
+ v && v !== r && n.call(v, a) && (p = v);
400
+ var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
401
+ function defineIteratorMethods(t) {
402
+ ["next", "throw", "return"].forEach(function (e) {
403
+ define(t, e, function (t) {
404
+ return this._invoke(e, t);
426
405
  });
427
406
  });
428
407
  }
429
-
430
- exports.isGeneratorFunction = function(genFun) {
431
- var ctor = typeof genFun === "function" && genFun.constructor;
432
- return ctor
433
- ? ctor === GeneratorFunction ||
434
- // For the native GeneratorFunction constructor, the best we can
435
- // do is to check its .name property.
436
- (ctor.displayName || ctor.name) === "GeneratorFunction"
437
- : false;
438
- };
439
-
440
- exports.mark = function(genFun) {
441
- if (Object.setPrototypeOf) {
442
- Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
443
- } else {
444
- genFun.__proto__ = GeneratorFunctionPrototype;
445
- define(genFun, toStringTagSymbol, "GeneratorFunction");
446
- }
447
- genFun.prototype = Object.create(Gp);
448
- return genFun;
449
- };
450
-
451
- // Within the body of any async function, `await x` is transformed to
452
- // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
453
- // `hasOwn.call(value, "__await")` to determine if the yielded value is
454
- // meant to be awaited.
455
- exports.awrap = function(arg) {
456
- return { __await: arg };
457
- };
458
-
459
- function AsyncIterator(generator, PromiseImpl) {
460
- function invoke(method, arg, resolve, reject) {
461
- var record = tryCatch(generator[method], generator, arg);
462
- if (record.type === "throw") {
463
- reject(record.arg);
464
- } else {
465
- var result = record.arg;
466
- var value = result.value;
467
- if (value &&
468
- typeof value === "object" &&
469
- hasOwn.call(value, "__await")) {
470
- return PromiseImpl.resolve(value.__await).then(function(value) {
471
- invoke("next", value, resolve, reject);
472
- }, function(err) {
473
- invoke("throw", err, resolve, reject);
474
- });
475
- }
476
-
477
- return PromiseImpl.resolve(value).then(function(unwrapped) {
478
- // When a yielded Promise is resolved, its final value becomes
479
- // the .value of the Promise<{value,done}> result for the
480
- // current iteration.
481
- result.value = unwrapped;
482
- resolve(result);
483
- }, function(error) {
484
- // If a rejected Promise was yielded, throw the rejection back
485
- // into the async generator function so it can be handled there.
486
- return invoke("throw", error, resolve, reject);
408
+ function AsyncIterator(t, e) {
409
+ function invoke(r, o, i, a) {
410
+ var c = tryCatch(t[r], t, o);
411
+ if ("throw" !== c.type) {
412
+ var u = c.arg,
413
+ h = u.value;
414
+ return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
415
+ invoke("next", t, i, a);
416
+ }, function (t) {
417
+ invoke("throw", t, i, a);
418
+ }) : e.resolve(h).then(function (t) {
419
+ u.value = t, i(u);
420
+ }, function (t) {
421
+ return invoke("throw", t, i, a);
487
422
  });
488
423
  }
424
+ a(c.arg);
489
425
  }
490
-
491
- var previousPromise;
492
-
493
- function enqueue(method, arg) {
494
- function callInvokeWithMethodAndArg() {
495
- return new PromiseImpl(function(resolve, reject) {
496
- invoke(method, arg, resolve, reject);
497
- });
426
+ var r;
427
+ o(this, "_invoke", {
428
+ value: function value(t, n) {
429
+ function callInvokeWithMethodAndArg() {
430
+ return new e(function (e, r) {
431
+ invoke(t, n, e, r);
432
+ });
433
+ }
434
+ return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
498
435
  }
499
-
500
- return previousPromise =
501
- // If enqueue has been called before, then we want to wait until
502
- // all previous Promises have been resolved before calling invoke,
503
- // so that results are always delivered in the correct order. If
504
- // enqueue has not been called before, then it is important to
505
- // call invoke immediately, without waiting on a callback to fire,
506
- // so that the async generator function has the opportunity to do
507
- // any necessary setup in a predictable way. This predictability
508
- // is why the Promise constructor synchronously invokes its
509
- // executor callback, and why async functions synchronously
510
- // execute code before the first await. Since we implement simple
511
- // async functions in terms of async generators, it is especially
512
- // important to get this right, even though it requires care.
513
- previousPromise ? previousPromise.then(
514
- callInvokeWithMethodAndArg,
515
- // Avoid propagating failures to Promises returned by later
516
- // invocations of the iterator.
517
- callInvokeWithMethodAndArg
518
- ) : callInvokeWithMethodAndArg();
519
- }
520
-
521
- // Define the unified helper method that is used to implement .next,
522
- // .throw, and .return (see defineIteratorMethods).
523
- this._invoke = enqueue;
436
+ });
524
437
  }
525
-
526
- defineIteratorMethods(AsyncIterator.prototype);
527
- AsyncIterator.prototype[asyncIteratorSymbol] = function () {
528
- return this;
529
- };
530
- exports.AsyncIterator = AsyncIterator;
531
-
532
- // Note that simple async functions are implemented on top of
533
- // AsyncIterator objects; they just return a Promise for the value of
534
- // the final result produced by the iterator.
535
- exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
536
- if (PromiseImpl === void 0) PromiseImpl = Promise;
537
-
538
- var iter = new AsyncIterator(
539
- wrap(innerFn, outerFn, self, tryLocsList),
540
- PromiseImpl
541
- );
542
-
543
- return exports.isGeneratorFunction(outerFn)
544
- ? iter // If outerFn is a generator, return the full iterator.
545
- : iter.next().then(function(result) {
546
- return result.done ? result.value : iter.next();
547
- });
548
- };
549
-
550
- function makeInvokeMethod(innerFn, self, context) {
551
- var state = GenStateSuspendedStart;
552
-
553
- return function invoke(method, arg) {
554
- if (state === GenStateExecuting) {
555
- throw new Error("Generator is already running");
556
- }
557
-
558
- if (state === GenStateCompleted) {
559
- if (method === "throw") {
560
- throw arg;
561
- }
562
-
563
- // Be forgiving, per 25.3.3.3.3 of the spec:
564
- // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
565
- return doneResult();
438
+ function makeInvokeMethod(e, r, n) {
439
+ var o = h;
440
+ return function (i, a) {
441
+ if (o === f) throw new Error("Generator is already running");
442
+ if (o === s) {
443
+ if ("throw" === i) throw a;
444
+ return {
445
+ value: t,
446
+ done: !0
447
+ };
566
448
  }
567
-
568
- context.method = method;
569
- context.arg = arg;
570
-
571
- while (true) {
572
- var delegate = context.delegate;
573
- if (delegate) {
574
- var delegateResult = maybeInvokeDelegate(delegate, context);
575
- if (delegateResult) {
576
- if (delegateResult === ContinueSentinel) continue;
577
- return delegateResult;
578
- }
579
- }
580
-
581
- if (context.method === "next") {
582
- // Setting context._sent for legacy support of Babel's
583
- // function.sent implementation.
584
- context.sent = context._sent = context.arg;
585
-
586
- } else if (context.method === "throw") {
587
- if (state === GenStateSuspendedStart) {
588
- state = GenStateCompleted;
589
- throw context.arg;
449
+ for (n.method = i, n.arg = a;;) {
450
+ var c = n.delegate;
451
+ if (c) {
452
+ var u = maybeInvokeDelegate(c, n);
453
+ if (u) {
454
+ if (u === y) continue;
455
+ return u;
590
456
  }
591
-
592
- context.dispatchException(context.arg);
593
-
594
- } else if (context.method === "return") {
595
- context.abrupt("return", context.arg);
596
457
  }
597
-
598
- state = GenStateExecuting;
599
-
600
- var record = tryCatch(innerFn, self, context);
601
- if (record.type === "normal") {
602
- // If an exception is thrown from innerFn, we leave state ===
603
- // GenStateExecuting and loop back for another invocation.
604
- state = context.done
605
- ? GenStateCompleted
606
- : GenStateSuspendedYield;
607
-
608
- if (record.arg === ContinueSentinel) {
609
- continue;
610
- }
611
-
458
+ if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
459
+ if (o === h) throw o = s, n.arg;
460
+ n.dispatchException(n.arg);
461
+ } else "return" === n.method && n.abrupt("return", n.arg);
462
+ o = f;
463
+ var p = tryCatch(e, r, n);
464
+ if ("normal" === p.type) {
465
+ if (o = n.done ? s : l, p.arg === y) continue;
612
466
  return {
613
- value: record.arg,
614
- done: context.done
467
+ value: p.arg,
468
+ done: n.done
615
469
  };
616
-
617
- } else if (record.type === "throw") {
618
- state = GenStateCompleted;
619
- // Dispatch the exception by looping back around to the
620
- // context.dispatchException(context.arg) call above.
621
- context.method = "throw";
622
- context.arg = record.arg;
623
470
  }
471
+ "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
624
472
  }
625
473
  };
626
474
  }
627
-
628
- // Call delegate.iterator[context.method](context.arg) and handle the
629
- // result, either by returning a { value, done } result from the
630
- // delegate iterator, or by modifying context.method and context.arg,
631
- // setting context.delegate to null, and returning the ContinueSentinel.
632
- function maybeInvokeDelegate(delegate, context) {
633
- var method = delegate.iterator[context.method];
634
- if (method === undefined) {
635
- // A .throw or .return when the delegate iterator has no .throw
636
- // method always terminates the yield* loop.
637
- context.delegate = null;
638
-
639
- if (context.method === "throw") {
640
- // Note: ["return"] must be used for ES3 parsing compatibility.
641
- if (delegate.iterator["return"]) {
642
- // If the delegate iterator has a return method, give it a
643
- // chance to clean up.
644
- context.method = "return";
645
- context.arg = undefined;
646
- maybeInvokeDelegate(delegate, context);
647
-
648
- if (context.method === "throw") {
649
- // If maybeInvokeDelegate(context) changed context.method from
650
- // "return" to "throw", let that override the TypeError below.
651
- return ContinueSentinel;
652
- }
653
- }
654
-
655
- context.method = "throw";
656
- context.arg = new TypeError(
657
- "The iterator does not provide a 'throw' method");
658
- }
659
-
660
- return ContinueSentinel;
661
- }
662
-
663
- var record = tryCatch(method, delegate.iterator, context.arg);
664
-
665
- if (record.type === "throw") {
666
- context.method = "throw";
667
- context.arg = record.arg;
668
- context.delegate = null;
669
- return ContinueSentinel;
670
- }
671
-
672
- var info = record.arg;
673
-
674
- if (! info) {
675
- context.method = "throw";
676
- context.arg = new TypeError("iterator result is not an object");
677
- context.delegate = null;
678
- return ContinueSentinel;
679
- }
680
-
681
- if (info.done) {
682
- // Assign the result of the finished delegate to the temporary
683
- // variable specified by delegate.resultName (see delegateYield).
684
- context[delegate.resultName] = info.value;
685
-
686
- // Resume execution at the desired location (see delegateYield).
687
- context.next = delegate.nextLoc;
688
-
689
- // If context.method was "throw" but the delegate handled the
690
- // exception, let the outer generator proceed normally. If
691
- // context.method was "next", forget context.arg since it has been
692
- // "consumed" by the delegate iterator. If context.method was
693
- // "return", allow the original .return call to continue in the
694
- // outer generator.
695
- if (context.method !== "return") {
696
- context.method = "next";
697
- context.arg = undefined;
698
- }
699
-
700
- } else {
701
- // Re-yield the result returned by the delegate method.
702
- return info;
703
- }
704
-
705
- // The delegate iterator is finished, so forget it and continue with
706
- // the outer generator.
707
- context.delegate = null;
708
- return ContinueSentinel;
475
+ function maybeInvokeDelegate(e, r) {
476
+ var n = r.method,
477
+ o = e.iterator[n];
478
+ if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
479
+ var i = tryCatch(o, e.iterator, r.arg);
480
+ if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
481
+ var a = i.arg;
482
+ return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
709
483
  }
710
-
711
- // Define Generator.prototype.{next,throw,return} in terms of the
712
- // unified ._invoke helper method.
713
- defineIteratorMethods(Gp);
714
-
715
- define(Gp, toStringTagSymbol, "Generator");
716
-
717
- // A Generator should always return itself as the iterator object when the
718
- // @@iterator function is called on it. Some browsers' implementations of the
719
- // iterator prototype chain incorrectly implement this, causing the Generator
720
- // object to not be returned from this call. This ensures that doesn't happen.
721
- // See https://github.com/facebook/regenerator/issues/274 for more details.
722
- Gp[iteratorSymbol] = function() {
723
- return this;
724
- };
725
-
726
- Gp.toString = function() {
727
- return "[object Generator]";
728
- };
729
-
730
- function pushTryEntry(locs) {
731
- var entry = { tryLoc: locs[0] };
732
-
733
- if (1 in locs) {
734
- entry.catchLoc = locs[1];
735
- }
736
-
737
- if (2 in locs) {
738
- entry.finallyLoc = locs[2];
739
- entry.afterLoc = locs[3];
740
- }
741
-
742
- this.tryEntries.push(entry);
484
+ function pushTryEntry(t) {
485
+ var e = {
486
+ tryLoc: t[0]
487
+ };
488
+ 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
743
489
  }
744
-
745
- function resetTryEntry(entry) {
746
- var record = entry.completion || {};
747
- record.type = "normal";
748
- delete record.arg;
749
- entry.completion = record;
490
+ function resetTryEntry(t) {
491
+ var e = t.completion || {};
492
+ e.type = "normal", delete e.arg, t.completion = e;
750
493
  }
751
-
752
- function Context(tryLocsList) {
753
- // The root entry object (effectively a try statement without a catch
754
- // or a finally block) gives us a place to store values thrown from
755
- // locations where there is no enclosing try statement.
756
- this.tryEntries = [{ tryLoc: "root" }];
757
- tryLocsList.forEach(pushTryEntry, this);
758
- this.reset(true);
494
+ function Context(t) {
495
+ this.tryEntries = [{
496
+ tryLoc: "root"
497
+ }], t.forEach(pushTryEntry, this), this.reset(!0);
759
498
  }
760
-
761
- exports.keys = function(object) {
762
- var keys = [];
763
- for (var key in object) {
764
- keys.push(key);
765
- }
766
- keys.reverse();
767
-
768
- // Rather than returning an object with a next method, we keep
769
- // things simple and return the next function itself.
770
- return function next() {
771
- while (keys.length) {
772
- var key = keys.pop();
773
- if (key in object) {
774
- next.value = key;
775
- next.done = false;
776
- return next;
777
- }
778
- }
779
-
780
- // To avoid creating an additional object, we just hang the .value
781
- // and .done properties off the next function object itself. This
782
- // also ensures that the minifier will not anonymize the function.
783
- next.done = true;
784
- return next;
785
- };
786
- };
787
-
788
- function values(iterable) {
789
- if (iterable) {
790
- var iteratorMethod = iterable[iteratorSymbol];
791
- if (iteratorMethod) {
792
- return iteratorMethod.call(iterable);
793
- }
794
-
795
- if (typeof iterable.next === "function") {
796
- return iterable;
797
- }
798
-
799
- if (!isNaN(iterable.length)) {
800
- var i = -1, next = function next() {
801
- while (++i < iterable.length) {
802
- if (hasOwn.call(iterable, i)) {
803
- next.value = iterable[i];
804
- next.done = false;
805
- return next;
806
- }
807
- }
808
-
809
- next.value = undefined;
810
- next.done = true;
811
-
812
- return next;
813
- };
814
-
815
- return next.next = next;
499
+ function values(e) {
500
+ if (e || "" === e) {
501
+ var r = e[a];
502
+ if (r) return r.call(e);
503
+ if ("function" == typeof e.next) return e;
504
+ if (!isNaN(e.length)) {
505
+ var o = -1,
506
+ i = function next() {
507
+ for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
508
+ return next.value = t, next.done = !0, next;
509
+ };
510
+ return i.next = i;
816
511
  }
817
512
  }
818
-
819
- // Return an iterator with no values.
820
- return { next: doneResult };
513
+ throw new TypeError(_typeof(e) + " is not iterable");
821
514
  }
822
- exports.values = values;
823
-
824
- function doneResult() {
825
- return { value: undefined, done: true };
826
- }
827
-
828
- Context.prototype = {
829
- constructor: Context,
830
-
831
- reset: function(skipTempReset) {
832
- this.prev = 0;
833
- this.next = 0;
834
- // Resetting context._sent for legacy support of Babel's
835
- // function.sent implementation.
836
- this.sent = this._sent = undefined;
837
- this.done = false;
838
- this.delegate = null;
839
-
840
- this.method = "next";
841
- this.arg = undefined;
842
-
843
- this.tryEntries.forEach(resetTryEntry);
844
-
845
- if (!skipTempReset) {
846
- for (var name in this) {
847
- // Not sure about the optimal order of these conditions:
848
- if (name.charAt(0) === "t" &&
849
- hasOwn.call(this, name) &&
850
- !isNaN(+name.slice(1))) {
851
- this[name] = undefined;
852
- }
853
- }
515
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
516
+ value: GeneratorFunctionPrototype,
517
+ configurable: !0
518
+ }), o(GeneratorFunctionPrototype, "constructor", {
519
+ value: GeneratorFunction,
520
+ configurable: !0
521
+ }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
522
+ var e = "function" == typeof t && t.constructor;
523
+ return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
524
+ }, e.mark = function (t) {
525
+ return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
526
+ }, e.awrap = function (t) {
527
+ return {
528
+ __await: t
529
+ };
530
+ }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
531
+ return this;
532
+ }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
533
+ void 0 === i && (i = Promise);
534
+ var a = new AsyncIterator(wrap(t, r, n, o), i);
535
+ return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
536
+ return t.done ? t.value : a.next();
537
+ });
538
+ }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
539
+ return this;
540
+ }), define(g, "toString", function () {
541
+ return "[object Generator]";
542
+ }), e.keys = function (t) {
543
+ var e = Object(t),
544
+ r = [];
545
+ for (var n in e) r.push(n);
546
+ return r.reverse(), function next() {
547
+ for (; r.length;) {
548
+ var t = r.pop();
549
+ if (t in e) return next.value = t, next.done = !1, next;
854
550
  }
551
+ return next.done = !0, next;
552
+ };
553
+ }, e.values = values, Context.prototype = {
554
+ constructor: Context,
555
+ reset: function reset(e) {
556
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
855
557
  },
856
-
857
- stop: function() {
858
- this.done = true;
859
-
860
- var rootEntry = this.tryEntries[0];
861
- var rootRecord = rootEntry.completion;
862
- if (rootRecord.type === "throw") {
863
- throw rootRecord.arg;
864
- }
865
-
558
+ stop: function stop() {
559
+ this.done = !0;
560
+ var t = this.tryEntries[0].completion;
561
+ if ("throw" === t.type) throw t.arg;
866
562
  return this.rval;
867
563
  },
868
-
869
- dispatchException: function(exception) {
870
- if (this.done) {
871
- throw exception;
564
+ dispatchException: function dispatchException(e) {
565
+ if (this.done) throw e;
566
+ var r = this;
567
+ function handle(n, o) {
568
+ return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
872
569
  }
873
-
874
- var context = this;
875
- function handle(loc, caught) {
876
- record.type = "throw";
877
- record.arg = exception;
878
- context.next = loc;
879
-
880
- if (caught) {
881
- // If the dispatched exception was caught by a catch block,
882
- // then let that catch block handle the exception normally.
883
- context.method = "next";
884
- context.arg = undefined;
885
- }
886
-
887
- return !! caught;
888
- }
889
-
890
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
891
- var entry = this.tryEntries[i];
892
- var record = entry.completion;
893
-
894
- if (entry.tryLoc === "root") {
895
- // Exception thrown outside of any try block that could handle
896
- // it, so set the completion value of the entire function to
897
- // throw the exception.
898
- return handle("end");
899
- }
900
-
901
- if (entry.tryLoc <= this.prev) {
902
- var hasCatch = hasOwn.call(entry, "catchLoc");
903
- var hasFinally = hasOwn.call(entry, "finallyLoc");
904
-
905
- if (hasCatch && hasFinally) {
906
- if (this.prev < entry.catchLoc) {
907
- return handle(entry.catchLoc, true);
908
- } else if (this.prev < entry.finallyLoc) {
909
- return handle(entry.finallyLoc);
910
- }
911
-
912
- } else if (hasCatch) {
913
- if (this.prev < entry.catchLoc) {
914
- return handle(entry.catchLoc, true);
915
- }
916
-
917
- } else if (hasFinally) {
918
- if (this.prev < entry.finallyLoc) {
919
- return handle(entry.finallyLoc);
920
- }
921
-
570
+ for (var o = this.tryEntries.length - 1; o >= 0; --o) {
571
+ var i = this.tryEntries[o],
572
+ a = i.completion;
573
+ if ("root" === i.tryLoc) return handle("end");
574
+ if (i.tryLoc <= this.prev) {
575
+ var c = n.call(i, "catchLoc"),
576
+ u = n.call(i, "finallyLoc");
577
+ if (c && u) {
578
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
579
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
580
+ } else if (c) {
581
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
922
582
  } else {
923
- throw new Error("try statement without catch or finally");
583
+ if (!u) throw new Error("try statement without catch or finally");
584
+ if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
924
585
  }
925
586
  }
926
587
  }
927
588
  },
928
-
929
- abrupt: function(type, arg) {
930
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
931
- var entry = this.tryEntries[i];
932
- if (entry.tryLoc <= this.prev &&
933
- hasOwn.call(entry, "finallyLoc") &&
934
- this.prev < entry.finallyLoc) {
935
- var finallyEntry = entry;
589
+ abrupt: function abrupt(t, e) {
590
+ for (var r = this.tryEntries.length - 1; r >= 0; --r) {
591
+ var o = this.tryEntries[r];
592
+ if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
593
+ var i = o;
936
594
  break;
937
595
  }
938
596
  }
939
-
940
- if (finallyEntry &&
941
- (type === "break" ||
942
- type === "continue") &&
943
- finallyEntry.tryLoc <= arg &&
944
- arg <= finallyEntry.finallyLoc) {
945
- // Ignore the finally entry if control is not jumping to a
946
- // location outside the try/catch block.
947
- finallyEntry = null;
948
- }
949
-
950
- var record = finallyEntry ? finallyEntry.completion : {};
951
- record.type = type;
952
- record.arg = arg;
953
-
954
- if (finallyEntry) {
955
- this.method = "next";
956
- this.next = finallyEntry.finallyLoc;
957
- return ContinueSentinel;
958
- }
959
-
960
- return this.complete(record);
597
+ i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
598
+ var a = i ? i.completion : {};
599
+ return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
961
600
  },
962
-
963
- complete: function(record, afterLoc) {
964
- if (record.type === "throw") {
965
- throw record.arg;
966
- }
967
-
968
- if (record.type === "break" ||
969
- record.type === "continue") {
970
- this.next = record.arg;
971
- } else if (record.type === "return") {
972
- this.rval = this.arg = record.arg;
973
- this.method = "return";
974
- this.next = "end";
975
- } else if (record.type === "normal" && afterLoc) {
976
- this.next = afterLoc;
977
- }
978
-
979
- return ContinueSentinel;
601
+ complete: function complete(t, e) {
602
+ if ("throw" === t.type) throw t.arg;
603
+ return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
980
604
  },
981
-
982
- finish: function(finallyLoc) {
983
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
984
- var entry = this.tryEntries[i];
985
- if (entry.finallyLoc === finallyLoc) {
986
- this.complete(entry.completion, entry.afterLoc);
987
- resetTryEntry(entry);
988
- return ContinueSentinel;
989
- }
605
+ finish: function finish(t) {
606
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
607
+ var r = this.tryEntries[e];
608
+ if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
990
609
  }
991
610
  },
992
-
993
- "catch": function(tryLoc) {
994
- for (var i = this.tryEntries.length - 1; i >= 0; --i) {
995
- var entry = this.tryEntries[i];
996
- if (entry.tryLoc === tryLoc) {
997
- var record = entry.completion;
998
- if (record.type === "throw") {
999
- var thrown = record.arg;
1000
- resetTryEntry(entry);
611
+ "catch": function _catch(t) {
612
+ for (var e = this.tryEntries.length - 1; e >= 0; --e) {
613
+ var r = this.tryEntries[e];
614
+ if (r.tryLoc === t) {
615
+ var n = r.completion;
616
+ if ("throw" === n.type) {
617
+ var o = n.arg;
618
+ resetTryEntry(r);
1001
619
  }
1002
- return thrown;
620
+ return o;
1003
621
  }
1004
622
  }
1005
-
1006
- // The context.catch method must only be called with a location
1007
- // argument that corresponds to a known catch block.
1008
623
  throw new Error("illegal catch attempt");
1009
624
  },
1010
-
1011
- delegateYield: function(iterable, resultName, nextLoc) {
1012
- this.delegate = {
1013
- iterator: values(iterable),
1014
- resultName: resultName,
1015
- nextLoc: nextLoc
1016
- };
1017
-
1018
- if (this.method === "next") {
1019
- // Deliberately forget the last sent value so that we don't
1020
- // accidentally pass it on to the delegate.
1021
- this.arg = undefined;
1022
- }
1023
-
1024
- return ContinueSentinel;
625
+ delegateYield: function delegateYield(e, r, n) {
626
+ return this.delegate = {
627
+ iterator: values(e),
628
+ resultName: r,
629
+ nextLoc: n
630
+ }, "next" === this.method && (this.arg = t), y;
1025
631
  }
1026
- };
1027
-
1028
- // Regardless of whether this script is executing as a CommonJS module
1029
- // or not, return the runtime object so that we can declare the variable
1030
- // regeneratorRuntime in the outer scope, which allows this module to be
1031
- // injected easily by `bin/regenerator --include-runtime script.js`.
1032
- return exports;
1033
-
1034
- }(
1035
- // If this script is executing as a CommonJS module, use module.exports
1036
- // as the regeneratorRuntime namespace. Otherwise create a new empty
1037
- // object. Either way, the resulting object will be used to initialize
1038
- // the regeneratorRuntime variable at the top of this file.
1039
- true ? module.exports : 0
1040
- ));
1041
-
1042
- try {
1043
- regeneratorRuntime = runtime;
1044
- } catch (accidentalStrictMode) {
1045
- // This module should not be running in strict mode, so the above
1046
- // assignment should always work unless something is misconfigured. Just
1047
- // in case runtime.js accidentally runs in strict mode, we can escape
1048
- // strict mode using a global Function call. This could conceivably fail
1049
- // if a Content Security Policy forbids using Function, but in that case
1050
- // the proper solution is to fix the accidental strict mode problem. If
1051
- // you've misconfigured your bundler to force strict mode and applied a
1052
- // CSP to forbid Function, and you're not willing to fix either of those
1053
- // problems, please detail your unique predicament in a GitHub issue.
1054
- Function("r", "regeneratorRuntime = r")(runtime);
632
+ }, e;
1055
633
  }
1056
-
634
+ module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
1057
635
 
1058
636
  /***/ }),
1059
637
 
1060
- /***/ 6073:
638
+ /***/ 8698:
1061
639
  /***/ ((module) => {
1062
640
 
1063
- "use strict";
1064
- module.exports = __WEBPACK_EXTERNAL_MODULE__6073__;
641
+ function _typeof(o) {
642
+ "@babel/helpers - typeof";
643
+
644
+ return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
645
+ return typeof o;
646
+ } : function (o) {
647
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
648
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o);
649
+ }
650
+ module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
1065
651
 
1066
652
  /***/ }),
1067
653
 
1068
- /***/ 5225:
1069
- /***/ ((module) => {
654
+ /***/ 4687:
655
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1070
656
 
1071
- "use strict";
1072
- module.exports = __WEBPACK_EXTERNAL_MODULE__5225__;
657
+ // TODO(Babel 8): Remove this file.
1073
658
 
1074
- /***/ }),
659
+ var runtime = __webpack_require__(7061)();
660
+ module.exports = runtime;
1075
661
 
1076
- /***/ 5293:
1077
- /***/ ((module) => {
662
+ // Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=
663
+ try {
664
+ regeneratorRuntime = runtime;
665
+ } catch (accidentalStrictMode) {
666
+ if (typeof globalThis === "object") {
667
+ globalThis.regeneratorRuntime = runtime;
668
+ } else {
669
+ Function("r", "regeneratorRuntime = r")(runtime);
670
+ }
671
+ }
1078
672
 
1079
- "use strict";
1080
- module.exports = __WEBPACK_EXTERNAL_MODULE__5293__;
1081
673
 
1082
674
  /***/ })
1083
675
 
@@ -1172,7 +764,7 @@ var component = __webpack_require__(2725);
1172
764
  // EXTERNAL MODULE: ./src/core/ConnectStateWrapper/component.jsx
1173
765
  var ConnectStateWrapper_component = __webpack_require__(9787);
1174
766
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/regenerator/index.js
1175
- var regenerator = __webpack_require__(7757);
767
+ var regenerator = __webpack_require__(4687);
1176
768
  ;// CONCATENATED MODULE: ./src/core/remote-blogs-posts.js
1177
769
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
1178
770