Coverage Report

Created: 2026-08-13 06:56

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xpdf-4.06/splash/SplashXPathScanner.cc
Line
Count
Source
1
//========================================================================
2
//
3
// SplashXPathScanner.cc
4
//
5
// Copyright 2003-2013 Glyph & Cog, LLC
6
//
7
//========================================================================
8
9
#include <aconf.h>
10
11
#include <stdlib.h>
12
#include <string.h>
13
#if HAVE_STD_SORT
14
#include <algorithm>
15
#endif
16
#include "gmem.h"
17
#include "gmempp.h"
18
#include "GList.h"
19
#include "SplashMath.h"
20
#include "SplashXPath.h"
21
#include "SplashXPathScanner.h"
22
23
//------------------------------------------------------------------------
24
25
#if ANTIALIAS_256
26
27
#define aaVert  15
28
#define aaHoriz 17
29
30
#else
31
32
50.0M
#define aaVert  4
33
10.7M
#define aaHoriz 4
34
35
// 4x4 oversampling tends to generate alpha (coverage) values that are
36
// too high, so we reduce them here. (Yes, this is a kludge.)
37
static Guchar map16to255[17] = {
38
  0,
39
  16 / 2,
40
  32 / 2,
41
  48 / 2,
42
  64 - 32,
43
  80 - 32,
44
  96 - 32,
45
  112 - 32,
46
  128 - 32,
47
  143 - 32,
48
  159 - 32,
49
  175 - 32,
50
  191 - 32,
51
  207 - 32,
52
  223 - 32,
53
  239 - 32,
54
  255
55
};
56
57
#endif
58
59
//------------------------------------------------------------------------
60
61
SplashXPathScanner::SplashXPathScanner(SplashXPath *xPathA, GBool eo,
62
152k
               int yMinA, int yMaxA) {
63
152k
  xPath = xPathA;
64
152k
  eoMask = eo ? 1 : 0xffffffff;
65
152k
  yMin = yMinA;
66
152k
  yMax = yMaxA;
67
152k
  if (xPath->isRect) {
68
17.2k
    rectX0I = splashFloor(xPath->rectX0);
69
17.2k
    rectY0I = splashFloor(xPath->rectY0);
70
17.2k
    rectX1I = splashFloor(xPath->rectX1);
71
17.2k
    rectY1I = splashFloor(xPath->rectY1);
72
17.2k
  }
73
74
152k
  pre = &preSeg;
75
152k
  post = &postSeg;
76
152k
  pre->mx = xPath->xMin - 1;
77
152k
  post->mx = xPath->xMax + 1;
78
79
152k
  resetDone = gFalse;
80
152k
  resetAA = gFalse;
81
152k
}
82
83
151k
SplashXPathScanner::~SplashXPathScanner() {
84
151k
}
85
86
void SplashXPathScanner::insertSegmentBefore(SplashXPathSeg *s,
87
2.47M
               SplashXPathSeg *sNext) {
88
2.47M
  SplashXPathSeg *sPrev;
89
90
2.47M
  sPrev = sNext->prev;
91
2.47M
  sPrev->next = s;
92
2.47M
  s->prev = sPrev;
93
2.47M
  s->next = sNext;
94
2.47M
  sNext->prev = s;
95
2.47M
}
96
97
1.25M
void SplashXPathScanner::removeSegment(SplashXPathSeg *s) {
98
1.25M
  SplashXPathSeg *sPrev, *sNext;
99
100
1.25M
  sPrev = s->prev;
101
1.25M
  sNext = s->next;
102
1.25M
  sPrev->next = sNext;
103
1.25M
  sNext->prev = sPrev;
104
1.25M
  s->prev = s->next = NULL;
105
1.25M
}
106
107
void SplashXPathScanner::moveSegmentAfter(SplashXPathSeg *s,
108
320k
            SplashXPathSeg *sPrev) {
109
320k
  SplashXPathSeg *sNext;
110
111
320k
  s->prev->next = s->next;
112
320k
  s->next->prev = s->prev;
113
114
320k
  sNext = sPrev->next;
115
320k
  sPrev->next = s;
116
320k
  s->prev = sPrev;
117
320k
  s->next = sNext;
118
320k
  sNext->prev = s;
119
320k
}
120
121
106k
void SplashXPathScanner::reset(GBool aa, GBool aaChanged) {
122
106k
  SplashXPathSeg *seg;
123
106k
  SplashCoord y;
124
106k
  int i;
125
126
  //--- initialize segment parameters
127
34.7M
  for (i = 0; i < xPath->length; ++i) {
128
34.6M
    seg = &xPath->segs[i];
129
34.6M
    if (aa) {
130
24.7M
      if (aaChanged) {
131
23.9M
  seg->iy = splashFloor(seg->y0 * aaVert);
132
23.9M
      }
133
24.7M
      y = (SplashCoord)(seg->iy + 1) / (SplashCoord)aaVert;
134
24.7M
    } else {
135
9.83M
      if (aaChanged) {
136
7.21M
  seg->iy = splashFloor(seg->y0);
137
7.21M
      }
138
9.83M
      y = (SplashCoord)(seg->iy + 1);
139
9.83M
    }
140
34.6M
    seg->sx0 = seg->x0;
141
34.6M
    if (seg->y1 <= y) {
142
18.7M
      seg->sx1 = seg->x1;
143
18.7M
    } else {
144
15.9M
      seg->sx1 = seg->x0 + (y - seg->y0) * seg->dxdy;
145
15.9M
    }
146
34.6M
    seg->mx = (seg->sx0 <= seg->sx1) ? seg->sx0 : seg->sx1;
147
34.6M
    seg->prev = seg->next = NULL;
148
34.6M
  }
149
150
  //--- sort the inactive segments by iy, mx
151
106k
  if (aaChanged) {
152
44.6k
#if HAVE_STD_SORT
153
44.6k
    std::sort(xPath->segs, xPath->segs + xPath->length, &SplashXPathSeg::cmpMX);
154
#else
155
    qsort(xPath->segs, xPath->length, sizeof(SplashXPathSeg),
156
    &SplashXPathSeg::cmpMX);
157
#endif
158
44.6k
  }
159
160
  //--- initialize the active list
161
106k
  pre->prev = NULL;
162
106k
  pre->next = post;
163
106k
  post->prev = pre;
164
106k
  post->next = NULL;
165
166
  //--- initialize the scan state
167
106k
  nextSeg = 0;
168
106k
  if (xPath->length) {
169
104k
    yBottomI = xPath->segs[0].iy;
170
104k
    if (aa) {
171
90.2k
      yBottomI -= yBottomI % aaVert;
172
90.2k
    }
173
104k
  } else {
174
2.32k
    yBottomI = 0;
175
2.32k
  }
176
106k
  yTopI = yBottomI - 1;
177
106k
  if (aa) {
178
92.6k
    yTop = (SplashCoord)yTopI / (SplashCoord)aaVert;
179
92.6k
    yBottom = (SplashCoord)yBottomI / (SplashCoord)aaVert;
180
92.6k
  } else {
181
14.2k
    yTop = (SplashCoord)yTopI;
182
14.2k
    yBottom = (SplashCoord)yBottomI;
183
14.2k
  }
184
185
106k
  resetDone = gTrue;
186
106k
  resetAA = aa;
187
106k
}
188
189
85.0k
void SplashXPathScanner::skip(int newYBottomI, GBool aa) {
190
85.0k
  SplashXPathSeg *s0, *s1,*s2;
191
85.0k
  int iy;
192
193
85.0k
  yTopI = newYBottomI - 1;
194
85.0k
  yBottomI = newYBottomI;
195
85.0k
  if (aa) {
196
74.2k
    yTop = (SplashCoord)yTopI / (SplashCoord)aaVert;
197
74.2k
    yBottom = (SplashCoord)yBottomI / (SplashCoord)aaVert;
198
74.2k
  } else {
199
10.7k
    yTop = (SplashCoord)yTopI;
200
10.7k
    yBottom = (SplashCoord)yBottomI;
201
10.7k
  }
202
203
  //--- remove finished segments; update sx0, sx1, mx for active segments
204
85.0k
  s0 = pre->next;
205
85.0k
  while (s0 != post) {
206
0
    s1 = s0->next;
207
208
    // check for a finished segment
209
0
    if (s0->y1 < yTop) {
210
0
      removeSegment(s0);
211
212
    // compute sx0, sx1, mx
213
0
    } else {
214
0
      if (s0->y0 >= yTop) {
215
0
  s0->sx0 = s0->x0;
216
0
      } else {
217
0
  s0->sx0 = s0->x0 + (yTop - s0->y0) * s0->dxdy;
218
0
      }
219
0
      if (s0->y1 <= yBottom) {
220
0
  s0->sx1 = s0->x1;
221
0
      } else {
222
0
  s0->sx1 = s0->x0 + (yBottom - s0->y0) * s0->dxdy;
223
0
      }
224
0
      s0->mx = (s0->sx0 <= s0->sx1) ? s0->sx0 : s0->sx1;
225
0
    }
226
227
0
    s0 = s1;
228
0
  }
229
230
  //--- check for intersections
231
85.0k
  s0 = pre->next;
232
85.0k
  if (s0 != post) {
233
0
    s1 = s0->next;
234
0
    while (s1 != post) {
235
0
      if (s1->mx < s0->mx) {
236
0
  for (s2 = s0->prev; s1->mx < s2->mx; s2 = s2->prev) ;
237
0
  moveSegmentAfter(s1, s2);
238
0
      } else {
239
0
  s0 = s1;
240
0
      }
241
0
      s1 = s0->next;
242
0
    }
243
0
  }
244
245
  //--- insert new segments with a merge sort
246
  // - this has to be done one (sub)scanline at a time, because the
247
  //   inactive list is bin-sorted by (sub)scanline
248
5.67M
  while (nextSeg < xPath->length && xPath->segs[nextSeg].iy <= yTopI) {
249
    // the first inactive segment determines the next scanline to process
250
5.59M
    iy = xPath->segs[nextSeg].iy;
251
5.59M
    s0 = pre->next;
252
14.7M
    do {
253
14.7M
      s1 = &xPath->segs[nextSeg];
254
14.7M
      ++nextSeg;
255
14.7M
      if (s1->y1 < yTop) {
256
13.6M
  continue;
257
13.6M
      }
258
1.08M
      if (s1->y0 >= yTop) {
259
1.16k
  s1->sx0 = s1->x0;
260
1.07M
      } else {
261
1.07M
  s1->sx0 = s1->x0 + (yTop - s1->y0) * s1->dxdy;
262
1.07M
      }
263
1.08M
      if (s1->y1 <= yBottom) {
264
12.2k
  s1->sx1 = s1->x1;
265
1.06M
      } else {
266
1.06M
  s1->sx1 = s1->x0 + (yBottom - s1->y0) * s1->dxdy;
267
1.06M
      }
268
1.08M
      s1->mx = (s1->sx0 <= s1->sx1) ? s1->sx0 : s1->sx1;
269
1.08M
      insertSegmentBefore(s1, s0);
270
14.7M
    } while (nextSeg < xPath->length && xPath->segs[nextSeg].iy <= iy);
271
5.59M
  }
272
85.0k
}
273
274
339k
void SplashXPathScanner::advance(GBool aa) {
275
339k
  SplashXPathSeg *s, *sNext, *s1;
276
277
339k
  yTopI = yBottomI;
278
339k
  yTop = yBottom;
279
339k
  yBottomI = yTopI + 1;
280
339k
  if (aa) {
281
324k
    yBottom = (SplashCoord)yBottomI / (SplashCoord)aaVert;
282
324k
  } else {
283
14.2k
    yBottom = (SplashCoord)yBottomI;
284
14.2k
  }
285
286
339k
  s = pre->next;
287
5.83M
  while (s != post) {
288
5.49M
    sNext = s->next;
289
290
    // check for a finished segment
291
5.49M
    if (s->y1 < yTop) {
292
1.25M
      removeSegment(s);
293
294
4.24M
    } else {
295
296
      // compute sx0, sx1, mx
297
4.24M
      s->sx0 = s->sx1;
298
4.24M
      if (s->y1 <= yBottom) {
299
19.4k
  s->sx1 = s->x1;
300
4.22M
      } else {
301
4.22M
  s->sx1 = s->x0 + (yBottom - s->y0) * s->dxdy;
302
4.22M
      }
303
4.24M
      s->mx = (s->sx0 <= s->sx1) ? s->sx0 : s->sx1;
304
305
      // check for intersection
306
4.24M
      if (s->mx < s->prev->mx) {
307
91.7M
  for (s1 = s->prev->prev; s->mx < s1->mx; s1 = s1->prev) ;
308
320k
  moveSegmentAfter(s, s1);
309
320k
      }
310
4.24M
    }
311
312
5.49M
    s = sNext;
313
5.49M
  }
314
315
  // insert new segments
316
339k
  s = pre->next;
317
1.73M
  while (nextSeg < xPath->length && xPath->segs[nextSeg].iy <= yTopI) {
318
1.39M
    s1 = &xPath->segs[nextSeg];
319
1.39M
    ++nextSeg;
320
1.41M
    while (s1->mx > s->mx) {
321
18.8k
      s = s->next;
322
18.8k
    }
323
1.39M
    insertSegmentBefore(s1, s);
324
1.39M
  }
325
339k
}
326
327
void SplashXPathScanner::generatePixels(int x0, int x1, Guchar *line,
328
324k
          int *xMin, int *xMax) {
329
324k
  SplashXPathSeg *s;
330
324k
  int fillCount, x, xEnd, ix0, ix1, t;
331
332
324k
  fillCount = 0;
333
324k
  x = x0 * aaHoriz;
334
324k
  xEnd = (x1 + 1) * aaHoriz;
335
2.73M
  for (s = pre->next; s != post && x < xEnd; s = s->next) {
336
2.40M
    ix0 = splashFloor(s->sx0 * aaHoriz);
337
2.40M
    ix1 = splashFloor(s->sx1 * aaHoriz);
338
2.40M
    if (ix0 > ix1) {
339
335k
      t = ix0;  ix0 = ix1;  ix1 = t;
340
335k
    }
341
2.40M
    if (!(fillCount & eoMask)) {
342
528k
      if (ix0 > x) {
343
15.3k
  x = ix0;
344
15.3k
      }
345
528k
    }
346
2.40M
    if (ix1 >= xEnd) {
347
37.8k
      ix1 = xEnd - 1;
348
37.8k
    }
349
2.40M
    if (x / aaHoriz < *xMin) {
350
78.0k
      *xMin = x / aaHoriz;
351
78.0k
    }
352
2.40M
    if (ix1 / aaHoriz > *xMax) {
353
77.4k
      *xMax = ix1 / aaHoriz;
354
77.4k
    }
355
2.76M
    for (; x <= ix1; ++x) {
356
358k
      ++line[x / aaHoriz];
357
358k
    }
358
2.40M
    if (s->y0 <= yTop && s->y1 > yTop) {
359
2.33M
      fillCount += s->count;
360
2.33M
    }
361
2.40M
  }
362
324k
}
363
364
void SplashXPathScanner::generatePixelsBinary(int x0, int x1, Guchar *line,
365
14.2k
                int *xMin, int *xMax) {
366
14.2k
  SplashXPathSeg *s;
367
14.2k
  int fillCount, x, xEnd, ix0, ix1, t;
368
369
14.2k
  fillCount = 0;
370
14.2k
  x = x0;
371
14.2k
  xEnd = x1 + 1;
372
33.3k
  for (s = pre->next; s != post && x < xEnd; s = s->next) {
373
19.0k
    ix0 = splashFloor(s->sx0);
374
19.0k
    ix1 = splashFloor(s->sx1);
375
19.0k
    if (ix0 > ix1) {
376
2.32k
      t = ix0;  ix0 = ix1;  ix1 = t;
377
2.32k
    }
378
19.0k
    if (!(fillCount & eoMask)) {
379
14.9k
      if (ix0 > x) {
380
2
  x = ix0;
381
2
      }
382
14.9k
    }
383
19.0k
    if (ix1 >= xEnd) {
384
4.31k
      ix1 = xEnd - 1;
385
4.31k
    }
386
19.0k
    if (x < *xMin) {
387
14.1k
      *xMin = x;
388
14.1k
    }
389
19.0k
    if (ix1 > *xMax) {
390
14.0k
      *xMax = ix1;
391
14.0k
    }
392
33.0k
    for (; x <= ix1; ++x) {
393
14.0k
      line[x] = 255;
394
14.0k
    }
395
19.0k
    if (s->y0 <= yTop && s->y1 > yTop) {
396
14.1k
      fillCount += s->count;
397
14.1k
    }
398
19.0k
  }
399
14.2k
}
400
401
void SplashXPathScanner::drawRectangleSpan(Guchar *line, int y,
402
             int x0, int x1,
403
11.4k
             int *xMin, int *xMax) {
404
11.4k
  SplashCoord edge;
405
11.4k
  Guchar pix;
406
11.4k
  int xe, x;
407
408
11.4k
  if (rectX0I > x1 || rectX1I < x0) {
409
156
    return;
410
156
  }
411
412
11.2k
  *xMin = x0 <= rectX0I ? rectX0I : x0;
413
11.2k
  *xMax = rectX1I <= x1 ? rectX1I : x1;
414
415
  //--- upper edge
416
11.2k
  if (y == rectY0I) {
417
418
    // handle a rectangle less than one pixel high
419
2.46k
    if (rectY0I == rectY1I) {
420
1.91k
      edge = xPath->rectY1 - xPath->rectY0;
421
1.91k
    } else {
422
551
      edge = (SplashCoord)1 - (xPath->rectY0 - rectY0I);
423
551
    }
424
425
    // upper left corner
426
2.46k
    if (x0 <= rectX0I) {
427
2.24k
      pix = (Guchar)splashCeil(edge
428
2.24k
             * ((SplashCoord)1 - (xPath->rectX0 - rectX0I))
429
2.24k
             * 255);
430
2.24k
      if (pix < 16) {
431
1.68k
  pix = 16;
432
1.68k
      }
433
2.24k
      line[rectX0I] = pix;
434
2.24k
      x = rectX0I + 1;
435
2.24k
    } else {
436
225
      x = x0;
437
225
    }
438
439
    // upper right corner
440
2.46k
    if (rectX1I <= x1) {
441
2.23k
      pix = (Guchar)splashCeil(edge * (xPath->rectX1 - rectX1I) * 255);
442
2.23k
      if (pix < 16) {
443
2.22k
  pix = 16;
444
2.22k
      }
445
2.23k
      line[rectX1I] = pix;
446
2.23k
      xe = rectX1I - 1;
447
2.23k
    } else {
448
234
      xe = x1;
449
234
    }
450
451
    // upper edge
452
2.46k
    pix = (Guchar)splashCeil(edge * 255);
453
2.46k
    if (pix < 16) {
454
1.91k
      pix = 16;
455
1.91k
    }
456
2.69k
    for (; x <= xe; ++x) {
457
225
      line[x] = pix;
458
225
    }
459
460
  //--- lower edge
461
8.78k
  } else if (y == rectY1I) {
462
507
    edge = xPath->rectY1 - rectY1I;
463
464
    // lower left corner
465
507
    if (x0 <= rectX0I) {
466
507
      pix = (Guchar)splashCeil(edge
467
507
             * ((SplashCoord)1 - (xPath->rectX0 - rectX0I))
468
507
             * 255);
469
507
      if (pix < 16) {
470
289
  pix = 16;
471
289
      }
472
507
      line[rectX0I] = pix;
473
507
      x = rectX0I + 1;
474
507
    } else {
475
0
      x = x0;
476
0
    }
477
478
    // lower right corner
479
507
    if (rectX1I <= x1) {
480
507
      pix = (Guchar)splashCeil(edge * (xPath->rectX1 - rectX1I) * 255);
481
507
      if (pix < 16) {
482
507
  pix = 16;
483
507
      }
484
507
      line[rectX1I] = pix;
485
507
      xe = rectX1I - 1;
486
507
    } else {
487
0
      xe = x1;
488
0
    }
489
490
    // lower edge
491
507
    pix = (Guchar)splashCeil(edge * 255);
492
507
    if (pix < 16) {
493
289
      pix = 16;
494
289
    }
495
507
    for (; x <= xe; ++x) {
496
0
      line[x] = pix;
497
0
    }
498
499
  //--- between the upper and lower edges
500
8.27k
  } else if (y > rectY0I && y < rectY1I) {
501
502
    // left edge
503
8.02k
    if (x0 <= rectX0I) {
504
5.29k
      pix = (Guchar)splashCeil(((SplashCoord)1 - (xPath->rectX0 - rectX0I))
505
5.29k
             * 255);
506
5.29k
      if (pix < 16) {
507
1
  pix = 16;
508
1
      }
509
5.29k
      line[rectX0I] = pix;
510
5.29k
      x = rectX0I + 1;
511
5.29k
    } else {
512
2.73k
      x = x0;
513
2.73k
    }
514
515
    // right edge
516
8.02k
    if (rectX1I <= x1) {
517
4.12k
      pix = (Guchar)splashCeil((xPath->rectX1 - rectX1I) * 255);
518
4.12k
      if (pix < 16) {
519
3.92k
  pix = 16;
520
3.92k
      }
521
4.12k
      line[rectX1I] = pix;
522
4.12k
      xe = rectX1I - 1;
523
4.12k
    } else {
524
3.90k
      xe = x1;
525
3.90k
    }
526
527
    // middle
528
10.6k
    for (; x <= xe; ++x) {
529
2.66k
      line[x] = 255;
530
2.66k
    }
531
8.02k
  }
532
11.2k
}
533
534
void SplashXPathScanner::drawRectangleSpanBinary(Guchar *line, int y,
535
             int x0, int x1,
536
11
             int *xMin, int *xMax) {
537
11
  int xe, x;
538
539
11
  if (y >= rectY0I && y <= rectY1I) {
540
11
    if (x0 <= rectX0I) {
541
11
      x = rectX0I;
542
11
    } else {
543
0
      x = x0;
544
0
    }
545
11
    *xMin = x;
546
11
    if (rectX1I <= x1) {
547
11
      xe = rectX1I;
548
11
    } else {
549
0
      xe = x1;
550
0
    }
551
11
    *xMax = xe;
552
22
    for (; x <= xe; ++x) {
553
11
      line[x] = 255;
554
11
    }
555
11
  }
556
11
}
557
558
void SplashXPathScanner::getSpan(Guchar *line, int y, int x0, int x1,
559
92.6k
         int *xMin, int *xMax) {
560
92.6k
  int iy, x, k;
561
562
92.6k
  iy = y * aaVert;
563
92.6k
  if (!resetDone || !resetAA) {
564
35.1k
    reset(gTrue, gTrue);
565
57.5k
  } else if (yBottomI > iy) {
566
57.5k
    reset(gTrue, gFalse);
567
57.5k
  }
568
92.6k
  memset(line + x0, 0, x1 - x0 + 1);
569
570
92.6k
  *xMin = x1 + 1;
571
92.6k
  *xMax = x0 - 1;
572
573
92.6k
  if (xPath->isRect) {
574
11.4k
    drawRectangleSpan(line, y, x0, x1, xMin, xMax);
575
11.4k
    return;
576
11.4k
  }
577
578
81.2k
  if (yBottomI < iy) {
579
74.2k
    skip(iy, gTrue);
580
74.2k
  }
581
406k
  for (k = 0; k < aaVert; ++k, ++iy) {
582
324k
    advance(gTrue);
583
324k
    generatePixels(x0, x1, line, xMin, xMax);
584
324k
  }
585
586
81.2k
#if !ANTIALIAS_256
587
157k
  for (x = *xMin; x <= *xMax; ++x) {
588
76.6k
    line[x] = map16to255[line[x]];
589
76.6k
  }
590
81.2k
#endif
591
81.2k
}
592
593
void SplashXPathScanner::getSpanBinary(Guchar *line, int y, int x0, int x1,
594
14.2k
               int *xMin, int *xMax) {
595
14.2k
  int iy;
596
597
14.2k
  iy = y;
598
14.2k
  if (!resetDone || resetAA) {
599
9.54k
    reset(gFalse, gTrue);
600
9.54k
  } else if (yBottomI > iy) {
601
4.69k
    reset(gFalse, gFalse);
602
4.69k
  }
603
14.2k
  memset(line + x0, 0, x1 - x0 + 1);
604
605
14.2k
  *xMin = x1 + 1;
606
14.2k
  *xMax = x0 - 1;
607
608
14.2k
  if (xPath->isRect) {
609
11
    drawRectangleSpanBinary(line, y, x0, x1, xMin, xMax);
610
11
    return;
611
11
  }
612
613
14.2k
  if (yBottomI < iy) {
614
10.7k
    skip(iy, gFalse);
615
10.7k
  }
616
14.2k
  advance(gFalse);
617
14.2k
  generatePixelsBinary(x0, x1, line, xMin, xMax);
618
14.2k
}