Version 7.3.21

Performance and stability improvements on all platforms.

TBR=v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com

Reland "[wasm][liftoff] Optimize one-armed ifs"

This is a reland of c2aaf0a6fa659a8f41b778f3fca039ba62a32e74

Original change's description:
> [wasm][liftoff] Optimize one-armed ifs
> 
> Do not implement one-armed ifs by emulating an empty else branch. In
> Liftoff, we can generate better code and save compile time by handling
> this specially. If the merge point at the end of the if is not reached
> by the if-branch, we do not need to generate any merge code.
> 
> R=titzer@chromium.org
> 
> Bug: v8:6600, v8:8423
> Change-Id: Ie8ea69dd7491f225605a8e1b986d275d869aa90b
> Reviewed-on: https://chromium-review.googlesource.com/c/1356508
> Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
> Reviewed-by: Ben Titzer <titzer@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#57968}

Bug: v8:6600, v8:8423
Change-Id: I6d5eea9f860486768779a33bf6bd7b87cbfc2af0
Reviewed-on: https://chromium-review.googlesource.com/c/1361040
Reviewed-by: Ben Titzer <titzer@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58024}
[wasm] Simplify type checking for merges

Improve readability by avoiding a helper method. Just read from the
stack directly.

R=titzer@chromium.org

Change-Id: I38c944fac45c721f328a2b7bec3a3f4602f05c05
Reviewed-on: https://chromium-review.googlesource.com/c/1360572
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: Ben Titzer <titzer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58023}
[Cleanup] String::GetChars() should take a DisallowHeapAllocation ref.

Building on https://chromium-review.googlesource.com/c/v8/v8/+/1349243,
which asserted on calls to GetChars() that weren't in a
DisallowHeapAllocation scope, this CL takes a reference to the scope
in order to provide static protection in all builds.


Bug: v8:8238
Change-Id: I481a1dbbd3ae57eb35c5f828c5e242691635be27
Reviewed-on: https://chromium-review.googlesource.com/c/1354038
Reviewed-by: Marja Hölttä <marja@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Reviewed-by: Yang Guo <yangguo@chromium.org>
Commit-Queue: Michael Stanton <mvstanton@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58022}
Revert "[code-comments] Put code comments into the code object"

This reverts commit e774cffe2bd3f00332209d4d5695221963888c96.

Reason for revert: Breaks OptimizeForSize tests https://logs.chromium.org/logs/v8/buildbucket/cr-buildbucket.appspot.com/8928056438104852432/+/steps/OptimizeForSize/0/logs/TestCodeAssemblerCode../0

Original change's description:
> [code-comments] Put code comments into the code object
> 
> Code comments in the snapshot can now be enabled with gn
> arg 'v8_enable_snapshot_code_comments'
> 
> Bug: v8:7989
> Change-Id: I8bd00cafa63132d00d849394c311ba15e6b6daf3
> Reviewed-on: https://chromium-review.googlesource.com/c/1329173
> Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
> Reviewed-by: Jakob Gruber <jgruber@chromium.org>
> Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
> Reviewed-by: Michael Stanton <mvstanton@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#58020}

TBR=mvstanton@chromium.org,mstarzinger@chromium.org,sigurds@chromium.org,jgruber@chromium.org

Change-Id: Ie336a99218db4def848bd5c8c58dfb66f0e372b2
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: v8:7989
Reviewed-on: https://chromium-review.googlesource.com/c/1361165
Reviewed-by: Leszek Swirski <leszeks@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58021}
[code-comments] Put code comments into the code object

Code comments in the snapshot can now be enabled with gn
arg 'v8_enable_snapshot_code_comments'

Bug: v8:7989
Change-Id: I8bd00cafa63132d00d849394c311ba15e6b6daf3
Reviewed-on: https://chromium-review.googlesource.com/c/1329173
Commit-Queue: Sigurd Schneider <sigurds@chromium.org>
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Reviewed-by: Michael Stanton <mvstanton@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58020}
[cpu-profiler] Enable TickEvents test

The flakiness of this test was fixed by
https://chromium-review.googlesource.com/c/v8/v8/+/1280436 which removed
calls to StartTickSample() and FinishTickSample() from tests as this
causes a race.

Bug: v8:6133, v8:5193
Change-Id: Ia6bcfa75cce64547b00a185343ada803d082a12e
Reviewed-on: https://chromium-review.googlesource.com/c/1361163
Reviewed-by: Camillo Bruni <cbruni@chromium.org>
Commit-Queue: Peter Marshall <petermarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#58019}
[unwinder] Add bounds checking to the unwinder API

It's possible that we encounter incorrect SP or FP values while
unwinding the stack. One reason is that third-party code like virus
protection may change the stack. If we encounter values for SP or FP
that don't make sense, we should bail out of unwinding and return false.

Bug: v8:8116, chromium:909957
Change-Id: I630fef3f619382c7035be50b86072be349ed185c
Reviewed-on: https://chromium-review.googlesource.com/c/1358514
Reviewed-by: Yang Guo <yangguo@chromium.org>
Commit-Queue: Peter Marshall <petermarshall@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#58018}
Reviewed-on: https://chromium-review.googlesource.com/c/1361385
Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/7.3.21@{#1}
Cr-Branched-From: 9c875d3ea4e6084d7a859651e92df87cc5a223ed-refs/heads/master@{#58017}
diff --git a/ChangeLog b/ChangeLog
index 375d57e..5c1f422 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,13596 @@
-2017-12-19: Sentinel
+2018-12-04: Version 7.3.21
 
-        The ChangeLog file is no longer maintained on master. This
-        sentinel should stay on top of this list.
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-04: Version 7.3.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-12-03: Version 7.3.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-29: Version 7.2.505
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-29: Version 7.2.504
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-29: Version 7.2.503
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.502
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.501
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.500
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.499
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.498
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.497
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.496
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.495
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.494
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.493
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-28: Version 7.2.492
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.491
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.490
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.489
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.488
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.487
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.486
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.485
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.484
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.483
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.482
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.481
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.480
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.479
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-27: Version 7.2.478
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.477
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.476
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.475
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.474
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.473
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.472
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.471
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.470
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-26: Version 7.2.469
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.468
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.467
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.466
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.465
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.464
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-24: Version 7.2.463
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-23: Version 7.2.462
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-23: Version 7.2.461
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-23: Version 7.2.460
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-23: Version 7.2.459
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-23: Version 7.2.458
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.457
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.456
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.455
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.454
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.453
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.452
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.451
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.450
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.449
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.448
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.447
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.446
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.445
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.444
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.443
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.442
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.441
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.440
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.439
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.438
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.437
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.436
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.435
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.434
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.433
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.432
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.431
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.430
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.429
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.428
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.427
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.426
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-22: Version 7.2.425
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.424
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.423
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.422
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.421
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.420
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.419
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.418
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.417
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.416
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.415
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.414
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.413
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.412
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.411
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.410
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.409
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.408
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.407
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.406
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.405
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.404
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.403
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.402
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.401
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.400
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.399
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.398
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-21: Version 7.2.397
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.396
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.395
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.394
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.393
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.392
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.391
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.390
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.389
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-20: Version 7.2.388
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.387
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.386
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.385
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.384
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.383
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.382
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.381
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.380
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-19: Version 7.2.379
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-18: Version 7.2.378
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-18: Version 7.2.377
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.376
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.375
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.374
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.373
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.372
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.371
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.370
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.369
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.368
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.367
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.366
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.365
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.364
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.363
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-16: Version 7.2.362
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.361
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.360
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.359
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.358
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.357
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.356
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.355
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.354
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.353
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.352
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.351
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.350
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.349
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.348
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.347
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.346
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.345
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.344
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.343
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.342
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.341
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.340
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-15: Version 7.2.339
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.338
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.337
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.336
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.335
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.334
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.333
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.332
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.331
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.330
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.329
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.328
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.327
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.326
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.325
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.324
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.323
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-14: Version 7.2.322
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.321
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.320
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.319
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.318
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.317
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.316
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.315
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.314
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.313
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.312
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.311
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-13: Version 7.2.310
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.309
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.308
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.307
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.306
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.305
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.304
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.303
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.302
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.301
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.300
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.299
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.298
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.297
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.296
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.295
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-12: Version 7.2.294
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.293
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.292
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.291
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-09: Version 7.2.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-08: Version 7.2.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-07: Version 7.2.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-06: Version 7.2.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-05: Version 7.2.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-05: Version 7.2.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-05: Version 7.2.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-05: Version 7.2.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-04: Version 7.2.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-04: Version 7.2.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-03: Version 7.2.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-03: Version 7.2.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-03: Version 7.2.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-02: Version 7.2.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-01: Version 7.2.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-01: Version 7.2.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-01: Version 7.2.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-01: Version 7.2.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-11-01: Version 7.2.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-31: Version 7.2.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-30: Version 7.2.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-30: Version 7.2.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-29: Version 7.2.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-28: Version 7.2.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-27: Version 7.2.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-26: Version 7.2.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-25: Version 7.2.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-24: Version 7.2.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-23: Version 7.2.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-22: Version 7.2.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-20: Version 7.2.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-20: Version 7.2.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-19: Version 7.2.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-18: Version 7.2.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-18: Version 7.2.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-18: Version 7.2.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-17: Version 7.2.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-16: Version 7.2.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-15: Version 7.2.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-14: Version 7.2.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-13: Version 7.2.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-13: Version 7.2.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-11: Version 7.1.321
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.320
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.319
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.318
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.317
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.316
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.315
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.314
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.313
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-10: Version 7.1.312
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.311
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.310
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.309
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.308
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.307
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.306
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.305
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.304
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.303
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.302
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-09: Version 7.1.301
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.300
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.299
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.298
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.297
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.296
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.295
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.294
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.293
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.292
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.291
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-08: Version 7.1.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-07: Version 7.1.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-07: Version 7.1.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-07: Version 7.1.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-06: Version 7.1.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-06: Version 7.1.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-06: Version 7.1.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-06: Version 7.1.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-06: Version 7.1.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-05: Version 7.1.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-04: Version 7.1.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-03: Version 7.1.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-02: Version 7.1.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-10-01: Version 7.1.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-30: Version 7.1.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-29: Version 7.1.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-29: Version 7.1.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-29: Version 7.1.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-28: Version 7.1.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-27: Version 7.1.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-26: Version 7.1.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-25: Version 7.1.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-24: Version 7.1.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-21: Version 7.1.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-20: Version 7.1.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-19: Version 7.1.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-18: Version 7.1.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-17: Version 7.1.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-14: Version 7.1.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-13: Version 7.1.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-12: Version 7.1.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-11: Version 7.1.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-10: Version 7.1.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-09: Version 7.1.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-08: Version 7.1.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-07: Version 7.1.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-06: Version 7.1.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-05: Version 7.1.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-04: Version 7.1.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-03: Version 7.1.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-02: Version 7.1.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-02: Version 7.1.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-02: Version 7.1.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-09-01: Version 7.1.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-31: Version 7.1.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-31: Version 7.1.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-31: Version 7.1.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-31: Version 7.1.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-31: Version 7.1.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.302
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.301
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.300
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.299
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.298
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.297
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.296
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.295
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.294
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.293
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.292
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.291
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-29: Version 7.0.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-28: Version 7.0.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-27: Version 7.0.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-27: Version 7.0.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-26: Version 7.0.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-25: Version 7.0.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-25: Version 7.0.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-25: Version 7.0.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-25: Version 7.0.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-24: Version 7.0.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-23: Version 7.0.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-22: Version 7.0.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-22: Version 7.0.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-21: Version 7.0.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-21: Version 7.0.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-21: Version 7.0.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-21: Version 7.0.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-17: Version 7.0.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-17: Version 7.0.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-17: Version 7.0.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-17: Version 7.0.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-17: Version 7.0.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-15: Version 7.0.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-14: Version 7.0.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-12: Version 7.0.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-11: Version 7.0.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-10: Version 7.0.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-09: Version 7.0.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-08: Version 7.0.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-07: Version 7.0.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-07: Version 7.0.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-07: Version 7.0.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-07: Version 7.0.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-06: Version 7.0.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-03: Version 7.0.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-02: Version 7.0.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-08-01: Version 7.0.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-31: Version 7.0.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-30: Version 7.0.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-29: Version 7.0.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-28: Version 7.0.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-28: Version 7.0.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-28: Version 7.0.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-27: Version 7.0.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-26: Version 7.0.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-25: Version 7.0.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-24: Version 7.0.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-23: Version 7.0.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-20: Version 7.0.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-19: Version 6.9.454
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-19: Version 6.9.453
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-19: Version 6.9.452
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.451
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.450
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.449
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.448
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.447
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.446
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.445
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.444
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.443
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.442
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.441
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.440
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.439
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.438
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.437
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.436
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.435
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.434
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.433
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.432
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.431
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.430
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-18: Version 6.9.429
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.428
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.427
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.426
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.425
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.424
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.423
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.422
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.421
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.420
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.419
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.418
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.417
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.416
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.415
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.414
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-17: Version 6.9.413
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.412
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.411
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.410
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.409
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.408
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.407
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.406
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.405
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.404
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.403
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.402
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-16: Version 6.9.401
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-15: Version 6.9.400
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-14: Version 6.9.399
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.398
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.397
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.396
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.395
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.394
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.393
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.392
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.391
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.390
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.389
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.388
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.387
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.386
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.385
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.384
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.383
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.382
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-13: Version 6.9.381
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.380
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.379
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.378
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.377
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.376
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.375
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.374
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.373
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.372
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.371
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.370
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.369
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.368
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.367
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.366
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.365
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.364
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.363
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.362
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.361
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.360
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.359
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.358
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.357
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.356
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-12: Version 6.9.355
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.354
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.353
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.352
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.351
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.350
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.349
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.348
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.347
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.346
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-11: Version 6.9.345
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.344
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.343
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.342
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.341
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.340
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.339
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.338
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.337
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.336
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.335
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.334
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.333
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-10: Version 6.9.332
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.331
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.330
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.329
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.328
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.327
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.326
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-09: Version 6.9.325
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-08: Version 6.9.324
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-07: Version 6.9.323
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.322
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.321
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.320
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.319
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.318
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.317
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-06: Version 6.9.316
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.315
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.314
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.313
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.312
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.311
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.310
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.309
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-05: Version 6.9.308
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.307
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.306
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.305
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.304
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.303
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.302
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.301
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.300
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-04: Version 6.9.299
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.298
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.297
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.296
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.295
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.294
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.293
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.292
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.291
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-03: Version 6.9.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-02: Version 6.9.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-07-01: Version 6.9.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-30: Version 6.9.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-29: Version 6.9.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-28: Version 6.9.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-28: Version 6.9.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-28: Version 6.9.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-27: Version 6.9.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-26: Version 6.9.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-25: Version 6.9.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-24: Version 6.9.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-23: Version 6.9.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-23: Version 6.9.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-22: Version 6.9.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-21: Version 6.9.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-20: Version 6.9.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-19: Version 6.9.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-18: Version 6.9.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-14: Version 6.9.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-13: Version 6.9.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-12: Version 6.9.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-12: Version 6.9.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-12: Version 6.9.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-12: Version 6.9.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-12: Version 6.9.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-11: Version 6.9.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-08: Version 6.9.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-07: Version 6.9.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-06: Version 6.9.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-05: Version 6.9.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-04: Version 6.9.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-06-01: Version 6.9.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-31: Version 6.9.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-30: Version 6.9.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-29: Version 6.9.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-28: Version 6.9.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-27: Version 6.9.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-26: Version 6.9.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-25: Version 6.9.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-24: Version 6.8.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-23: Version 6.8.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-22: Version 6.8.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-21: Version 6.8.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-21: Version 6.8.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-21: Version 6.8.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-21: Version 6.8.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-19: Version 6.8.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-18: Version 6.8.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-17: Version 6.8.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-17: Version 6.8.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-17: Version 6.8.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-17: Version 6.8.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-17: Version 6.8.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-16: Version 6.8.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-15: Version 6.8.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-14: Version 6.8.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-11: Version 6.8.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-10: Version 6.8.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-08: Version 6.8.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-07: Version 6.8.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-05: Version 6.8.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-04: Version 6.8.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-03: Version 6.8.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-02: Version 6.8.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-01: Version 6.8.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-01: Version 6.8.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-01: Version 6.8.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-01: Version 6.8.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-05-01: Version 6.8.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-30: Version 6.8.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-29: Version 6.8.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-27: Version 6.8.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-26: Version 6.8.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-26: Version 6.8.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-26: Version 6.8.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-26: Version 6.8.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-25: Version 6.8.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-24: Version 6.8.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-24: Version 6.8.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-24: Version 6.8.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-23: Version 6.8.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-20: Version 6.8.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-20: Version 6.8.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-20: Version 6.8.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-20: Version 6.8.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-20: Version 6.8.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-19: Version 6.8.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-19: Version 6.8.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-19: Version 6.8.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-19: Version 6.8.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-19: Version 6.8.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-18: Version 6.8.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-18: Version 6.8.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-18: Version 6.8.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-18: Version 6.8.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-18: Version 6.8.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-17: Version 6.8.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-16: Version 6.8.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-15: Version 6.8.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-15: Version 6.8.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-14: Version 6.8.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-14: Version 6.8.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-13: Version 6.8.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-13: Version 6.8.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-12: Version 6.8.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-12: Version 6.8.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-11: Version 6.7.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-10: Version 6.7.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-09: Version 6.7.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-06: Version 6.7.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-05: Version 6.7.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-04: Version 6.7.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-03: Version 6.7.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-04-03: Version 6.7.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-30: Version 6.7.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-30: Version 6.7.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-29: Version 6.7.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-28: Version 6.7.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-27: Version 6.7.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-26: Version 6.7.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-24: Version 6.7.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-24: Version 6.7.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-24: Version 6.7.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-23: Version 6.7.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-22: Version 6.7.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-21: Version 6.7.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-20: Version 6.7.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-19: Version 6.7.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-17: Version 6.7.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-16: Version 6.7.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-15: Version 6.7.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-14: Version 6.7.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-13: Version 6.7.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-12: Version 6.7.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-10: Version 6.7.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-09: Version 6.7.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-09: Version 6.7.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-08: Version 6.7.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-08: Version 6.7.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-08: Version 6.7.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-07: Version 6.7.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-07: Version 6.7.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-07: Version 6.7.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-06: Version 6.7.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-05: Version 6.7.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-02: Version 6.7.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-03-01: Version 6.6.356
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.355
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.354
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.353
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.352
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.351
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.350
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.349
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.348
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.347
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.346
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.345
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.344
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-28: Version 6.6.343
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.342
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.341
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.340
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.339
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.338
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.337
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-27: Version 6.6.336
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.335
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.334
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.333
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.332
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.331
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.330
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.329
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.328
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.327
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.326
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.325
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.324
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.323
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.322
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.321
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.320
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-26: Version 6.6.319
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-25: Version 6.6.318
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-25: Version 6.6.317
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-25: Version 6.6.316
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-25: Version 6.6.315
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-24: Version 6.6.314
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-24: Version 6.6.313
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.312
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.311
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.310
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.309
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.308
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.307
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.306
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.305
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.304
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.303
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.302
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.301
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.300
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.299
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-23: Version 6.6.298
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.297
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.296
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.295
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.294
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.293
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.292
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.291
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.290
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.289
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.288
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.287
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.286
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.285
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.284
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-22: Version 6.6.283
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-21: Version 6.6.282
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-21: Version 6.6.281
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-21: Version 6.6.280
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.279
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.278
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.277
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.276
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.275
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.274
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.273
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.272
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.271
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.270
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.269
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.268
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-20: Version 6.6.267
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.266
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.265
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.264
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.263
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.262
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-19: Version 6.6.261
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-17: Version 6.6.260
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-17: Version 6.6.259
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-16: Version 6.6.258
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-16: Version 6.6.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-16: Version 6.6.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-16: Version 6.6.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-15: Version 6.6.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-15: Version 6.6.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-15: Version 6.6.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-14: Version 6.6.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-13: Version 6.6.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-12: Version 6.6.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-12: Version 6.6.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-12: Version 6.6.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-12: Version 6.6.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-12: Version 6.6.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-09: Version 6.6.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-08: Version 6.6.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-07: Version 6.6.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-06: Version 6.6.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-05: Version 6.6.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-02: Version 6.6.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-02-01: Version 6.6.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.117
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-31: Version 6.6.116
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.115
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.114
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.113
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.112
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.111
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.110
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.109
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.108
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.107
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-30: Version 6.6.106
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.105
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.104
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.103
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.102
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.101
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.100
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.99
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.98
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.97
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.96
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.95
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.94
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.93
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.92
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-29: Version 6.6.91
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-27: Version 6.6.90
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-27: Version 6.6.89
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.88
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.87
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.86
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.85
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.84
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-26: Version 6.6.83
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.82
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.81
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.80
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.79
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.78
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.77
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.76
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.75
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.74
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.73
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.72
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.71
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.70
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.69
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.68
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-25: Version 6.6.67
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.66
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.65
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.64
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.63
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.62
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.61
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.60
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.59
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.58
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.57
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.56
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.55
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.54
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.53
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-24: Version 6.6.52
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.51
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.50
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.49
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.48
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.47
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.46
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.45
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.44
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.43
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.42
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.41
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.40
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.39
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.38
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.37
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.36
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.35
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.34
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-23: Version 6.6.33
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.32
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.31
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.30
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.29
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.28
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.27
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.26
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.25
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.24
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.23
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.22
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.21
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.20
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.19
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.18
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.17
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.16
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.15
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.14
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.13
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-22: Version 6.6.12
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-21: Version 6.6.11
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-20: Version 6.6.10
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-20: Version 6.6.9
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.8
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.7
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.6
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.5
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.4
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.3
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.2
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-19: Version 6.6.1
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-18: Version 6.5.257
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-18: Version 6.5.256
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-18: Version 6.5.255
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.254
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.253
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.252
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.251
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.250
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.249
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.248
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.247
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-17: Version 6.5.246
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.245
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.244
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.243
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.242
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.241
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.240
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.239
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.238
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.237
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.236
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.235
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.234
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.233
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.232
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.231
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.230
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.229
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.228
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.227
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.226
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.225
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.224
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.223
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.222
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.221
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-16: Version 6.5.220
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.219
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.218
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.217
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.216
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.215
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.214
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.213
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.212
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.211
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.210
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.209
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.208
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.207
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.206
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.205
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.204
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.203
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.202
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.201
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.200
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-15: Version 6.5.199
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-14: Version 6.5.198
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-13: Version 6.5.197
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.196
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.195
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.194
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.193
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.192
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.191
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.190
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-12: Version 6.5.189
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.188
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.187
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.186
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.185
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.184
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.183
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.182
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.181
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.180
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.179
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.178
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.177
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.176
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.175
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.174
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-11: Version 6.5.173
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.172
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.171
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.170
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.169
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.168
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.167
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.166
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.165
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.164
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-10: Version 6.5.163
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.162
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.161
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.160
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.159
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.158
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.157
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.156
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.155
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.154
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.153
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.152
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-09: Version 6.5.151
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-08: Version 6.5.150
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-08: Version 6.5.149
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-08: Version 6.5.148
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-08: Version 6.5.147
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.146
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.145
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.144
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.143
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.142
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.141
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-05: Version 6.5.140
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.139
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.138
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.137
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.136
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.135
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.134
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.133
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.132
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.131
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.130
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.129
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.128
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.127
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-04: Version 6.5.126
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-03: Version 6.5.125
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-03: Version 6.5.124
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.123
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.122
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.121
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.120
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.119
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.118
+
+        Performance and stability improvements on all platforms.
+
+
+2018-01-02: Version 6.5.117
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.116
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.115
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.114
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.113
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.112
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-29: Version 6.5.111
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-28: Version 6.5.110
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-28: Version 6.5.109
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-27: Version 6.5.108
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-22: Version 6.5.107
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-22: Version 6.5.106
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-22: Version 6.5.105
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-22: Version 6.5.104
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-21: Version 6.5.103
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-21: Version 6.5.102
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.101
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.100
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.99
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.98
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.97
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.96
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.95
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.94
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.93
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.92
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.91
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-20: Version 6.5.90
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.89
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.88
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.87
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.86
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.85
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.84
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.83
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.82
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.81
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.80
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.79
+
+        Performance and stability improvements on all platforms.
+
+
+2017-12-19: Version 6.5.78
+
+        Performance and stability improvements on all platforms.
 
 
 2017-12-19: Version 6.5.77
diff --git a/WATCHLISTS b/WATCHLISTS
index 9e23852..bd07d31 100644
--- a/WATCHLISTS
+++ b/WATCHLISTS
@@ -33,9 +33,8 @@
 
 {
   'WATCHLIST_DEFINITIONS': {
-    'api': {
-      'filepath': 'include/' \
-                  '|src/api\.(cc|h)$',
+    'public_api': {
+      'filepath': 'include/',
     },
     'snapshot': {
       'filepath': 'src/snapshot/',
@@ -58,98 +57,45 @@
     'arm': {
       'filepath': '/arm/',
     },
-    'csa': {
-      'filepath': 'src/code-stub-assembler\.(cc|h)$' \
-                  '|src/builtins/.*-gen.(cc|h)$',
-    },
     'ia32': {
       'filepath': '/ia32/',
     },
     'merges': {
       'filepath': '.',
-    },
-    'inspector': {
-      'filepath': 'inspector',
-    },
-    'wasm': {
-      'filepath': 'src/wasm/' \
-                  '|src/compiler/wasm',
-    },
-    'value_serializer': {
-      'filepath': 'src/value-serializer',
-    },
-    'parser': {
-      'filepath': 'src/ast/' \
-                  '|src/parsing/',
-    },
-    'profiler': {
-      'filepath': 'src/profiler/' \
-                  '|src/libsampler/',
-    },
-    'torque': {
-      'filepath': '.*\.tq$',
-    },
-    'tracing': {
-      'filepath': 'src/tracing/',
-    },
+    }
   },
 
   'WATCHLISTS': {
-    'api': [
-      'adamk+watch@chromium.org',
-      'yangguo+watch@chromium.org',
-    ],
-    'csa': [
-      'jgruber+watch@chromium.org',
-    ],
-    'torque': [
-      'jgruber+watch@chromium.org',
+    'public_api': [
+      'phajdan.jr@chromium.org',
     ],
     'snapshot': [
-      'jgruber+watch@chromium.org',
-      'yangguo+watch@chromium.org',
+      'yangguo@chromium.org',
     ],
     'debugger': [
-      'jgruber+watch@chromium.org',
-      'yangguo+watch@chromium.org',
+      'yangguo@chromium.org',
     ],
     'interpreter': [
       'rmcilroy@chromium.org',
+      'oth@chromium.org',
     ],
     'feature_shipping_status': [
       'hablich@chromium.org',
     ],
     'gc_changes': [
       'hpayer@chromium.org',
+      'ulan@chromium.org',
     ],
     'arm': [
       'v8-mips-ports@googlegroups.com',
       'v8-ppc-ports@googlegroups.com',
     ],
+    'ia32': [
+      'v8-x87-ports@googlegroups.com',
+    ],
     'merges': [
       # Only enabled on branches created with tools/release/create_release.py
-      # 'v8-merges@googlegroups.com',
-    ],
-    'inspector': [
-      'devtools-reviews@chromium.org',
-    ],
-    'wasm': [
-      'wasm-v8@google.com',
-    ],
-    'value_serializer': [
-      'jbroman+watch@chromium.org',
-    ],
-    'parser': [
-      'adamk+watch@chromium.org',
-      'marja+watch@chromium.org',
-    ],
-    'profiler': [
-      'alph+watch@chromium.org',
-    ],
-    'tracing': [
-      'alph+watch@chromium.org',
-      'lpy+v8tracing@chromium.org',
-      'fmeawad@chromium.org',
+      'v8-merges@googlegroups.com',
     ],
   },
 }
diff --git a/include/v8-version.h b/include/v8-version.h
index 60fd3c2..7970bb45 100644
--- a/include/v8-version.h
+++ b/include/v8-version.h
@@ -10,11 +10,11 @@
 // system so their names cannot be changed without changing the scripts.
 #define V8_MAJOR_VERSION 7
 #define V8_MINOR_VERSION 3
-#define V8_BUILD_NUMBER 0
+#define V8_BUILD_NUMBER 21
 #define V8_PATCH_LEVEL 0
 
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
-#define V8_IS_CANDIDATE_VERSION 1
+#define V8_IS_CANDIDATE_VERSION 0
 
 #endif  // V8_INCLUDE_VERSION_H_
diff --git a/include/v8.h b/include/v8.h
index 53025d5..741889f 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -9270,7 +9270,11 @@
    * \param unwind_state Input state for the Isolate that the stack comes from.
    * \param register_state The current registers. This is an in-out param that
    * will be overwritten with the register values after unwinding, on success.
-   * \param stack_base Currently unused.
+   * \param stack_base The resulting stack pointer and frame pointer values are
+   * bounds-checked against the stack_base and the original stack pointer value
+   * to ensure that they are valid locations in the given stack. If these values
+   * or any intermediate frame pointer values used during unwinding are ever out
+   * of these bounds, unwinding will fail.
    *
    * \return True on success.
    */
diff --git a/src/api.cc b/src/api.cc
index 63e6ff6..70829bf 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -5270,7 +5270,7 @@
   int length = str->length();
   if (length == 0) return 0;
   i::DisallowHeapAllocation no_gc;
-  i::String::FlatContent flat = str->GetFlatContent();
+  i::String::FlatContent flat = str->GetFlatContent(no_gc);
   DCHECK(flat.IsFlat());
   int utf8_length = 0;
   if (flat.IsOneByte()) {
diff --git a/src/assert-scope.h b/src/assert-scope.h
index df8fa9f..0a41af7 100644
--- a/src/assert-scope.h
+++ b/src/assert-scope.h
@@ -134,8 +134,10 @@
     DisallowHeapAllocation;
 #ifdef DEBUG
 #define DISALLOW_HEAP_ALLOCATION(name) DisallowHeapAllocation name
+#define DISALLOW_HEAP_ALLOCATION_REF(name) const DisallowHeapAllocation& name
 #else
 #define DISALLOW_HEAP_ALLOCATION(name)
+#define DISALLOW_HEAP_ALLOCATION_REF(name)
 #endif
 
 // Scope to introduce an exception to DisallowHeapAllocation.
diff --git a/src/ast/ast-value-factory.cc b/src/ast/ast-value-factory.cc
index 0c6dd22..d8bdf08 100644
--- a/src/ast/ast-value-factory.cc
+++ b/src/ast/ast-value-factory.cc
@@ -232,7 +232,7 @@
 const AstRawString* AstValueFactory::GetString(Handle<String> literal) {
   AstRawString* result = nullptr;
   DisallowHeapAllocation no_gc;
-  String::FlatContent content = literal->GetFlatContent();
+  String::FlatContent content = literal->GetFlatContent(no_gc);
   if (content.IsOneByte()) {
     result = GetOneByteStringInternal(content.ToOneByteVector());
   } else {
diff --git a/src/builtins/builtins-date.cc b/src/builtins/builtins-date.cc
index b2e054d..a148092 100644
--- a/src/builtins/builtins-date.cc
+++ b/src/builtins/builtins-date.cc
@@ -115,7 +115,7 @@
   Handle<FixedArray> tmp =
       isolate->factory()->NewFixedArray(DateParser::OUTPUT_SIZE);
   DisallowHeapAllocation no_gc;
-  String::FlatContent str_content = str->GetFlatContent();
+  String::FlatContent str_content = str->GetFlatContent(no_gc);
   bool result;
   if (str_content.IsOneByte()) {
     result = DateParser::Parse(isolate, str_content.ToOneByteVector(), *tmp);
diff --git a/src/builtins/builtins-string.cc b/src/builtins/builtins-string.cc
index a863d3b..8fe126b 100644
--- a/src/builtins/builtins-string.cc
+++ b/src/builtins/builtins-string.cc
@@ -110,9 +110,10 @@
           static_cast<int>(one_byte_buffer.size() + two_byte_buffer.size())));
 
   DisallowHeapAllocation no_gc;
-  CopyChars(result->GetChars(), one_byte_buffer.data(), one_byte_buffer.size());
-  CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(),
-            two_byte_buffer.size());
+  CopyChars(result->GetChars(no_gc), one_byte_buffer.data(),
+            one_byte_buffer.size());
+  CopyChars(result->GetChars(no_gc) + one_byte_buffer.size(),
+            two_byte_buffer.data(), two_byte_buffer.size());
 
   return *result;
 }
@@ -158,8 +159,8 @@
   search_string = String::Flatten(isolate, search_string);
 
   DisallowHeapAllocation no_gc;  // ensure vectors stay valid
-  String::FlatContent str_content = str->GetFlatContent();
-  String::FlatContent search_content = search_string->GetFlatContent();
+  String::FlatContent str_content = str->GetFlatContent(no_gc);
+  String::FlatContent search_content = search_string->GetFlatContent(no_gc);
 
   if (str_content.IsOneByte() && search_content.IsOneByte()) {
     Vector<const uint8_t> str_vector = str_content.ToOneByteVector();
@@ -240,8 +241,8 @@
   str2 = String::Flatten(isolate, str2);
 
   DisallowHeapAllocation no_gc;
-  String::FlatContent flat1 = str1->GetFlatContent();
-  String::FlatContent flat2 = str2->GetFlatContent();
+  String::FlatContent flat1 = str1->GetFlatContent(no_gc);
+  String::FlatContent flat2 = str2->GetFlatContent(no_gc);
 
   for (int i = 0; i < end; i++) {
     if (flat1.Get(i) != flat2.Get(i)) {
@@ -465,11 +466,11 @@
     Handle<SeqOneByteString> result =
         isolate->factory()->NewRawOneByteString(length).ToHandleChecked();
     DisallowHeapAllocation no_gc;
-    String::FlatContent flat_content = s->GetFlatContent();
+    String::FlatContent flat_content = s->GetFlatContent(no_gc);
     DCHECK(flat_content.IsFlat());
     bool has_changed_character = false;
     int index_to_first_unprocessed = FastAsciiConvert<Converter::kIsToLower>(
-        reinterpret_cast<char*>(result->GetChars()),
+        reinterpret_cast<char*>(result->GetChars(no_gc)),
         reinterpret_cast<const char*>(flat_content.ToOneByteVector().start()),
         length, &has_changed_character);
     // If not ASCII, we discard the result and take the 2 byte path.
diff --git a/src/builtins/builtins-trace.cc b/src/builtins/builtins-trace.cc
index 7df5f2f..dc7e709 100644
--- a/src/builtins/builtins-trace.cc
+++ b/src/builtins/builtins-trace.cc
@@ -35,7 +35,8 @@
         // strings, the bytes we get from SeqOneByteString are not. buf_ is
         // guaranteed to be null terminated.
         DisallowHeapAllocation no_gc;
-        memcpy(buf_, Handle<SeqOneByteString>::cast(string)->GetChars(), len);
+        memcpy(buf_, Handle<SeqOneByteString>::cast(string)->GetChars(no_gc),
+               len);
       }
     } else {
       Local<v8::String> local = Utils::ToLocal(string);
diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc
index 0e3911a..5c202a5 100644
--- a/src/compiler/graph-visualizer.cc
+++ b/src/compiler/graph-visualizer.cc
@@ -88,7 +88,8 @@
       end = shared->EndPosition();
       os << ", \"sourceText\": \"";
       int len = shared->EndPosition() - start;
-      SubStringRange source(String::cast(script->source()), start, len);
+      SubStringRange source(String::cast(script->source()), no_allocation,
+                            start, len);
       for (const auto& c : source) {
         os << AsEscapedUC16ForJSON(c);
       }
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index d2cf5f0..28c879b 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -565,7 +565,8 @@
         DisallowHeapAllocation no_allocation;
         int start = shared->StartPosition();
         int len = shared->EndPosition() - start;
-        SubStringRange source(String::cast(script->source()), start, len);
+        SubStringRange source(String::cast(script->source()), no_allocation,
+                              start, len);
         for (const auto& c : source) {
           os << AsReversiblyEscapedUC16(c);
         }
diff --git a/src/conversions.cc b/src/conversions.cc
index 205f01a..e369ce9 100644
--- a/src/conversions.cc
+++ b/src/conversions.cc
@@ -216,11 +216,13 @@
     if (raw_one_byte_subject_ != nullptr) {
       return Vector<const uint8_t>(raw_one_byte_subject_, length_);
     }
-    return subject_->GetFlatContent().ToOneByteVector();
+    DisallowHeapAllocation no_gc;
+    return subject_->GetFlatContent(no_gc).ToOneByteVector();
   }
 
   Vector<const uc16> GetTwoByteVector() {
-    return subject_->GetFlatContent().ToUC16Vector();
+    DisallowHeapAllocation no_gc;
+    return subject_->GetFlatContent(no_gc).ToUC16Vector();
   }
 
   // Subclasses get access to internal state:
@@ -1311,7 +1313,7 @@
   Handle<String> flattened = String::Flatten(isolate, string);
   {
     DisallowHeapAllocation no_gc;
-    String::FlatContent flat = flattened->GetFlatContent();
+    String::FlatContent flat = flattened->GetFlatContent(no_gc);
     DCHECK(flat.IsFlat());
     if (flat.IsOneByte()) {
       return StringToDouble(flat.ToOneByteVector(), flags, empty_string_val);
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 752e543..6998903 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -2004,7 +2004,7 @@
     int line_start = line == 0 ? 0 : Smi::ToInt(line_ends->get(line - 1)) + 1;
     int line_end = Smi::ToInt(line_ends->get(line));
     DisallowHeapAllocation no_gc;
-    String::FlatContent content = source->GetFlatContent();
+    String::FlatContent content = source->GetFlatContent(no_gc);
     if (content.IsOneByte()) {
       PrintF("[debug] %.*s\n", line_end - line_start,
              content.ToOneByteVector().start() + line_start);
diff --git a/src/heap/factory.cc b/src/heap/factory.cc
index 4cbb1a9..0fd6cbf 100644
--- a/src/heap/factory.cc
+++ b/src/heap/factory.cc
@@ -629,7 +629,7 @@
 
   DisallowHeapAllocation no_gc;
   // Copy the characters into the new object.
-  CopyChars(SeqOneByteString::cast(*result)->GetChars(), string.start(),
+  CopyChars(SeqOneByteString::cast(*result)->GetChars(no_gc), string.start(),
             length);
   return result;
 }
@@ -663,7 +663,7 @@
 
   // Copy ASCII portion.
   DisallowHeapAllocation no_gc;
-  uint16_t* data = result->GetChars();
+  uint16_t* data = result->GetChars(no_gc);
   for (int i = 0; i < non_ascii_start; i++) {
     *data++ = *ascii_data++;
   }
@@ -683,7 +683,7 @@
   {
     DisallowHeapAllocation no_gc;
     const char* ascii_data =
-        reinterpret_cast<const char*>(str->GetChars() + begin);
+        reinterpret_cast<const char*>(str->GetChars(no_gc) + begin);
     non_ascii_start = String::NonAsciiStart(ascii_data, length);
     if (non_ascii_start < length) {
       // Non-ASCII and we need to decode.
@@ -713,12 +713,12 @@
   // allocation.
   DisallowHeapAllocation no_gc;
   const char* ascii_data =
-      reinterpret_cast<const char*>(str->GetChars() + begin);
+      reinterpret_cast<const char*>(str->GetChars(no_gc) + begin);
   auto non_ascii = Vector<const char>(ascii_data + non_ascii_start,
                                       length - non_ascii_start);
 
   // Copy ASCII portion.
-  uint16_t* data = result->GetChars();
+  uint16_t* data = result->GetChars(no_gc);
   for (int i = 0; i < non_ascii_start; i++) {
     *data++ = *ascii_data++;
   }
@@ -738,14 +738,14 @@
     ASSIGN_RETURN_ON_EXCEPTION(isolate(), result,
                                NewRawOneByteString(length, pretenure), String);
     DisallowHeapAllocation no_gc;
-    CopyChars(result->GetChars(), string, length);
+    CopyChars(result->GetChars(no_gc), string, length);
     return result;
   } else {
     Handle<SeqTwoByteString> result;
     ASSIGN_RETURN_ON_EXCEPTION(isolate(), result,
                                NewRawTwoByteString(length, pretenure), String);
     DisallowHeapAllocation no_gc;
-    CopyChars(result->GetChars(), string, length);
+    CopyChars(result->GetChars(no_gc), string, length);
     return result;
   }
 }
@@ -842,7 +842,7 @@
   DisallowHeapAllocation no_gc;
 
   // Fill in the characters.
-  MemCopy(answer->GetChars(), str.start(), str.length() * kUC16Size);
+  MemCopy(answer->GetChars(no_gc), str.start(), str.length() * kUC16Size);
 
   return answer;
 }
@@ -876,9 +876,11 @@
   DisallowHeapAllocation no_gc;
 
   if (is_one_byte) {
-    WriteOneByteData(t, SeqOneByteString::cast(*answer)->GetChars(), chars);
+    WriteOneByteData(t, SeqOneByteString::cast(*answer)->GetChars(no_gc),
+                     chars);
   } else {
-    WriteTwoByteData(t, SeqTwoByteString::cast(*answer)->GetChars(), chars);
+    WriteTwoByteData(t, SeqTwoByteString::cast(*answer)->GetChars(no_gc),
+                     chars);
   }
   return answer;
 }
@@ -890,7 +892,7 @@
     Handle<SeqOneByteString> result =
         AllocateRawOneByteInternalizedString(str.length(), hash_field);
     DisallowHeapAllocation no_allocation;
-    MemCopy(result->GetChars(), str.start(), str.length());
+    MemCopy(result->GetChars(no_allocation), str.start(), str.length());
     return result;
   }
   return AllocateInternalizedStringImpl<false>(str, chars, hash_field);
@@ -901,7 +903,7 @@
   Handle<SeqOneByteString> result =
       AllocateRawOneByteInternalizedString(str.length(), hash_field);
   DisallowHeapAllocation no_allocation;
-  MemCopy(result->GetChars(), str.start(), str.length());
+  MemCopy(result->GetChars(no_allocation), str.start(), str.length());
   return result;
 }
 
@@ -911,7 +913,8 @@
   Handle<SeqOneByteString> result =
       AllocateRawOneByteInternalizedString(length, hash_field);
   DisallowHeapAllocation no_allocation;
-  MemCopy(result->GetChars(), string->GetChars() + offset, length);
+  MemCopy(result->GetChars(no_allocation),
+          string->GetChars(no_allocation) + offset, length);
   return result;
 }
 
@@ -1069,7 +1072,7 @@
     Handle<SeqOneByteString> str =
         isolate->factory()->NewRawOneByteString(2).ToHandleChecked();
     DisallowHeapAllocation no_allocation;
-    uint8_t* dest = str->GetChars();
+    uint8_t* dest = str->GetChars(no_allocation);
     dest[0] = static_cast<uint8_t>(c1);
     dest[1] = static_cast<uint8_t>(c2);
     return str;
@@ -1077,7 +1080,7 @@
     Handle<SeqTwoByteString> str =
         isolate->factory()->NewRawTwoByteString(2).ToHandleChecked();
     DisallowHeapAllocation no_allocation;
-    uc16* dest = str->GetChars();
+    uc16* dest = str->GetChars(no_allocation);
     dest[0] = c1;
     dest[1] = c2;
     return str;
@@ -1089,7 +1092,7 @@
                                    Handle<String> first,
                                    Handle<String> second) {
   DisallowHeapAllocation pointer_stays_valid;
-  SinkChar* sink = result->GetChars();
+  SinkChar* sink = result->GetChars(pointer_stays_valid);
   String::WriteToFlat(*first, sink, 0, first->length());
   String::WriteToFlat(*second, sink + first->length(), 0, second->length());
   return result;
@@ -1149,17 +1152,17 @@
       Handle<SeqOneByteString> result =
           NewRawOneByteString(length).ToHandleChecked();
       DisallowHeapAllocation no_gc;
-      uint8_t* dest = result->GetChars();
+      uint8_t* dest = result->GetChars(no_gc);
       // Copy left part.
       const uint8_t* src =
           left->IsExternalString()
               ? Handle<ExternalOneByteString>::cast(left)->GetChars()
-              : Handle<SeqOneByteString>::cast(left)->GetChars();
+              : Handle<SeqOneByteString>::cast(left)->GetChars(no_gc);
       for (int i = 0; i < left_length; i++) *dest++ = src[i];
       // Copy right part.
       src = right->IsExternalString()
                 ? Handle<ExternalOneByteString>::cast(right)->GetChars()
-                : Handle<SeqOneByteString>::cast(right)->GetChars();
+                : Handle<SeqOneByteString>::cast(right)->GetChars(no_gc);
       for (int i = 0; i < right_length; i++) *dest++ = src[i];
       return result;
     }
@@ -1207,7 +1210,7 @@
   Handle<SeqTwoByteString> str =
       isolate()->factory()->NewRawTwoByteString(2).ToHandleChecked();
   DisallowHeapAllocation no_allocation;
-  uc16* dest = str->GetChars();
+  uc16* dest = str->GetChars(no_allocation);
   dest[0] = lead;
   dest[1] = trail;
   return str;
@@ -1241,14 +1244,14 @@
       Handle<SeqOneByteString> result =
           NewRawOneByteString(length).ToHandleChecked();
       DisallowHeapAllocation no_gc;
-      uint8_t* dest = result->GetChars();
+      uint8_t* dest = result->GetChars(no_gc);
       String::WriteToFlat(*str, dest, begin, end);
       return result;
     } else {
       Handle<SeqTwoByteString> result =
           NewRawTwoByteString(length).ToHandleChecked();
       DisallowHeapAllocation no_gc;
-      uc16* dest = result->GetChars();
+      uc16* dest = result->GetChars(no_gc);
       String::WriteToFlat(*str, dest, begin, end);
       return result;
     }
diff --git a/src/json-parser.cc b/src/json-parser.cc
index 14f0717..bd0702e 100644
--- a/src/json-parser.cc
+++ b/src/json-parser.cc
@@ -256,10 +256,10 @@
   int length = expected->length();
   if (source_->length() - position_ - 1 > length) {
     DisallowHeapAllocation no_gc;
-    String::FlatContent content = expected->GetFlatContent();
+    String::FlatContent content = expected->GetFlatContent(no_gc);
     if (content.IsOneByte()) {
       DCHECK_EQ('"', c0_);
-      const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
+      const uint8_t* input_chars = seq_source_->GetChars(no_gc) + position_ + 1;
       const uint8_t* expected_chars = content.ToOneByteVector().start();
       for (int i = 0; i < length; i++) {
         uint8_t c0 = input_chars[i];
@@ -668,7 +668,7 @@
   double number;
   if (seq_one_byte) {
     DisallowHeapAllocation no_gc;
-    Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
+    Vector<const uint8_t> chars(seq_source_->GetChars(no_gc) + beg_pos, length);
     number = StringToDouble(chars,
                             NO_FLAGS,  // Hex, octal or trailing junk.
                             std::numeric_limits<double>::quiet_NaN());
@@ -731,7 +731,7 @@
   {
     DisallowHeapAllocation no_gc;
     // Copy prefix into seq_str.
-    SinkChar* dest = seq_string->GetChars();
+    SinkChar* dest = seq_string->GetChars(no_gc);
     String::WriteToFlat(*prefix, dest, start, end);
   }
 
@@ -899,8 +899,8 @@
       }
       if (!element->IsTheHole(isolate())) {
         DisallowHeapAllocation no_gc;
-        Vector<const uint8_t> string_vector(seq_source_->GetChars() + position_,
-                                            length);
+        Vector<const uint8_t> string_vector(
+            seq_source_->GetChars(no_gc) + position_, length);
         if (String::cast(element)->IsOneByteEqualTo(string_vector)) {
           result = Handle<String>(String::cast(element), isolate());
           DCHECK_EQ(result->Hash(),
@@ -937,7 +937,7 @@
   Handle<String> result =
       factory()->NewRawOneByteString(length, pretenure_).ToHandleChecked();
   DisallowHeapAllocation no_gc;
-  uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
+  uint8_t* dest = SeqOneByteString::cast(*result)->GetChars(no_gc);
   String::WriteToFlat(*source_, dest, beg_pos, position_);
 
   DCHECK_EQ('"', c0_);
diff --git a/src/json-stringifier.cc b/src/json-stringifier.cc
index 0dfed62..f7701f8 100644
--- a/src/json-stringifier.cc
+++ b/src/json-stringifier.cc
@@ -809,9 +809,9 @@
   // part, or we might need to allocate.
   if (int worst_case_length = builder_.EscapedLengthIfCurrentPartFits(length)) {
     DisallowHeapAllocation no_gc;
-    Vector<const SrcChar> vector = string->GetCharVector<SrcChar>();
+    Vector<const SrcChar> vector = string->GetCharVector<SrcChar>(no_gc);
     IncrementalStringBuilder::NoExtendBuilder<DestChar> no_extend(
-        &builder_, worst_case_length);
+        &builder_, worst_case_length, no_gc);
     SerializeStringUnchecked_(vector, &no_extend);
   } else {
     FlatStringReader reader(isolate_, string);
diff --git a/src/objects.cc b/src/objects.cc
index 0ee0fa9..1587dfa 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -2638,13 +2638,13 @@
     Handle<SeqOneByteString> flat = isolate->factory()->NewRawOneByteString(
         length, tenure).ToHandleChecked();
     DisallowHeapAllocation no_gc;
-    WriteToFlat(*cons, flat->GetChars(), 0, length);
+    WriteToFlat(*cons, flat->GetChars(no_gc), 0, length);
     result = flat;
   } else {
     Handle<SeqTwoByteString> flat = isolate->factory()->NewRawTwoByteString(
         length, tenure).ToHandleChecked();
     DisallowHeapAllocation no_gc;
-    WriteToFlat(*cons, flat->GetChars(), 0, length);
+    WriteToFlat(*cons, flat->GetChars(no_gc), 0, length);
     result = flat;
   }
   cons->set_first(isolate, *result);
@@ -11005,7 +11005,8 @@
     if (len == 0) return handle(Smi::kZero, isolate);
 
     DisallowHeapAllocation no_gc;
-    uint8_t const* data = Handle<SeqOneByteString>::cast(subject)->GetChars();
+    uint8_t const* data =
+        Handle<SeqOneByteString>::cast(subject)->GetChars(no_gc);
     bool minus = (data[0] == '-');
     int start_pos = (minus ? 1 : 0);
 
@@ -11047,9 +11048,9 @@
   return isolate->factory()->NewNumber(StringToDouble(isolate, subject, flags));
 }
 
-
-String::FlatContent String::GetFlatContent() {
-  DCHECK(!AllowHeapAllocation::IsAllowed());
+String::FlatContent String::GetFlatContent(
+    const DisallowHeapAllocation& no_gc) {
+  USE(no_gc);
   int length = this->length();
   StringShape shape(*this);
   String string = *this;
@@ -11079,7 +11080,7 @@
   if (shape.encoding_tag() == kOneByteStringTag) {
     const uint8_t* start;
     if (shape.representation_tag() == kSeqStringTag) {
-      start = SeqOneByteString::cast(string)->GetChars();
+      start = SeqOneByteString::cast(string)->GetChars(no_gc);
     } else {
       start = ExternalOneByteString::cast(string)->GetChars();
     }
@@ -11088,7 +11089,7 @@
     DCHECK_EQ(shape.encoding_tag(), kTwoByteStringTag);
     const uc16* start;
     if (shape.representation_tag() == kSeqStringTag) {
-      start = SeqTwoByteString::cast(string)->GetChars();
+      start = SeqTwoByteString::cast(string)->GetChars(no_gc);
     } else {
       start = ExternalTwoByteString::cast(string)->GetChars();
     }
@@ -11216,7 +11217,7 @@
   DCHECK(str->IsFlat());
   DisallowHeapAllocation no_gc;
   // This does not actually prevent the vector from being relocated later.
-  String::FlatContent content = str->GetFlatContent();
+  String::FlatContent content = str->GetFlatContent(no_gc);
   DCHECK(content.IsFlat());
   is_one_byte_ = content.IsOneByte();
   if (is_one_byte_) {
@@ -11416,14 +11417,12 @@
         return;
       }
       case kOneByteStringTag | kSeqStringTag: {
-        CopyChars(sink,
-                  SeqOneByteString::cast(source)->GetChars() + from,
+        CopyChars(sink, SeqOneByteString::cast(source)->GetChars(no_gc) + from,
                   to - from);
         return;
       }
       case kTwoByteStringTag | kSeqStringTag: {
-        CopyChars(sink,
-                  SeqTwoByteString::cast(source)->GetChars() + from,
+        CopyChars(sink, SeqTwoByteString::cast(source)->GetChars(no_gc) + from,
                   to - from);
         return;
       }
@@ -11458,7 +11457,7 @@
               sink[boundary - from] = static_cast<sinkchar>(second->Get(0));
             } else if (second->IsSeqOneByteString()) {
               CopyChars(sink + boundary - from,
-                        SeqOneByteString::cast(second)->GetChars(),
+                        SeqOneByteString::cast(second)->GetChars(no_gc),
                         to - boundary);
             } else {
               WriteToFlat(second,
@@ -11519,7 +11518,7 @@
   line_ends.reserve(line_count_estimate);
   { DisallowHeapAllocation no_allocation;  // ensure vectors stay valid.
     // Dispatch on type of strings.
-    String::FlatContent content = src->GetFlatContent();
+    String::FlatContent content = src->GetFlatContent(no_allocation);
     DCHECK(content.IsFlat());
     if (content.IsOneByte()) {
       CalculateLineEndsImpl(isolate,
@@ -11561,7 +11560,8 @@
   if (use_one_byte_separator_fast_path) {
     CHECK(StringShape(separator).IsSequentialOneByte());
     CHECK_EQ(separator->length(), 1);
-    separator_one_char = SeqOneByteString::cast(separator)->GetChars()[0];
+    separator_one_char =
+        SeqOneByteString::cast(separator)->GetChars(no_allocation)[0];
   }
 
   uint32_t num_separators = 0;
@@ -11639,12 +11639,12 @@
 
   if (StringShape(dest).IsSequentialOneByte()) {
     WriteFixedArrayToFlat(fixed_array, static_cast<int>(length), separator,
-                          SeqOneByteString::cast(dest)->GetChars(),
+                          SeqOneByteString::cast(dest)->GetChars(no_allocation),
                           dest->length());
   } else {
     DCHECK(StringShape(dest).IsSequentialTwoByte());
     WriteFixedArrayToFlat(fixed_array, static_cast<int>(length), separator,
-                          SeqTwoByteString::cast(dest)->GetChars(),
+                          SeqTwoByteString::cast(dest)->GetChars(no_allocation),
                           dest->length());
   }
   return dest->ptr();
@@ -11843,8 +11843,8 @@
   if (this->Get(0) != other->Get(0)) return false;
 
   if (IsSeqOneByteString() && other->IsSeqOneByteString()) {
-    const uint8_t* str1 = SeqOneByteString::cast(*this)->GetChars();
-    const uint8_t* str2 = SeqOneByteString::cast(other)->GetChars();
+    const uint8_t* str1 = SeqOneByteString::cast(*this)->GetChars(no_gc);
+    const uint8_t* str2 = SeqOneByteString::cast(other)->GetChars(no_gc);
     return CompareRawStringContents(str1, str2, len);
   }
 
@@ -11897,8 +11897,8 @@
   two = String::Flatten(isolate, two);
 
   DisallowHeapAllocation no_gc;
-  String::FlatContent flat1 = one->GetFlatContent();
-  String::FlatContent flat2 = two->GetFlatContent();
+  String::FlatContent flat1 = one->GetFlatContent(no_gc);
+  String::FlatContent flat2 = two->GetFlatContent(no_gc);
 
   if (flat1.IsOneByte() && flat2.IsOneByte()) {
       return CompareRawStringContents(flat1.ToOneByteVector().start(),
@@ -11947,8 +11947,8 @@
     result = ComparisonResult::kLessThan;
   }
   int r;
-  String::FlatContent x_content = x->GetFlatContent();
-  String::FlatContent y_content = y->GetFlatContent();
+  String::FlatContent x_content = x->GetFlatContent(no_gc);
+  String::FlatContent y_content = y->GetFlatContent(no_gc);
   if (x_content.IsOneByte()) {
     Vector<const uint8_t> x_chars = x_content.ToOneByteVector();
     if (y_content.IsOneByte()) {
@@ -12031,8 +12031,8 @@
 
   DisallowHeapAllocation no_gc;  // ensure vectors stay valid
   // Extract flattened substrings of cons strings before getting encoding.
-  String::FlatContent receiver_content = receiver->GetFlatContent();
-  String::FlatContent search_content = search->GetFlatContent();
+  String::FlatContent receiver_content = receiver->GetFlatContent(no_gc);
+  String::FlatContent search_content = search->GetFlatContent(no_gc);
 
   // dispatch on type of strings
   if (search_content.IsOneByte()) {
@@ -12293,8 +12293,8 @@
   int last_index = -1;
   DisallowHeapAllocation no_gc;  // ensure vectors stay valid
 
-  String::FlatContent receiver_content = receiver_string->GetFlatContent();
-  String::FlatContent search_content = search_string->GetFlatContent();
+  String::FlatContent receiver_content = receiver_string->GetFlatContent(no_gc);
+  String::FlatContent search_content = search_string->GetFlatContent(no_gc);
 
   if (search_content.IsOneByte()) {
     Vector<const uint8_t> pat_vector = search_content.ToOneByteVector();
@@ -12352,7 +12352,7 @@
   int slen = length();
   if (str.length() != slen) return false;
   DisallowHeapAllocation no_gc;
-  FlatContent content = GetFlatContent();
+  FlatContent content = GetFlatContent(no_gc);
   if (content.IsOneByte()) {
     return CompareChars(content.ToOneByteVector().start(),
                         str.start(), slen) == 0;
@@ -12365,7 +12365,7 @@
   int slen = length();
   if (str.length() != slen) return false;
   DisallowHeapAllocation no_gc;
-  FlatContent content = GetFlatContent();
+  FlatContent content = GetFlatContent(no_gc);
   if (content.IsOneByte()) {
     return CompareChars(content.ToOneByteVector().start(), str.start(), slen) ==
            0;
@@ -16625,7 +16625,7 @@
 inline int CountRequiredEscapes(Handle<String> source) {
   DisallowHeapAllocation no_gc;
   int escapes = 0;
-  Vector<const Char> src = source->GetCharVector<Char>();
+  Vector<const Char> src = source->GetCharVector<Char>(no_gc);
   for (int i = 0; i < src.length(); i++) {
     if (src[i] == '\\') {
       // Escape. Skip next character;
@@ -16643,8 +16643,8 @@
 inline Handle<StringType> WriteEscapedRegExpSource(Handle<String> source,
                                                    Handle<StringType> result) {
   DisallowHeapAllocation no_gc;
-  Vector<const Char> src = source->GetCharVector<Char>();
-  Vector<Char> dst(result->GetChars(), result->length());
+  Vector<const Char> src = source->GetCharVector<Char>(no_gc);
+  Vector<Char> dst(result->GetChars(no_gc), result->length());
   int s = 0;
   int d = 0;
   while (s < src.length()) {
@@ -16786,7 +16786,7 @@
 
 bool SeqOneByteSubStringKey::IsMatch(Object* string) {
   DisallowHeapAllocation no_gc;
-  Vector<const uint8_t> chars(string_->GetChars() + from_, length_);
+  Vector<const uint8_t> chars(string_->GetChars(no_gc) + from_, length_);
   return String::cast(string)->IsOneByteEqualTo(chars);
 }
 
@@ -17396,6 +17396,7 @@
     int len = string_->length();
     if (len != other->length()) return false;
 
+    DisallowHeapAllocation no_gc;
     if (!special_flattening_) {
       if (string_->Get(0) != other->Get(0)) return false;
       if (string_->IsFlat()) {
@@ -17403,15 +17404,15 @@
         StringShape shape2(other);
         if (shape1.encoding_tag() == kOneByteStringTag &&
             shape2.encoding_tag() == kOneByteStringTag) {
-          String::FlatContent flat1 = string_->GetFlatContent();
-          String::FlatContent flat2 = other->GetFlatContent();
+          String::FlatContent flat1 = string_->GetFlatContent(no_gc);
+          String::FlatContent flat2 = other->GetFlatContent(no_gc);
           return CompareRawStringContents(flat1.ToOneByteVector().start(),
                                           flat2.ToOneByteVector().start(), len);
         }
         if (shape1.encoding_tag() == kTwoByteStringTag &&
             shape2.encoding_tag() == kTwoByteStringTag) {
-          String::FlatContent flat1 = string_->GetFlatContent();
-          String::FlatContent flat2 = other->GetFlatContent();
+          String::FlatContent flat1 = string_->GetFlatContent(no_gc);
+          String::FlatContent flat2 = other->GetFlatContent(no_gc);
           return CompareRawStringContents(flat1.ToUC16Vector().start(),
                                           flat2.ToUC16Vector().start(), len);
         }
@@ -17420,7 +17421,7 @@
       return comparator.Equals(string_, other);
     }
 
-    String::FlatContent flat_content = other->GetFlatContent();
+    String::FlatContent flat_content = other->GetFlatContent(no_gc);
     if (one_byte_) {
       if (flat_content.IsOneByte()) {
         return CompareRawStringContents(
diff --git a/src/objects/bigint.cc b/src/objects/bigint.cc
index 36782d6..601083b 100644
--- a/src/objects/bigint.cc
+++ b/src/objects/bigint.cc
@@ -1976,7 +1976,7 @@
           ->NewRawOneByteString(static_cast<int>(chars_required))
           .ToHandleChecked();
   DisallowHeapAllocation no_gc;
-  uint8_t* buffer = result->GetChars();
+  uint8_t* buffer = result->GetChars(no_gc);
   // Print the number into the string, starting from the last position.
   int pos = static_cast<int>(chars_required - 1);
   digit_t digit = 0;
@@ -2053,7 +2053,7 @@
   // Zap the string first.
   {
     DisallowHeapAllocation no_gc;
-    uint8_t* chars = result->GetChars();
+    uint8_t* chars = result->GetChars(no_gc);
     for (int i = 0; i < static_cast<int>(chars_required); i++) chars[i] = '?';
   }
 #endif
@@ -2086,7 +2086,7 @@
       DCHECK(!rest.is_null());
       dividend = reinterpret_cast<Handle<BigIntBase>*>(&rest);
       DisallowHeapAllocation no_gc;
-      uint8_t* chars = result->GetChars();
+      uint8_t* chars = result->GetChars(no_gc);
       for (int i = 0; i < chunk_chars; i++) {
         chars[pos++] = kConversionChars[chunk % radix];
         chunk /= radix;
@@ -2100,7 +2100,7 @@
     last_digit = rest->digit(0);
   }
   DisallowHeapAllocation no_gc;
-  uint8_t* chars = result->GetChars();
+  uint8_t* chars = result->GetChars(no_gc);
   do {
     chars[pos++] = kConversionChars[last_digit % radix];
     last_digit /= radix;
diff --git a/src/objects/intl-objects.cc b/src/objects/intl-objects.cc
index 67f9712..e32be5d 100644
--- a/src/objects/intl-objects.cc
+++ b/src/objects/intl-objects.cc
@@ -193,9 +193,10 @@
   {
     DisallowHeapAllocation no_gc;
     std::unique_ptr<uc16[]> sap;
-    return icu::UnicodeString(GetUCharBufferFromFlat(string->GetFlatContent(),
-                                                     &sap, string->length()),
-                              string->length());
+    return icu::UnicodeString(
+        GetUCharBufferFromFlat(string->GetFlatContent(no_gc), &sap,
+                               string->length()),
+        string->length());
   }
 }
 
@@ -221,11 +222,12 @@
         String);
     DisallowHeapAllocation no_gc;
     DCHECK(s->IsFlat());
-    String::FlatContent flat = s->GetFlatContent();
+    String::FlatContent flat = s->GetFlatContent(no_gc);
     const UChar* src = GetUCharBufferFromFlat(flat, &sap, src_length);
     status = U_ZERO_ERROR;
-    dest_length = case_converter(reinterpret_cast<UChar*>(result->GetChars()),
-                                 dest_length, src, src_length, lang, &status);
+    dest_length =
+        case_converter(reinterpret_cast<UChar*>(result->GetChars(no_gc)),
+                       dest_length, src, src_length, lang, &status);
     if (status != U_BUFFER_OVERFLOW_ERROR) break;
   }
 
@@ -257,8 +259,8 @@
   DisallowHeapAllocation no_gc;
 
   const int length = src->length();
-  String::FlatContent src_flat = src->GetFlatContent();
-  uint8_t* dst_data = SeqOneByteString::cast(dst)->GetChars();
+  String::FlatContent src_flat = src->GetFlatContent(no_gc);
+  uint8_t* dst_data = SeqOneByteString::cast(dst)->GetChars(no_gc);
 
   if (src_flat.IsOneByte()) {
     const uint8_t* src_data = src_flat.ToOneByteVector().start();
@@ -335,15 +337,15 @@
     bool is_result_single_byte;
     {
       DisallowHeapAllocation no_gc;
-      String::FlatContent flat = s->GetFlatContent();
-      uint8_t* dest = result->GetChars();
+      String::FlatContent flat = s->GetFlatContent(no_gc);
+      uint8_t* dest = result->GetChars(no_gc);
       if (flat.IsOneByte()) {
         Vector<const uint8_t> src = flat.ToOneByteVector();
         bool has_changed_character = false;
-        int index_to_first_unprocessed =
-            FastAsciiConvert<false>(reinterpret_cast<char*>(result->GetChars()),
-                                    reinterpret_cast<const char*>(src.start()),
-                                    length, &has_changed_character);
+        int index_to_first_unprocessed = FastAsciiConvert<false>(
+            reinterpret_cast<char*>(result->GetChars(no_gc)),
+            reinterpret_cast<const char*>(src.start()), length,
+            &has_changed_character);
         if (index_to_first_unprocessed == length) {
           return has_changed_character ? result : s;
         }
@@ -375,7 +377,7 @@
         isolate->factory()->NewRawOneByteString(length + sharp_s_count),
         String);
     DisallowHeapAllocation no_gc;
-    String::FlatContent flat = s->GetFlatContent();
+    String::FlatContent flat = s->GetFlatContent(no_gc);
     if (flat.IsOneByte()) {
       ToUpperWithSharpS(flat.ToOneByteVector(), result);
     } else {
diff --git a/src/objects/string-inl.h b/src/objects/string-inl.h
index 71cf289..ad9f91a 100644
--- a/src/objects/string-inl.h
+++ b/src/objects/string-inl.h
@@ -256,7 +256,7 @@
     // We have to set the hash later.
     DisallowHeapAllocation no_gc;
     uint32_t hash = StringHasher::HashSequentialString(
-        string->GetChars() + from, length, isolate->heap()->HashSeed());
+        string->GetChars(no_gc) + from, length, isolate->heap()->HashSeed());
     set_hash_field(hash);
 
     DCHECK_LE(0, length_);
@@ -410,13 +410,13 @@
     switch (type & (kStringRepresentationMask | kStringEncodingMask)) {
       case kSeqStringTag | kOneByteStringTag:
         visitor->VisitOneByteString(
-            SeqOneByteString::cast(string)->GetChars() + slice_offset,
+            SeqOneByteString::cast(string)->GetChars(no_gc) + slice_offset,
             length - offset);
         return ConsString();
 
       case kSeqStringTag | kTwoByteStringTag:
         visitor->VisitTwoByteString(
-            SeqTwoByteString::cast(string)->GetChars() + slice_offset,
+            SeqTwoByteString::cast(string)->GetChars(no_gc) + slice_offset,
             length - offset);
         return ConsString();
 
@@ -456,15 +456,17 @@
 }
 
 template <>
-inline Vector<const uint8_t> String::GetCharVector() {
-  String::FlatContent flat = GetFlatContent();
+inline Vector<const uint8_t> String::GetCharVector(
+    const DisallowHeapAllocation& no_gc) {
+  String::FlatContent flat = GetFlatContent(no_gc);
   DCHECK(flat.IsOneByte());
   return flat.ToOneByteVector();
 }
 
 template <>
-inline Vector<const uc16> String::GetCharVector() {
-  String::FlatContent flat = GetFlatContent();
+inline Vector<const uc16> String::GetCharVector(
+    const DisallowHeapAllocation& no_gc) {
+  String::FlatContent flat = GetFlatContent(no_gc);
   DCHECK(flat.IsTwoByte());
   return flat.ToUC16Vector();
 }
@@ -491,8 +493,8 @@
   return FIELD_ADDR(this, kHeaderSize);
 }
 
-uint8_t* SeqOneByteString::GetChars() {
-  DCHECK(!AllowHeapAllocation::IsAllowed());
+uint8_t* SeqOneByteString::GetChars(const DisallowHeapAllocation& no_gc) {
+  USE(no_gc);
   return reinterpret_cast<uint8_t*>(GetCharsAddress());
 }
 
@@ -500,8 +502,8 @@
   return FIELD_ADDR(this, kHeaderSize);
 }
 
-uc16* SeqTwoByteString::GetChars() {
-  DCHECK(!AllowHeapAllocation::IsAllowed());
+uc16* SeqTwoByteString::GetChars(const DisallowHeapAllocation& no_gc) {
+  USE(no_gc);
   return reinterpret_cast<uc16*>(FIELD_ADDR(this, kHeaderSize));
 }
 
@@ -750,10 +752,13 @@
   return SlowAsArrayIndex(index);
 }
 
-SubStringRange::SubStringRange(String string, int first, int length)
+SubStringRange::SubStringRange(String string,
+                               const DisallowHeapAllocation& no_gc, int first,
+                               int length)
     : string_(string),
       first_(first),
-      length_(length == -1 ? string->length() : length) {}
+      length_(length == -1 ? string->length() : length),
+      no_gc_(no_gc) {}
 
 class SubStringRange::iterator final {
  public:
@@ -781,18 +786,18 @@
  private:
   friend class String;
   friend class SubStringRange;
-  iterator(String from, int offset)
-      : content_(from->GetFlatContent()), offset_(offset) {}
+  iterator(String from, int offset, const DisallowHeapAllocation& no_gc)
+      : content_(from->GetFlatContent(no_gc)), offset_(offset) {}
   String::FlatContent content_;
   int offset_;
 };
 
 SubStringRange::iterator SubStringRange::begin() {
-  return SubStringRange::iterator(string_, first_);
+  return SubStringRange::iterator(string_, first_, no_gc_);
 }
 
 SubStringRange::iterator SubStringRange::end() {
-  return SubStringRange::iterator(string_, first_ + length_);
+  return SubStringRange::iterator(string_, first_ + length_, no_gc_);
 }
 
 }  // namespace internal
diff --git a/src/objects/string.h b/src/objects/string.h
index c391af3..ffe4892 100644
--- a/src/objects/string.h
+++ b/src/objects/string.h
@@ -143,7 +143,8 @@
   };
 
   template <typename Char>
-  V8_INLINE Vector<const Char> GetCharVector();
+  V8_INLINE Vector<const Char> GetCharVector(
+      const DisallowHeapAllocation& no_gc);
 
   // Get and set the length of the string.
   inline int length() const;
@@ -201,7 +202,7 @@
   // If the string isn't flat, and therefore doesn't have flat content, the
   // returned structure will report so, and can't provide a vector of either
   // kind.
-  FlatContent GetFlatContent();
+  FlatContent GetFlatContent(const DisallowHeapAllocation& no_gc);
 
   // Returns the parent of a sliced string or first part of a flat cons string.
   // Requires: StringShape(this).IsIndirect() && this->IsFlat()
@@ -456,7 +457,8 @@
 
 class SubStringRange {
  public:
-  explicit inline SubStringRange(String string, int first = 0, int length = -1);
+  inline SubStringRange(String string, const DisallowHeapAllocation& no_gc,
+                        int first = 0, int length = -1);
   class iterator;
   inline iterator begin();
   inline iterator end();
@@ -465,6 +467,7 @@
   String string_;
   int first_;
   int length_;
+  const DisallowHeapAllocation& no_gc_;
 };
 
 // The SeqString abstract class captures sequential string values.
@@ -502,7 +505,7 @@
   // Get the address of the characters in this string.
   inline Address GetCharsAddress();
 
-  inline uint8_t* GetChars();
+  inline uint8_t* GetChars(const DisallowHeapAllocation& no_gc);
 
   // Clear uninitialized padding space. This ensures that the snapshot content
   // is deterministic.
@@ -543,7 +546,7 @@
   // Get the address of the characters in this string.
   inline Address GetCharsAddress();
 
-  inline uc16* GetChars();
+  inline uc16* GetChars(const DisallowHeapAllocation& no_gc);
 
   // Clear uninitialized padding space. This ensures that the snapshot content
   // is deterministic.
diff --git a/src/parsing/scanner-character-streams.cc b/src/parsing/scanner-character-streams.cc
index 5903036..8dc7426 100644
--- a/src/parsing/scanner-character-streams.cc
+++ b/src/parsing/scanner-character-streams.cc
@@ -88,9 +88,12 @@
     UNREACHABLE();
   }
 
-  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats) {
-    return {&string_->GetChars()[start_offset_ + Min(length_, pos)],
-            &string_->GetChars()[start_offset_ + length_]};
+  // The no_gc argument is only here because of the templated way this class
+  // is used along with other implementations that require V8 heap access.
+  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats,
+                        DisallowHeapAllocation* no_gc) {
+    return {&string_->GetChars(*no_gc)[start_offset_ + Min(length_, pos)],
+            &string_->GetChars(*no_gc)[start_offset_ + length_]};
   }
 
   static const bool kCanBeCloned = false;
@@ -118,7 +121,10 @@
   ExternalStringStream(const ExternalStringStream& other)
       : lock_(other.lock_), data_(other.data_), length_(other.length_) {}
 
-  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats) {
+  // The no_gc argument is only here because of the templated way this class
+  // is used along with other implementations that require V8 heap access.
+  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats,
+                        DisallowHeapAllocation* no_gc = nullptr) {
     return {&data_[Min(length_, pos)], &data_[length_]};
   }
 
@@ -137,7 +143,10 @@
  public:
   TestingStream(const Char* data, size_t length)
       : data_(data), length_(length) {}
-  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats) {
+  // The no_gc argument is only here because of the templated way this class
+  // is used along with other implementations that require V8 heap access.
+  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats,
+                        DisallowHeapAllocation* no_gc = nullptr) {
     return {&data_[Min(length_, pos)], &data_[length_]};
   }
 
@@ -161,7 +170,10 @@
     UNREACHABLE();
   }
 
-  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats) {
+  // The no_gc argument is only here because of the templated way this class
+  // is used along with other implementations that require V8 heap access.
+  Range<Char> GetDataAt(size_t pos, RuntimeCallStats* stats,
+                        DisallowHeapAllocation* no_gc = nullptr) {
     Chunk chunk = FindChunk(pos, stats);
     size_t buffer_end = chunk.length;
     size_t buffer_pos = Min(buffer_end, pos - chunk.position);
@@ -259,7 +271,7 @@
 
     DisallowHeapAllocation no_gc;
     Range<uint8_t> range =
-        byte_stream_.GetDataAt(position, runtime_call_stats());
+        byte_stream_.GetDataAt(position, runtime_call_stats(), &no_gc);
     if (range.length() == 0) {
       buffer_end_ = buffer_start_;
       return false;
@@ -313,7 +325,7 @@
     buffer_pos_ = position;
     DisallowHeapAllocation no_gc;
     Range<uint16_t> range =
-        byte_stream_.GetDataAt(position, runtime_call_stats());
+        byte_stream_.GetDataAt(position, runtime_call_stats(), &no_gc);
     buffer_start_ = range.start;
     buffer_end_ = range.end;
     buffer_cursor_ = buffer_start_;
@@ -359,7 +371,8 @@
 
   void UpdateBufferPointers() {
     DisallowHeapAllocation no_gc;
-    Range<uint16_t> range = byte_stream_.GetDataAt(0, runtime_call_stats());
+    Range<uint16_t> range =
+        byte_stream_.GetDataAt(0, runtime_call_stats(), &no_gc);
     if (range.start != buffer_start_) {
       buffer_cursor_ = (buffer_cursor_ - buffer_start_) + range.start;
       buffer_start_ = range.start;
diff --git a/src/perf-jit.cc b/src/perf-jit.cc
index ba318ee..1fa3817 100644
--- a/src/perf-jit.cc
+++ b/src/perf-jit.cc
@@ -291,12 +291,13 @@
 }
 
 Vector<const char> GetScriptName(const SourcePositionInfo& info,
-                                 std::unique_ptr<char[]>* storage) {
+                                 std::unique_ptr<char[]>* storage,
+                                 const DisallowHeapAllocation& no_gc) {
   if (!info.script.is_null()) {
     Object* name_or_url = info.script->GetNameOrSourceURL();
     if (name_or_url->IsSeqOneByteString()) {
       SeqOneByteString str = SeqOneByteString::cast(name_or_url);
-      return {reinterpret_cast<char*>(str->GetChars()),
+      return {reinterpret_cast<char*>(str->GetChars(no_gc)),
               static_cast<size_t>(str->length())};
     } else if (name_or_url->IsString()) {
       int length;
@@ -377,7 +378,7 @@
     // The extracted name may point into heap-objects, thus disallow GC.
     DisallowHeapAllocation no_gc;
     std::unique_ptr<char[]> name_storage;
-    Vector<const char> name_string = GetScriptName(info, &name_storage);
+    Vector<const char> name_string = GetScriptName(info, &name_storage, no_gc);
     LogWriteBytes(name_string.start(),
                   static_cast<uint32_t>(name_string.size()) + 1);
   }
diff --git a/src/regexp/interpreter-irregexp.cc b/src/regexp/interpreter-irregexp.cc
index 2c1b890..f98dc06 100644
--- a/src/regexp/interpreter-irregexp.cc
+++ b/src/regexp/interpreter-irregexp.cc
@@ -598,7 +598,7 @@
   DisallowHeapAllocation no_gc;
   const byte* code_base = code_array->GetDataStartAddress();
   uc16 previous_char = '\n';
-  String::FlatContent subject_content = subject->GetFlatContent();
+  String::FlatContent subject_content = subject->GetFlatContent(no_gc);
   if (subject_content.IsOneByte()) {
     Vector<const uint8_t> subject_vector = subject_content.ToOneByteVector();
     if (start_position != 0) previous_char = subject_vector[start_position - 1];
diff --git a/src/regexp/jsregexp.cc b/src/regexp/jsregexp.cc
index 29d1879..7e640f2 100644
--- a/src/regexp/jsregexp.cc
+++ b/src/regexp/jsregexp.cc
@@ -240,8 +240,8 @@
   }
 
   for (int i = 0; i < output_size; i += 2) {
-    String::FlatContent needle_content = needle->GetFlatContent();
-    String::FlatContent subject_content = subject->GetFlatContent();
+    String::FlatContent needle_content = needle->GetFlatContent(no_gc);
+    String::FlatContent subject_content = subject->GetFlatContent(no_gc);
     DCHECK(needle_content.IsFlat());
     DCHECK(subject_content.IsFlat());
     // dispatch on type of strings
diff --git a/src/regexp/regexp-macro-assembler.cc b/src/regexp/regexp-macro-assembler.cc
index 206cba8..a797751 100644
--- a/src/regexp/regexp-macro-assembler.cc
+++ b/src/regexp/regexp-macro-assembler.cc
@@ -121,7 +121,7 @@
 }
 
 const byte* NativeRegExpMacroAssembler::StringCharacterPosition(
-    String subject, int start_index) {
+    String subject, int start_index, const DisallowHeapAllocation& no_gc) {
   if (subject->IsConsString()) {
     subject = ConsString::cast(subject)->first();
   } else if (subject->IsSlicedString()) {
@@ -135,10 +135,10 @@
   DCHECK_LE(start_index, subject->length());
   if (subject->IsSeqOneByteString()) {
     return reinterpret_cast<const byte*>(
-        SeqOneByteString::cast(subject)->GetChars() + start_index);
+        SeqOneByteString::cast(subject)->GetChars(no_gc) + start_index);
   } else if (subject->IsSeqTwoByteString()) {
     return reinterpret_cast<const byte*>(
-        SeqTwoByteString::cast(subject)->GetChars() + start_index);
+        SeqTwoByteString::cast(subject)->GetChars(no_gc) + start_index);
   } else if (subject->IsExternalOneByteString()) {
     return reinterpret_cast<const byte*>(
         ExternalOneByteString::cast(subject)->GetChars() + start_index);
@@ -200,7 +200,8 @@
     } else {
       *subject = subject_handle->ptr();
       intptr_t byte_length = *input_end - *input_start;
-      *input_start = StringCharacterPosition(*subject_handle, start_index);
+      *input_start =
+          StringCharacterPosition(*subject_handle, start_index, no_gc);
       *input_end = *input_start + byte_length;
     }
   }
@@ -250,7 +251,7 @@
 
   DisallowHeapAllocation no_gc;
   const byte* input_start =
-      StringCharacterPosition(subject_ptr, start_offset + slice_offset);
+      StringCharacterPosition(subject_ptr, start_offset + slice_offset, no_gc);
   int byte_length = char_length << char_size_shift;
   const byte* input_end = input_start + byte_length;
   Result res = Execute(*regexp_code,
diff --git a/src/regexp/regexp-macro-assembler.h b/src/regexp/regexp-macro-assembler.h
index 619d539..f571c3c 100644
--- a/src/regexp/regexp-macro-assembler.h
+++ b/src/regexp/regexp-macro-assembler.h
@@ -230,7 +230,8 @@
   static Address GrowStack(Address stack_pointer, Address* stack_top,
                            Isolate* isolate);
 
-  static const byte* StringCharacterPosition(String subject, int start_index);
+  static const byte* StringCharacterPosition(
+      String subject, int start_index, const DisallowHeapAllocation& no_gc);
 
   static int CheckStackGuardState(Isolate* isolate, int start_index,
                                   bool is_direct_call, Address* return_address,
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc
index 68e995b..291a23e 100644
--- a/src/runtime/runtime-internal.cc
+++ b/src/runtime/runtime-internal.cc
@@ -497,7 +497,8 @@
     if (args[0]->IsString()) {
       // With a string argument, the results are appended to that file.
       CONVERT_ARG_HANDLE_CHECKED(String, arg0, 0);
-      String::FlatContent flat = arg0->GetFlatContent();
+      DisallowHeapAllocation no_gc;
+      String::FlatContent flat = arg0->GetFlatContent(no_gc);
       const char* filename =
           reinterpret_cast<const char*>(&(flat.ToOneByteVector()[0]));
       f = std::fopen(filename, "a");
diff --git a/src/runtime/runtime-regexp.cc b/src/runtime/runtime-regexp.cc
index 763e7e8..7ad293e 100644
--- a/src/runtime/runtime-regexp.cc
+++ b/src/runtime/runtime-regexp.cc
@@ -316,7 +316,7 @@
                                   int subject_length) {
   {
     DisallowHeapAllocation no_gc;
-    String::FlatContent content = replacement->GetFlatContent();
+    String::FlatContent content = replacement->GetFlatContent(no_gc);
     DCHECK(content.IsFlat());
 
     FixedArray capture_name_map;
@@ -454,8 +454,8 @@
                                std::vector<int>* indices, unsigned int limit) {
   {
     DisallowHeapAllocation no_gc;
-    String::FlatContent subject_content = subject->GetFlatContent();
-    String::FlatContent pattern_content = pattern->GetFlatContent();
+    String::FlatContent subject_content = subject->GetFlatContent(no_gc);
+    String::FlatContent pattern_content = pattern->GetFlatContent(no_gc);
     DCHECK(subject_content.IsFlat());
     DCHECK(pattern_content.IsFlat());
     if (subject_content.IsOneByte()) {
@@ -573,14 +573,14 @@
   for (int index : *indices) {
     // Copy non-matched subject content.
     if (subject_pos < index) {
-      String::WriteToFlat(*subject, result->GetChars() + result_pos,
+      String::WriteToFlat(*subject, result->GetChars(no_gc) + result_pos,
                           subject_pos, index);
       result_pos += index - subject_pos;
     }
 
     // Replace match.
     if (replacement_len > 0) {
-      String::WriteToFlat(*replacement, result->GetChars() + result_pos, 0,
+      String::WriteToFlat(*replacement, result->GetChars(no_gc) + result_pos, 0,
                           replacement_len);
       result_pos += replacement_len;
     }
@@ -589,8 +589,8 @@
   }
   // Add remaining subject content at the end.
   if (subject_pos < subject_len) {
-    String::WriteToFlat(*subject, result->GetChars() + result_pos, subject_pos,
-                        subject_len);
+    String::WriteToFlat(*subject, result->GetChars(no_gc) + result_pos,
+                        subject_pos, subject_len);
   }
 
   int32_t match_indices[] = {indices->back(), indices->back() + pattern_len};
@@ -745,7 +745,8 @@
     end = current_match[1];
     if (prev < start) {
       // Add substring subject[prev;start] to answer string.
-      String::WriteToFlat(*subject, answer->GetChars() + position, prev, start);
+      String::WriteToFlat(*subject, answer->GetChars(no_gc) + position, prev,
+                          start);
       position += start - prev;
     }
     prev = end;
@@ -760,7 +761,7 @@
 
   if (prev < subject_length) {
     // Add substring subject[prev;length] to answer string.
-    String::WriteToFlat(*subject, answer->GetChars() + position, prev,
+    String::WriteToFlat(*subject, answer->GetChars(no_gc) + position, prev,
                         subject_length);
     position += subject_length - prev;
   }
diff --git a/src/runtime/runtime-strings.cc b/src/runtime/runtime-strings.cc
index e852db3..c5252e2 100644
--- a/src/runtime/runtime-strings.cc
+++ b/src/runtime/runtime-strings.cc
@@ -328,7 +328,7 @@
     ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
         isolate, answer, isolate->factory()->NewRawOneByteString(length));
     DisallowHeapAllocation no_gc;
-    StringBuilderConcatHelper(*special, answer->GetChars(),
+    StringBuilderConcatHelper(*special, answer->GetChars(no_gc),
                               FixedArray::cast(array->elements()),
                               array_length);
     return *answer;
@@ -337,7 +337,7 @@
     ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
         isolate, answer, isolate->factory()->NewRawTwoByteString(length));
     DisallowHeapAllocation no_gc;
-    StringBuilderConcatHelper(*special, answer->GetChars(),
+    StringBuilderConcatHelper(*special, answer->GetChars(no_gc),
                               FixedArray::cast(array->elements()),
                               array_length);
     return *answer;
@@ -397,7 +397,7 @@
 
   DisallowHeapAllocation no_gc;
 
-  uc16* sink = answer->GetChars();
+  uc16* sink = answer->GetChars(no_gc);
 #ifdef DEBUG
   uc16* end = sink + length;
 #endif
@@ -558,7 +558,7 @@
     JoinSparseArrayWithSeparator<uint8_t>(
         FixedArray::cast(elements_array->elements()), elements_length,
         array_length, *separator,
-        Vector<uint8_t>(result->GetChars(), string_length));
+        Vector<uint8_t>(result->GetChars(no_gc), string_length));
     return *result;
   } else {
     Handle<SeqTwoByteString> result = isolate->factory()
@@ -568,7 +568,7 @@
     JoinSparseArrayWithSeparator<uc16>(
         FixedArray::cast(elements_array->elements()), elements_length,
         array_length, *separator,
-        Vector<uc16>(result->GetChars(), string_length));
+        Vector<uc16>(result->GetChars(no_gc), string_length));
     return *result;
   }
 }
@@ -623,7 +623,7 @@
     elements = isolate->factory()->NewUninitializedFixedArray(length);
 
     DisallowHeapAllocation no_gc;
-    String::FlatContent content = s->GetFlatContent();
+    String::FlatContent content = s->GetFlatContent(no_gc);
     if (content.IsOneByte()) {
       Vector<const uint8_t> chars = content.ToOneByteVector();
       // Note, this will initialize all elements (not only the prefix)
diff --git a/src/string-builder-inl.h b/src/string-builder-inl.h
index 544741f..323c242 100644
--- a/src/string-builder-inl.h
+++ b/src/string-builder-inl.h
@@ -182,14 +182,15 @@
   template <typename DestChar>
   class NoExtend {
    public:
-    explicit NoExtend(Handle<String> string, int offset) {
+    NoExtend(Handle<String> string, int offset,
+             const DisallowHeapAllocation& no_gc) {
       DCHECK(string->IsSeqOneByteString() || string->IsSeqTwoByteString());
       if (sizeof(DestChar) == 1) {
         start_ = reinterpret_cast<DestChar*>(
-            Handle<SeqOneByteString>::cast(string)->GetChars() + offset);
+            Handle<SeqOneByteString>::cast(string)->GetChars(no_gc) + offset);
       } else {
         start_ = reinterpret_cast<DestChar*>(
-            Handle<SeqTwoByteString>::cast(string)->GetChars() + offset);
+            Handle<SeqTwoByteString>::cast(string)->GetChars(no_gc) + offset);
       }
       cursor_ = start_;
     }
@@ -231,8 +232,10 @@
   template <typename DestChar>
   class NoExtendBuilder : public NoExtend<DestChar> {
    public:
-    NoExtendBuilder(IncrementalStringBuilder* builder, int required_length)
-        : NoExtend<DestChar>(builder->current_part(), builder->current_index_),
+    NoExtendBuilder(IncrementalStringBuilder* builder, int required_length,
+                    const DisallowHeapAllocation& no_gc)
+        : NoExtend<DestChar>(builder->current_part(), builder->current_index_,
+                             no_gc),
           builder_(builder) {
       DCHECK(builder->CurrentPartCanFit(required_length));
     }
diff --git a/src/string-builder.cc b/src/string-builder.cc
index a048c8f..7e92ef0 100644
--- a/src/string-builder.cc
+++ b/src/string-builder.cc
@@ -203,7 +203,7 @@
         String);
 
     DisallowHeapAllocation no_gc;
-    uint8_t* char_buffer = seq->GetChars();
+    uint8_t* char_buffer = seq->GetChars(no_gc);
     StringBuilderConcatHelper(*subject_, char_buffer, *array_builder_.array(),
                               array_builder_.length());
     joined_string = Handle<String>::cast(seq);
@@ -215,7 +215,7 @@
         String);
 
     DisallowHeapAllocation no_gc;
-    uc16* char_buffer = seq->GetChars();
+    uc16* char_buffer = seq->GetChars(no_gc);
     StringBuilderConcatHelper(*subject_, char_buffer, *array_builder_.array(),
                               array_builder_.length());
     joined_string = Handle<String>::cast(seq);
diff --git a/src/unwinder.cc b/src/unwinder.cc
index ae7d65c..d86c1e2 100644
--- a/src/unwinder.cc
+++ b/src/unwinder.cc
@@ -49,26 +49,41 @@
                                  i::CommonFrameConstants::kCallerSPOffset);
 }
 
+bool AddressIsInStack(const void* address, const void* stack_base,
+                      const void* stack_top) {
+  return address <= stack_base && address >= stack_top;
+}
+
 }  // namespace
 
 bool Unwinder::TryUnwindV8Frames(const UnwindState& unwind_state,
                                  RegisterState* register_state,
                                  const void* stack_base) {
+  const void* stack_top = register_state->sp;
+
   void* pc = register_state->pc;
   if (PCIsInV8(unwind_state, pc) &&
       !IsInUnsafeJSEntryRange(unwind_state.js_entry_stub, pc)) {
     void* current_fp = register_state->fp;
+    if (!AddressIsInStack(current_fp, stack_base, stack_top)) return false;
 
     // Peek at the return address that the caller pushed. If it's in V8, then we
     // assume the caller frame is a JS frame and continue to unwind.
     void* next_pc = GetReturnAddressFromFP(current_fp);
     while (PCIsInV8(unwind_state, next_pc)) {
       current_fp = GetCallerFPFromFP(current_fp);
+      if (!AddressIsInStack(current_fp, stack_base, stack_top)) return false;
       next_pc = GetReturnAddressFromFP(current_fp);
     }
 
-    register_state->sp = GetCallerSPFromFP(current_fp);
-    register_state->fp = GetCallerFPFromFP(current_fp);
+    void* final_sp = GetCallerSPFromFP(current_fp);
+    if (!AddressIsInStack(final_sp, stack_base, stack_top)) return false;
+    register_state->sp = final_sp;
+
+    void* final_fp = GetCallerFPFromFP(current_fp);
+    if (!AddressIsInStack(final_fp, stack_base, stack_top)) return false;
+    register_state->fp = final_fp;
+
     register_state->pc = next_pc;
     return true;
   }
diff --git a/src/uri.cc b/src/uri.cc
index f5bffba..2c20582 100644
--- a/src/uri.cc
+++ b/src/uri.cc
@@ -138,7 +138,7 @@
                        std::vector<uint8_t>* one_byte_buffer,
                        std::vector<uc16>* two_byte_buffer) {
   DisallowHeapAllocation no_gc;
-  String::FlatContent uri_content = uri->GetFlatContent();
+  String::FlatContent uri_content = uri->GetFlatContent(no_gc);
 
   int uri_length = uri->length();
   for (int k = 0; k < uri_length; k++) {
@@ -195,9 +195,10 @@
       String);
 
   DisallowHeapAllocation no_gc;
-  CopyChars(result->GetChars(), one_byte_buffer.data(), one_byte_buffer.size());
-  CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(),
-            two_byte_buffer.size());
+  CopyChars(result->GetChars(no_gc), one_byte_buffer.data(),
+            one_byte_buffer.size());
+  CopyChars(result->GetChars(no_gc) + one_byte_buffer.size(),
+            two_byte_buffer.data(), two_byte_buffer.size());
 
   return result;
 }
@@ -280,7 +281,7 @@
 
   {
     DisallowHeapAllocation no_gc;
-    String::FlatContent uri_content = uri->GetFlatContent();
+    String::FlatContent uri_content = uri->GetFlatContent(no_gc);
 
     for (int k = 0; k < uri_length; k++) {
       uc16 cc1 = uri_content.Get(k);
@@ -342,7 +343,7 @@
   int unescaped_length = 0;
   {
     DisallowHeapAllocation no_allocation;
-    Vector<const Char> vector = string->GetCharVector<Char>();
+    Vector<const Char> vector = string->GetCharVector<Char>(no_allocation);
     for (int i = start_index; i < length; unescaped_length++) {
       int step;
       if (UnescapeChar(vector, i, length, &step) >
@@ -365,7 +366,7 @@
                                         ->NewRawOneByteString(unescaped_length)
                                         .ToHandleChecked();
     DisallowHeapAllocation no_allocation;
-    Vector<const Char> vector = string->GetCharVector<Char>();
+    Vector<const Char> vector = string->GetCharVector<Char>(no_allocation);
     for (int i = start_index; i < length; dest_position++) {
       int step;
       dest->SeqOneByteStringSet(dest_position,
@@ -378,7 +379,7 @@
                                         ->NewRawTwoByteString(unescaped_length)
                                         .ToHandleChecked();
     DisallowHeapAllocation no_allocation;
-    Vector<const Char> vector = string->GetCharVector<Char>();
+    Vector<const Char> vector = string->GetCharVector<Char>(no_allocation);
     for (int i = start_index; i < length; dest_position++) {
       int step;
       dest->SeqTwoByteStringSet(dest_position,
@@ -416,7 +417,7 @@
   {
     DisallowHeapAllocation no_allocation;
     StringSearch<uint8_t, Char> search(isolate, STATIC_CHAR_VECTOR("%"));
-    index = search.Search(source->GetCharVector<Char>(), 0);
+    index = search.Search(source->GetCharVector<Char>(no_allocation), 0);
     if (index < 0) return source;
   }
   return UnescapeSlow<Char>(isolate, source, index);
@@ -431,7 +432,7 @@
 
   {
     DisallowHeapAllocation no_allocation;
-    Vector<const Char> vector = string->GetCharVector<Char>();
+    Vector<const Char> vector = string->GetCharVector<Char>(no_allocation);
     for (int i = 0; i < length; i++) {
       uint16_t c = vector[i];
       if (c >= 256) {
@@ -459,7 +460,7 @@
 
   {
     DisallowHeapAllocation no_allocation;
-    Vector<const Char> vector = string->GetCharVector<Char>();
+    Vector<const Char> vector = string->GetCharVector<Char>(no_allocation);
     for (int i = 0; i < length; i++) {
       uint16_t c = vector[i];
       if (c >= 256) {
diff --git a/src/value-serializer.cc b/src/value-serializer.cc
index b160a98..5ccd366 100644
--- a/src/value-serializer.cc
+++ b/src/value-serializer.cc
@@ -439,7 +439,7 @@
 void ValueSerializer::WriteString(Handle<String> string) {
   string = String::Flatten(isolate_, string);
   DisallowHeapAllocation no_gc;
-  String::FlatContent flat = string->GetFlatContent();
+  String::FlatContent flat = string->GetFlatContent(no_gc);
   DCHECK(flat.IsFlat());
   if (flat.IsOneByte()) {
     Vector<const uint8_t> chars = flat.ToOneByteVector();
@@ -1332,7 +1332,7 @@
   // Copy the bytes directly into the new string.
   // Warning: this uses host endianness.
   DisallowHeapAllocation no_gc;
-  memcpy(string->GetChars(), bytes.begin(), bytes.length());
+  memcpy(string->GetChars(no_gc), bytes.begin(), bytes.length());
   return string;
 }
 
@@ -1352,7 +1352,7 @@
     return false;
   }
 
-  String::FlatContent flat = expected->GetFlatContent();
+  String::FlatContent flat = expected->GetFlatContent(no_gc);
 
   // If the bytes are verbatim what is in the flattened string, then the string
   // is successfully consumed.
diff --git a/src/wasm/baseline/liftoff-compiler.cc b/src/wasm/baseline/liftoff-compiler.cc
index abb1fb1..9984af43 100644
--- a/src/wasm/baseline/liftoff-compiler.cc
+++ b/src/wasm/baseline/liftoff-compiler.cc
@@ -498,8 +498,10 @@
     if (c->end_merge.reached) {
       __ MergeFullStackWith(c->label_state);
     } else if (c->is_onearmed_if()) {
-      c->label_state.InitMerge(*__ cache_state(), __ num_locals(),
-                               c->br_merge()->arity);
+      // Init the merge point from the else state, then merge the if state into
+      // that.
+      DCHECK_EQ(0, c->end_merge.arity);
+      c->label_state.InitMerge(c->else_state->state, __ num_locals(), 0);
       __ MergeFullStackWith(c->label_state);
     } else {
       c->label_state.Split(*__ cache_state());
@@ -508,7 +510,22 @@
   }
 
   void PopControl(FullDecoder* decoder, Control* c) {
-    if (!c->is_loop() && c->end_merge.reached) {
+    if (c->is_onearmed_if()) {
+      if (c->end_merge.reached) {
+        // Generate the code to merge the else state into the end state.
+        // TODO(clemensh): Do this without switching to the else state first.
+        __ emit_jump(c->label.get());
+        __ bind(c->else_state->label.get());
+        __ cache_state()->Steal(c->else_state->state);
+        __ MergeFullStackWith(c->label_state);
+        __ cache_state()->Steal(c->label_state);
+      } else {
+        // There is no merge at the end of the if, so just continue with the
+        // else state.
+        __ bind(c->else_state->label.get());
+        __ cache_state()->Steal(c->else_state->state);
+      }
+    } else if (!c->is_loop() && c->end_merge.reached) {
       __ cache_state()->Steal(c->label_state);
     }
     if (!c->label.get()->is_bound()) {
@@ -1310,10 +1327,17 @@
     DCHECK(!table_iterator.has_next());
   }
 
-  void Else(FullDecoder* decoder, Control* if_block) {
-    if (if_block->reachable()) __ emit_jump(if_block->label.get());
-    __ bind(if_block->else_state->label.get());
-    __ cache_state()->Steal(if_block->else_state->state);
+  void Else(FullDecoder* decoder, Control* c) {
+    if (c->reachable()) {
+      if (!c->end_merge.reached) {
+        c->label_state.InitMerge(*__ cache_state(), __ num_locals(),
+                                 c->end_merge.arity);
+      }
+      __ MergeFullStackWith(c->label_state);
+      __ emit_jump(c->label.get());
+    }
+    __ bind(c->else_state->label.get());
+    __ cache_state()->Steal(c->else_state->state);
   }
 
   Label* AddOutOfLineTrap(WasmCodePosition position,
diff --git a/src/wasm/function-body-decoder-impl.h b/src/wasm/function-body-decoder-impl.h
index f634413..b7ad67c 100644
--- a/src/wasm/function-body-decoder-impl.h
+++ b/src/wasm/function-body-decoder-impl.h
@@ -1508,12 +1508,10 @@
     return static_cast<uint32_t>(stack_.size());
   }
 
-  inline Value& GetMergeValueFromStack(
-      Control* c, Merge<Value>* merge, uint32_t i) {
-    DCHECK(merge == &c->start_merge || merge == &c->end_merge);
-    DCHECK_GT(merge->arity, i);
-    DCHECK_GE(stack_.size(), c->stack_depth + merge->arity);
-    return stack_[stack_.size() - merge->arity + i];
+  inline Value* stack_value(uint32_t depth) {
+    DCHECK_LT(0, depth);
+    DCHECK_GE(stack_.size(), depth);
+    return &*(stack_.end() - depth);
   }
 
  private:
@@ -1750,9 +1748,10 @@
               this->error(this->pc_, "else already present for if");
               break;
             }
-            FallThruTo(c);
+            if (!TypeCheckFallThru(c)) break;
             c->kind = kControlIfElse;
             CALL_INTERFACE_IF_PARENT_REACHABLE(Else, c);
+            if (c->reachable()) c->end_merge.reached = true;
             PushMergeValues(c, &c->start_merge);
             c->reachability = control_at(1)->innerReachability();
             break;
@@ -1760,7 +1759,7 @@
           case kExprEnd: {
             if (!VALIDATE(!control_.empty())) {
               this->error("end does not match any if, try, or block");
-              return;
+              break;
             }
             Control* c = &control_.back();
             if (!VALIDATE(!c->is_incomplete_try())) {
@@ -1768,12 +1767,12 @@
               break;
             }
             if (c->is_onearmed_if()) {
-              // Emulate empty else arm.
-              FallThruTo(c);
-              if (this->failed()) break;
-              CALL_INTERFACE_IF_PARENT_REACHABLE(Else, c);
-              PushMergeValues(c, &c->start_merge);
-              c->reachability = control_at(1)->innerReachability();
+              if (!VALIDATE(c->end_merge.arity == c->start_merge.arity)) {
+                this->error(
+                    c->pc,
+                    "start-arity and end-arity of one-armed if must match");
+                break;
+              }
             }
             if (c->is_try_catch()) {
               // Emulate catch-all + re-throw.
@@ -2303,7 +2302,7 @@
   void PopControl(Control* c) {
     DCHECK_EQ(c, &control_.back());
     CALL_INTERFACE_IF_PARENT_REACHABLE(PopControl, c);
-    bool reached = c->end_merge.reached;
+    bool reached = c->end_merge.reached || c->is_onearmed_if();
     control_.pop_back();
     // If the parent block was reachable before, but the popped control does not
     // return to here, this block becomes indirectly unreachable.
@@ -2645,10 +2644,13 @@
   bool TypeCheckMergeValues(Control* c, Merge<Value>* merge) {
     DCHECK(merge == &c->start_merge || merge == &c->end_merge);
     DCHECK_GE(stack_.size(), c->stack_depth + merge->arity);
+    // The computation of {stack_values} is only valid if {merge->arity} is >0.
+    DCHECK_LT(0, merge->arity);
+    Value* stack_values = &*(stack_.end() - merge->arity);
     // Typecheck the topmost {merge->arity} values on the stack.
     for (uint32_t i = 0; i < merge->arity; ++i) {
-      auto& val = GetMergeValueFromStack(c, merge, i);
-      auto& old = (*merge)[i];
+      Value& val = stack_values[i];
+      Value& old = (*merge)[i];
       if (val.type != old.type) {
         // If {val.type} is polymorphic, which results from unreachable, make
         // it more specific by using the merge value's expected type.
@@ -2680,6 +2682,7 @@
           expected, startrel(c->pc), actual);
       return false;
     }
+    if (expected == 0) return true;  // Fast path.
 
     return TypeCheckMergeValues(c, &c->end_merge);
   }
@@ -2687,6 +2690,7 @@
   bool TypeCheckBreak(Control* c) {
     // Breaks must have at least the number of values expected; can have more.
     uint32_t expected = c->br_merge()->arity;
+    if (expected == 0) return true;  // Fast path.
     DCHECK_GE(stack_.size(), control_.back().stack_depth);
     uint32_t actual =
         static_cast<uint32_t>(stack_.size()) - control_.back().stack_depth;
diff --git a/src/wasm/graph-builder-interface.cc b/src/wasm/graph-builder-interface.cc
index 8c6d349..4a28b72 100644
--- a/src/wasm/graph-builder-interface.cc
+++ b/src/wasm/graph-builder-interface.cc
@@ -200,6 +200,11 @@
   }
 
   void PopControl(FullDecoder* decoder, Control* block) {
+    if (block->is_onearmed_if()) {
+      // Merge the else branch into the end merge.
+      SetEnv(block->false_env);
+      MergeValuesInto(decoder, block, &block->end_merge);
+    }
     if (!block->is_loop()) SetEnv(block->end_env);
   }
 
@@ -338,6 +343,10 @@
   }
 
   void Else(FullDecoder* decoder, Control* if_block) {
+    if (if_block->reachable()) {
+      // Merge the if branch into the end merge.
+      MergeValuesInto(decoder, if_block, &if_block->end_merge);
+    }
     SetEnv(if_block->false_env);
   }
 
@@ -649,12 +658,16 @@
     const bool first = target->state == SsaEnv::kUnreachable;
     Goto(decoder, ssa_env_, target);
 
+    if (merge->arity == 0) return;
+
     uint32_t avail =
         decoder->stack_size() - decoder->control_at(0)->stack_depth;
+    DCHECK_GE(avail, merge->arity);
     uint32_t start = avail >= merge->arity ? 0 : merge->arity - avail;
+    Value* stack_values = decoder->stack_value(merge->arity);
     for (uint32_t i = start; i < merge->arity; ++i) {
-      auto& val = decoder->GetMergeValueFromStack(c, merge, i);
-      auto& old = (*merge)[i];
+      Value& val = stack_values[i];
+      Value& old = (*merge)[i];
       DCHECK_NOT_NULL(val.node);
       DCHECK(val.type == old.type || val.type == kWasmVar);
       old.node = first ? val.node
diff --git a/src/wasm/module-compiler.cc b/src/wasm/module-compiler.cc
index 8322d1d..97f8699 100644
--- a/src/wasm/module-compiler.cc
+++ b/src/wasm/module-compiler.cc
@@ -2143,7 +2143,8 @@
     v8::Maybe<bool> status = JSReceiver::DefineOwnProperty(
         isolate_, export_to, name, &desc, kThrowOnError);
     if (!status.IsJust()) {
-      TruncatedUserString<> trunc_name(name->GetCharVector<uint8_t>());
+      DisallowHeapAllocation no_gc;
+      TruncatedUserString<> trunc_name(name->GetCharVector<uint8_t>(no_gc));
       thrower_->LinkError("export of %.*s failed.", trunc_name.length(),
                           trunc_name.start());
       return;
diff --git a/test/cctest/cctest.status b/test/cctest/cctest.status
index 1b83ed0..725bc87 100644
--- a/test/cctest/cctest.status
+++ b/test/cctest/cctest.status
@@ -199,9 +199,6 @@
   # Skip tests not suitable for ASAN.
   'test-assembler-x64/AssemblerX64XchglOperations': [SKIP],
 
-  # BUG(v8:5193): Flaky.
-  'test-cpu-profiler/TickEvents': [SKIP],
-
   # BUG(v8:7587): Strange breakage on Mac.
   'test-log-stack-tracer/PureJSStackTrace': [SKIP],
 }],  # 'asan == True'
@@ -214,8 +211,6 @@
 
 ##############################################################################
 ['tsan == True', {
-  # BUG(v8:6133).
-  'test-cpu-profiler/TickEvents': [SKIP],
   # BUG(v8:6924). The test allocates a lot of memory.
   'test-api/NewStringRangeError': [PASS, NO_VARIANTS],
 }],  # 'tsan == True'
diff --git a/test/cctest/test-code-stub-assembler.cc b/test/cctest/test-code-stub-assembler.cc
index 6db2eed..60b2293 100644
--- a/test/cctest/test-code-stub-assembler.cc
+++ b/test/cctest/test-code-stub-assembler.cc
@@ -1788,16 +1788,16 @@
   FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
   ft.Call(string1, string2);
   DisallowHeapAllocation no_gc;
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[0],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[0]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[1],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[1]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[2],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[2]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[3],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[3]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[4],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[4]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[0],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[0]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[1],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[1]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[2],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[2]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[3],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[3]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[4],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[4]);
 }
 
 TEST(OneToOneByteStringCopy) {
@@ -1820,16 +1820,16 @@
   FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
   ft.Call(string1, string2);
   DisallowHeapAllocation no_gc;
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[0],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[0]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[1],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[1]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[2],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[2]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[3],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[3]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[4],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[4]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[0],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[0]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[1],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[1]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[2],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[2]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[3],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[3]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[4],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[4]);
 }
 
 TEST(OneToOneByteStringCopyNonZeroStart) {
@@ -1852,13 +1852,13 @@
   FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
   ft.Call(string1, string2);
   DisallowHeapAllocation no_gc;
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[0],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[3]);
-  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars()[1],
-           Handle<SeqOneByteString>::cast(string2)->GetChars()[4]);
-  CHECK_EQ(100, Handle<SeqOneByteString>::cast(string2)->GetChars()[0]);
-  CHECK_EQ(101, Handle<SeqOneByteString>::cast(string2)->GetChars()[1]);
-  CHECK_EQ(102, Handle<SeqOneByteString>::cast(string2)->GetChars()[2]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[0],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[3]);
+  CHECK_EQ(Handle<SeqOneByteString>::cast(string1)->GetChars(no_gc)[1],
+           Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[4]);
+  CHECK_EQ(100, Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[0]);
+  CHECK_EQ(101, Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[1]);
+  CHECK_EQ(102, Handle<SeqOneByteString>::cast(string2)->GetChars(no_gc)[2]);
 }
 
 TEST(TwoToTwoByteStringCopy) {
@@ -1884,16 +1884,16 @@
   FunctionTester ft(asm_tester.GenerateCode(), kNumParams);
   ft.Call(string1, string2);
   DisallowHeapAllocation no_gc;
-  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars()[0],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[0]);
-  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars()[1],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[1]);
-  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars()[2],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[2]);
-  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars()[3],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[3]);
-  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars()[4],
-           Handle<SeqTwoByteString>::cast(string2)->GetChars()[4]);
+  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars(no_gc)[0],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[0]);
+  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars(no_gc)[1],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[1]);
+  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars(no_gc)[2],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[2]);
+  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars(no_gc)[3],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[3]);
+  CHECK_EQ(Handle<SeqTwoByteString>::cast(string1)->GetChars(no_gc)[4],
+           Handle<SeqTwoByteString>::cast(string2)->GetChars(no_gc)[4]);
 }
 
 TEST(Arguments) {
diff --git a/test/cctest/test-func-name-inference.cc b/test/cctest/test-func-name-inference.cc
index 61f3ef0..23ac83a 100644
--- a/test/cctest/test-func-name-inference.cc
+++ b/test/cctest/test-func-name-inference.cc
@@ -71,7 +71,7 @@
   {
     i::DisallowHeapAllocation no_gc;
     Vector<const uint8_t> func_pos_str = i::OneByteVector(func_pos_src);
-    i::String::FlatContent script_content = script_src->GetFlatContent();
+    i::String::FlatContent script_content = script_src->GetFlatContent(no_gc);
     func_pos = SearchString(isolate, script_content.ToOneByteVector(),
                             func_pos_str, 0);
   }
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
index c3fc4a0..48b4703 100644
--- a/test/cctest/test-parsing.cc
+++ b/test/cctest/test-parsing.cc
@@ -917,7 +917,7 @@
   ast_value_factory.Internalize(CcTest::i_isolate());
   i::Handle<i::String> val = current_symbol->string();
   i::DisallowHeapAllocation no_alloc;
-  i::String::FlatContent content = val->GetFlatContent();
+  i::String::FlatContent content = val->GetFlatContent(no_alloc);
   CHECK(content.IsOneByte());
   i::Vector<const uint8_t> actual = content.ToOneByteVector();
   for (int i = 0; i < actual.length(); i++) {
diff --git a/test/cctest/test-strings.cc b/test/cctest/test-strings.cc
index e01ef49..09cbf26 100644
--- a/test/cctest/test-strings.cc
+++ b/test/cctest/test-strings.cc
@@ -1813,7 +1813,7 @@
     Handle<SeqTwoByteString> raw =
         factory->NewRawTwoByteString(kLength).ToHandleChecked();
     DisallowHeapAllocation no_gc;
-    CopyChars(raw->GetChars(), two_byte_buf, kLength);
+    CopyChars(raw->GetChars(no_gc), two_byte_buf, kLength);
     parent = raw;
   }
   CHECK(parent->IsTwoByteRepresentation());
diff --git a/test/cctest/test-unwinder.cc b/test/cctest/test-unwinder.cc
index f513bcc..781f7e8 100644
--- a/test/cctest/test-unwinder.cc
+++ b/test/cctest/test-unwinder.cc
@@ -347,6 +347,88 @@
   CHECK_EQ(start + 10, register_state.pc);
 }
 
+TEST(Unwind_StackBounds_Basic) {
+  LocalContext env;
+  v8::Isolate* isolate = env->GetIsolate();
+
+  UnwindState unwind_state = isolate->GetUnwindState();
+  RegisterState register_state;
+
+  const size_t code_length = 10;
+  uintptr_t code[code_length] = {0};
+  unwind_state.code_range.start = code;
+  unwind_state.code_range.length_in_bytes = code_length * sizeof(uintptr_t);
+
+  uintptr_t stack[3];
+  stack[0] = reinterpret_cast<uintptr_t>(stack + 2);  // saved FP (rbp).
+  stack[1] = 202;  // Return address into C++ code.
+  stack[2] = 303;  // The SP points here in the caller's frame.
+
+  register_state.sp = stack;
+  register_state.fp = stack;
+  register_state.pc = code;
+
+  void* wrong_stack_base = reinterpret_cast<void*>(
+      reinterpret_cast<uintptr_t>(stack) - sizeof(uintptr_t));
+  bool unwound = v8::Unwinder::TryUnwindV8Frames(unwind_state, &register_state,
+                                                 wrong_stack_base);
+  CHECK(!unwound);
+
+  // Correct the stack base and unwinding should succeed.
+  void* correct_stack_base = stack + arraysize(stack);
+  unwound = v8::Unwinder::TryUnwindV8Frames(unwind_state, &register_state,
+                                            correct_stack_base);
+  CHECK(unwound);
+}
+
+TEST(Unwind_StackBounds_WithUnwinding) {
+  LocalContext env;
+  v8::Isolate* isolate = env->GetIsolate();
+
+  UnwindState unwind_state = isolate->GetUnwindState();
+  RegisterState register_state;
+
+  // Use a fake code range so that we can initialize it to 0s.
+  const size_t code_length = 40;
+  uintptr_t code[code_length] = {0};
+  unwind_state.code_range.start = code;
+  unwind_state.code_range.length_in_bytes = code_length * sizeof(uintptr_t);
+
+  // Our fake stack has two frames - one C++ frame and one JS frame (on top).
+  // The stack grows from high addresses to low addresses.
+  uintptr_t stack[11];
+  void* stack_base = stack + arraysize(stack);
+  stack[0] = 101;
+  stack[1] = 111;
+  stack[2] = 121;
+  stack[3] = 131;
+  stack[4] = 141;
+  stack[5] = reinterpret_cast<uintptr_t>(stack + 9);  // saved FP (rbp).
+  stack[6] = reinterpret_cast<uintptr_t>(code + 20);  // JS code.
+  stack[7] = 303;  // The SP points here in the caller's frame.
+  stack[8] = 404;
+  stack[9] = reinterpret_cast<uintptr_t>(stack) +
+             (12 * sizeof(uintptr_t));                 // saved FP (OOB).
+  stack[10] = reinterpret_cast<uintptr_t>(code + 20);  // JS code.
+
+  register_state.sp = stack;
+  register_state.fp = stack + 5;
+
+  // Put the current PC inside of the code range so it looks valid.
+  register_state.pc = code + 30;
+
+  // Unwind will fail because stack[9] FP points outside of the stack.
+  bool unwound = v8::Unwinder::TryUnwindV8Frames(unwind_state, &register_state,
+                                                 stack_base);
+  CHECK(!unwound);
+
+  // Change the return address so that it is not in range.
+  stack[10] = 202;
+  unwound = v8::Unwinder::TryUnwindV8Frames(unwind_state, &register_state,
+                                            stack_base);
+  CHECK(!unwound);
+}
+
 TEST(PCIsInV8_BadState_Fail) {
   UnwindState unwind_state;
   void* pc = nullptr;
diff --git a/test/unittests/wasm/function-body-decoder-unittest.cc b/test/unittests/wasm/function-body-decoder-unittest.cc
index 9a21a04..460c917 100644
--- a/test/unittests/wasm/function-body-decoder-unittest.cc
+++ b/test/unittests/wasm/function-body-decoder-unittest.cc
@@ -18,6 +18,7 @@
 #include "test/common/wasm/flag-utils.h"
 #include "test/common/wasm/test-signatures.h"
 #include "test/common/wasm/wasm-macro-gen.h"
+#include "testing/gmock-support.h"
 
 namespace v8 {
 namespace internal {
@@ -146,6 +147,9 @@
       str << "Verification successed, expected failure; pc = +" << pc;
     }
     EXPECT_EQ(result.ok(), expected_success) << str.str();
+    if (!expected_success && message) {
+      EXPECT_THAT(result.error_msg(), ::testing::HasSubstr(message));
+    }
   }
 
   void TestBinop(WasmOpcode opcode, FunctionSig* success) {
@@ -786,6 +790,13 @@
   }
 }
 
+TEST_F(FunctionBodyDecoderTest, OneArmedIfWithArity) {
+  static const byte code[] = {WASM_ZERO, kExprIf, kLocalI32, WASM_ONE,
+                              kExprEnd};
+  EXPECT_FAILURE_C(i_v, code,
+                   "start-arity and end-arity of one-armed if must match");
+}
+
 TEST_F(FunctionBodyDecoderTest, IfBreak) {
   EXPECT_VERIFIES(v_i, WASM_IF(WASM_GET_LOCAL(0), WASM_BR(0)));
   EXPECT_VERIFIES(v_i, WASM_IF(WASM_GET_LOCAL(0), WASM_BR(1)));