cve_id
stringlengths 13
16
⌀ | cve_published
timestamp[ns] | cve_descriptions
stringlengths 70
729
⌀ | cve_metrics
dict | cve_references
listlengths 1
10
⌀ | cve_configurations
listlengths 1
5
⌀ | url
stringlengths 40
77
⌀ | cve_tags
sequencelengths 1
4
⌀ | domain
stringclasses 1
value | issue_owner_repo
sequencelengths 2
2
| issue_body
stringlengths 0
7.94k
⌀ | issue_title
stringlengths 1
307
| issue_comments_url
stringlengths 59
81
| issue_comments_count
int64 0
146
| issue_created_at
timestamp[ns] | issue_updated_at
stringlengths 20
20
| issue_html_url
stringlengths 40
62
| issue_github_id
int64 128M
1.01B
| issue_number
int64 94
105k
| label
bool 2
classes | issue_msg
stringlengths 120
8.13k
| issue_msg_n_tokens
int64 120
8.13k
| issue_embedding
sequencelengths 3.07k
3.07k
| __index_level_0__
int64 0
3.61k
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
CVE-2020-25663 | 2020-12-08T21:15:12.420000 | A call to ConformPixelInfo() in the SetImageAlphaChannel() routine of /MagickCore/channel.c caused a subsequent heap-use-after-free or heap-buffer-overflow READ when GetPixelRed() or GetPixelBlue() was called. This could occur if an attacker is able to submit a malicious image file to be processed by ImageMagick and could lead to denial of service. It likely would not lead to anything further because the memory is used as pixel data and not e.g. a function pointer. This flaw affects ImageMagick versions prior to 7.0.9-0. | {
"cvssMetricV2": [
{
"acInsufInfo": false,
"baseSeverity": "MEDIUM",
"cvssData": {
"accessComplexity": "MEDIUM",
"accessVector": "NETWORK",
"authentication": "NONE",
"availabilityImpact": "PARTIAL",
"baseScore": 4.3,
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
"version": "2.0"
},
"exploitabilityScore": 8.6,
"impactScore": 2.9,
"obtainAllPrivilege": false,
"obtainOtherPrivilege": false,
"obtainUserPrivilege": false,
"source": "nvd@nist.gov",
"type": "Primary",
"userInteractionRequired": true
}
],
"cvssMetricV30": null,
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"exploitabilityScore": 1.8,
"impactScore": 3.6,
"source": "nvd@nist.gov",
"type": "Primary"
}
]
} | [
{
"source": "secalert@redhat.com",
"tags": [
"Issue Tracking",
"Patch",
"Third Party Advisory"
],
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=1891601"
},
{
"source": "secalert@redhat.com",
"tags": [
"Exploit",
"Third Party Advisory"
],
"url": "https://github.com/ImageMagick/ImageMagick/issues/1723"
},
{
"source": "secalert@redhat.com",
"tags": [
"Third Party Advisory"
],
"url": "https://github.com/ImageMagick/ImageMagick/issues/1723#issuecomment-718275153"
}
] | [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:a:imagemagick:imagemagick:*:*:*:*:*:*:*:*",
"matchCriteriaId": "A8FFBE52-1112-43E2-BC1B-D1388F18988C",
"versionEndExcluding": "7.0.8-56",
"versionEndIncluding": null,
"versionStartExcluding": null,
"versionStartIncluding": null,
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
],
"operator": null
}
] | https://github.com/ImageMagick/ImageMagick/issues/1723 | [
"Exploit",
"Third Party Advisory"
] | github.com | [
"ImageMagick",
"ImageMagick"
] | ### Prerequisites
- [x] I have written a descriptive issue title
- [x] I have verified that I am using the latest version of ImageMagick
- [x] I have searched [open](https://github.com/ImageMagick/ImageMagick/issues) and [closed](https://github.com/ImageMagick/ImageMagick/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported
### Description
<!-- A description of the bug or feature -->
There is a heap-use-after-free at MagickCore/pixel-accessor.h:378:10 in GetPixelRed
### Steps to Reproduce
<!-- List of steps, sample code, failing test or link to a project that reproduces the behavior.
Make sure you place a stack trace inside a code (```) block to avoid linking unrelated issues -->
[poc](https://drive.google.com/file/d/1liJ7nJK0A4M_us-LuLZjwmqKXukx3nbO/view?usp=sharing)
please run a following cmd with poc file.
`magick $PoC -despeckle -flip -monochrome -alpha Shape tmp.rla`
Here's ASAN log.
```
==8370==ERROR: AddressSanitizer: heap-use-after-free on address 0x62a000024200 at pc 0x000000796779 bp 0x7ffdf7956b10 sp 0x7ffdf7956b08
READ of size 4 at 0x62a000024200 thread T0
#0 0x796778 in GetPixelRed ImageMagick/./MagickCore/pixel-accessor.h:378:10
#1 0x7938d7 in GetPixelIntensity ImageMagick/MagickCore/pixel.c:2367:24
#2 0x258de7a in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1298:28
#3 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#4 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#5 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#6 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#7 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#8 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#9 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#10 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#11 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
#12 0x421849 in _start (magick+0x421849)
0x62a000024200 is located 0 bytes inside of 22592-byte region [0x62a000024200,0x62a000029a40)
freed by thread T0 here:
#0 0x4e1530 in __interceptor_free.localalias.0 (magick+0x4e1530)
#1 0x6c76f0 in RelinquishAlignedMemory ImageMagick/MagickCore/memory.c:1037:3
#2 0x245efb2 in RelinquishPixelCachePixels ImageMagick/MagickCore/cache.c:974:40
#3 0x24e304f in OpenPixelCache ImageMagick/MagickCore/cache.c:3762:19
#4 0x2506bd7 in GetImagePixelCache ImageMagick/MagickCore/cache.c:1757:18
#5 0x2533d59 in SyncImagePixelCache ImageMagick/MagickCore/cache.c:5501:28
#6 0x2601f04 in SetImageColorspace ImageMagick/MagickCore/colorspace.c:1244:10
#7 0x2609fa7 in TransformsRGBImage ImageMagick/MagickCore/colorspace.c:1981:11
#8 0x2605cc8 in TransformImageColorspace ImageMagick/MagickCore/colorspace.c:1407:12
#9 0x70c801 in ConformPixelInfo ImageMagick/MagickCore/pixel.c:232:12
#10 0x258da15 in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1294:9
#11 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#12 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#13 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#14 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#15 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#16 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#17 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#18 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#19 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
previously allocated by thread T0 here:
#0 0x4e2338 in __interceptor_posix_memalign (magick+0x4e2338)
#1 0x6bcd6a in AcquireAlignedMemory ImageMagick/MagickCore/memory.c:265:7
#2 0x24e0cbd in OpenPixelCache ImageMagick/MagickCore/cache.c:3733:46
#3 0x2506bd7 in GetImagePixelCache ImageMagick/MagickCore/cache.c:1757:18
#4 0x2533d59 in SyncImagePixelCache ImageMagick/MagickCore/cache.c:5501:28
#5 0x56d7ad in SetImageStorageClass ImageMagick/MagickCore/image.c:2625:10
#6 0x258d244 in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1266:14
#7 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#8 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#9 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#10 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#11 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#12 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#13 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#14 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#15 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
SUMMARY: AddressSanitizer: heap-use-after-free ImageMagick/./MagickCore/pixel-accessor.h:378:10 in GetPixelRed
Shadow bytes around the buggy address:
0x0c547fffc7f0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc800: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc810: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc820: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc830: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x0c547fffc840:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc850: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc860: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc870: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc880: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc890: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
Addressable: 00
Partially addressable: 01 02 03 04 05 06 07
Heap left redzone: fa
Freed heap region: fd
Stack left redzone: f1
Stack mid redzone: f2
Stack right redzone: f3
Stack after return: f5
Stack use after scope: f8
Global redzone: f9
Global init order: f6
Poisoned by user: f7
Container overflow: fc
Array cookie: ac
Intra object redzone: bb
ASan internal: fe
Left alloca redzone: ca
Right alloca redzone: cb
==8370==ABORTING
```
### System Configuration
<!-- Tell us about the environment where you are experiencing the bug -->
- ImageMagick version:
Version: ImageMagick 7.0.8-68 Q16 x86_64 2019-10-06 https://imagemagick.org
- Environment (Operating system, version and so on):
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic
- Additional information:
CC=clang-6 CXX=clang++6 CFLAGS="-fsanitize=address,undefined -g" CXXFLAGS="-fsanitize=address,undefined -g" ./configure --disable-openmp
<!-- Thanks for reporting the issue to ImageMagick! -->
| heap-use-after-free at MagickCore/pixel-accessor.h in GetPixelRed | https://api.github.com/repos/ImageMagick/ImageMagick/issues/1723/comments | 4 | 2019-10-06T12:41:15 | 2020-10-29T00:07:54Z | https://github.com/ImageMagick/ImageMagick/issues/1723 | 503,095,531 | 1,723 | true | This is a GitHub Issue
repo:ImageMagick
owner:ImageMagick
Title : heap-use-after-free at MagickCore/pixel-accessor.h in GetPixelRed
Issue date:
--- start body ---
### Prerequisites
- [x] I have written a descriptive issue title
- [x] I have verified that I am using the latest version of ImageMagick
- [x] I have searched [open](https://github.com/ImageMagick/ImageMagick/issues) and [closed](https://github.com/ImageMagick/ImageMagick/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported
### Description
<!-- A description of the bug or feature -->
There is a heap-use-after-free at MagickCore/pixel-accessor.h:378:10 in GetPixelRed
### Steps to Reproduce
<!-- List of steps, sample code, failing test or link to a project that reproduces the behavior.
Make sure you place a stack trace inside a code (```) block to avoid linking unrelated issues -->
[poc](https://drive.google.com/file/d/1liJ7nJK0A4M_us-LuLZjwmqKXukx3nbO/view?usp=sharing)
please run a following cmd with poc file.
`magick $PoC -despeckle -flip -monochrome -alpha Shape tmp.rla`
Here's ASAN log.
```
==8370==ERROR: AddressSanitizer: heap-use-after-free on address 0x62a000024200 at pc 0x000000796779 bp 0x7ffdf7956b10 sp 0x7ffdf7956b08
READ of size 4 at 0x62a000024200 thread T0
#0 0x796778 in GetPixelRed ImageMagick/./MagickCore/pixel-accessor.h:378:10
#1 0x7938d7 in GetPixelIntensity ImageMagick/MagickCore/pixel.c:2367:24
#2 0x258de7a in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1298:28
#3 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#4 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#5 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#6 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#7 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#8 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#9 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#10 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#11 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
#12 0x421849 in _start (magick+0x421849)
0x62a000024200 is located 0 bytes inside of 22592-byte region [0x62a000024200,0x62a000029a40)
freed by thread T0 here:
#0 0x4e1530 in __interceptor_free.localalias.0 (magick+0x4e1530)
#1 0x6c76f0 in RelinquishAlignedMemory ImageMagick/MagickCore/memory.c:1037:3
#2 0x245efb2 in RelinquishPixelCachePixels ImageMagick/MagickCore/cache.c:974:40
#3 0x24e304f in OpenPixelCache ImageMagick/MagickCore/cache.c:3762:19
#4 0x2506bd7 in GetImagePixelCache ImageMagick/MagickCore/cache.c:1757:18
#5 0x2533d59 in SyncImagePixelCache ImageMagick/MagickCore/cache.c:5501:28
#6 0x2601f04 in SetImageColorspace ImageMagick/MagickCore/colorspace.c:1244:10
#7 0x2609fa7 in TransformsRGBImage ImageMagick/MagickCore/colorspace.c:1981:11
#8 0x2605cc8 in TransformImageColorspace ImageMagick/MagickCore/colorspace.c:1407:12
#9 0x70c801 in ConformPixelInfo ImageMagick/MagickCore/pixel.c:232:12
#10 0x258da15 in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1294:9
#11 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#12 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#13 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#14 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#15 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#16 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#17 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#18 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#19 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
previously allocated by thread T0 here:
#0 0x4e2338 in __interceptor_posix_memalign (magick+0x4e2338)
#1 0x6bcd6a in AcquireAlignedMemory ImageMagick/MagickCore/memory.c:265:7
#2 0x24e0cbd in OpenPixelCache ImageMagick/MagickCore/cache.c:3733:46
#3 0x2506bd7 in GetImagePixelCache ImageMagick/MagickCore/cache.c:1757:18
#4 0x2533d59 in SyncImagePixelCache ImageMagick/MagickCore/cache.c:5501:28
#5 0x56d7ad in SetImageStorageClass ImageMagick/MagickCore/image.c:2625:10
#6 0x258d244 in SetImageAlphaChannel ImageMagick/MagickCore/channel.c:1266:14
#7 0x625776b in CLISimpleOperatorImage ImageMagick/MagickWand/operation.c:1765:18
#8 0x6250c70 in CLISimpleOperatorImages ImageMagick/MagickWand/operation.c:3685:12
#9 0x632eddb in CLIOption ImageMagick/MagickWand/operation.c:5302:16
#10 0x5588f52 in ProcessCommandOptions ImageMagick/MagickWand/magick-cli.c:477:7
#11 0x55910cc in MagickImageCommand ImageMagick/MagickWand/magick-cli.c:796:5
#12 0x559b0e3 in MagickCommandGenesis ImageMagick/MagickWand/mogrify.c:185:14
#13 0x51c3e5 in MagickMain ImageMagick/utilities/magick.c:149:10
#14 0x519c69 in main ImageMagick/utilities/magick.c:180:10
#15 0x7fdc4a357b96 in __libc_start_main /build/glibc-OTsEL5/glibc-2.27/csu/../csu/libc-start.c:310
SUMMARY: AddressSanitizer: heap-use-after-free ImageMagick/./MagickCore/pixel-accessor.h:378:10 in GetPixelRed
Shadow bytes around the buggy address:
0x0c547fffc7f0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc800: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc810: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc820: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
0x0c547fffc830: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
=>0x0c547fffc840:[fd]fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc850: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc860: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc870: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc880: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c547fffc890: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
Addressable: 00
Partially addressable: 01 02 03 04 05 06 07
Heap left redzone: fa
Freed heap region: fd
Stack left redzone: f1
Stack mid redzone: f2
Stack right redzone: f3
Stack after return: f5
Stack use after scope: f8
Global redzone: f9
Global init order: f6
Poisoned by user: f7
Container overflow: fc
Array cookie: ac
Intra object redzone: bb
ASan internal: fe
Left alloca redzone: ca
Right alloca redzone: cb
==8370==ABORTING
```
### System Configuration
<!-- Tell us about the environment where you are experiencing the bug -->
- ImageMagick version:
Version: ImageMagick 7.0.8-68 Q16 x86_64 2019-10-06 https://imagemagick.org
- Environment (Operating system, version and so on):
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic
- Additional information:
CC=clang-6 CXX=clang++6 CFLAGS="-fsanitize=address,undefined -g" CXXFLAGS="-fsanitize=address,undefined -g" ./configure --disable-openmp
<!-- Thanks for reporting the issue to ImageMagick! -->
--- end body ---
| 7,538 | [
-0.040803104639053345,
-0.01668344810605049,
-0.004887728951871395,
-0.000345785403624177,
0.025615129619836807,
0.020360393449664116,
-0.011065132915973663,
0.02897651679813862,
-0.008204525336623192,
0.03015643171966076,
-0.011943208985030651,
-0.015970012173056602,
0.020236913114786148,
0.00881506223231554,
0.005854984745383263,
0.0030698368791490793,
-0.03679688274860382,
0.036961521953344345,
-0.04036406800150871,
-0.015284014865756035,
0.003941053058952093,
-0.031912583857774734,
-0.038498155772686005,
0.03874511271715164,
-0.01647765003144741,
0.008376023732125759,
-0.0034660000819712877,
0.022939741611480713,
-0.008156505413353443,
0.0024815944489091635,
0.01819264143705368,
0.0226241834461689,
0.005806965287774801,
0.01468033716082573,
0.009885217994451523,
-0.0008549238555133343,
0.03553464636206627,
0.06667891144752502,
0.03745543956756592,
0.025944408029317856,
-0.0070589096285402775,
-0.05372729152441025,
0.006318032741546631,
-0.00918550044298172,
-0.028784437105059624,
-0.007532247807830572,
0.01878259889781475,
-0.012821285054087639,
-0.03523280844092369,
0.02439405582845211,
0.012059828266501427,
0.008382883854210377,
-0.014213859103620052,
-0.05117538198828697,
0.016875527799129486,
-0.03762007877230644,
0.04719659686088562,
0.02103267051279545,
0.010777014307677746,
-0.02152658812701702,
-0.02339250035583973,
0.02808471955358982,
0.0037969937548041344,
0.021718667820096016,
-0.015050775371491909,
-0.031144266948103905,
0.0076351473107934,
-0.01221074815839529,
-0.01323288306593895,
0.002435289556160569,
-0.019413717091083527,
-0.02472333423793316,
0.020401552319526672,
0.038882315158843994,
0.00021255190949887037,
0.04398613050580025,
0.03800423815846443,
-0.012087267823517323,
-0.041159823536872864,
0.02134822867810726,
-0.06437396258115768,
0.017822204157710075,
-0.04535812512040138,
0.055483441799879074,
0.041571423411369324,
-0.003232761053368449,
-0.011703110300004482,
-0.07567919790744781,
-0.021773546934127808,
-0.011854029260575771,
0.010756433941423893,
0.021691227331757545,
0.024298015981912613,
0.010488894768059254,
0.022514423355460167,
0.0010461455676704645,
-0.008218244649469852,
-0.010070436634123325,
-0.03907439112663269,
0.031940024346113205,
-0.020072273910045624,
-0.01216958835721016,
0.00450357049703598,
0.01754780486226082,
0.025505371391773224,
0.0158328115940094,
-0.01435105875134468,
-0.025436772033572197,
0.015064495615661144,
0.12227211892604828,
-0.008437763899564743,
-0.016999008134007454,
0.005666335579007864,
0.013178003951907158,
0.014954735524952412,
0.028427718207240105,
0.016957847401499748,
0.0076831672340631485,
-0.037729837000370026,
-0.026369726285338402,
-0.023721778765320778,
-0.04321781545877457,
0.017410606145858765,
0.023941297084093094,
-0.010694693773984909,
0.0103516960516572,
0.01937255635857582,
-0.019153038039803505,
-0.015901412814855576,
-0.005896144546568394,
-0.00949419941753149,
-0.03295530006289482,
0.00849264394491911,
-0.011675669811666012,
0.002157460665330291,
-0.00890424195677042,
-0.02141682803630829,
0.036632243543863297,
0.016738329082727432,
-0.010036136955022812,
-0.051257699728012085,
-0.05449560657143593,
0.022761382162570953,
0.021169869229197502,
0.007758626714348793,
0.010777014307677746,
-0.015187975019216537,
0.011799149215221405,
-0.007593987509608269,
-0.020236913114786148,
-0.021252188831567764,
-0.008211384527385235,
0.029305795207619667,
-0.008856222033500671,
0.05219065770506859,
0.0009458184358663857,
0.01801428198814392,
0.03339433670043945,
-0.03141866624355316,
-0.021636348217725754,
-0.017534084618091583,
-0.03446449339389801,
0.010873053222894669,
-0.015146815218031406,
0.0011696249712258577,
-0.02406477741897106,
-0.017685003578662872,
0.010495754890143871,
-0.00035843346267938614,
0.025450490415096283,
-0.0012931044911965728,
0.004928888753056526,
0.0003492153773549944,
-0.010818174108862877,
-0.05855670943856239,
0.015476093627512455,
-0.004150282125920057,
0.010818174108862877,
-0.00831428449600935,
-0.04338245466351509,
0.01216958835721016,
-0.013637621887028217,
-0.006115663796663284,
0.0009192360448651016,
0.023612018674612045,
-0.007820366881787777,
0.018713999539613724,
-0.04110494256019592,
-0.00046090426621958613,
0.01946859620511532,
0.008547523058950901,
-0.03781215846538544,
0.025820929557085037,
-0.0325985811650753,
0.038882315158843994,
-0.0031795965041965246,
-0.017095046117901802,
-0.04063846543431282,
0.030321070924401283,
-0.04598924145102501,
-0.003941053058952093,
-0.022171424701809883,
-0.0297448318451643,
0.0009415309759788215,
0.004205162171274424,
0.02560141123831272,
-0.02536817081272602,
0.031144266948103905,
0.029909471049904823,
-0.022816263139247894,
-0.018796319141983986,
-0.022994620725512505,
0.004321781452745199,
0.007799786515533924,
-0.031171707436442375,
0.024709613993763924,
-0.014831256121397018,
-0.0013505567330867052,
-0.025477930903434753,
0.01336322259157896,
-0.004479561001062393,
-0.007353888358920813,
-0.01565445214509964,
-0.02734384313225746,
-0.02451753430068493,
-0.012574326246976852,
0.004520720802247524,
-0.004139992408454418,
-0.036879200488328934,
-0.0023512549232691526,
0.004198302049189806,
-0.03863535448908806,
0.022020505741238594,
-0.022404663264751434,
0.013665061444044113,
-0.002550194039940834,
-0.015174254775047302,
0.001155905076302588,
-0.00940501969307661,
0.0193451177328825,
-0.0047711096704006195,
0.018617959693074226,
-0.024915413931012154,
-0.003947913181036711,
0.04755331575870514,
0.04417821019887924,
-0.0452483668923378,
-0.02339250035583973,
-0.03339433670043945,
0.01993507519364357,
0.018329842016100883,
-0.03893719241023064,
-0.02226746454834938,
-0.0076351473107934,
0.0036700842902064323,
-0.026589246466755867,
0.01988019421696663,
-0.020579911768436432,
-0.01775360479950905,
-0.012718386016786098,
0.05408400669693947,
0.020566191524267197,
-0.019921354949474335,
0.005059228278696537,
0.023735499009490013,
0.002680533565580845,
-0.013157423585653305,
-0.0024661594070494175,
-0.00045147183118388057,
0.0010349981021136045,
0.02224002406001091,
-0.007038329727947712,
-0.007868385873734951,
-0.048211872577667236,
-0.038470715284347534,
0.0013925740495324135,
0.018082883208990097,
-0.0025964989326894283,
0.01698528788983822,
-0.024558695033192635,
0.014145259745419025,
0.0033716754987835884,
-0.01004299707710743,
0.024942852556705475,
0.0005205002962611616,
0.000831771467346698,
0.026040447875857353,
-0.02082687057554722,
-0.036906640976667404,
-0.018590521067380905,
-0.0060264840722084045,
0.001819607219658792,
-0.027947520837187767,
0.0010941652581095695,
0.006901130545884371,
0.004057672806084156,
-0.002665098523721099,
-0.016752047464251518,
-0.014241298660635948,
0.0015383483842015266,
-0.023433659225702286,
-0.038168877363204956,
0.005120967980474234,
0.023612018674612045,
0.0007040044874884188,
0.01609349064528942,
-0.03163818642497063,
0.034327294677495956,
0.014886136166751385,
-0.012293067760765553,
0.04917227104306221,
-0.043547093868255615,
0.009926377795636654,
-0.02085431106388569,
-0.008691582828760147,
-0.020840590819716454,
-0.009713718667626381,
-0.014776377007365227,
0.0025176091585308313,
0.0006388347828760743,
-0.04486420750617981,
-0.04255925863981247,
-0.020744550973176956,
0.02341993898153305,
0.015421213582158089,
0.019948795437812805,
-0.018178923055529594,
0.030266189947724342,
-0.10443619638681412,
0.026438327506184578,
-0.018864918500185013,
-0.03487608954310417,
-0.022967182099819183,
-0.006551271770149469,
0.03012899123132229,
-0.04310805723071098,
-0.012437126599252224,
0.05062658339738846,
0.035370007157325745,
0.027206644415855408,
-0.012416547164320946,
0.013431822881102562,
-0.01128465123474598,
-0.032653458416461945,
0.004805409349501133,
-0.017863363027572632,
0.009000281803309917,
0.006743350997567177,
0.02144426852464676,
0.007278428878635168,
0.0009526784415356815,
0.047388676553964615,
0.006907990202307701,
0.02406477741897106,
0.008348584175109863,
0.009226660244166851,
-0.020044833421707153,
-0.0160660520195961,
0.005189567804336548,
-0.030019231140613556,
0.021924465894699097,
-0.05103818327188492,
-0.003646074328571558,
0.00023838397464714944,
0.017877083271741867,
0.006215133238583803,
-0.008547523058950901,
-0.00576580548658967,
-0.004404101055115461,
0.005882424768060446,
-0.02985459193587303,
0.07809390872716904,
-0.03682432323694229,
0.022939741611480713,
-0.02439405582845211,
-0.045083727687597275,
0.020332952961325645,
0.013740520924329758,
-0.03901951387524605,
0.004863718990236521,
-0.016642289236187935,
0.013665061444044113,
0.04667523875832558,
-0.013884580694139004,
0.04785515367984772,
0.032763220369815826,
-0.007395048160105944,
0.024846812710165977,
0.00917178113013506,
-0.043574534356594086,
-0.04225742071866989,
0.028372839093208313,
-0.01881003938615322,
-0.04170862212777138,
-0.006307743024080992,
0.029991792514920235,
0.012697805650532246,
-0.02433917671442032,
0.025944408029317856,
-0.051586978137493134,
0.014076659455895424,
-0.024709613993763924,
0.01054377481341362,
0.030650349333882332,
-0.02595812827348709,
0.022349784150719643,
0.026712724938988686,
0.004476130940020084,
0.04143422096967697,
-0.0018899219576269388,
0.023639459162950516,
0.006901130545884371,
-0.04055614769458771,
0.00918550044298172,
0.037290800362825394,
0.007148089352995157,
-0.0016721178544685245,
0.014186419546604156,
-0.02108754962682724,
0.01621697098016739,
-0.037757277488708496,
-0.006582141853868961,
-0.02064851112663746,
0.03622064366936684,
0.0013128268765285611,
-0.0032722060568630695,
-0.010434015654027462,
0.012437126599252224,
0.01727340556681156,
-0.024256855249404907,
-0.035068169236183167,
-0.017204806208610535,
-0.0029515023343265057,
-0.008355444297194481,
-0.022432103753089905,
-0.015791652724146843,
-0.03015643171966076,
-0.027659401297569275,
-0.019592076539993286,
-0.001003270735964179,
0.0007863241480663419,
0.02867467701435089,
-0.04286109656095505,
-0.02459985390305519,
-0.019564636051654816,
-0.03446449339389801,
-0.014598017558455467,
0.002371834823861718,
0.007250988855957985,
-0.026602966710925102,
-0.044672127813100815,
0.04950154945254326,
0.0017492924816906452,
-0.0359736867249012,
0.023666897788643837,
-0.01565445214509964,
-0.036577362567186356,
0.0000293692501145415,
0.020744550973176956,
0.01221074815839529,
0.012114708311855793,
0.009288400411605835,
-0.016930406913161278,
-0.02498401328921318,
-0.015201695263385773,
0.02936067432165146,
0.0103516960516572,
0.005978464614599943,
0.012443986721336842,
-0.011373830959200859,
0.0035843346267938614,
0.04050126671791077,
-0.0018882069271057844,
-0.0023615448735654354,
-0.002435289556160569,
0.03021131083369255,
-0.002937782322987914,
-0.005968174431473017,
0.01736944541335106,
-0.04801979288458824,
0.004675069823861122,
-0.04983082786202431,
-0.03586392477154732,
0.017355725169181824,
0.02800239995121956,
0.01045459508895874,
0.0018916368717327714,
0.014858696609735489,
-0.03781215846538544,
-0.006101944018155336,
0.02088174968957901,
0.012052968144416809,
-0.007305868901312351,
-0.03095218725502491,
-0.004904878791421652,
0.014460817910730839,
-0.022281184792518616,
-0.025999289005994797,
0.028894197195768356,
0.014255018904805183,
0.018617959693074226,
-0.014652897603809834,
0.013404382392764091,
-0.02933323383331299,
0.015380053780972958,
-0.04327269643545151,
-0.01742432452738285,
0.012636065483093262,
-0.04179093986749649,
-0.04058358445763588,
0.02385897748172283,
-0.027947520837187767,
0.025971848517656326,
-0.03163818642497063,
0.025244692340493202,
-0.0089934216812253,
0.03778471797704697,
-0.00745678786188364,
0.00900714099407196,
0.009741158224642277,
-0.012258767150342464,
-0.026959683746099472,
0.020209472626447678,
0.03937623277306557,
0.038553036749362946,
-0.0015203410293906927,
0.03413521498441696,
-0.0025742040015757084,
0.033833373337984085,
-0.018206361681222916,
0.02208910509943962,
0.0056457556784152985,
-0.016999008134007454,
0.030074112117290497,
-0.005515416618436575,
0.02531329169869423,
-0.027000844478607178,
-0.004959758836776018,
0.006314603146165609,
-0.01621697098016739,
-0.007792926859110594,
0.04673011973500252,
-0.018329842016100883,
-0.008760182186961174,
-0.04785515367984772,
0.013507282361388206,
-0.01795940287411213,
0.03860791400074959,
-0.008719022385776043,
0.005436526611447334,
0.004757389426231384,
-0.02495657280087471,
0.015201695263385773,
0.012190167792141438,
-0.003724964102730155,
0.00468192994594574,
0.006064213812351227,
-0.0030252470169216394,
0.027549641206860542,
0.012697805650532246,
0.01660112850368023,
-0.020072273910045624,
0.02188330702483654,
0.0065924315713346004,
-0.010605514980852604,
-0.015613293275237083,
0.0026222236920148134,
0.0259032491594553,
-0.036165766417980194,
-0.018563080579042435,
0.01946859620511532,
-0.006187693681567907,
0.019303957000374794,
-0.009981256909668446,
-0.009905797429382801,
-0.0019190767779946327,
-0.013280902989208698,
-0.03487608954310417,
-0.019839035347104073,
-0.019482316449284554,
0.013500422239303589,
-0.0239824578166008,
0.005052368156611919,
0.011250351555645466,
0.015023335814476013,
-0.02303578145802021,
0.013932600617408752,
0.019043277949094772,
0.0014697486767545342,
-0.023762937635183334,
0.00030698368209414184,
0.018233802169561386,
-0.02767312154173851,
0.0013248318573459983,
0.013383802957832813,
-0.015352614223957062,
0.0171910859644413,
-0.008389743976294994,
0.000045795663027092814,
-0.0036186345387250185,
-0.023735499009490013,
0.01742432452738285,
0.00773118669167161,
-0.03339433670043945,
-0.01027623564004898,
-0.015901412814855576,
0.009857777506113052,
-0.009014001116156578,
0.009967537596821785,
0.015572133474051952,
0.024325456470251083,
0.036549922078847885,
0.0028640376403927803,
0.008952261880040169,
0.03402545303106308,
-0.029635073617100716,
0.027151763439178467,
0.02064851112663746,
-0.032735779881477356,
-0.01140127144753933,
0.014556857757270336,
-0.06069701910018921,
0.008190805092453957,
0.01801428198814392,
0.02221258543431759,
0.023227861151099205,
-0.048568591475486755,
-0.008321144618093967,
-0.012821285054087639,
-0.011257211677730083,
-0.01754780486226082,
0.025999289005994797,
0.019331397488713264,
-0.030074112117290497,
-0.031116826459765434,
0.029497873038053513,
0.029909471049904823,
0.0075253876857459545,
-0.018947238102555275,
0.0024935994297266006,
-0.0036220645997673273,
0.006925140507519245,
-0.007820366881787777,
-0.0015709332656115294,
-0.02490169368684292,
0.001025565667077899,
0.01317114382982254,
0.012485146522521973,
0.020072273910045624,
0.021430548280477524,
-0.06366052478551865,
0.002695968374609947,
0.007621427532285452,
0.01813776232302189,
0.012876165099442005,
0.0021780405659228563,
0.0364401638507843,
0.04714171960949898,
-0.01747920550405979,
-0.034272413700819016,
-0.002792007988318801,
-0.01200494822114706,
-0.05460536479949951,
-0.010866193100810051,
0.02549165114760399,
-0.007244129199534655,
-0.009521638974547386,
-0.04417821019887924,
0.027028284966945648,
0.01872771978378296,
-0.0017578675178810954,
-0.007319588679820299,
-0.002692538546398282,
0.022404663264751434,
-0.009034581482410431,
-0.016930406913161278,
0.019893914461135864,
0.00781350675970316,
-0.026506926864385605,
0.04999546706676483,
0.009885217994451523,
-0.020566191524267197,
0.000055469292419729754,
0.004819129593670368,
-0.026479486376047134,
0.008917962200939655,
0.01601117104291916,
0.00881506223231554,
-0.013582741841673851,
-0.04793747514486313,
0.02743988297879696,
-0.017726164311170578,
-0.001219359808601439,
0.012608625926077366,
-0.004647630266845226,
-0.00918550044298172,
0.004129702225327492,
-0.00753910792991519,
-0.019893914461135864,
-0.023515978828072548,
-0.021307067945599556,
0.013870860449969769,
0.006064213812351227,
0.024970293045043945,
-0.00236325990408659,
0.03937623277306557,
-0.004510430619120598,
0.016491370275616646,
-0.001233937218785286,
0.010975953191518784,
-0.013658201321959496,
0.021252188831567764,
-0.04176349937915802,
0.01698528788983822,
0.010406575165688992,
-0.006290593184530735,
-0.02941555343568325,
-0.007868385873734951,
0.014419658109545708,
-0.013047664426267147,
-0.01624440960586071,
-0.010193916037678719,
-0.03172050416469574,
-0.03984270989894867,
0.017890803515911102,
0.007182389032095671,
0.01200494822114706,
-0.0013548441929742694,
0.03399801626801491,
0.01450197771191597,
-0.004434971138834953,
0.00027075447724200785,
0.0025964989326894283,
0.005800105165690184,
0.00372839393094182,
-0.018316121771931648,
0.018467040732502937,
-0.023515978828072548,
0.022528143599629402,
0.01639533042907715,
0.022171424701809883,
-0.008952261880040169,
0.031555864959955215,
-0.024791933596134186,
0.00018918512796517462,
-0.01200494822114706,
0.0035809045657515526,
0.0040199426002800465,
-0.017492925748229027,
0.03298274055123329,
-0.011689390055835247,
0.0030218169558793306,
0.020072273910045624,
-0.0332571379840374,
-0.019454875960946083,
-0.011264071799814701,
0.0002203765616286546,
-0.012327367439866066,
0.014378498308360577,
-0.023941297084093094,
-0.0045584505423903465,
0.013006504625082016,
-0.011421850882470608,
0.002970367204397917,
0.012889884412288666,
0.017890803515911102,
0.020442713052034378,
-0.02790636010468006,
0.024462655186653137,
0.011819729581475258,
0.011792289093136787,
-0.012306787073612213,
-0.02224002406001091,
0.01487241592258215,
0.002159175695851445,
-0.0039101834408938885,
0.0077380468137562275,
0.012025528587400913,
0.014858696609735489,
0.05334313213825226,
-0.024380335584282875,
-0.00794384628534317,
-0.047004517167806625,
0.04055614769458771,
-0.0016755477990955114,
-0.009967537596821785,
0.02011343464255333,
-0.0023495398927479982,
-0.026095328852534294,
-0.0004118126234970987,
-0.013191723264753819,
0.027988679707050323,
0.04708683863282204,
-0.008472063578665257,
-0.021128710359334946,
-0.025093773379921913,
0.0013145419070497155,
-0.00017396456678397954,
-0.007285289000719786,
-0.043931253254413605,
-0.02551909163594246,
-0.002277510240674019,
-0.027179203927516937,
-0.019921354949474335,
-0.002778288209810853,
-0.027398722246289253,
-0.021842146292328835,
0.04382149130105972,
-0.02380409836769104,
0.02554653026163578,
0.019262798130512238,
-0.003690664190798998,
0.011023973114788532,
0.001110457698814571,
0.004098832607269287,
-0.03893719241023064,
0.0006894270773045719,
-0.017259685322642326,
0.00658557191491127,
-0.004242891911417246,
-0.023612018674612045,
-0.010907352901995182,
-0.0036289244890213013,
-0.032269302755594254,
-0.02442149631679058,
-0.004976908676326275,
0.0021008660551160574,
0.015242855064570904,
0.005834404844790697,
0.029223475605249405,
-0.020621072500944138,
-0.01975671574473381,
0.016559969633817673,
0.026438327506184578,
-0.010591794736683369,
0.024023616686463356,
-0.009288400411605835,
0.0053233373910188675,
-0.03224186226725578,
0.03534257039427757,
-0.009535359218716621,
0.003433415200561285,
-0.01373366080224514,
-0.014762656763195992,
-0.0016746902838349342,
-0.0297448318451643,
-0.03740055859088898,
0.007285289000719786,
-0.0068153808824718,
0.012738965451717377,
0.02418825589120388,
0.0191118773072958,
-0.02226746454834938,
0.01231364719569683,
-0.008108485490083694,
0.004026802722364664,
-0.010008697398006916,
-0.0018127472139894962,
0.01367192156612873,
-0.01550353318452835,
0.024586135521531105,
0.007518528029322624,
-0.003560324665158987,
0.004109122324734926,
0.030321070924401283,
0.02442149631679058,
-0.007772346958518028,
0.002301520202308893,
-0.0019962515216320753,
-0.01023507583886385,
-0.015819093212485313,
0.011181752197444439,
0.03490353003144264,
0.0004904879024252295,
-0.0286197979003191,
-0.01109257247298956,
0.010612374171614647,
-0.012835005298256874,
0.03778471797704697,
0.015393774025142193,
-0.01081131398677826,
0.0013565592234954238,
-0.005608025938272476,
0.013781680725514889,
-0.000710435735527426,
-0.03841583430767059,
-0.010818174108862877,
-0.009823477827012539,
-0.02531329169869423,
-0.004863718990236521,
-0.015873972326517105,
0.008835642598569393,
-0.04244949668645859,
-0.02259674295783043,
0.035809047520160675,
0.03509560972452164,
-0.024284295737743378,
-0.022994620725512505,
-0.039705511182546616,
-0.025820929557085037,
0.0037935636937618256,
0.006685041356831789,
0.02134822867810726,
0.0005136402905918658,
-0.0019190767779946327,
0.02829051949083805,
0.04450748860836029,
-0.001386571559123695,
0.001965381670743227,
0.003899893257766962,
0.030046671628952026,
-0.014817536808550358,
0.0053782169707119465,
-0.01939999684691429,
-0.0052924673072993755,
0.007415628060698509,
-0.0003811571223195642,
-0.01568189263343811,
-0.0037489740643650293,
0.03056802973151207,
0.016079770401120186,
0.0012107847724109888,
-0.00905516091734171,
0.0025484790094196796,
-0.011435571126639843,
-0.03833351656794548,
-0.029168594628572464,
0.02019575424492359,
0.009391299448907375,
0.0035740446764975786,
0.008197665214538574,
-0.0026462336536496878,
0.01312998402863741,
0.012265627272427082,
-0.002978942357003689,
-0.004657919984310865,
-0.006750211119651794,
0.005117537919431925,
-0.029305795207619667,
-0.038882315158843994,
0.009459899738430977,
0.011469870805740356,
0.008712162263691425,
-0.00550169637426734,
0.01913931779563427,
-0.004102262668311596,
0.0014920436078682542,
-0.02108754962682724,
-0.028125880286097527,
-0.01747920550405979,
-0.019207917153835297,
0.0012913894606754184,
0.009425600059330463,
-0.005975034553557634,
-0.025217251852154732,
0.017204806208610535,
-0.01875516027212143,
0.003556894836947322,
0.0160660520195961,
0.027577081695199013,
0.013212303631007671,
0.01811032183468342,
-0.04837651178240776,
-0.008108485490083694,
-0.0002943356230389327,
0.0109142130240798,
-0.06371540576219559,
0.003978782799094915,
-0.01898839883506298,
-0.017232246696949005,
0.002918917452916503,
0.017492925748229027,
0.014447098597884178,
0.028400277718901634,
-0.015736771747469902,
0.024887973442673683,
-0.021773546934127808,
-0.03399801626801491,
-0.028153318911790848,
0.005618316121399403,
-0.029909471049904823,
-0.010591794736683369,
0.05411144718527794,
-0.003594624577090144,
-0.0006139673641882837,
-0.0286197979003191,
0.024682173505425453,
0.01704016700387001,
-0.005683485884219408,
-0.006252863444387913,
0.027892639860510826,
0.01642276905477047,
-0.002893192693591118,
-0.03649504482746124,
-0.01017333660274744,
0.008129064925014973,
-0.0259032491594553,
-0.016930406913161278,
-0.026095328852534294,
-0.011476730927824974,
-0.029964352026581764,
0.02185586653649807,
0.014803816564381123,
0.01072213426232338,
-0.006300882901996374,
0.01901583932340145,
-0.006177403498440981,
0.012162728235125542,
-0.024819374084472656,
-0.004654489923268557,
-0.010756433941423893,
0.01816520281136036,
0.047443557530641556,
-0.013905160129070282,
0.04244949668645859,
0.011565910652279854,
-0.004846569150686264,
-0.0037524038925766945,
-0.008376023732125759,
0.043519653379917145,
-0.02577976882457733,
-0.007978145964443684,
-0.011661950498819351,
-0.011524750851094723,
-0.0016343879979103804,
0.004328641574829817,
-0.003893033368512988,
-0.005680055823177099,
0.025628849864006042,
-0.0032053212635219097,
-0.014158979058265686,
0.006685041356831789,
0.004791689570993185,
0.003045826917514205,
-0.03794935718178749,
-0.0021042958833277225,
0.021169869229197502,
-0.023872697725892067,
-0.0321321040391922,
-0.0048980191349983215,
0.05998358502984047,
-0.009699998423457146,
-0.0068462505005300045,
-0.0035671847872436047,
-0.011188612319529057,
0.0008815062465146184,
0.015777932479977608,
-0.02141682803630829,
0.017328286543488503,
-0.024641014635562897,
0.013493562117218971,
-0.00041695759864524007,
0.03764751926064491,
-0.009254100732505322,
-0.015325174666941166,
-0.01275954581797123,
0.007930126041173935,
-0.01813776232302189,
0.010193916037678719,
-0.016697168350219727,
-0.01680692844092846,
-0.01878259889781475,
0.00499748857691884,
-0.02162262797355652,
-0.024819374084472656,
-0.014392218552529812,
-0.00035007286351174116,
0.002654808573424816,
0.009768597781658173,
0.0033356607891619205,
0.022843701764941216,
0.009981256909668446,
-0.006444942206144333,
-0.014639177359640598,
0.017739884555339813,
-0.005158697720617056,
0.023941297084093094,
-0.0030321069061756134,
-0.0009561083861626685,
0.0021797555964440107,
-0.021663786843419075,
-0.021897025406360626,
-0.009631399065256119,
0.012059828266501427,
-0.037318240851163864,
-0.002766283228993416,
0.007587127387523651,
-0.016614848747849464,
-0.004853429272770882,
0.008547523058950901,
-0.010139036923646927,
-0.008897381834685802,
0.0003627209516707808,
-0.02395501732826233,
0.005192997865378857,
0.006005904171615839,
0.016916686668992043,
0.0844050794839859,
-0.0029652223456650972,
-0.00564232561737299,
-0.01588769257068634,
-0.0030080971773713827,
-0.010612374171614647,
0.003229331225156784,
-0.020072273910045624,
-0.005549716297537088,
-0.012622346170246601,
0.023666897788643837,
-0.003865593345835805,
0.019221637398004532,
0.01373366080224514,
0.005000918637961149,
0.0038175736553967,
-0.0011927774176001549,
-0.003490010043606162,
0.015064495615661144,
-0.0074842278845608234,
0.009665698744356632,
0.003985642921179533,
0.007326448801904917,
-0.019811594858765602,
0.030074112117290497,
-0.0185493603348732,
-0.0310070663690567,
-0.029964352026581764,
-0.03355897590517998,
-0.02684992551803589,
-0.0021231609862297773,
0.009651978500187397,
-0.007717466913163662,
-0.00440753111615777,
-0.005179277621209621,
-0.007792926859110594,
0.02239094488322735,
-0.015558413229882717,
-0.006132813636213541,
-0.020511312410235405,
0.0028657526709139347,
-0.013479841873049736,
-0.018672840669751167,
-0.0020820011850446463,
0.00019776009139604867,
-0.023845257237553596,
0.018028002232313156,
-0.015297734178602695,
-0.007772346958518028,
0.01591513119637966,
0.005247877445071936,
-0.016134651377797127,
0.009590239264070988,
-0.00622542342171073,
0.01203238870948553,
0.0043046316131949425,
-0.00564232561737299,
-0.014556857757270336,
-0.02711060456931591,
0.0030938468407839537,
-0.006551271770149469,
0.01004299707710743,
-0.027398722246289253,
-0.0009629683918319643,
0.009844058193266392,
0.010756433941423893,
-0.0070589096285402775,
0.001484326203353703,
-0.01780848391354084,
0.002267220290377736,
0.004013082943856716,
0.00567662576213479,
0.00649639219045639,
0.002025406341999769,
-0.0109142130240798,
0.023502258583903313,
-0.009377580136060715,
0.028317958116531372,
-0.009528499096632004,
-0.03841583430767059,
0.04678500071167946,
0.01872771978378296,
-0.012896744534373283,
0.03023875132203102,
0.005529136396944523,
0.03622064366936684,
-0.021101269870996475,
-0.021718667820096016,
0.015050775371491909,
0.0018967818468809128,
-0.012176447547972202,
-0.0030372519977390766,
0.002150600776076317,
0.001741575077176094,
0.013383802957832813,
0.03358641639351845,
0.019454875960946083,
-0.005326766986399889,
-0.006424362305551767,
-0.0058995746076107025,
0.017671285197138786,
-0.014611737802624702,
0.031116826459765434,
-0.00038694520480930805,
-0.0034505652729421854,
0.005882424768060446,
-0.009885217994451523,
0.02152658812701702,
-0.006259723100811243,
-0.011469870805740356,
-0.03720847889780998,
-0.011977508664131165,
0.026452045887708664,
-0.024092216044664383,
-0.009789178147912025,
0.006187693681567907,
0.016340449452400208,
-0.020922910422086716,
-0.008554383181035519,
-0.02723408304154873,
-0.013973760418593884,
-0.023104380816221237,
0.03490353003144264,
0.01095537282526493,
0.003328800667077303,
-0.008540663868188858,
-0.007662587333470583,
-0.028455158695578575,
0.018206361681222916,
0.021938186138868332,
0.018274961039423943,
0.004819129593670368,
0.013582741841673851,
-0.025244692340493202,
0.018178923055529594,
-0.029580192640423775,
0.01629929058253765,
0.0017955972580239177,
-0.021869586780667305,
0.010921073146164417,
-0.012512586079537868,
0.007052049972116947,
0.014735217206180096,
-0.0139120202511549,
-0.0004656205128412694,
-0.009151200763881207,
-0.015901412814855576,
0.004870579112321138,
0.010303676128387451,
0.012286207638680935,
-0.016697168350219727,
-0.031610745936632156,
-0.0007571692694909871,
0.026424607262015343,
-0.0018916368717327714,
-0.008197665214538574,
0.019056998193264008,
-0.015146815218031406,
0.005652615800499916,
-0.002807443030178547,
0.011826589703559875,
0.010845613665878773,
0.01783592440187931,
-0.012903604656457901,
0.004479561001062393,
0.028949076309800148,
-0.0015392058994621038,
-0.022363504394888878,
-0.02785148099064827,
-0.0191118773072958,
0.017026446759700775,
0.0020682811737060547,
-0.02377665787935257,
0.004973478615283966,
0.0019225067226216197,
0.012464567087590694,
-0.004352651536464691,
0.013569021597504616,
0.026506926864385605,
-0.02513493224978447,
0.004417821299284697,
0.022075384855270386,
0.035754166543483734,
0.006359193008393049,
0.015133094973862171,
-0.02067595161497593,
-0.018233802169561386,
0.00513811782002449,
-0.018178923055529594,
0.031116826459765434,
-0.0035671847872436047,
0.02528585121035576,
-0.01870027929544449,
-0.001416583894751966,
-0.016902968287467957,
-0.03210466355085373,
-0.0014028639998286963,
-0.030074112117290497,
-0.014858696609735489,
0.01172368973493576,
-0.005854984745383263,
-0.012341086752712727,
-0.008485783822834492,
0.02191074565052986,
-0.02088174968957901,
-0.011085712350904942,
0.008177084848284721,
0.019427437335252762,
0.00045404431875795126,
-0.01153161097317934,
-0.002464444376528263,
0.011709969490766525,
0.0006396922399289906,
0.020744550973176956,
0.003478005062788725,
0.006739920936524868,
-0.006294023245573044,
-0.03298274055123329,
-0.0038038536440581083,
0.0024027046747505665,
-0.012725245207548141,
0.020922910422086716,
0.018357280641794205,
0.036961521953344345,
-0.011833448894321918,
0.01546237338334322,
0.03838839381933212,
-0.012656645849347115,
-0.00690456060692668,
0.01544865407049656,
-0.0013076819013804197,
0.009603958576917648,
-0.008074185810983181,
-0.0076831672340631485,
-0.00128281454090029,
-0.0337236151099205,
-0.012677225284278393,
0.011270931921899319,
-0.010996532626450062,
0.0027525632176548243,
0.02587580867111683,
0.010385995730757713,
-0.01698528788983822,
-0.0014894711785018444,
-0.0018504770705476403,
-0.00009378865797771141,
0.02247326448559761,
-0.020072273910045624,
0.0018659119959920645,
0.04280621558427811,
-0.03207722306251526,
-0.01680692844092846,
-0.009062021039426327,
-0.01413153950124979,
-0.005580585915595293,
0.026506926864385605,
-0.020182034000754356,
0.006252863444387913,
-0.00037000965676270425,
-0.0077792066149413586,
-0.004603040404617786,
-0.0024558694567531347,
0.009411879815161228,
0.012979064136743546,
-0.020278073847293854,
0.02728896401822567,
0.006616441532969475,
-0.015613293275237083,
0.018261242657899857,
-0.008204525336623192,
0.0007323018508031964,
-0.008087905123829842,
0.015819093212485313,
-0.013116263784468174,
0.006568422075361013,
0.004918599035590887,
-0.012745825573801994,
-0.002792007988318801,
0.0041880118660628796,
-0.0024181397166103125,
0.008451484143733978,
0.05608712136745453,
0.016162090003490448,
-0.00685997074469924,
0.004380091093480587,
-0.00803302600979805,
-0.03589136525988579,
-0.0009260960505343974,
-0.012821285054087639,
-0.011675669811666012,
-0.0025399040896445513,
-0.0001571362081449479,
-0.020003674551844597,
-0.02055247128009796,
0.007340168580412865,
-0.0152702946215868,
-0.017287125810980797,
0.003923903219401836,
-0.020387832075357437,
0.0059853242710232735,
0.019125597551465034,
0.025107491761446,
0.016546249389648438,
0.017945682629942894,
-0.007292148657143116,
-0.004050812683999538,
-0.012430266477167606,
0.012059828266501427,
-0.0027491331566125154,
-0.016614848747849464,
-0.0015700757503509521,
-0.010777014307677746,
-0.008938541635870934,
-0.012073548510670662,
0.018974678590893745,
-0.00785466656088829,
-0.0024284296669065952,
0.013843420892953873,
-0.00667475163936615,
0.014707776717841625,
-0.016669727861881256,
-0.027371283620595932,
-0.03210466355085373,
-0.026452045887708664,
-0.006506682373583317,
0.00909632071852684,
0.012780125252902508,
-0.01677948795258999,
0.005525706335902214,
-0.018892358988523483,
0.013603322207927704,
0.021746106445789337,
0.030485710129141808,
0.00976173859089613,
0.009624538943171501,
-0.0035740446764975786,
0.00436294125393033,
0.00032734923297539353,
-0.000583526270929724,
0.01881003938615322,
-0.02029179222881794,
0.012471426278352737,
-0.0022123404778540134,
0.023694338276982307,
0.013198583386838436,
0.01435105875134468,
-0.006966300308704376,
-0.019029557704925537,
0.006784510798752308,
-0.035479769110679626,
-0.016902968287467957,
-0.006328322924673557,
-0.017492925748229027,
0.01913931779563427,
-0.007868385873734951,
0.020003674551844597,
0.015146815218031406,
-0.007978145964443684,
0.01688924804329872,
-0.03435473144054413,
-0.021663786843419075,
0.03183026239275932,
-0.009110040962696075,
-0.004664780106395483,
0.01704016700387001,
-0.021773546934127808,
-0.015352614223957062,
0.009226660244166851,
-0.006129383575171232,
-0.006907990202307701,
-0.015393774025142193,
0.025381891056895256,
-0.01993507519364357,
0.003923903219401836,
-0.012889884412288666,
0.019207917153835297,
-0.0001371994148939848,
-0.009439319372177124,
-0.014886136166751385,
0.012745825573801994,
0.009960677474737167,
-0.001084732823073864,
-0.010379135608673096,
-0.007717466913163662,
-0.026863645762205124,
0.03125402703881264,
-0.012498866766691208,
0.005800105165690184,
-0.010893633589148521,
0.03377849608659744,
0.009919517673552036,
0.00980289839208126,
0.029717393219470978,
0.03059546835720539,
0.010831893421709538,
-0.003455710131675005,
0.03183026239275932,
-0.0010161331156268716,
-0.012752685695886612,
-0.021307067945599556,
0.009693138301372528,
-0.003824433544650674,
0.0018847769824787974,
0.012052968144416809,
0.005570296198129654,
0.009343280456960201,
0.006221993360668421,
-0.02613648772239685,
0.032269302755594254,
0.010667254216969013,
0.0020151163917034864,
0.005889284890145063,
0.0011216051643714309,
-0.013802261091768742,
-0.004023372661322355,
0.014831256121397018,
-0.01624440960586071,
-0.0038724534679204226,
-0.018768880516290665,
0.01747920550405979,
0.00449671084061265,
0.004702509846538305,
-0.027275243774056435,
-0.04190070182085037,
0.006036774255335331,
-0.013891440816223621,
0.01271152589470148,
-0.014255018904805183,
0.001081302878446877,
-0.014378498308360577,
0.02549165114760399,
0.01760268397629261,
-0.0010718704434111714,
-0.02073083072900772,
-0.006901130545884371,
0.0038278636056929827,
-0.019180478528141975,
-0.010735854506492615,
-0.00918550044298172,
-0.006438082549721003,
0.026397166773676872,
-0.016491370275616646,
-0.015750491991639137,
-0.0038312936667352915,
-0.009665698744356632,
0.0029652223456650972,
-0.01612093113362789,
-0.011023973114788532,
-0.000600247411057353,
-0.020099714398384094,
-0.0010169906308874488,
0.005539426114410162,
0.006805090699344873,
0.019592076539993286,
-0.01511937566101551,
0.00781350675970316,
-0.0034917250741273165,
0.008197665214538574,
-0.0031487264204770327,
-0.0004060245119035244,
-0.0017398600466549397,
-0.011065132915973663,
0.026740165427327156,
0.021993065252900124,
0.010735854506492615,
-0.0004767679492942989,
-0.0000855352554935962,
0.00016270992637146264,
0.005337057169526815,
-0.027398722246289253,
0.030348509550094604,
0.006132813636213541,
0.008355444297194481,
0.013836560770869255,
-0.0007421631016768515,
-0.011161171831190586,
-0.0239824578166008,
-0.01960579678416252,
-0.005848125088959932,
-0.007408768404275179,
0.004383521154522896,
-0.013692501001060009,
0.004987198859453201,
0.02090919017791748,
-0.01027623564004898,
0.016820648685097694,
-0.0007678879774175584,
0.01072213426232338,
-0.010091017000377178,
0.025711169466376305,
0.01448825839906931,
0.002848602831363678,
-0.004664780106395483,
0.006060784216970205,
0.019098158925771713,
0.0013136843917891383,
0.009158060885965824,
0.022336063906550407,
0.018768880516290665,
0.022432103753089905,
0.006606151815503836,
-0.017383165657520294,
-0.003236191114410758,
0.002514179330319166,
0.007882106117904186,
-0.008554383181035519,
-0.006547842174768448,
0.010187056846916676,
0.009542219340801239,
-0.006345472764223814,
-0.002855462720617652,
-0.0028434577398002148,
-0.006029914133250713,
-0.005522276274859905,
-0.001848762040026486,
0.00459275022149086,
-0.020428992807865143,
-0.01627185009419918,
-0.03410777449607849,
-0.0014706061920151114,
-0.007319588679820299,
0.007134369574487209,
-0.0015554983401671052,
-0.015585853718221188,
-0.0018058873247355223,
0.017300846055150032,
0.024448934942483902,
-0.002579348860308528,
-0.006842820905148983,
-0.0030441118869930506,
-0.0019139318028464913,
0.02628740668296814,
-0.010125316679477692,
0.006033344194293022,
-0.00772432703524828,
0.014968455769121647,
0.011195472441613674,
-0.01393946073949337,
-0.0006375485099852085,
0.001308539416640997,
0.00022402091417461634,
-0.01430989895015955,
0.010660394094884396,
0.024380335584282875,
0.002016831422224641,
-0.005439956672489643,
0.001632672967389226,
0.006163683719933033,
0.001741575077176094,
0.0028811877127736807,
0.010536914691329002,
-0.01822008192539215,
-0.007532247807830572,
-0.008321144618093967,
-0.0007485942915081978,
-0.00980289839208126,
0.0026119337417185307,
0.0054502468556165695,
-0.00695601012557745,
0.013116263784468174,
-0.001618095557205379,
-0.0018041722942143679,
0.025642570108175278,
0.0010761579032987356,
0.012457706965506077,
0.019646955654025078,
-0.0008322001667693257,
0.01023507583886385,
0.008067325688898563,
-0.00977545790374279,
0.017767323181033134,
-0.0026891084853559732,
0.0026719586458057165,
0.02324158139526844,
-0.02977227233350277,
0.013754241168498993,
0.008437763899564743,
-0.025916969403624535,
-0.016971567645668983,
-0.013713081367313862,
0.014954735524952412,
-0.01190204918384552,
-0.019221637398004532,
0.014227579347789288,
0.00931583996862173,
-0.011456150561571121,
0.010735854506492615,
-0.006853110622614622,
-0.03671456128358841,
-0.017410606145858765,
0.01763012446463108,
0.019948795437812805,
-0.024201976135373116,
0.012395966798067093,
0.00931583996862173,
-0.02595812827348709,
-0.0012502296594902873,
-0.007758626714348793,
-0.004157142248004675,
0.009850917384028435,
0.0008124777814373374,
0.008177084848284721,
-0.004531010519713163,
-0.012855584733188152,
0.004918599035590887,
0.009898937307298183,
0.02985459193587303,
-0.0045721703208982944,
-0.00781350675970316,
-0.020332952961325645,
0.012855584733188152,
-0.004623620305210352,
0.006516972091048956,
0.014062940143048763,
0.010578074492514133,
-0.011126872152090073,
-0.008149645291268826,
0.016916686668992043,
-0.01509193517267704,
-0.04420565068721771,
0.006818810943514109,
0.007367608603090048,
-0.01901583932340145,
0.009727437980473042,
0.0033802504185587168,
0.0015151960542425513,
0.038168877363204956,
-0.029580192640423775,
0.013891440816223621,
0.002956647425889969,
0.02664412558078766,
0.025381891056895256,
-0.012395966798067093,
0.014748936519026756,
-0.0038038536440581083,
0.028070999309420586,
-0.010680974461138248,
-0.0035260249860584736,
-0.001655825413763523,
-0.018302401527762413,
-0.014378498308360577,
-0.02498401328921318,
-0.010036136955022812,
-0.005398796871304512,
-0.0038278636056929827,
-0.006300882901996374,
0.02829051949083805,
-0.0019670964684337378,
-0.03331201896071434,
0.006386632565408945,
-0.000014175486285239458,
0.006976590026170015,
0.00025596265913918614,
0.021361948922276497,
0.005964744370430708,
-0.01550353318452835,
0.00868472270667553,
0.002196905668824911,
0.017122486606240273,
0.0020442712120711803,
0.022130265831947327,
0.02191074565052986,
-0.009898937307298183,
0.005937304813414812,
0.012979064136743546,
0.01072213426232338,
-0.002128305844962597,
-0.009158060885965824,
0.016559969633817673,
0.005827545188367367,
-0.015517253428697586,
-0.0016309580532833934,
-0.023090660572052002,
0.002181470626965165,
-0.017520364373922348,
-0.012224467471241951,
0.009748018346726894,
-0.0015992306871339679,
-0.027192924171686172,
-0.023433659225702286,
0.011332671158015728,
-0.006839390844106674,
0.013294623233377934,
-0.0012699520448222756,
0.004623620305210352,
-0.02200678549706936,
0.0009861207799986005,
-0.012320507317781448,
0.005964744370430708,
-0.01203238870948553,
0.022075384855270386,
0.0003376391832716763,
0.01385028101503849,
0.010111596435308456,
0.012848724611103535,
-0.029086275026202202,
-0.000973258342128247,
0.016875527799129486,
0.004308061674237251,
0.03174794465303421,
0.021993065252900124,
-0.014598017558455467,
0.011984368786215782,
0.019715555012226105,
0.010091017000377178,
0.009329560212790966,
-0.004139992408454418,
0.004030232783406973,
0.021732386201620102,
-0.0003003380843438208,
0.01747920550405979,
0.00037601214717142284,
-0.002497029257938266,
-0.010221356526017189,
-0.012944764457643032,
0.01852191984653473,
0.000445469340775162,
-0.00995381735265255,
0.02761824242770672,
-0.007436207961291075,
-0.015873972326517105,
0.0040370929054915905,
0.00225178524851799,
0.005964744370430708,
0.018412161618471146,
0.013219163753092289,
-0.008746462874114513,
-0.02711060456931591,
-0.024846812710165977,
-0.00400279276072979,
0.011339531280100346,
0.009014001116156578,
0.019070718437433243,
0.010207636281847954,
-0.000026622581572155468,
-0.03871767595410347,
0.00772432703524828,
-0.018508201465010643,
-0.003642644500359893,
-0.023310180753469467,
0.033065058290958405,
0.0029806571546941996,
-0.007600847631692886,
-0.004805409349501133,
0.010667254216969013,
0.02167750708758831,
-0.00304239708930254,
0.018274961039423943,
-0.02625996805727482,
0.014460817910730839,
-0.01544865407049656,
0.014639177359640598,
-0.017383165657520294,
0.0054090870544314384,
0.0075253876857459545,
-0.011017112992703915,
0.010639814659953117,
0.007621427532285452,
0.011305231600999832,
-0.02979971282184124,
-0.0004596180224325508,
0.015544693917036057,
0.01027623564004898,
0.03786703944206238,
0.006359193008393049,
0.0075253876857459545,
-0.004764249548316002,
-0.026740165427327156,
-0.010255656205117702,
-0.0030664068181067705,
0.010392855852842331,
0.0006697046337649226,
0.01734200492501259,
-0.023118101060390472,
-0.0014303039060905576,
-0.011298371478915215,
0.018563080579042435,
-0.015970012173056602,
-0.009089461527764797,
-0.006348902825266123,
0.017794763669371605,
-0.006729631219059229,
-0.005988754332065582,
-0.00391361303627491,
0.03794935718178749,
0.0031452965922653675,
0.007936986163258553,
0.030869867652654648,
-0.0002456727088429034,
-0.01883747987449169,
-0.0026376587338745594,
-0.000058845685998676345,
-0.006263153161853552,
0.004640770144760609,
0.0004088113782927394,
-0.02093663066625595,
-0.022816263139247894,
0.006304312963038683,
0.008520083501935005,
-0.022610463201999664,
-0.009782318025827408,
-0.023076940327882767,
-0.011257211677730083,
0.00020269068772904575,
0.02239094488322735,
0.01144243124872446,
0.000280615669908002,
-0.0009441034635528922,
-0.0018333271145820618,
-0.00831428449600935,
-0.011270931921899319,
0.0014671762473881245,
-0.03833351656794548,
0.005206717643886805,
0.0030715519096702337,
0.00037365403841249645,
-0.021581467241048813,
0.020428992807865143,
0.020044833421707153,
-0.02055247128009796,
0.017671285197138786,
0.0014560287818312645,
-0.0074293483048677444,
-0.004747099708765745,
-0.0038278636056929827,
-0.011538470163941383,
0.012217607349157333,
-0.011243491433560848,
0.00581725500524044,
0.008012445643544197,
-0.004555020481348038,
0.0003640071954578161,
-0.009720578789710999,
-0.01162079069763422,
-0.015325174666941166,
0.009946957230567932,
0.008808202110230923,
-0.02016831375658512,
-0.02749476209282875,
0.032296743243932724,
0.005611455999314785,
-0.014200138859450817,
0.0166285689920187,
0.0032567710150033236,
0.010255656205117702,
-0.010879913344979286,
0.012293067760765553,
-0.003851873567327857,
-0.012107848189771175,
-0.03089730814099312,
-0.002524469280615449,
0.001040143077261746,
0.0034848651848733425,
0.017616404220461845,
0.022761382162570953,
-0.014803816564381123,
0.012965344823896885,
-0.014831256121397018,
-0.010104736313223839,
-0.008190805092453957,
0.014831256121397018,
0.014968455769121647,
0.03951343148946762,
-0.03720847889780998,
0.008760182186961174,
-0.028811877593398094,
-0.022226305678486824,
-0.01295162457972765,
-0.005481116473674774,
-0.00027268382837064564,
-0.0014225863851606846,
-0.003243051003664732,
0.006444942206144333,
0.010070436634123325,
-0.009768597781658173,
-0.020099714398384094,
-0.00022830840316601098,
-0.025025172159075737,
-0.021375669166445732,
0.0031161417718976736,
0.004253181628882885,
0.001043573021888733,
-0.022555584087967873,
-0.009857777506113052,
-0.008149645291268826,
-0.013623901642858982,
0.016436489298939705,
0.009418739937245846,
-0.019770435988903046,
-0.019976234063506126,
0.005096958018839359,
0.00013987909187562764,
-0.027165483683347702,
0.027426162734627724,
0.024846812710165977,
-0.008238825015723705,
0.003810713766142726,
-0.008156505413353443,
0.030348509550094604,
0.0042909118346869946,
0.007587127387523651,
-0.014543137513101101,
-0.003858733456581831,
0.03520536795258522,
-0.004808839410543442,
0.009933237917721272,
0.006215133238583803,
0.004397241398692131,
-0.012279347516596317,
0.01822008192539215,
-0.00015477808483410627,
0.0012279347283765674,
0.002550194039940834,
0.006698761135339737,
0.0057898154482245445,
-0.0012433696538209915,
-0.004510430619120598,
-0.019125597551465034,
-0.024709613993763924,
0.024201976135373116,
0.02406477741897106,
0.0032121811527758837,
-0.0034025453496724367,
0.005120967980474234,
-0.00295321736484766,
-0.011483591049909592,
0.001248514628969133,
-0.01450197771191597,
-0.005614886060357094,
-0.004671640228480101,
-0.016024891287088394,
0.011071993038058281,
-0.0002548907941672951,
0.02052503265440464,
-0.05040706321597099,
0.01765756495296955,
-0.005522276274859905,
-0.015407494269311428,
-0.018851200118660927,
-0.02088174968957901,
-0.006338612642139196,
-0.0041228425689041615,
0.012052968144416809,
-0.02979971282184124,
-0.013308343477547169,
-0.0066507416777312756,
0.00363235455006361,
-0.0036563642788678408,
-0.006938860286027193,
0.004236031789332628,
-0.004212021827697754,
0.0016746902838349342,
-0.01896095834672451,
-0.004966618958860636,
-0.016491370275616646,
0.009576519019901752,
-0.011607070453464985,
0.0012150723487138748,
0.025080053135752678,
-0.04036406800150871,
-0.020017394796013832,
-0.02134822867810726,
0.006050494033843279,
-0.02052503265440464,
-0.0002919775142800063,
-0.011017112992703915,
-0.016724608838558197,
-0.011984368786215782,
-0.017355725169181824,
-0.009933237917721272,
-0.02820819988846779,
-0.015530973672866821,
0.01929023675620556,
-0.00431149173527956,
-0.011360111646354198,
0.005275317467749119,
-0.00959709845483303,
-0.020483871921896935,
-0.008602403104305267,
-0.016436489298939705,
0.00700059998780489,
0.009089461527764797,
-0.03353153541684151,
-0.007532247807830572,
-0.013335783034563065,
-0.006393492687493563,
0.00717552937567234,
0.002248355420306325,
0.02631484717130661,
-0.01544865407049656,
-0.007895826362073421,
-0.014982176013290882,
-0.007367608603090048,
0.0037935636937618256,
0.018453320488333702,
0.0031195716001093388,
-0.008705303072929382,
0.012766405008733273,
0.003769553964957595,
-0.02167750708758831,
-0.011202331632375717,
0.006331752985715866,
-0.008424043655395508,
-0.012279347516596317,
-0.021567746996879578,
0.01144243124872446,
-0.0032087513245642185,
0.025272130966186523,
-0.011600210331380367,
0.004078252706676722,
0.010770154185593128,
0.01435105875134468,
-0.003292785957455635,
-0.004863718990236521,
0.0015126235084608197,
0.0032824960071593523,
-0.0035328848753124475,
0.014172699302434921,
0.007971285842359066,
-0.01013217680156231,
0.010200776159763336,
0.01860423944890499,
0.010550634935498238,
-0.026959683746099472,
-0.006105374079197645,
-0.005470826756209135,
0.0020940059330314398,
-0.034601692110300064,
-0.005614886060357094,
0.0072578489780426025,
0.03473889082670212,
0.006170543376356363,
-0.016820648685097694,
0.0015992306871339679,
0.01975671574473381,
0.007182389032095671,
-0.005278747528791428,
-0.006516972091048956,
0.01109257247298956,
0.01760268397629261,
0.0036940942518413067,
-0.011737409979104996,
-0.023255299776792526,
0.022171424701809883,
-0.00468192994594574,
0.007676307111978531,
0.010091017000377178,
0.013500422239303589,
0.011476730927824974,
0.006167113780975342,
-0.021265909075737,
0.006077934056520462,
-0.01562701351940632,
-0.016518808901309967,
-0.01172368973493576,
-0.0029909471049904823,
0.0226241834461689,
0.007669446989893913,
-0.017945682629942894,
-0.0054502468556165695,
-0.0020905761048197746,
-0.014803816564381123,
-0.004932318814098835,
-0.00744992820546031,
0.020209472626447678,
-0.0023958447854965925,
-0.02531329169869423,
-0.01824752241373062,
-0.02672644518315792,
0.038443274796009064,
0.006582141853868961,
0.014419658109545708,
-0.015970012173056602,
-0.004843139089643955,
-0.00023066651192493737,
-0.01177170965820551,
0.007285289000719786,
-0.007401908282190561,
0.024682173505425453,
-0.0031830263324081898,
-0.013376942835748196,
-0.0058035352267324924,
0.01200494822114706,
0.01565445214509964,
0.011051412671804428,
0.012457706965506077,
-0.023488540202379227,
-0.00005228048030403443,
0.02667156606912613,
0.015023335814476013,
-0.014090379700064659,
0.009988117031753063,
0.011325811967253685,
0.00400279276072979,
-0.002560483990237117,
-0.0009998406749218702,
-0.0027954380493611097,
0.01819264143705368,
0.004510430619120598,
-0.012251907959580421,
0.0010041282512247562,
-0.002423284575343132,
0.00909632071852684,
0.018439600244164467,
-0.0045172907412052155,
0.011833448894321918,
-0.007834086194634438,
0.011195472441613674,
-0.0009149485849775374,
-0.020922910422086716,
0.001994536491110921,
-0.0013625617139041424,
-0.020182034000754356,
-0.008341724053025246,
-0.00973429810255766,
-0.014158979058265686,
0.004054242745041847,
-0.015928851440548897,
0.005491406656801701,
-0.02501145377755165,
0.010022416710853577,
-0.014707776717841625,
0.017438044771552086,
-0.0018384720897302032,
-0.018617959693074226,
-0.001111315214075148,
0.00440753111615777,
-0.004448690917342901,
0.01472149696201086,
-0.027714282274246216,
-0.007285289000719786,
-0.026630405336618423,
0.00035650411155074835,
0.029936911538243294,
-0.00853380374610424,
-0.006201413460075855,
0.008986561559140682,
-0.023845257237553596,
-0.020209472626447678,
-0.004781399387866259,
0.008273124694824219,
-0.0061431038193404675,
-0.006071073934435844,
0.007518528029322624,
-0.013438682071864605,
0.009713718667626381,
0.00782722607254982,
-0.019358837977051735,
-0.012437126599252224,
-0.016079770401120186,
-0.02557397074997425,
0.006757071241736412,
-0.002505604177713394,
0.005230727605521679,
-0.0020820011850446463,
-0.0018350421451032162,
-0.022514423355460167,
-0.008890521712601185,
0.02300834096968174,
-0.004620190244168043,
-0.0005972461658529937,
0.0013368367217481136,
0.008424043655395508,
0.0013917165342718363,
0.009631399065256119,
-0.0020494163036346436,
-0.006842820905148983,
0.01376110129058361,
-0.002877757651731372,
-0.000012842347132391296,
-0.010927933268249035,
-0.005680055823177099,
-0.019070718437433243,
0.031089387834072113,
0.00567662576213479,
0.009699998423457146,
0.004294341430068016,
0.008835642598569393,
-0.017726164311170578,
0.002826307900249958,
-0.001949946628883481,
-0.0035431748256087303,
0.0033476657699793577,
0.0016506804386153817,
-0.004507000558078289,
-0.008869942277669907,
-0.0014071514597162604,
-0.0004090257571078837,
0.023433659225702286,
0.02805727906525135,
-0.00622542342171073,
-0.013898300938308239,
-0.008986561559140682,
0.026150207966566086,
0.012835005298256874,
-0.022912301123142242,
0.002083715982735157,
-0.021485427394509315,
0.022377224639058113,
0.0010838753078132868,
0.001927651697769761,
-0.016107210889458656,
-0.009288400411605835,
-0.005882424768060446,
-0.02598556876182556,
0.008334863930940628,
-0.0034985849633812904,
0.008972841314971447,
0.003388825571164489,
-0.003176166443154216,
0.011360111646354198,
-0.00021083690808154643,
-0.00840346422046423,
0.007930126041173935,
-0.005601165816187859,
-0.006294023245573044,
0.00841718353331089,
-0.0010049856500700116,
0.009706858545541763,
-0.020607352256774902,
-0.011216051876544952,
-0.013479841873049736,
-0.002032266231253743,
-0.001462031272239983,
0.001528915949165821,
-0.014035499654710293,
0.0021094409748911858,
-0.02944299392402172,
0.015133094973862171,
0.016724608838558197,
0.008465203456580639,
-0.013966900296509266,
-0.0037901338655501604,
0.012245047837495804,
0.009370720013976097,
0.021375669166445732,
0.017534084618091583,
-0.0018521921010687947,
0.012821285054087639,
0.0012596620945259929,
0.021951906383037567,
0.00015091935347300023,
-0.008849361911416054,
-0.011250351555645466,
0.015187975019216537,
0.014145259745419025,
-0.005045508500188589,
0.019976234063506126,
0.011106292717158794,
0.006554701831191778,
0.007950706407427788,
-0.007895826362073421,
-0.015750491991639137,
-0.03237906098365784,
-0.008328004740178585,
0.011332671158015728,
0.014927295967936516,
0.0024781643878668547,
-0.015544693917036057,
0.013020223937928677,
-0.010139036923646927,
0.006191123276948929,
-0.0026822485961019993,
-0.0043046316131949425,
-0.002889762632548809,
0.004297771491110325,
0.001375424093566835,
-0.005892714951187372,
0.011936348862946033,
-0.010797593742609024,
-0.0036769441794604063,
0.018357280641794205,
0.01489985641092062,
0.010495754890143871,
0.007985006086528301,
-0.003327085869386792,
0.001654967898502946,
0.009110040962696075,
-0.009034581482410431,
-0.012615486048161983,
-0.0006881408044137061,
-0.0002448151935823262,
-0.01996251381933689,
-0.018096603453159332,
-0.012217607349157333,
-0.00527188740670681,
-0.005319907329976559,
-0.005734935402870178,
0.0024284296669065952,
0.0025964989326894283,
0.010097877122461796,
0.027028284966945648,
0.016738329082727432,
0.01949603669345379,
-0.00007192250632215291,
0.02239094488322735,
0.0027354133781045675,
-0.015338893979787827,
0.009206080809235573,
-0.010934793390333652,
0.0013025369262322783,
0.016793208196759224,
-0.011860889382660389,
-0.016436489298939705,
0.01004299707710743,
0.01736944541335106,
0.0012699520448222756,
0.016902968287467957,
-0.021787267178297043,
0.031528424471616745,
-0.00518270768225193,
0.020991509780287743,
0.01647765003144741,
-0.017643844708800316,
0.023913858458399773,
-0.003886173479259014,
0.008053605444729328,
-0.008273124694824219,
0.01706760749220848,
-0.03641272336244583,
0.011456150561571121,
0.004784829448908567,
0.00980289839208126,
-0.0074842278845608234,
0.005223867483437061,
0.046181321144104004,
-0.0037798439152538776,
-0.02551909163594246,
-0.025080053135752678,
0.0014440238010138273,
0.004874009173363447,
-0.004023372661322355,
0.023502258583903313,
-0.007134369574487209,
0.006729631219059229,
0.0032190412748605013,
0.0022432103287428617,
0.008369164541363716,
-0.0034351302310824394,
0.007964425720274448,
-0.012437126599252224,
-0.025820929557085037,
0.00917178113013506,
0.008842501789331436,
-0.005806965287774801,
0.0058995746076107025,
0.004870579112321138,
0.03240650147199631,
-0.012656645849347115,
0.010241935960948467,
-0.018124042078852654,
-0.005724645685404539,
-0.007497948128730059,
-0.027590801939368248,
-0.01511937566101551,
0.000738304341211915,
0.003848443506285548,
0.013836560770869255,
-0.002184900688007474,
-0.0046373400837183,
0.0004690504865720868,
0.009514778852462769,
0.0017733024433255196,
-0.0006941432948224247,
-0.004445260856300592,
-0.005498266313225031,
0.006204843521118164,
-0.004695649724453688,
0.009308979846537113,
0.022816263139247894,
0.012835005298256874,
-0.008890521712601185,
-0.01677948795258999,
-0.03720847889780998,
0.007031470071524382,
0.006702191196382046,
-0.0008514938526786864,
-0.017849642783403397,
-0.008485783822834492,
-0.013891440816223621,
0.005072948057204485,
0.012690945528447628,
-0.0204701516777277,
-0.0020597062539309263,
0.01639533042907715,
0.0007421631016768515,
-0.023680618032813072,
-0.0027491331566125154,
0.005529136396944523,
0.0305405892431736,
0.0018093172693625093,
-0.016710888594388962,
0.00290862750262022,
0.008890521712601185,
-0.006088223773986101,
-0.003263631137087941,
-0.007758626714348793,
0.02802984043955803,
-0.018590521067380905,
-0.011668809689581394,
0.008465203456580639,
0.002210625447332859,
-0.029497873038053513,
0.005319907329976559,
-0.012334227561950684,
0.0010127031709998846,
0.0074842278845608234,
-0.006873690523207188,
0.019262798130512238,
0.015366334468126297,
0.013027084060013294,
0.003982212860137224,
0.02870211750268936,
-0.02226746454834938,
-0.013191723264753819,
0.016024891287088394,
0.0026633834931999445,
0.016381610184907913,
-0.021567746996879578,
-0.013713081367313862,
0.003467715112492442,
0.010715274140238762,
0.022432103753089905,
0.006980020087212324,
0.006434652488678694,
-0.003680374240502715,
-0.02152658812701702,
-0.01395318005234003,
-0.005601165816187859,
-0.0015640732599422336,
-0.01345240231603384,
-0.002852032892405987,
-0.007655727211385965,
-0.002785148099064827,
-0.005556576419621706,
0.010228216648101807,
-0.021005230024456978,
0.005889284890145063,
0.015764212235808372,
-0.01048203557729721,
-0.004013082943856716,
-0.0049528987146914005,
-0.012375387363135815,
0.010557495057582855,
-0.03295530006289482,
-0.01314370334148407,
-0.010735854506492615,
-0.025889528915286064,
-0.0040370929054915905,
-0.01345240231603384,
-0.012265627272427082,
-0.002632513642311096,
-0.012066688388586044,
-0.005608025938272476,
-0.011915769428014755,
0.0016429629176855087,
0.0014834686880931258,
0.01998995430767536,
0.019454875960946083,
0.008890521712601185,
-0.017712444067001343,
0.006516972091048956,
0.014803816564381123,
0.005498266313225031,
-0.01734200492501259,
0.00973429810255766,
0.015284014865756035,
-0.02106010913848877,
0.0020785711240023375,
-0.01468033716082573,
0.008081045001745224,
0.012190167792141438,
-0.004301201552152634,
0.005927014630287886,
0.0011053127236664295,
0.0015452083898708224,
0.005587446037679911,
0.014556857757270336,
0.019866475835442543,
0.006746781058609486,
-0.004335501231253147,
0.005964744370430708,
-0.010125316679477692,
-0.0014294463908299804,
0.008911102078855038,
0.02088174968957901,
0.0006919995648786426,
-0.007621427532285452,
0.0016446779482066631,
0.008122204802930355,
0.02475077472627163,
0.01413153950124979,
-0.01487241592258215,
0.027563361451029778,
-0.002196905668824911,
-0.007511667907238007,
-0.01076329406350851,
-0.004884298890829086,
-0.013678781688213348,
0.010777014307677746,
-0.03139122575521469,
0.012883025221526623,
0.006331752985715866,
0.013424962759017944,
0.00440753111615777,
0.001263949554413557,
-0.0031675915233790874,
-0.0006984307547099888,
-0.0028537476900964975,
-0.017712444067001343,
-0.027028284966945648,
-0.02933323383331299,
0.0004488993145059794,
-0.008129064925014973,
-0.015105655416846275,
-0.006160253658890724,
-0.013706221245229244,
0.005762375425547361,
-0.004784829448908567,
-0.009837198071181774,
-0.0014414513716474175,
0.017726164311170578,
0.002702828496694565,
0.0035431748256087303,
0.014062940143048763,
0.016697168350219727,
-0.029964352026581764,
0.02014087326824665,
-0.005436526611447334,
0.02265162393450737,
0.0036117746494710445,
-0.02267906256020069,
-0.01304080430418253,
-0.009281540289521217,
0.0017047027358785272,
-0.007504807785153389,
-0.003642644500359893,
-0.009247240610420704,
0.017877083271741867,
-0.005289037246257067,
0.02392757683992386,
0.002371834823861718,
0.00522729754447937,
-0.01450197771191597,
0.010077296756207943,
0.007882106117904186,
0.01688924804329872,
0.013479841873049736,
0.021183589473366737,
-0.01811032183468342,
-0.0023443950340151787,
-0.004654489923268557,
0.018206361681222916,
-0.013623901642858982,
0.012011808343231678,
0.002057991223409772,
0.007607707288116217,
-0.01629929058253765,
-0.0030629769898951054,
-0.016079770401120186,
0.009267820045351982,
-0.0062391432002186775,
0.02359829843044281,
-0.02082687057554722,
-0.005628605838865042,
0.00936385989189148,
0.002651378745213151,
-0.02472333423793316,
-0.013102543540298939,
0.014598017558455467,
-0.005529136396944523,
-0.0035431748256087303,
0.0009826908353716135,
-0.002743988297879696,
-0.0009741158573888242,
-0.0033991155214607716,
-0.014474538154900074,
0.0005625176127068698,
-0.014145259745419025,
-0.0049117389135062695,
-0.0005136402905918658,
0.020621072500944138,
0.028455158695578575,
0.028510037809610367,
-0.008081045001745224,
-0.013253463432192802,
0.0012133573181927204,
-0.014556857757270336,
-0.008019305765628815,
-0.010742713697254658,
0.002057991223409772,
0.007696887012571096,
0.005415946710854769,
0.007806646637618542,
0.017438044771552086,
-0.004853429272770882,
-0.023708058521151543,
0.01665600948035717,
0.003165876492857933,
-0.0027079733554273844,
0.0063660526648163795,
0.001095880288630724,
0.00600247411057353,
-0.012197027914226055,
0.01645020954310894,
0.002718263305723667,
-0.00304239708930254,
0.00363235455006361,
0.010921073146164417,
0.002457584487274289,
0.01698528788983822,
0.018000563606619835,
-0.005573726259171963,
0.005371356848627329,
0.00018253953021485358,
-0.0054571065120399,
-0.009693138301372528,
0.0016395329730585217,
0.02501145377755165,
0.014049219898879528,
0.027961241081357002,
0.0074293483048677444,
0.014598017558455467,
0.015846531838178635,
0.0012579470640048385,
-0.0133495032787323,
0.021169869229197502,
0.004057672806084156,
-0.03976038843393326,
0.018508201465010643,
-0.004342361353337765,
0.0321321040391922,
0.005213577765971422,
-0.00342998537234962,
0.005066088400781155,
-0.01236166711896658,
0.01898839883506298,
0.013150563463568687,
-0.01393946073949337,
-0.009075741283595562,
-0.016162090003490448,
0.016381610184907913,
-0.004994058515876532,
-0.0266990065574646,
0.01618953049182892,
-0.01531145442277193,
-0.020717110484838486,
0.016162090003490448,
0.004695649724453688,
-0.0024027046747505665,
0.00377298379316926,
-0.005649185739457607,
-0.0041880118660628796,
0.013946319930255413,
0.014090379700064659,
-0.01181286945939064,
-0.00146546121686697,
-0.0020528461318463087,
-0.02705572359263897,
-0.005779525265097618,
0.008643562905490398,
0.007353888358920813,
-0.012155868113040924,
-0.013905160129070282,
-0.009830337949097157,
-0.0035500347148627043,
-0.0024815944489091635,
-0.008931681513786316,
-0.007875245995819569,
-0.017383165657520294,
-0.015997450798749924,
-0.000973258342128247,
-0.02282998152077198,
-0.015229134820401669,
0.011264071799814701,
0.01245084684342146,
0.008252544328570366,
-0.03333945572376251,
-0.006945720408111811,
-0.00744992820546031,
0.003224186133593321,
0.03237906098365784,
-0.001517768483608961,
-0.000023674938347539864,
0.004088542424142361,
-0.03858047351241112,
0.0025827789213508368,
0.0024472945369780064,
0.0036940942518413067,
0.0015469234203919768,
0.025711169466376305,
0.009391299448907375,
0.007347028702497482,
-0.022871142253279686,
-0.012368527241051197,
-0.004472700878977776,
0.00018886355974245816,
0.02587580867111683,
0.004129702225327492,
-0.005611455999314785,
0.01665600948035717,
-0.01975671574473381,
0.005484546534717083,
0.0020597062539309263,
-0.0002836169151123613,
-0.004458981100469828,
0.004294341430068016,
-0.010598654858767986,
-0.007017749827355146,
-0.004023372661322355,
-0.011655090376734734,
-0.004277191590517759,
-0.00613624369725585,
-0.008252544328570366,
-0.0046990797854959965,
-0.0019928214605897665,
0.008321144618093967,
-0.010639814659953117,
0.003519164863973856,
0.004568740259855986,
-0.0020614212844520807,
0.011778569780290127,
-0.005357637070119381,
-0.02111499011516571,
0.01793196238577366,
-0.01937255635857582,
0.00949419941753149,
-0.007189249154180288,
-0.004990628454834223,
-0.018151482567191124,
-0.015901412814855576,
-0.009514778852462769,
0.02185586653649807,
-0.018316121771931648,
-0.002222630428150296,
0.001689267810434103,
-0.012347946874797344,
0.02820819988846779,
0.0021831856574863195,
0.004579030442982912,
0.00976173859089613,
-0.01801428198814392,
-0.01135325152426958,
0.0070589096285402775,
0.019660675898194313,
0.018096603453159332,
-0.015338893979787827,
0.001338551752269268,
-0.006980020087212324,
-0.0023443950340151787,
0.022788822650909424,
0.005553146358579397,
-0.032708339393138885,
0.0016309580532833934,
-0.02711060456931591,
-0.025916969403624535,
0.02282998152077198,
0.021265909075737,
0.01870027929544449,
0.005453676450997591,
0.0013359793229028583,
-0.003500299993902445,
-0.001756152487359941,
-0.0031898864544928074,
0.005542856175452471,
0.005230727605521679,
-0.010317395441234112,
-0.002502174349501729,
-0.005848125088959932,
0.01795940287411213,
-0.015160535462200642,
0.04719659686088562,
0.009603958576917648,
0.02357085980474949,
0.02103267051279545,
0.0012931044911965728,
0.002629083814099431,
0.00035564659629017115,
-0.0018298971699550748,
-0.007477367762476206,
0.022432103753089905,
-0.0001985104026971385,
0.006043633911758661,
0.0014200139557942748,
-0.006088223773986101,
-0.008424043655395508,
0.006005904171615839,
-0.003941053058952093,
-0.019619515165686607,
-0.005203287582844496,
-0.013253463432192802,
-0.006167113780975342,
-0.014474538154900074,
0.023762937635183334,
-0.013370082713663578,
0.004170862026512623,
0.013418102636933327,
0.01489985641092062,
-0.008183944970369339,
0.008369164541363716,
-0.022130265831947327,
0.03646760433912277,
-0.0003369960468262434,
-0.005120967980474234,
0.004575600381940603,
-0.00931583996862173,
-0.007367608603090048,
0.011168031953275204,
0.020209472626447678,
0.009837198071181774,
-0.011174892075359821,
-0.009878357872366905,
-0.011511030606925488,
-0.004479561001062393,
-0.01677948795258999,
0.013164283707737923,
-0.010228216648101807,
0.013308343477547169,
0.010921073146164417,
0.010036136955022812,
0.025532810017466545,
0.02114242874085903,
-0.008760182186961174,
-0.018316121771931648,
-0.009418739937245846,
-0.009151200763881207,
0.006894270423799753,
0.009322700090706348,
-0.0009483909234404564,
0.004688790068030357,
-0.004582460504025221,
-0.011655090376734734,
-0.019070718437433243,
-0.016614848747849464,
0.013390663079917431,
-0.03139122575521469,
-0.013342643156647682,
0.012512586079537868,
0.019331397488713264,
-0.01996251381933689,
0.013527861796319485,
-0.000035720080632017925,
0.002733698347583413,
-0.015256574377417564,
-0.00016817646974232048,
-0.005127828102558851,
-0.004338931292295456,
0.010283095762133598,
0.0007863241480663419,
-0.003971923142671585,
-0.002718263305723667,
0.0003204892564099282,
-0.009075741283595562,
0.004527580458670855,
-0.007278428878635168,
0.00234096497297287,
-0.0074293483048677444,
-0.003917043097317219,
-0.0034317004028707743,
0.009446179494261742,
0.014213859103620052,
-0.0017115626251325011,
0.005141547881066799,
-0.024709613993763924,
-0.005028358660638332,
0.012876165099442005,
-0.00649639219045639,
-0.0017767323879525065,
-0.01612093113362789,
0.017534084618091583,
0.01507821585983038,
-0.002435289556160569,
-0.005975034553557634,
-0.02155402861535549,
0.011970648542046547,
0.02480565384030342,
-0.0006714196060784161,
-0.007559687830507755,
0.0018024572636932135,
-0.002797153079882264,
0.021993065252900124,
0.0008433476323261857,
-0.0025930688716471195,
-0.012197027914226055,
0.0018933519022539258,
0.0038038536440581083,
0.0008815062465146184,
-0.013582741841673851,
-0.01721852645277977,
0.01660112850368023,
0.0014568862970918417,
-0.007806646637618542,
-0.008307424373924732,
0.007786066737025976,
0.011545330286026001,
0.011216051876544952,
-0.012107848189771175,
0.020922910422086716,
0.028866756707429886,
0.014639177359640598,
-0.0074842278845608234,
0.010036136955022812,
-0.01548981387168169,
0.02277510240674019,
0.010475175455212593,
0.019043277949094772,
0.018713999539613724,
-0.028372839093208313,
-0.003941053058952093,
-0.0051106782630085945,
0.0015409209299832582,
-0.006125953979790211,
0.03440961241722107,
-0.01898839883506298,
-0.00663702143356204,
0.014433378353714943,
0.010392855852842331,
0.015105655416846275,
-0.0034471352118998766,
-0.0017887373687699437,
-0.015942571684718132,
0.001905356883071363,
-0.014419658109545708,
0.023680618032813072,
0.012107848189771175,
0.0031830263324081898,
0.00170384522061795,
-0.010070436634123325,
0.011613930575549603,
-0.009398159570991993,
0.005340487230569124,
-0.00422231201082468,
0.01863167993724346,
-0.002467874437570572,
0.011881468817591667,
0.00004287481715437025,
0.010694693773984909,
0.008218244649469852,
-0.02285742200911045,
0.005223867483437061,
-0.002382124774158001,
-0.005515416618436575,
-0.012855584733188152,
0.0031933162827044725,
-0.027782881632447243,
0.011250351555645466,
-0.003397400490939617,
0.007834086194634438,
-0.020223192870616913,
0.005978464614599943,
0.0019207918085157871,
0.01221074815839529,
0.023200420662760735,
-0.008972841314971447,
0.006472382228821516,
0.05262969434261322,
-0.0011696249712258577,
-0.013397522270679474,
-0.004764249548316002,
0.0036700842902064323,
0.005957884714007378,
-0.004891159012913704,
-0.01813776232302189,
0.018686560913920403,
0.022349784150719643,
-0.00744992820546031,
0.011984368786215782,
0.01081131398677826,
-0.007559687830507755,
0.024448934942483902,
-0.011126872152090073,
0.002647948684170842,
-0.01023507583886385,
-0.0070589096285402775,
0.023131821304559708
] | 189 |
CVE-2019-17453 | 2019-10-10T17:15:17.843000 | Bento4 1.5.1.0 has a NULL pointer dereference in AP4_DescriptorListWriter::Action in Core/Ap4Descriptor.h, related to AP4_IodsAtom::WriteFields in Core/Ap4IodsAtom.cpp, as demonstrated by mp4encrypt or mp4compact. | {
"cvssMetricV2": [
{
"acInsufInfo": false,
"baseSeverity": "MEDIUM",
"cvssData": {
"accessComplexity": "MEDIUM",
"accessVector": "NETWORK",
"authentication": "NONE",
"availabilityImpact": "PARTIAL",
"baseScore": 4.3,
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P",
"version": "2.0"
},
"exploitabilityScore": 8.6,
"impactScore": 2.9,
"obtainAllPrivilege": false,
"obtainOtherPrivilege": false,
"obtainUserPrivilege": false,
"source": "nvd@nist.gov",
"type": "Primary",
"userInteractionRequired": true
}
],
"cvssMetricV30": null,
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"exploitabilityScore": 2.8,
"impactScore": 3.6,
"source": "nvd@nist.gov",
"type": "Primary"
}
]
} | [
{
"source": "cve@mitre.org",
"tags": [
"Exploit",
"Third Party Advisory"
],
"url": "https://github.com/axiomatic-systems/Bento4/issues/436"
},
{
"source": "cve@mitre.org",
"tags": [
"Exploit",
"Third Party Advisory"
],
"url": "https://github.com/axiomatic-systems/Bento4/issues/437"
}
] | [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:a:axiosys:bento4:1.5.1.0:*:*:*:*:*:*:*",
"matchCriteriaId": "83B32974-D913-4DDB-844F-C58D55ECC17E",
"versionEndExcluding": null,
"versionEndIncluding": null,
"versionStartExcluding": null,
"versionStartIncluding": null,
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
],
"operator": null
}
] | https://github.com/axiomatic-systems/Bento4/issues/436 | [
"Exploit",
"Third Party Advisory"
] | github.com | [
"axiomatic-systems",
"Bento4"
] | **System Details**
Commit ID: bc1b02a
Test Machine : Ubuntu 16.04.3 LTS
MP4 Compacter - Version 1.0
(Bento4 Version 1.5.1.0)
**Command**
mp4compact POC /dev/null
**ASAN Output**
```
ASAN:DEADLYSIGNAL
=================================================================
==5286==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x000000544c94 bp 0x7ffd515e2390 sp 0x7ffd515e22b0 T0)
#0 0x544c93 in AP4_DescriptorListWriter::Action(AP4_Descriptor*) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Descriptor.h:108:16
#1 0x698656 in AP4_List<AP4_Descriptor>::Apply(AP4_List<AP4_Descriptor>::Item::Operator const&) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4List.h:353:9
#2 0x698656 in AP4_InitialObjectDescriptor::WriteFields(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4ObjectDescriptor.cpp:300
#3 0x5974e8 in AP4_Expandable::Write(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Expandable.cpp:105:5
#4 0x585e34 in AP4_IodsAtom::WriteFields(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4IodsAtom.cpp:99:36
#5 0x536b11 in AP4_Atom::Write(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Atom.cpp:229:14
#6 0x53c322 in AP4_AtomListWriter::Action(AP4_Atom*) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Atom.cpp:753:5
#7 0x54dbfe in AP4_List<AP4_Atom>::Apply(AP4_List<AP4_Atom>::Item::Operator const&) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4List.h:353:9
#8 0x54dbfe in AP4_Processor::Process(AP4_ByteStream&, AP4_ByteStream&, AP4_ByteStream*, AP4_Processor::ProgressListener*, AP4_AtomFactory&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Processor.cpp:644
#9 0x5262cf in main /home/fuzzer/victim/Bento4/Source/C++/Apps/Mp4Compact/Mp4Compact.cpp:220:14
#10 0x7f91a991a82f in __libc_start_main /build/glibc-LK5gWL/glibc-2.23/csu/../csu/libc-start.c:291
#11 0x4509e8 in _start (/home/fuzzer/victim/Bento4/mp4compact+0x4509e8)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Descriptor.h:108:16 in AP4_DescriptorListWriter::Action(AP4_Descriptor*) const
==5286==ABORTING
``` | SEGV in mp4compact | https://api.github.com/repos/axiomatic-systems/Bento4/issues/436/comments | 0 | 2019-09-30T07:47:11 | 2019-10-08T05:14:45Z | https://github.com/axiomatic-systems/Bento4/issues/436 | 500,109,805 | 436 | true | This is a GitHub Issue
repo:Bento4
owner:axiomatic-systems
Title : SEGV in mp4compact
Issue date:
--- start body ---
**System Details**
Commit ID: bc1b02a
Test Machine : Ubuntu 16.04.3 LTS
MP4 Compacter - Version 1.0
(Bento4 Version 1.5.1.0)
**Command**
mp4compact POC /dev/null
**ASAN Output**
```
ASAN:DEADLYSIGNAL
=================================================================
==5286==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x000000544c94 bp 0x7ffd515e2390 sp 0x7ffd515e22b0 T0)
#0 0x544c93 in AP4_DescriptorListWriter::Action(AP4_Descriptor*) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Descriptor.h:108:16
#1 0x698656 in AP4_List<AP4_Descriptor>::Apply(AP4_List<AP4_Descriptor>::Item::Operator const&) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4List.h:353:9
#2 0x698656 in AP4_InitialObjectDescriptor::WriteFields(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4ObjectDescriptor.cpp:300
#3 0x5974e8 in AP4_Expandable::Write(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Expandable.cpp:105:5
#4 0x585e34 in AP4_IodsAtom::WriteFields(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4IodsAtom.cpp:99:36
#5 0x536b11 in AP4_Atom::Write(AP4_ByteStream&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Atom.cpp:229:14
#6 0x53c322 in AP4_AtomListWriter::Action(AP4_Atom*) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Atom.cpp:753:5
#7 0x54dbfe in AP4_List<AP4_Atom>::Apply(AP4_List<AP4_Atom>::Item::Operator const&) const /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4List.h:353:9
#8 0x54dbfe in AP4_Processor::Process(AP4_ByteStream&, AP4_ByteStream&, AP4_ByteStream*, AP4_Processor::ProgressListener*, AP4_AtomFactory&) /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Processor.cpp:644
#9 0x5262cf in main /home/fuzzer/victim/Bento4/Source/C++/Apps/Mp4Compact/Mp4Compact.cpp:220:14
#10 0x7f91a991a82f in __libc_start_main /build/glibc-LK5gWL/glibc-2.23/csu/../csu/libc-start.c:291
#11 0x4509e8 in _start (/home/fuzzer/victim/Bento4/mp4compact+0x4509e8)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV /home/fuzzer/victim/Bento4/Source/C++/Core/Ap4Descriptor.h:108:16 in AP4_DescriptorListWriter::Action(AP4_Descriptor*) const
==5286==ABORTING
```
--- end body ---
| 2,378 | [
-0.011965548619627953,
0.04515301063656807,
-0.0026640277355909348,
-0.005301716271787882,
0.03293159604072571,
0.00030078491545282304,
-0.0481933169066906,
0.05526728555560112,
-0.02752828598022461,
0.029590273275971413,
-0.03549026697874069,
-0.001637737383134663,
0.013734040781855583,
0.012364399619400501,
0.028581857681274414,
-0.008977923542261124,
-0.035189248621463776,
0.0031964569352567196,
-0.017398960888385773,
-0.01608952321112156,
0.04437036067247391,
-0.04196219891309738,
-0.014223198406398296,
0.04744076356291771,
-0.024006351828575134,
0.01622498221695423,
-0.03786832466721535,
0.013884550891816616,
-0.0021918024867773056,
0.029439764097332954,
-0.021613242104649544,
0.011498967185616493,
-0.007175566162914038,
0.012093481607735157,
0.04816321283578873,
0.007596994284540415,
0.05647136643528938,
0.03853056952357292,
0.00221626041457057,
0.04421985149383545,
0.00772116519510746,
-0.047350458800792694,
-0.03217904642224312,
0.008473715744912624,
-0.00046328871394507587,
0.028912978246808052,
0.02487931028008461,
-0.009105857461690903,
-0.03371424973011017,
0.008330730721354485,
0.017173195257782936,
-0.0023592449724674225,
-0.03260047361254692,
-0.06080605834722519,
0.0254211463034153,
-0.02566196210682392,
0.022079823538661003,
0.02280227094888687,
-0.0014129129704087973,
0.021778803318738937,
-0.03335302323102951,
-0.0033808317966759205,
0.0008367417613044381,
0.01290623564273119,
0.02716706320643425,
0.000949153967667371,
-0.005290427710860968,
-0.004917915444821119,
-0.01181503850966692,
0.02295278199017048,
-0.016827022656798363,
-0.04015607759356499,
-0.0008851871825754642,
0.02095099724829197,
0.005602736491709948,
-0.010731365531682968,
0.057073406875133514,
0.021854057908058167,
-0.03828975558280945,
0.022787220776081085,
-0.033082105219364166,
0.01794079691171646,
-0.04900607094168663,
0.02773900143802166,
0.01283098105341196,
-0.010023968294262886,
-0.029153794050216675,
-0.06911420822143555,
-0.020710181444883347,
-0.033804554492235184,
-0.009835830889642239,
0.016811972483992577,
0.042624443769454956,
0.018934162333607674,
0.03482802212238312,
0.02269691415131092,
-0.026549970731139183,
-0.01773008331656456,
-0.05611014366149902,
-0.03178771957755089,
-0.02441272884607315,
-0.029725732281804085,
0.004285773262381554,
-0.014087739400565624,
-0.0021372425835579634,
0.013576005585491657,
0.019295386970043182,
-0.022546404972672462,
0.005749483592808247,
0.13401414453983307,
0.007284685969352722,
-0.007939404807984829,
-0.0004726955958176404,
-0.011288252659142017,
-0.0011466983705759048,
0.003354492597281933,
0.014471540227532387,
-0.03868107870221138,
-0.03618261218070984,
-0.03868107870221138,
-0.009068230167031288,
-0.02048441581428051,
-0.0028559279162436724,
0.01383187249302864,
-0.018572939559817314,
0.05294943228363991,
0.0012915643164888024,
0.003939600195735693,
-0.003303695470094681,
-0.0001648555335123092,
-0.04485199227929115,
-0.021402528509497643,
0.00567422853782773,
-0.02144768089056015,
-0.03636322543025017,
-0.011521543376147747,
-0.01454679574817419,
0.02337420918047428,
0.024999717250466347,
0.006404202431440353,
-0.06447850167751312,
-0.0185879897326231,
0.02763364277780056,
0.006900885608047247,
-0.02412675879895687,
-0.008752158842980862,
-0.013523327186703682,
0.016526002436876297,
-0.0022388368379324675,
0.010475498624145985,
-0.012206364423036575,
-0.00888009276241064,
0.013237358070909977,
0.011935446411371231,
0.03512904420495033,
0.01637549325823784,
0.004455097019672394,
0.02823568321764469,
0.01941579580307007,
-0.015622942708432674,
0.0076233334839344025,
-0.02198951691389084,
0.02469869703054428,
-0.02888287603855133,
-0.0024307372514158487,
-0.00731102516874671,
0.02548135071992874,
0.014840289950370789,
0.01256758812814951,
0.017880592495203018,
-0.011152793653309345,
-0.002886030124500394,
0.012846032157540321,
0.010219631716609001,
-0.05394279956817627,
-0.014486591331660748,
0.026248950511217117,
0.034767817705869675,
-0.04021628201007843,
-0.01192039530724287,
0.0076120453886687756,
0.008571546524763107,
0.012650368735194206,
-0.002061987528577447,
0.028446396812796593,
-0.01819666475057602,
0.03627292066812515,
-0.05827748775482178,
0.0367545522749424,
-0.004684625193476677,
0.006897122599184513,
0.015239141881465912,
-0.007089023012667894,
-0.012665419839322567,
0.04271474853157997,
-0.017037736251950264,
-0.04190199449658394,
-0.030628792941570282,
-0.018437480553984642,
0.023103291168808937,
-0.007228244561702013,
-0.00018084721523337066,
-0.012733149342238903,
0.005715618841350079,
-0.007548078428953886,
0.006464406382292509,
-0.013523327186703682,
0.036513734608888626,
0.018919112160801888,
-0.0210262518376112,
-0.019972681999206543,
-0.01855788752436638,
0.02284742332994938,
0.027197163552045822,
-0.0053619202226400375,
-0.0005093824001960456,
-0.023118343204259872,
0.024533135816454887,
-0.008052287623286247,
0.006788002792745829,
0.02856680564582348,
-0.002349837915971875,
-0.002030004281550646,
-0.014411336742341518,
-0.0394035279750824,
0.0073034996166825294,
0.02090584486722946,
0.011634426191449165,
-0.0036103595048189163,
-0.01034756563603878,
0.02217012830078602,
0.023028036579489708,
-0.017895644530653954,
0.0031607109121978283,
0.01773008331656456,
0.004917915444821119,
0.009941188618540764,
-0.02217012830078602,
0.02147778309881687,
0.01637549325823784,
-0.005523718427866697,
0.022787220776081085,
-0.039584141224622726,
-0.0005136154941283166,
0.028295887634158134,
0.059933099895715714,
-0.026068339124321938,
0.002334787044674158,
-0.015156361274421215,
0.004383604973554611,
-0.002735520014539361,
-0.005963960196822882,
0.010618483647704124,
-0.0002341136714676395,
0.011559171602129936,
-0.015833655372262,
0.049457598477602005,
0.008165169507265091,
-0.02217012830078602,
-0.025436196476221085,
0.030749201774597168,
-0.007574417628347874,
-0.009587489999830723,
-0.005429649725556374,
0.004379841964691877,
-0.027588490396738052,
-0.009482132270932198,
0.0068933600559830666,
-0.024006351828575134,
-0.00369502161629498,
0.014644626528024673,
-0.008360832929611206,
-0.027031604200601578,
-0.027227265760302544,
-0.029515018686652184,
0.0039697024039924145,
0.03949383646249771,
0.028040019795298576,
-0.010287361219525337,
0.0018569176318123937,
-0.016315288841724396,
0.0020751571282744408,
-0.011197946965694427,
0.006106944754719734,
0.02012319304049015,
0.005030798260122538,
0.018166562542319298,
-0.024713749065995216,
-0.0428953617811203,
0.0002979628334287554,
0.024066556245088577,
0.03260047361254692,
-0.04632699117064476,
0.012642843648791313,
-0.0023761773481965065,
0.011130217462778091,
-0.010949605144560337,
0.02794971503317356,
0.008285577408969402,
0.0006782358977943659,
-0.01544233039021492,
-0.021748701110482216,
0.02953007072210312,
0.005922569893300533,
-0.028551755473017693,
0.018422428518533707,
-0.03275098651647568,
0.005185070913285017,
-0.003710072487592697,
0.008217847906053066,
0.049457598477602005,
-0.03038797713816166,
-0.005775822792202234,
0.01147639099508524,
-0.02194436453282833,
-0.01894921436905861,
0.006712747737765312,
-0.045062705874443054,
-0.020966049283742905,
0.010249733924865723,
-0.04723004996776581,
-0.001309437328018248,
-0.051384128630161285,
-0.0020864454563707113,
0.0026565021835267544,
-0.017715031281113625,
-0.012748200446367264,
0.029213998466730118,
-0.0813356265425682,
0.026218848302960396,
0.01099475845694542,
-0.0066976966336369514,
0.021899210289120674,
-0.01679692044854164,
0.02466859482228756,
-0.014117841608822346,
-0.028461448848247528,
-0.0030986254569143057,
0.02630915492773056,
0.008112491108477116,
-0.011340931989252567,
0.025466298684477806,
-0.0022689388133585453,
-0.007630859035998583,
-0.01102486066520214,
0.01572829857468605,
-0.0070062424056231976,
0.010317463427782059,
0.012620266526937485,
0.0018221121281385422,
0.0009707897552289069,
0.0215530376881361,
0.02284742332994938,
-0.007627096492797136,
0.025120126083493233,
-0.031938232481479645,
-0.0189040619879961,
-0.032871391624212265,
0.025586707517504692,
-0.02680583856999874,
0.015088631771504879,
-0.0347377173602581,
-0.017037736251950264,
-0.002364889020100236,
0.0047674053348600864,
0.0041503142565488815,
-0.005117341410368681,
0.00573819549754262,
-0.015096156857907772,
-0.015592840500175953,
-0.007811471354216337,
0.04801270365715027,
-0.026971399784088135,
0.017143093049526215,
-0.01580355502665043,
-0.021763751283288002,
0.015562738291919231,
0.02469869703054428,
-0.015359549783170223,
0.015683146193623543,
-0.012319247238337994,
0.015562738291919231,
0.028115276247262955,
-0.05451473593711853,
0.012868608348071575,
0.028536703437566757,
-0.051203515380620956,
0.06303360313177109,
-0.03988515958189964,
-0.01773008331656456,
-0.012183788232505322,
0.022546404972672462,
-0.037446897476911545,
-0.05924075096845627,
0.021793853491544724,
0.015863757580518723,
-0.01658620685338974,
0.013448072597384453,
0.025315789505839348,
-0.027874460443854332,
0.03248006850481033,
0.00328488158993423,
0.02877751924097538,
0.009933662600815296,
0.0025266872253268957,
0.04753107205033302,
0.004951780196279287,
-0.028973182663321495,
0.03886169195175171,
0.003335678717121482,
0.03681475669145584,
-0.009391826577484608,
-0.01851273514330387,
0.008752158842980862,
0.03874128311872482,
0.03241986408829689,
-0.004590556025505066,
-0.0027618592139333487,
-0.03521934896707535,
0.04133005812764168,
-0.013192204758524895,
-0.0018578582676127553,
0.007766318041831255,
0.00303842150606215,
0.03642342984676361,
0.02680583856999874,
-0.013380343094468117,
0.0006264980183914304,
-0.0006801172276027501,
-0.0318780280649662,
-0.010791569948196411,
-0.019491050392389297,
-0.007397568318992853,
0.00027703255182132125,
0.007555603981018066,
-0.03260047361254692,
-0.016932379454374313,
-0.044550973922014236,
-0.015743350610136986,
-0.004526589531451464,
-0.018994366750121117,
0.03567088022828102,
-0.028009919449687004,
0.0025041108019649982,
0.027603542432188988,
-0.04142036288976669,
-0.02641451172530651,
-0.024397676810622215,
0.022079823538661003,
-0.010377666912972927,
-0.014140418730676174,
0.03455710411071777,
0.0199124775826931,
-0.0068594953045248985,
0.00988098420202732,
-0.009730474092066288,
0.01809130609035492,
0.01715814508497715,
0.034797921776771545,
0.005316767375916243,
-0.0035256976261734962,
0.014185571111738682,
0.018467582762241364,
-0.00033582551986910403,
0.0022896339651197195,
0.022546404972672462,
-0.01099475845694542,
0.006784240249544382,
-0.007818996906280518,
0.0032096265349537134,
0.007766318041831255,
0.0014637100975960493,
0.02105635404586792,
-0.016887227073311806,
-0.02230558730661869,
0.020499467849731445,
-0.015683146193623543,
-0.016721665859222412,
-0.00909833237528801,
-0.06405707448720932,
-0.014042587019503117,
-0.018317071720957756,
-0.029590273275971413,
0.010964656248688698,
-0.0056817540898919106,
-0.018362224102020264,
-0.018166562542319298,
-0.001718636485747993,
-0.0105131259188056,
0.013530852273106575,
0.012770776636898518,
0.006566000636667013,
-0.01894921436905861,
-0.030944865196943283,
0.024472933262586594,
0.0023931097239255905,
-0.018031103536486626,
-0.013184679672122002,
0.018527785316109657,
0.03338312730193138,
0.006509559229016304,
-0.03142649680376053,
0.03425608575344086,
0.012868608348071575,
0.018889009952545166,
-0.05066167935729027,
-0.030794354155659676,
0.019355591386556625,
-0.025571655482053757,
-0.028220633044838905,
-0.010949605144560337,
-0.028732366859912872,
-0.01077651884406805,
-0.023569872602820396,
-0.0343162901699543,
-0.018106358125805855,
0.015668096020817757,
-0.010942080058157444,
0.0076120453886687756,
0.018542837351560593,
-0.011310829780995846,
-0.019867325201630592,
-0.0030910999048501253,
0.027212215587496758,
0.026911195367574692,
0.010483024641871452,
0.0269563477486372,
-0.00827805232256651,
0.022862475365400314,
-0.021899210289120674,
0.004297061823308468,
-0.010535703040659428,
-0.007916827686131,
0.03702547028660774,
-0.013056745752692223,
-0.0065057966858148575,
-0.014667203649878502,
0.012424604035913944,
0.005034560803323984,
-0.012003175914287567,
0.0010460447520017624,
0.06020401790738106,
-0.027513235807418823,
-0.00830815453082323,
-0.05303973704576492,
0.038410160690546036,
0.002199328038841486,
0.04060760885477066,
-0.010377666912972927,
0.003100506728515029,
0.01776018552482128,
-0.01045292243361473,
0.006182199809700251,
0.010054070502519608,
0.00018484515021555126,
0.02817547880113125,
-0.017037736251950264,
0.018001001328229904,
0.01712804287672043,
0.011792461387813091,
-0.024503035470843315,
-0.0013357766438275576,
-0.004560454282909632,
-0.019867325201630592,
-0.003924549091607332,
0.013380343094468117,
0.010731365531682968,
0.011807512491941452,
-0.020394111052155495,
-0.0006989309913478792,
0.011679579503834248,
-0.006024164613336325,
0.025541553273797035,
-0.03335302323102951,
-0.014080214314162731,
0.015848707407712936,
-0.013214781880378723,
0.008759683929383755,
0.0014477184740826488,
-0.0367545522749424,
0.047350458800792694,
-0.02680583856999874,
-0.00573819549754262,
0.020002784207463264,
0.02599308453500271,
-0.0052603259682655334,
-0.004473911132663488,
-0.013132001273334026,
0.006163386162370443,
-0.02040916122496128,
0.004285773262381554,
0.008646802045404911,
-0.00861669983714819,
-0.01340291928499937,
-0.0026226374320685863,
-0.02027370221912861,
0.015607891604304314,
-0.005399547517299652,
0.016390543431043625,
-0.003188931383192539,
-0.019024468958377838,
0.03130608797073364,
-0.0035501555539667606,
-0.036303021013736725,
-0.030613742768764496,
0.02048441581428051,
0.031215783208608627,
0.012943863868713379,
-0.02048441581428051,
0.05755503848195076,
0.013425495475530624,
0.02141757868230343,
0.05285912752151489,
-0.004880288150161505,
0.008947822265326977,
0.006016639061272144,
0.029575223103165627,
-0.013274985365569592,
0.009948713704943657,
0.005324292927980423,
-0.003555799601599574,
-0.04789229482412338,
0.012748200446367264,
-0.002165463287383318,
-0.014132892712950706,
0.02498466707766056,
-0.020785436034202576,
-0.0015032190131023526,
0.006460643373429775,
-0.020634926855564117,
-0.024999717250466347,
0.055929530411958694,
0.0062536923214793205,
-0.030688997358083725,
-0.0459657646715641,
0.01569819636642933,
0.04006577283143997,
-0.003557681106030941,
-0.011634426191449165,
-0.03425608575344086,
0.007901777513325214,
-0.017564522102475166,
-0.020032886415719986,
-0.009068230167031288,
-0.024999717250466347,
0.000016094580132630654,
0.009105857461690903,
-0.019190030172467232,
0.007566892076283693,
0.008556495420634747,
-0.035189248621463776,
-0.0004522356321103871,
-0.003980990499258041,
0.009602540172636509,
0.02095099724829197,
-0.027001501992344856,
0.024156861007213593,
0.06345503032207489,
-0.00641549052670598,
-0.02209487371146679,
-0.00954233668744564,
-0.015171412378549576,
-0.005132392514497042,
0.025511451065540314,
0.00007460829510819167,
-0.003339441493153572,
-0.04343719780445099,
-0.025105074048042297,
-0.007894251495599747,
-0.0071191247552633286,
0.0029763360507786274,
-0.03603210300207138,
0.0049254409968853,
-0.007160515058785677,
-0.005324292927980423,
-0.023931097239255905,
0.013004067353904247,
0.020288754254579544,
-0.012176262214779854,
0.008263001218438148,
0.021327272057533264,
-0.01068621315062046,
0.002530450001358986,
0.02641451172530651,
-0.014358658343553543,
0.004631946329027414,
-0.0007064564852043986,
0.004684625193476677,
-0.019867325201630592,
-0.034436699002981186,
0.020288754254579544,
-0.014877917245030403,
0.021899210289120674,
0.016751768067479134,
0.017925746738910675,
-0.03904230520129204,
0.024608392268419266,
-0.0032058637589216232,
-0.015713248401880264,
-0.012800878845155239,
0.005237749312072992,
0.004733540583401918,
0.002449550898745656,
-0.011047436855733395,
0.019686713814735413,
0.020499467849731445,
-0.012913761660456657,
-0.00048727626563049853,
0.0428953617811203,
-0.00567422853782773,
-0.029966549947857857,
0.013222306966781616,
-0.026038236916065216,
0.019114775583148003,
0.009324097074568272,
-0.009339148178696632,
0.0029895056504756212,
-0.00017532067431602627,
-0.008232899010181427,
0.015592840500175953,
-0.00995623879134655,
-0.007879200391471386,
-0.02391604520380497,
-0.017007634043693542,
0.0006998716853559017,
-0.005832264199852943,
0.00739004323258996,
-0.016179829835891724,
0.01572829857468605,
0.007931878790259361,
-0.0019086555112153292,
-0.02402140200138092,
-0.006675120443105698,
0.015254192985594273,
-0.026896145194768906,
-0.00584355229511857,
-0.0055688717402517796,
-0.027483133599162102,
0.00345420534722507,
0.006058029364794493,
0.021071406081318855,
-0.008947822265326977,
-0.0022049720864742994,
-0.0341055765748024,
-0.009113382548093796,
0.00013381283497437835,
0.02384079061448574,
0.006867020390927792,
-0.004646997433155775,
0.018497683107852936,
0.021462731063365936,
0.009835830889642239,
0.009030602872371674,
-0.03949383646249771,
-0.022681863978505135,
-0.014847815968096256,
0.03085455857217312,
0.005764534696936607,
0.014561846852302551,
0.0037157165352255106,
-0.007401331327855587,
-0.007879200391471386,
-0.01043787132948637,
0.02477395348250866,
0.010219631716609001,
-0.016104575246572495,
0.02402140200138092,
-0.0402463860809803,
0.01453174464404583,
0.005802161991596222,
0.024457881227135658,
-0.005376971326768398,
-0.017955847084522247,
-0.0009764339192770422,
0.0338948629796505,
-0.028265785425901413,
-0.024713749065995216,
0.03624281659722328,
0.022997934371232986,
-0.0022858711890876293,
-0.038410160690546036,
0.014027535915374756,
-0.04424995183944702,
0.002351719420403242,
-0.006042978260666132,
-0.012718098238110542,
0.01506605464965105,
-0.02334410697221756,
0.00870700553059578,
0.0011466983705759048,
-0.004853948950767517,
0.000037068977690069005,
0.055538203567266464,
-0.008022185415029526,
-0.01544233039021492,
-0.034195881336927414,
0.0024269744753837585,
-0.0006725917337462306,
-0.027648694813251495,
-0.02180890552699566,
0.016315288841724396,
0.024653544649481773,
-0.03467751294374466,
-0.012341823428869247,
-0.013056745752692223,
-0.002633925760164857,
0.01068621315062046,
0.024262217804789543,
-0.03148670122027397,
0.02198951691389084,
-0.009075755253434181,
-0.0142984539270401,
0.03199843317270279,
-0.0009105857461690903,
0.024758901447057724,
-0.008338255807757378,
-0.01640559360384941,
-0.02165839448571205,
-0.00019201789109501988,
0.029078539460897446,
-0.006633730139583349,
0.027889510616660118,
-0.02555660530924797,
-0.03549026697874069,
0.02641451172530651,
-0.03392496332526207,
0.03031272254884243,
0.025044871494174004,
0.010806621052324772,
0.007834048010408878,
-0.01528429426252842,
-0.004985644947737455,
-0.003059116657823324,
-0.0022219044622033834,
-0.008767209947109222,
0.03741679713129997,
0.0197017639875412,
0.015863757580518723,
-0.017579572275280952,
0.05559840798377991,
-0.04765147715806961,
0.0002348191774217412,
-0.016887227073311806,
-0.03046323172748089,
-0.006814341992139816,
-0.028551755473017693,
-0.008586597628891468,
-0.0033488483168184757,
0.007999608293175697,
0.0004905686364509165,
0.03681475669145584,
0.013071796856820583,
0.002722350414842367,
0.027257367968559265,
-0.003909498453140259,
0.006216064561158419,
0.003894447349011898,
-0.023494618013501167,
0.002265176037326455,
-0.010934554040431976,
0.03702547028660774,
-0.015111207962036133,
-0.038380060344934464,
-0.00997128989547491,
0.007235770113766193,
-0.009768101386725903,
-0.0030459470581263304,
-0.03570098057389259,
-0.013907128013670444,
-0.0064004394225776196,
0.02509002387523651,
-0.02313339337706566,
0.0424739345908165,
0.013229832984507084,
-0.026760686188936234,
-0.0009679676732048392,
0.011461339890956879,
0.012093481607735157,
-0.003083574352785945,
0.03181782364845276,
0.002852165373042226,
0.020108141005039215,
-0.004955543205142021,
0.0032924071419984102,
0.03302190452814102,
-0.03579128906130791,
0.028642060235142708,
-0.01340291928499937,
-0.03810914233326912,
-0.013222306966781616,
0.010851774364709854,
0.006234878674149513,
-0.03735659271478653,
-0.015788502991199493,
0.03353363648056984,
0.011235574260354042,
0.0034636124037206173,
-0.02995149791240692,
-0.020634926855564117,
-0.03570098057389259,
0.000796762527897954,
-0.0051549687050282955,
0.006223590113222599,
-0.002163581782951951,
-0.03163721039891243,
0.00813506729900837,
0.041059140115976334,
0.016209932044148445,
-0.01406516321003437,
0.010370141826570034,
0.03437649458646774,
-0.011408661492168903,
0.003838005941361189,
-0.03359384089708328,
-0.03338312730193138,
0.000805228715762496,
-0.030734149739146233,
-0.005399547517299652,
0.0031757617834955454,
0.06309381127357483,
0.0024890596978366375,
-0.014787611551582813,
0.011604323983192444,
0.02388594299554825,
0.007593231741338968,
-0.020394111052155495,
-0.014305979013442993,
0.0034353916998952627,
0.0016565511468797922,
0.0299213957041502,
0.0039697024039924145,
-0.008752158842980862,
0.0023216174449771643,
0.004007329698652029,
0.02599308453500271,
-0.0023968724999576807,
-0.015622942708432674,
-0.01941579580307007,
-0.026429563760757446,
-0.036122411489486694,
-0.0075104511342942715,
0.018497683107852936,
0.019867325201630592,
-0.003008319530636072,
0.010001392103731632,
0.010385192930698395,
-0.007871675305068493,
-0.01887395977973938,
-0.0159390140324831,
-0.0013291918439790606,
-0.012055854313075542,
-0.02817547880113125,
-0.01715814508497715,
-0.0269563477486372,
-0.0396142415702343,
0.026083389297127724,
-0.018076255917549133,
0.00013875144941266626,
-0.004748591687530279,
0.004026143811643124,
0.02934945747256279,
0.02667037956416607,
-0.013448072597384453,
-0.019310439005494118,
0.03467751294374466,
0.014787611551582813,
-0.049066271632909775,
0.007254583761096001,
-0.0037646323908120394,
-0.02441272884607315,
0.0030102008022367954,
-0.027513235807418823,
0.01915992796421051,
0.0336841456592083,
-0.017715031281113625,
0.021974466741085052,
-0.006532135885208845,
-0.000788296340033412,
-0.015622942708432674,
-0.0008997678523883224,
0.0017045262502506375,
-0.002295278012752533,
0.04081832244992256,
-0.02298288233578205,
0.0007139819790609181,
0.0016960600623860955,
0.023464515805244446,
0.020062988623976707,
-0.013026644475758076,
-0.016917329281568527,
0.01383187249302864,
-0.0006133284186944366,
0.023028036579489708,
-0.03702547028660774,
0.025180330500006676,
0.0040487200021743774,
0.005832264199852943,
-0.0200178362429142,
-0.01033251453191042,
-0.033292822539806366,
-0.018437480553984642,
-0.009467081166803837,
-0.008661853149533272,
0.014953172765672207,
-0.018964264541864395,
-0.003830480622127652,
-0.010430346243083477,
0.0006965792854316533,
-0.044129543006420135,
0.002163581782951951,
-0.005873654503375292,
0.008842464536428452,
0.020424213260412216,
-0.004910389892756939,
-0.0024420253466814756,
0.002585009904578328,
-0.0013188442680984735,
0.02019844762980938,
0.027031604200601578,
0.04388872906565666,
-0.018648194149136543,
-0.00920368917286396,
-0.01485534105449915,
-0.012432129122316837,
0.00681810500100255,
0.03925301879644394,
0.0032980511896312237,
-0.0014467777218669653,
0.01855788752436638,
0.018286969512701035,
0.006946038454771042,
0.005640363786369562,
0.0093993516638875,
0.022832373157143593,
-0.019927529618144035,
-0.005632838234305382,
0.03543006256222725,
-0.01598416641354561,
-0.01915992796421051,
0.015397177077829838,
0.03395506367087364,
-0.003473019227385521,
-0.03684485703706741,
0.005519955884665251,
-0.009241316467523575,
0.009948713704943657,
0.010392718017101288,
0.007484111934900284,
-0.0016142202075570822,
-0.019972681999206543,
0.013884550891816616,
0.008646802045404911,
0.033413227647542953,
-0.010626008734107018,
0.016751768067479134,
0.0024081605952233076,
-0.004673336632549763,
-0.004236857872456312,
0.00829310342669487,
0.015201514586806297,
-0.004394893068820238,
-0.018994366750121117,
0.005659177433699369,
-0.026113491505384445,
-0.01962650939822197,
-0.014290928840637207,
-0.003066641977056861,
-0.0061859628185629845,
0.0028578094206750393,
0.018648194149136543,
-0.0032660679426044226,
0.01124310027807951,
-0.013560954481363297,
-0.023599974811077118,
0.03416578099131584,
-0.026399461552500725,
0.0008795430767349899,
-0.005963960196822882,
0.0028465210925787687,
-0.02566196210682392,
0.002765621989965439,
-0.015713248401880264,
-0.026354307308793068,
0.0459657646715641,
-0.047380559146404266,
-0.025210432708263397,
0.00664125569164753,
-0.02713696099817753,
0.008232899010181427,
0.002265176037326455,
-0.010753942653536797,
-0.018286969512701035,
0.018994366750121117,
-0.03759740665555,
-0.026790786534547806,
0.01213863492012024,
0.013613632880151272,
0.09259377419948578,
0.00476364279165864,
0.006851969752460718,
-0.011145268566906452,
-0.006772951688617468,
0.003476782003417611,
-0.003066641977056861,
0.01630023680627346,
0.008932771161198616,
-0.011980598792433739,
0.034045372158288956,
-0.020288754254579544,
-0.024683646857738495,
-0.007585706189274788,
0.0149606978520751,
0.028687214478850365,
0.007058920804411173,
0.0016057540196925402,
0.01830202154815197,
-0.027889510616660118,
0.014411336742341518,
0.002159819006919861,
0.011807512491941452,
-0.01177741028368473,
0.015592840500175953,
-0.010242207907140255,
-0.016992583870887756,
-0.0065848142839968204,
-0.026038236916065216,
-0.00435350276529789,
0.004921678453683853,
0.01694743148982525,
-0.011641951277852058,
-0.002748689614236355,
0.009361724369227886,
-0.012545011937618256,
0.031215783208608627,
0.0019105367828160524,
-0.01225904282182455,
-0.019174979999661446,
0.0034654936753213406,
-0.01648085005581379,
-0.007811471354216337,
-0.0022388368379324675,
-0.006863257847726345,
-0.023900995030999184,
0.03774791955947876,
-0.015163886360824108,
-0.007228244561702013,
-0.021327272057533264,
0.008601648733019829,
-0.020183395594358444,
0.007706114090979099,
0.03928311914205551,
0.0043572657741606236,
0.021718598902225494,
-0.0031625921837985516,
-0.009120908565819263,
-0.01397485751658678,
-0.01976196840405464,
0.0008249831735156476,
0.029575223103165627,
0.0024890596978366375,
-0.008443613536655903,
0.017278552055358887,
-0.022350741550326347,
-0.05018004775047302,
0.005610261578112841,
-0.011002283543348312,
-0.012198838405311108,
0.006355286575853825,
-0.007600757293403149,
0.0134781738743186,
-0.010859299451112747,
0.02284742332994938,
0.00647945748642087,
-0.005467277020215988,
0.012981491163372993,
-0.030071906745433807,
-0.019069621339440346,
0.030824456363916397,
0.01733875647187233,
0.019822172820568085,
0.02280227094888687,
-0.02123696729540825,
0.012108532711863518,
-0.0053280554711818695,
0.0008696658187545836,
-0.015743350610136986,
0.004519063979387283,
0.000007069856565067312,
-0.0033657806925475597,
0.008330730721354485,
0.00549737922847271,
0.009391826577484608,
0.02373543381690979,
0.02805507183074951,
-0.015893859788775444,
-0.009038127958774567,
-0.012394501827657223,
0.018723448738455772,
0.004218043759465218,
0.026655327528715134,
-0.008082388900220394,
0.014712356962263584,
0.026339257135987282,
-0.0035162908025085926,
0.017067838460206985,
0.00977562740445137,
-0.001207843073643744,
-0.048494335263967514,
-0.030643844977021217,
-0.008902668952941895,
-0.024141810834407806,
0.0018437480321153998,
0.0037213608156889677,
0.025074973702430725,
0.015954064205288887,
-0.020710181444883347,
-0.0005032679764553905,
-0.016676511615514755,
-0.02152293547987938,
0.035731084644794464,
-0.0037382931914180517,
-0.01304922066628933,
0.010407769121229649,
-0.019867325201630592,
-0.027332622557878494,
0.04196219891309738,
0.03169741481542587,
0.02326885238289833,
-0.0056930421851575375,
-0.007758792489767075,
-0.022456098347902298,
0.01018952950835228,
-0.04563464596867561,
0.03028262034058571,
0.022275486961007118,
0.003813548246398568,
-0.0031099137850105762,
-0.0056140245869755745,
0.03359384089708328,
0.018151510506868362,
0.005027035251259804,
0.011378559283912182,
0.000771363964304328,
0.018437480553984642,
0.02805507183074951,
0.000096420495538041,
0.021793853491544724,
0.002519161906093359,
-0.019325489178299904,
-0.004195467568933964,
0.028461448848247528,
-0.0036987841594964266,
0.0010328751523047686,
0.004978119395673275,
-0.018678296357393265,
-0.008947822265326977,
0.010317463427782059,
0.007047632709145546,
0.038590773940086365,
0.02308824099600315,
0.009941188618540764,
-0.00954233668744564,
0.029605325311422348,
-0.02773900143802166,
-0.05186576023697853,
-0.018783653154969215,
-0.019114775583148003,
0.008074863813817501,
0.004564216826111078,
-0.03139639273285866,
0.006882071495056152,
0.019536202773451805,
0.029861191287636757,
-0.02490941248834133,
-0.003251016838476062,
0.021613242104649544,
-0.021613242104649544,
-0.006475694477558136,
0.01840737834572792,
-0.013222306966781616,
-0.01869334653019905,
0.01944589801132679,
-0.01848263293504715,
-0.004176653455942869,
0.0007897073519416153,
-0.02137242630124092,
0.03160711005330086,
0.015314396470785141,
0.03139639273285866,
-0.02924410067498684,
-0.021929312497377396,
-0.013651261106133461,
-0.020108141005039215,
-0.018603041768074036,
-0.024728799238801003,
-0.0016283305594697595,
0.002665909007191658,
0.008082388900220394,
-0.025210432708263397,
-0.011077539063990116,
0.008225373923778534,
0.0018362224800512195,
-0.03311220929026604,
0.016932379454374313,
0.016149727627635002,
-0.01520903967320919,
0.008466189727187157,
-0.0028728602919727564,
-0.006690171547234058,
0.01684207282960415,
-0.0040374319069087505,
0.02885277569293976,
0.009873459115624428,
0.0012699284125119448,
-0.03257037326693535,
0.0006490745581686497,
0.007438958622515202,
-0.016526002436876297,
0.016029318794608116,
0.017007634043693542,
-0.004266959615051746,
-0.013327663764357567,
0.017955847084522247,
0.025902777910232544,
-0.03002675250172615,
-0.016179829835891724,
-0.004496487323194742,
-0.011626901105046272,
0.005286665167659521,
0.01045292243361473,
0.01233429741114378,
-0.014734933152794838,
-0.0036028341855853796,
0.021402528509497643,
0.011355982162058353,
0.010829197242856026,
-0.01751936785876751,
0.009587489999830723,
0.0024420253466814756,
-0.03699536621570587,
0.004786219447851181,
-0.0283861942589283,
-0.0003174821031279862,
0.008473715744912624,
0.013214781880378723,
-0.005930095445364714,
0.032660678029060364,
-0.027543338015675545,
-0.008564021438360214,
-0.025496400892734528,
0.0004515301261562854,
-0.008774735033512115,
0.02999665029346943,
0.02080048806965351,
0.005324292927980423,
0.009504709392786026,
0.0010037138126790524,
0.00008830706065054983,
-0.014215673319995403,
-0.00435350276529789,
0.007803945802152157,
-0.0226668119430542,
0.02745303139090538,
-0.008812363259494305,
-0.01744411326944828,
-0.004157839808613062,
-0.006528372876346111,
0.001470295013859868,
-0.007694825995713472,
0.005948909558355808,
-0.0031343717128038406,
-0.00011417597852414474,
0.00016085761308204383,
0.0029594036750495434,
-0.024322422221302986,
-0.0015013376250863075,
0.006197250913828611,
-0.010558279231190681,
0.05093259736895561,
0.001453362638130784,
-0.010023968294262886,
-0.00008383879321627319,
-0.018964264541864395,
-0.04879535362124443,
-0.005230223760008812,
0.009918611496686935,
-0.012620266526937485,
-0.0022068535909056664,
-0.0017477978253737092,
-0.024834156036376953,
-0.023961197584867477,
0.016179829835891724,
-0.002739282790571451,
-0.029876243323087692,
0.0398249551653862,
-0.016992583870887756,
0.017293604090809822,
0.023148443549871445,
0.01736885868012905,
0.033804554492235184,
0.018572939559817314,
-0.0009627939434722066,
0.012635317631065845,
-0.0202285498380661,
-0.015773452818393707,
0.004349740222096443,
-0.01627013459801674,
0.020830590277910233,
-0.0197017639875412,
-0.012424604035913944,
-0.030357874929904938,
-0.005331818014383316,
0.008202796801924706,
0.008789786137640476,
0.008089914917945862,
-0.009000500664114952,
-0.005670465994626284,
-0.011062487959861755,
-0.01666146144270897,
-0.01708289049565792,
-0.020529570057988167,
-0.007593231741338968,
-0.010197055526077747,
-0.012785827741026878,
0.0013592938194051385,
-0.00046093700802884996,
-0.017474215477705002,
0.016811972483992577,
0.011273202486336231,
0.022185180336236954,
-0.02370533160865307,
-0.0022896339651197195,
-0.008345781825482845,
0.009579963982105255,
0.025044871494174004,
-0.012936337850987911,
0.0012304196134209633,
-0.03356374055147171,
0.04918668046593666,
-0.003913260996341705,
0.0030798118095844984,
0.012981491163372993,
0.0013649379834532738,
-0.004500250332057476,
0.0042556715197861195,
-0.007879200391471386,
-0.024728799238801003,
-0.029680579900741577,
-0.0159390140324831,
0.008473715744912624,
-0.005839789751917124,
0.00600535050034523,
0.006468168925493956,
0.004805033095180988,
0.0031155578326433897,
-0.00469967583194375,
-0.02924410067498684,
-0.017775235697627068,
0.003760869614779949,
0.00019331133808009326,
0.002833351492881775,
0.0040712966583669186,
0.0006457821582444012,
-0.028325989842414856,
0.018813755363225937,
0.02220023050904274,
-0.014200622215867043,
0.002586891409009695,
0.015622942708432674,
-0.004944254644215107,
0.013794245198369026,
0.012861083261668682,
-0.00022941023053135723,
0.015637993812561035,
-0.020258652046322823,
-0.03184792399406433,
0.03317241370677948,
0.020454315468668938,
0.004710964392870665,
-0.011958022601902485,
0.0028465210925787687,
-0.04039689525961876,
0.01962650939822197,
-0.010535703040659428,
0.006961089558899403,
-0.004955543205142021,
-0.010844248346984386,
0.018678296357393265,
0.0018889009952545166,
0.016571154817938805,
0.03407547250390053,
0.0075894687324762344,
-0.0071793291717767715,
0.02058977447450161,
0.02552650310099125,
-0.022034669294953346,
-0.0030816930811852217,
0.014576897025108337,
0.00409387331455946,
-0.014072689227759838,
0.02313339337706566,
-0.01851273514330387,
0.004007329698652029,
-0.02376553602516651,
-0.016450747847557068,
0.02799486741423607,
0.005926332902163267,
0.017489267513155937,
0.0016415001591667533,
0.038199447095394135,
-0.007803945802152157,
-0.003950888756662607,
-0.009015551768243313,
-0.027889510616660118,
-0.005655414890497923,
0.0047674053348600864,
0.02159819006919861,
0.005948909558355808,
-0.008037236519157887,
-0.0011749189579859376,
-0.038229551166296005,
0.012733149342238903,
-0.013749091885983944,
0.010595906525850296,
-0.01395980641245842,
0.018618091940879822,
0.006490745581686497,
-0.003456086851656437,
0.011070013046264648,
0.02030380442738533,
-0.003424103371798992,
0.010678687132894993,
0.006528372876346111,
-0.023569872602820396,
-0.008857515640556812,
-0.01544233039021492,
-0.014509167522192001,
0.007886726409196854,
-0.004180416464805603,
-0.00906070414930582,
0.016059421002864838,
0.009467081166803837,
-0.015758400782942772,
-0.01569819636642933,
-0.00007302088488359004,
-0.01485534105449915,
0.012913761660456657,
0.01627013459801674,
-0.0005324292578734457,
0.012770776636898518,
0.015969116240739822,
-0.008654327131807804,
-0.0020920895040035248,
0.015096156857907772,
0.013801771216094494,
-0.0034316289238631725,
0.0012407671893015504,
0.008744633756577969,
-0.03244996443390846,
0.02545124851167202,
-0.003727004863321781,
0.006483220029622316,
0.01715814508497715,
0.0004136674397159368,
-0.004586793482303619,
-0.013335189782083035,
-0.024427779018878937,
0.014035061001777649,
-0.0008522631251253188,
0.01723339967429638,
-0.0017506199656054378,
-0.0005926332669332623,
-0.02048441581428051,
-0.0044362833723425865,
-0.006031689699739218,
0.0029895056504756212,
-0.002146649407222867,
0.0024777716025710106,
0.0040825847536325455,
-0.008699480444192886,
0.025300737470388412,
-0.0004197819216642529,
0.03904230520129204,
0.0025097548495978117,
0.004684625193476677,
-0.00027726771077141166,
0.007664723787456751,
0.0017365096136927605,
0.006629967130720615,
-0.0016631359467282891,
0.0034786632750183344,
0.024789003655314445,
0.012891184538602829,
-0.009519760496914387,
0.021884160116314888,
0.023043086752295494,
0.005877417046576738,
-0.0007295033428817987,
-0.007961980998516083,
0.014599474146962166,
0.0021109033841639757,
0.020544620230793953,
-0.003173880511894822,
0.0005695864092558622,
0.006182199809700251,
0.013794245198369026,
-0.00543341226875782,
-0.010881875641644001,
0.005079713650047779,
-0.004917915444821119,
0.024503035470843315,
0.015246666967868805,
0.011235574260354042,
-0.013937230221927166,
-0.008345781825482845,
-0.006562237627804279,
-0.005128629505634308,
0.00040567159885540605,
0.005790873896330595,
-0.003792853094637394,
-0.023359159007668495,
-0.005091002210974693,
0.002112784655764699,
0.008646802045404911,
0.00043177566840313375,
-0.010927028954029083,
-0.0023234987165778875,
-0.003345085773617029,
-0.00872205663472414,
-0.008857515640556812,
-0.005376971326768398,
-0.007461535278707743,
-0.0015558975283056498,
0.016751768067479134,
-0.01947600021958351,
0.015216564759612083,
-0.008503817021846771,
0.010091697797179222,
-0.012695522047579288,
0.009685320779681206,
0.023283902555704117,
0.0009764339192770422,
-0.009038127958774567,
0.007773843593895435,
-0.013734040781855583,
-0.013771669007837772,
0.006091894116252661,
0.005802161991596222,
-0.0029104878194630146,
-0.0023216174449771643,
-0.03768771514296532,
-0.0076910629868507385,
0.012898710556328297,
-0.007694825995713472,
0.00442499527707696,
-0.007062683813273907,
0.017293604090809822,
-0.004782456438988447,
-0.008202796801924706,
0.014125367626547813,
0.01619488000869751,
-0.005098527763038874,
0.014147943817079067,
-0.0040035671554505825,
0.008285577408969402,
-0.009662744589149952,
-0.024367576465010643,
0.008375884033739567,
0.004421232268214226,
-0.00772116519510746,
0.01551758497953415,
-0.012070905417203903,
-0.006885834503918886,
0.0005493616336025298,
0.0006264980183914304,
0.006821867544203997,
-0.0020262415055185556,
0.015126259066164494,
0.028070122003555298,
-0.015502533875405788,
0.0037044284399598837,
-0.005162494257092476,
-0.010942080058157444,
0.015923961997032166,
-0.004981882404536009,
-0.04328668862581253,
0.0008593182428739965,
0.0105131259188056,
0.013124475255608559,
-0.01937064155936241,
-0.004778693895787001,
-0.0075593669898808,
-0.006027927156537771,
-0.016285186633467674,
-0.0032152708154171705,
-0.009798203594982624,
0.00011617493873927742,
-0.005437175277620554,
0.012439655140042305,
-0.01980712078511715,
-0.014734933152794838,
0.004248145967721939,
0.013237358070909977,
0.02602318674325943,
0.009015551768243313,
-0.02162829227745533,
-0.013365291990339756,
0.007344889920204878,
-0.018648194149136543,
0.008082388900220394,
0.0030967441853135824,
-0.009196163155138493,
-0.009933662600815296,
0.006942275445908308,
0.0045416406355798244,
-0.007788894698023796,
-0.03163721039891243,
0.016887227073311806,
-0.001248292624950409,
0.001745916437357664,
0.00030736971530131996,
0.018452530726790428,
0.0040035671554505825,
-0.00444004638120532,
-0.004718489944934845,
0.006106944754719734,
0.015374600887298584,
0.011559171602129936,
0.03085455857217312,
0.013944755308330059,
0.006099419202655554,
0.002515399130061269,
0.02734767459332943,
-0.005091002210974693,
-0.0017346282256767154,
0.011378559283912182,
-0.012928812764585018,
0.015893859788775444,
-0.017398960888385773,
0.003727004863321781,
0.001305674551986158,
-0.002530450001358986,
0.019280336797237396,
0.00805981270968914,
-0.007653435692191124,
-0.009068230167031288,
0.014501642435789108,
0.003521934850141406,
0.010324988514184952,
-0.0070062424056231976,
0.018437480553984642,
0.01736885868012905,
-0.011867716908454895,
-0.004959305748343468,
-0.0011278846068307757,
0.0069723776541650295,
0.004120212513953447,
0.022681863978505135,
-0.005858603399246931,
-0.008812363259494305,
-0.0010940198553726077,
0.00927894376218319,
0.001703585498034954,
0.002682841382920742,
0.0016029318794608116,
0.005892468150705099,
0.01216873712837696,
-0.010362616740167141,
0.013320138677954674,
0.0014147943584248424,
0.01994257979094982,
-0.004266959615051746,
0.009813254699110985,
-0.005839789751917124,
-0.0072244820185005665,
-0.021718598902225494,
-0.001284038764424622,
0.017715031281113625,
-0.007841573096811771,
0.010279836133122444,
0.003728886367753148,
0.024758901447057724,
-0.01915992796421051,
-0.02037905901670456,
0.0055801598355174065,
-0.007916827686131,
0.007627096492797136,
0.004635709337890148,
0.00020789199334103614,
0.012748200446367264,
-0.006814341992139816,
-0.0030986254569143057,
-0.04960810765624046,
-0.01371146459132433,
0.025406094267964363,
0.000476693530799821,
0.007107836659997702,
-0.000033864758734125644,
0.0018653838196769357,
-0.008232899010181427,
0.0073712291195988655,
-0.026324206963181496,
0.01801605150103569,
-0.0016132794553413987,
0.006588576827198267,
0.0036837332881987095,
-0.015028427354991436,
0.022967832162976265,
0.000966086343396455,
0.010859299451112747,
-0.009963764809072018,
-0.0034278661478310823,
0.02262165956199169,
-0.007295974064618349,
-0.018422428518533707,
0.005700567737221718,
-0.029755834490060806,
-0.024608392268419266,
-0.00013510628195945174,
0.0039584138430655,
-0.008684429340064526,
0.004327163565903902,
0.001192792085930705,
-0.02366017922759056,
-0.008789786137640476,
-0.01723339967429638,
0.00599782494828105,
0.010445396415889263,
0.016721665859222412,
0.04843413084745407,
0.01420814823359251,
-0.000023149737899075262,
-0.001637737383134663,
0.013545903377234936,
-0.025782369077205658,
0.007111599203199148,
0.004180416464805603,
0.03825965151190758,
0.011310829780995846,
-0.0020563434809446335,
-0.012898710556328297,
0.015637993812561035,
0.00599782494828105,
-0.01454679574817419,
0.014516693539917469,
-0.026866042986512184,
0.020348956808447838,
-0.017775235697627068,
0.01955125480890274,
-0.001150461146607995,
0.01572829857468605,
0.009151010774075985,
-0.004560454282909632,
-0.0028277074452489614,
-0.0014317267341539264,
-0.005798399448394775,
-0.008827414363622665,
-0.004383604973554611,
0.01598416641354561,
0.026218848302960396,
0.012063379399478436,
0.00444004638120532,
0.003527579130604863,
-0.0024232116993516684,
-0.020634926855564117,
-0.014245775528252125,
0.0016687801107764244,
-0.0013555310433730483,
-0.00263580703176558,
0.04235352575778961,
-0.010159427300095558,
0.001267106388695538,
-0.007062683813273907,
0.00623864121735096,
-0.012198838405311108,
0.00986593309789896,
0.0012972083641216159,
0.007706114090979099,
-0.004759880248457193,
-0.018437480553984642,
0.01553263608366251,
0.027392826974391937,
-0.012575114145874977,
0.00976057630032301,
0.018738500773906708,
0.01801605150103569,
-0.02313339337706566,
-0.004552928730845451,
0.0058999937027692795,
-0.007939404807984829,
-0.019039520993828773,
0.015141310170292854,
-0.01102486066520214,
-0.013899601995944977,
0.004631946329027414,
-0.0025285687297582626,
-0.00721319392323494,
-0.00961759127676487,
-0.02433747425675392,
-0.009075755253434181,
0.005019509699195623,
0.0017393316375091672,
-0.0036197665613144636,
0.013568480499088764,
0.0025436196010559797,
0.0022971595171839,
-0.006517084781080484,
-0.01183008961379528,
-0.00041343228076584637,
-0.03196833282709122,
-0.01056580524891615,
0.006727798841893673,
0.008902668952941895,
-0.004044957458972931,
0.01485534105449915,
0.016992583870887756,
-0.004500250332057476,
0.011092590168118477,
0.012221415527164936,
0.0012069024378433824,
-0.018603041768074036,
-0.0018051797524094582,
-0.015668096020817757,
0.002347956644371152,
-0.011912869289517403,
0.02137242630124092,
-0.009873459115624428,
-0.019972681999206543,
0.015487482771277428,
0.007092785555869341,
-0.011514018289744854,
-0.02223033271729946,
0.010054070502519608,
0.004308349918574095,
-0.02420201525092125,
-0.009120908565819263,
0.01801605150103569,
-0.007171803619712591,
0.002530450001358986,
0.03603210300207138,
-0.008421036414802074,
-0.006554712075740099,
0.004391130525618792,
-0.007574417628347874,
-0.0006015698309056461,
0.0016367967473343015,
0.002133479807525873,
-0.003950888756662607,
0.010626008734107018,
-0.0142984539270401,
0.021191813051700592,
0.0029951496981084347,
0.019099723547697067,
0.0009858408011496067,
-0.028115276247262955,
-0.005068425554782152,
0.00030501800938509405,
0.009151010774075985,
0.015622942708432674,
0.02355482056736946,
-0.016134675592184067,
0.003136252984404564,
0.0023592449724674225,
-0.0036874960642307997,
-0.006889597047120333,
-0.026941297575831413,
-0.005531243979930878,
0.005098527763038874,
-0.001173978322185576,
0.010031494311988354,
0.00664125569164753,
-0.001595406443811953,
0.014042587019503117,
0.008624224923551083,
-0.015382125973701477,
-0.033654045313596725,
0.023795638233423233,
-0.0009129374520853162,
0.007521739229559898,
-0.004680862184613943,
-0.010641059838235378,
-0.005388259422034025,
-0.017715031281113625,
0.00527161406353116,
0.013583531603217125,
0.007702351547777653,
-0.02706170454621315,
-0.009579963982105255,
0.005689279641956091,
-0.007010004948824644,
0.03031272254884243,
0.02651986852288246,
0.008481240831315517,
-0.008360832929611206,
0.002445788122713566,
0.0014044467825442553,
-0.004387367516756058,
-0.008202796801924706,
-0.0018917230190709233,
-0.01598416641354561,
0.03672444820404053,
0.007333601824939251,
0.01428340282291174,
-0.004616895690560341,
-0.016721665859222412,
-0.009948713704943657,
0.018858907744288445,
0.01776018552482128,
0.025330839678645134,
-0.012928812764585018,
0.0067390869371593,
0.0035012399312108755,
0.0091886380687356,
-0.021899210289120674,
-0.017248449847102165,
-0.010618483647704124,
0.011235574260354042,
0.016736716032028198,
0.0010027731768786907,
-0.0001334600819973275,
-0.00303465873003006,
-0.002112784655764699,
-0.010084172710776329,
0.006611153483390808,
-0.026640277355909348,
0.00034429170773364604,
-0.01923518255352974,
0.0006274387123994529,
0.003190812887623906,
0.021176762878894806,
0.020424213260412216,
-0.020394111052155495,
0.0003377069078851491,
0.000959971861448139,
0.0011683341581374407,
-0.017037736251950264,
0.000049827052862383425,
-0.006249929312616587,
-0.011897819116711617,
-0.0008099321858026087,
-0.012402026914060116,
-0.015607891604304314,
-0.020604824647307396,
-0.007751266937702894,
-0.0029951496981084347,
0.008330730721354485,
-0.0044362833723425865,
0.010031494311988354,
0.003924549091607332,
0.0032303216867148876,
-0.019039520993828773,
-0.020785436034202576,
-0.006509559229016304,
-0.014471540227532387,
-0.0006810579216107726,
0.02953007072210312,
-0.021101508289575577,
-0.01134845707565546,
-0.010558279231190681,
0.008127542212605476,
0.011875241994857788,
-0.002701655263081193,
-0.005723144393414259,
-0.008518868125975132,
-0.008902668952941895,
0.0007182150729931891,
0.005583922378718853,
-0.02337420918047428,
-0.016059421002864838,
0.021101508289575577,
0.007939404807984829,
-0.022907627746462822,
0.007408856879919767,
0.008752158842980862,
-0.0170527882874012,
0.016360441222786903,
0.005388259422034025,
-0.00419170456007123,
-0.021537987515330315,
-0.021206865087151527,
-0.011416186578571796,
-0.009158535860478878,
-0.0011429355945438147,
-0.009346673265099525,
0.010166953317821026,
0.020002784207463264,
-0.009474607184529305,
-0.011958022601902485,
-0.016330339014530182,
0.01234934851527214,
0.007931878790259361,
0.021929312497377396,
-0.024141810834407806,
0.001150461146607995,
0.0028935554437339306,
0.01476503536105156,
-0.038982100784778595,
-0.00963264238089323,
-0.012876134365797043,
-0.013335189782083035,
-0.006065554451197386,
-0.0039019729010760784,
0.0032830003183335066,
-0.009166061878204346,
0.016962481662631035,
0.011182895861566067,
-0.003725123591721058,
0.03488822653889656,
0.003917024005204439,
-0.01827191933989525,
-0.0010629771277308464,
0.022606607526540756,
-0.003390238620340824,
-0.005471040029078722,
0.015893859788775444,
-0.004364791326224804,
0.013101899065077305,
-0.003638580208644271,
-0.0017318062018603086,
-0.024186963215470314,
-0.03491833060979843,
-0.018497683107852936,
-0.018031103536486626,
-0.0013207256561145186,
-0.02341936156153679,
0.006961089558899403,
-0.0022181416861712933,
0.011950497515499592,
0.013056745752692223,
0.002099615056067705,
0.00034170481376349926,
0.0014721762854605913,
0.014358658343553543,
0.005196359008550644,
-0.000009877221600618213,
0.005847315303981304,
0.004658285994082689,
-0.01598416641354561,
0.01238697674125433,
-0.03244996443390846,
0.008172695524990559,
-0.0017280434258282185,
-0.0034523240756243467,
-0.007514213677495718,
-0.011077539063990116,
-0.008421036414802074,
-0.0098508819937706,
0.0006598924519494176,
0.019039520993828773,
-0.0159390140324831,
-0.0172635018825531,
0.005553820636123419,
-0.00870700553059578,
0.014524218626320362,
0.005422124173492193,
-0.02098109945654869,
0.00681057944893837,
-0.01290623564273119,
-0.017353808507323265,
-0.01313952635973692,
0.025074973702430725,
0.029394611716270447,
0.0008122838917188346,
-0.01866324432194233,
-0.0034297476522624493,
-0.031546905636787415,
0.028085174039006233,
-0.005677991081029177,
0.0015540161402896047,
-0.00895534735172987,
-0.0045943190343678,
0.003838005941361189,
-0.004131500609219074,
0.010889401659369469,
-0.006178437266498804,
0.0031625921837985516,
0.0023874654434621334,
-0.012778302654623985,
0.007743741385638714,
0.017293604090809822,
0.00782652199268341,
0.010844248346984386,
0.005019509699195623,
0.004552928730845451,
0.017007634043693542,
0.014968223869800568,
0.018678296357393265,
-0.003138134256005287,
0.009196163155138493,
0.004075059201568365,
0.0007440840126946568,
-0.007171803619712591,
0.0021786328870803118,
0.005629075691103935,
0.012635317631065845,
-0.001553075504489243,
-0.022079823538661003,
-0.0054070730693638325,
-0.0074765863828361034,
0.013756617903709412,
-0.004707201384007931,
-0.00038826887612231076,
0.022395893931388855,
0.0013207256561145186,
0.012183788232505322,
0.0039358376525342464,
-0.008300628513097763,
0.005847315303981304,
0.0006330828764475882,
-0.01068621315062046,
-0.0073373643681406975,
0.00047010870184749365,
-0.007401331327855587,
-0.005753246136009693,
-0.012221415527164936,
-0.0035595623776316643,
-0.028822673484683037,
0.0014147943584248424,
-0.016751768067479134,
0.02280227094888687,
0.006848206743597984,
-0.020966049283742905,
-0.020108141005039215,
-0.01090445276349783,
0.004327163565903902,
0.0068594953045248985,
-0.020258652046322823,
-0.001485346001572907,
-0.026429563760757446,
-0.024472933262586594,
0.03356374055147171,
-0.0037665136624127626,
0.00018707927665673196,
-0.008240425027906895,
0.009008025750517845,
-0.02019844762980938,
0.0030478283297270536,
0.0009961883770301938,
-0.005621550139039755,
0.016315288841724396,
0.0016574917826801538,
-0.03371424973011017,
-0.0000384506129194051,
-0.001906774123199284,
-0.026790786534547806,
0.012101007625460625,
0.012236466631293297,
-0.049879029393196106,
0.00021200750779826194,
0.01099475845694542,
-0.008548970334231853,
0.004014855250716209,
-0.00003318864037282765,
-0.014125367626547813,
-0.004571742378175259,
0.017203297466039658,
-0.0012896829284727573,
-0.0018136459402740002,
0.0027279944624751806,
-0.016962481662631035,
0.0064719319343566895,
-0.005027035251259804,
-0.018723448738455772,
0.008586597628891468,
0.011973073706030846,
-0.002669671783223748,
-0.000018563885532785207,
-0.0035595623776316643,
0.020348956808447838,
-0.011092590168118477,
0.032660678029060364,
0.003917024005204439,
0.020153295248746872,
0.006170911714434624,
-0.0068594953045248985,
-0.020920895040035248,
0.0005154968821443617,
0.0051211039535701275,
-0.01142371166497469,
0.023825738579034805,
-0.006863257847726345,
0.011611850000917912,
0.005937620997428894,
-0.006566000636667013,
-0.023795638233423233,
0.00500445906072855,
0.003659275360405445,
-0.0021842769347131252,
-0.007010004948824644,
-0.001527676940895617,
0.03232955560088158,
0.028897928074002266,
-0.018708398565649986,
-0.003924549091607332,
0.017383908852934837,
0.03485812619328499,
0.024834156036376953,
0.00771363964304328,
-0.012003175914287567,
-0.0020243600010871887,
-0.009843356907367706,
-0.00904565304517746,
0.004458860028535128,
0.0013978619826957583,
0.004060008563101292,
0.018738500773906708,
-0.004451334476470947,
0.026173695921897888,
0.0028747417964041233,
-0.0017637895653024316,
0.010159427300095558,
-0.010678687132894993,
0.0023968724999576807,
0.004707201384007931,
0.007984558120369911,
0.009120908565819263,
0.004970594309270382,
-0.008774735033512115,
-0.013101899065077305,
-0.006483220029622316,
0.002468364778906107,
0.003924549091607332,
-0.002061987528577447,
-0.005185070913285017,
-0.00006132107955636457,
-0.0054748025722801685,
0.030117059126496315,
0.011514018289744854,
-0.020574722439050674,
0.009120908565819263,
0.01723339967429638,
0.011483916081488132,
0.019310439005494118,
0.006148335058242083,
0.0032999326940625906,
0.01385444961488247,
-0.01908467337489128,
0.002366770291700959,
-0.00714170141145587,
0.00999386701732874,
-0.001322606927715242,
0.0029895056504756212,
0.025962982326745987,
0.003015844849869609,
-0.00263204425573349,
0.009143484756350517,
0.02126706950366497,
-0.011047436855733395,
0.011559171602129936,
-0.003821073565632105,
-0.018542837351560593,
0.0015540161402896047,
0.01827191933989525,
-0.002248243661597371,
0.0033469670452177525,
-0.010641059838235378,
0.01204832922667265,
-0.01640559360384941,
-0.005316767375916243,
0.015577789396047592,
-0.015999216586351395,
-0.015683146193623543,
-0.0034523240756243467,
0.005425887182354927,
0.0010648585157468915,
0.010294887237250805,
-0.008112491108477116,
0.010573330335319042,
0.013086847960948944,
0.0034015269484370947,
0.0009129374520853162,
-0.00986593309789896,
-0.004409944172948599,
-0.0022520064376294613,
0.007977032102644444,
-0.004266959615051746,
0.004097635857760906,
-0.012973965145647526,
0.0022557692136615515,
-0.007446484174579382,
-0.009135959669947624,
-0.005185070913285017,
-0.002654620911926031,
-0.012529960833489895,
-0.019295386970043182,
-0.018241817131638527,
0.013214781880378723,
-0.003305576741695404,
0.025692064315080643,
-0.007803945802152157,
0.02126706950366497,
-0.027257367968559265,
0.022787220776081085,
-0.004944254644215107,
-0.02381068840622902,
0.0024307372514158487,
0.00963264238089323,
0.014915545471012592,
0.012657894752919674,
-0.018964264541864395,
-0.013651261106133461,
0.019325489178299904,
0.005486091133207083,
-0.006009113509207964,
0.007698588538914919,
-0.006091894116252661,
0.011792461387813091,
0.012304196134209633,
0.016992583870887756,
0.007653435692191124,
-0.013056745752692223,
0.00029396492755040526,
0.009805729612708092,
-0.002315973164513707,
-0.003187050111591816,
0.02763364277780056,
-0.04500250145792961,
-0.002752452390268445,
-0.015713248401880264,
0.025300737470388412,
-0.00442499527707696,
0.003234084462746978,
0.004917915444821119,
-0.014554320834577084,
-0.0285969078540802,
-0.022335689514875412,
-0.01177741028368473,
0.011980598792433739,
-0.0018399852560833097,
0.033292822539806366,
0.003051591105759144,
-0.0015888216439634562,
-0.0017045262502506375,
-0.005162494257092476,
0.0059790113009512424,
0.016676511615514755,
0.004387367516756058,
-0.01442638784646988,
-0.0032528983429074287,
0.0024871784262359142,
-0.0008767209947109222,
-0.014990800060331821,
0.000735147506929934,
-0.019686713814735413,
0.010430346243083477,
0.012785827741026878,
0.012823455035686493,
-0.010768993757665157,
-0.02763364277780056,
0.010558279231190681,
-0.007687300443649292,
-0.0047222524881362915,
0.016721665859222412,
0.018828805536031723,
-0.006566000636667013,
-0.007216956466436386,
0.00147876120172441,
0.006942275445908308,
0.014908019453287125,
0.0051211039535701275,
0.0007422026246786118,
-0.026549970731139183,
-0.006998716853559017,
0.014802662655711174,
0.017745133489370346,
-0.004364791326224804,
0.0039358376525342464,
0.014012484811246395,
-0.013779194094240665,
-0.004406181629747152,
-0.005038323812186718,
-0.006073080003261566,
0.0018221121281385422,
-0.0128159299492836,
-0.0033638994209468365,
0.008857515640556812,
-0.04292546212673187,
0.02220023050904274,
0.006197250913828611,
-0.020183395594358444,
0.003362018149346113,
-0.01068621315062046,
0.0018860789714381099,
-0.01304922066628933,
0.01608952321112156,
0.004011092707514763,
0.02037905901670456,
-0.0034447985235601664,
-0.03080940619111061,
0.012627792544662952,
0.013214781880378723,
0.0027976054698228836,
0.013515802100300789,
-0.02313339337706566,
0.01980712078511715,
0.005117341410368681,
0.009820779785513878,
-0.005711855832487345,
-0.011529069393873215,
-0.0011128336191177368,
0.004417469725012779,
0.005354394670575857,
0.012033278122544289,
0.00591504480689764,
-0.011152793653309345,
0.004714726936072111,
0.0100089181214571,
0.006234878674149513,
-0.012793353758752346,
0.018181612715125084,
-0.025330839678645134,
0.008255476132035255,
-0.0005089120822958648,
-0.008104966022074223,
-0.0033319159410893917,
-0.01687217503786087,
-0.006509559229016304,
-0.005444700829684734,
0.006900885608047247,
-0.004018618259578943,
-0.014629576355218887,
-0.00796950701624155,
-0.013425495475530624,
-0.030372926965355873,
0.0017891881288960576,
-0.0020017835777252913,
-0.0014561846619471908,
0.005392022430896759,
0.003442917251959443,
-0.0019999020732939243,
-0.0027618592139333487,
-0.0006881130975671113,
0.00011317649477859959,
0.0018192901043221354,
0.0012210126733407378,
0.021869108080863953,
-0.0065735261887311935,
0.0048953392542898655,
0.0005202003521844745,
0.010317463427782059,
0.018678296357393265,
-0.01708289049565792,
-0.01258263923227787,
0.007092785555869341,
-0.007280923426151276,
-0.016059421002864838,
-0.030041804537177086,
-0.014908019453287125,
0.030613742768764496,
-0.007356178481131792,
0.008571546524763107,
-0.008917720057070255,
-0.01076146773993969,
0.00435350276529789,
0.004026143811643124,
-0.004598081577569246,
0.0072583467699587345,
-0.0014289047103375196,
-0.0020732758566737175,
-0.010001392103731632,
0.013026644475758076,
-0.014644626528024673,
0.010151902213692665,
0.0073034996166825294,
-0.01405011210590601,
-0.0009021195583045483,
0.015954064205288887,
-0.00623864121735096,
0.02280227094888687,
-0.006716510746628046,
0.010355090722441673,
0.00764214713126421,
0.004011092707514763,
-0.00012205423990963027,
0.007092785555869341,
0.01655610464513302,
-0.010309937410056591,
-0.0006932868855074048,
0.004090110305696726,
-0.01304922066628933,
0.01569819636642933,
0.0014712356496602297,
-0.002061987528577447,
0.0028088935650885105,
-0.016134675592184067,
0.012311721220612526,
0.005079713650047779,
-0.0028389955405145884,
0.0041503142565488815,
-0.00566670298576355,
0.004131500609219074,
-0.0005874594789929688,
-0.007849098183214664,
-0.012304196134209633,
-0.004793744999915361,
-0.014704830944538116,
0.0014100909465923905,
-0.006291319616138935,
0.013455597683787346,
0.015878809615969658,
0.007977032102644444,
-0.01640559360384941,
-0.002280227141454816,
-0.007457772735506296,
-0.0009303402039222419,
0.008917720057070255,
-0.019491050392389297,
-0.006306370720267296,
-0.022862475365400314,
0.005346869118511677,
-0.00015921139856800437,
0.00023082125699147582,
-0.004616895690560341,
-0.006227353122085333,
-0.013365291990339756,
-0.01045292243361473,
-0.008451138623058796,
0.007619570940732956,
0.02055967226624489,
-0.0002570429351180792,
-0.0067390869371593,
0.012462231330573559,
0.014268351718783379,
-0.028371142223477364,
0.013899601995944977,
-0.028912978246808052,
0.01569819636642933,
0.005963960196822882,
-0.024457881227135658,
-0.0105131259188056,
0.01611962541937828,
-0.019686713814735413,
-0.025752268731594086,
-0.004026143811643124,
0.001930291298776865,
0.02027370221912861,
0.018919112160801888,
0.0032773560378700495,
0.0015154479769989848,
-0.0006566000520251691,
0.004714726936072111,
0.028762469068169594,
0.003420340595766902,
0.003256661118939519,
0.013357765972614288,
-0.0016076354077085853,
0.004218043759465218,
0.009534810669720173,
0.002125954255461693,
0.021929312497377396,
0.0018860789714381099,
0.013929704204201698,
-0.009835830889642239,
-0.014004959724843502,
-0.02641451172530651,
-0.0016367967473343015,
-0.009700371883809566,
0.016420645639300346,
0.018828805536031723,
-0.01125815138220787,
-0.029966549947857857,
0.006535898428410292,
0.01791069470345974,
0.0029274201951920986,
-0.02716706320643425,
-0.017534419894218445,
0.016420645639300346,
-0.009429453872144222,
0.004086347762495279,
0.0009566794615238905,
0.008345781825482845,
-0.013395393267273903,
-0.005064663011580706,
-0.005606499034911394,
-0.0037683951668441296,
0.014667203649878502,
0.012198838405311108,
0.011250625364482403,
0.023073188960552216,
0.0406678132712841,
0.003140015760436654,
-0.003777801990509033,
-0.00033041657297872007,
0.02277216874063015,
-0.005565108731389046,
0.002366770291700959,
-0.032299455255270004,
-0.0057946364395320415,
0.0028070122934877872,
0.0017713150009512901,
-0.010430346243083477,
0.0012624029768630862,
0.0008861278765834868,
0.00839846022427082,
0.0013489462435245514,
0.015374600887298584,
-0.006693934090435505,
0.0183772761374712,
0.026008134707808495,
0.005903756245970726,
0.01569819636642933,
0.001444896450266242,
-0.0035520370583981276,
-0.003826717846095562,
0.015276769176125526,
0.00839846022427082,
0.0022595319896936417,
0.04075811803340912,
0.00795445591211319,
0.0003727475123014301,
-0.002616993384435773,
0.007916827686131,
-0.016495900228619576,
0.0015464907046407461,
0.016571154817938805,
0.009587489999830723,
0.006310133263468742,
0.014140418730676174,
-0.004075059201568365,
-0.012642843648791313,
0.007243295665830374,
0.004492724779993296,
0.005704330746084452,
0.01009922381490469,
0.005696805194020271,
-0.02552650310099125,
-0.0007243295549415052,
-0.007751266937702894,
0.010641059838235378,
0.013410444371402264,
-0.0027806730940937996,
0.0016405594069510698,
-0.015306871384382248,
0.018783653154969215,
0.04915658012032509,
0.0066976966336369514,
-0.001737450249493122,
-0.021537987515330315,
-0.009820779785513878,
-0.013568480499088764,
-0.02656502276659012,
0.025646910071372986,
0.0005361920339055359,
0.004026143811643124,
-0.0028785045724362135,
-0.01622498221695423,
0.0014063281705603004,
-0.006596102379262447,
0.0016161015955731273,
0.002011190401390195,
0.03085455857217312,
0.008390935137867928,
-0.02490941248834133,
0.01510368287563324,
0.015020902268588543,
-0.021643344312906265,
0.008405986241996288,
0.00942192878574133,
0.014433912932872772,
-0.0045416406355798244,
-0.000542306515853852,
-0.004304587375372648,
0.00022964540403336287,
0.008767209947109222,
0.003156948136165738,
0.0019255878869444132,
-0.025315789505839348,
-0.011897819116711617,
-0.02441272884607315,
-0.014321030117571354,
-0.006249929312616587,
0.01980712078511715,
0.0005582981975749135,
0.022140026092529297,
-0.024653544649481773,
0.00018884307064581662,
-0.0069046481512486935,
-0.0005244334461167455,
0.002820181893184781,
-0.00526408851146698,
-0.020890792831778526,
-0.002705418039113283,
-0.02852165326476097,
0.015171412378549576,
-0.015954064205288887,
0.007111599203199148,
-0.012748200446367264,
0.007367466576397419,
0.005455988924950361,
0.0211316104978323,
-0.016887227073311806,
-0.012236466631293297,
0.010159427300095558,
0.0010968418791890144,
-0.006027927156537771,
0.018994366750121117,
0.006389151327311993,
0.013741566799581051,
0.017865542322397232,
0.012785827741026878,
-0.010784044861793518,
-0.014840289950370789,
0.0018945451593026519,
-0.0024232116993516684,
0.026354307308793068,
-0.02105635404586792,
-0.0008362714434042573,
0.0016499663470312953,
-0.010942080058157444,
0.009828305803239346,
-0.014682254754006863,
-0.015863757580518723,
0.004537877626717091,
0.007427670527249575,
-0.0009105857461690903,
-0.00353886722587049,
0.008458664640784264,
0.007073971908539534,
0.007581943180412054,
0.016330339014530182,
-0.014223198406398296,
-0.002714824862778187,
-0.01551758497953415,
0.01912982575595379,
-0.027618592604994774,
-0.030297670513391495,
-0.03241986408829689,
-0.0022068535909056664,
0.009474607184529305,
0.006020401604473591,
-0.02898823469877243,
0.01744411326944828,
0.009655219502747059,
-0.030764251947402954,
-0.0015831774799153209,
-0.0031926941592246294,
0.008714531548321247,
0.02977088652551174,
-0.00897039845585823,
0.017504317685961723,
0.0015182700008153915,
0.00782652199268341,
0.01056580524891615,
-0.029003284871578217,
-0.004842660389840603,
-0.01855788752436638,
0.0028258259408175945,
0.014561846852302551,
0.005572634283453226,
-0.004669574089348316,
0.0034993584267795086,
-0.04969841614365578,
-0.02269691415131092,
-0.007183091714978218,
0.02867216244339943,
0.00772116519510746,
0.010309937410056591,
-0.007834048010408878,
-0.0035689694341272116,
-0.007137938868254423,
0.005170019809156656,
0.0055688717402517796,
0.0024758900981396437,
-0.004195467568933964,
0.0008466189610771835,
-0.0023046850692480803,
-0.0016631359467282891,
-0.01328251138329506,
0.05400300398468971,
0.02084564045071602,
0.013515802100300789,
-0.008564021438360214,
-0.001241707825101912,
0.022275486961007118,
-0.015051004476845264,
-0.017353808507323265,
-0.012484807521104813,
0.002468364778906107,
0.00854144524782896,
-0.022711964324116707,
0.010957131162285805,
-0.006091894116252661,
0.007517976686358452,
0.0052603259682655334,
-0.010212106630206108,
-0.0010620364919304848,
-0.003345085773617029,
-0.018211714923381805,
-0.021146660670638084,
0.009497183375060558,
0.029605325311422348,
-0.02123696729540825,
0.014554320834577084,
-0.0026264002081006765,
0.009023076854646206,
-0.02144768089056015,
0.014072689227759838,
0.014147943817079067,
0.024999717250466347,
-0.010460447520017624,
0.0050872392021119595,
0.0128159299492836,
-0.0009176409221254289,
0.0018446886679157615,
0.007627096492797136,
0.020785436034202576,
-0.006532135885208845,
-0.024111708626151085,
0.013463122770190239,
0.008992974646389484,
-0.013967331498861313,
-0.002097733784466982,
0.01715814508497715,
0.0017619081772863865,
-0.0006434304523281753,
-0.013417970389127731,
0.01848263293504715,
0.02713696099817753,
0.023208647966384888,
-0.0015474313404411077,
-0.002349837915971875,
0.008195271715521812,
0.009707897901535034,
-0.01463710144162178,
0.001114715007133782,
-0.014606999233365059,
-0.0048953392542898655,
-0.01651095226407051,
-0.0007102192612364888,
-0.006701459642499685,
-0.0054409378208220005,
-0.0031795245595276356,
-0.015306871384382248,
-0.014366183429956436,
-0.00477116834372282,
0.008270526304841042,
-0.02805507183074951,
0.013147052377462387,
0.014328556135296822,
0.006788002792745829,
-0.0067917658016085625,
-0.0024269744753837585,
-0.014358658343553543,
-0.014238249510526657,
0.010678687132894993,
-0.01794079691171646,
0.007615807931870222,
-0.007999608293175697,
-0.009933662600815296,
-0.008074863813817501,
0.011717206798493862,
-0.006268743425607681,
0.02173364907503128,
-0.005162494257092476,
0.007209430914372206,
-0.020454315468668938,
-0.007499162573367357,
0.021613242104649544,
0.020258652046322823,
0.004240620415657759,
-0.022140026092529297,
-0.0034692564513534307,
-0.0015248548006638885,
-0.012394501827657223,
-0.02084564045071602,
-0.009120908565819263,
-0.008767209947109222,
0.009075755253434181,
0.009512234479188919,
0.026926245540380478,
-0.01915992796421051,
-0.0012793353525921702,
0.007378754671663046,
-0.010061596520245075,
0.009610066190361977,
-0.005410836078226566,
-0.012191313318908215,
0.009226265363395214,
0.004537877626717091,
-0.007886726409196854,
-0.013568480499088764,
-0.006720273289829493,
0.021537987515330315,
0.016315288841724396,
0.021869108080863953,
-0.011273202486336231,
-0.00526408851146698,
0.01794079691171646,
-0.012236466631293297,
-0.007916827686131,
0.01998773403465748,
0.01598416641354561,
0.004906627349555492,
-0.011408661492168903,
0.0014383115340024233,
0.028220633044838905,
0.004142788704484701,
0.014433912932872772,
-0.020574722439050674,
-0.0172635018825531,
0.011498967185616493,
0.017745133489370346,
0.0016546697588637471,
0.012672945857048035,
-0.011807512491941452,
0.00247024605050683,
0.02742292918264866,
-0.0036611566320061684,
0.001964156050235033,
0.052497901022434235,
0.0011071894550696015,
-0.0036837332881987095,
-0.006035452708601952,
0.01190534420311451,
0.0020055463537573814,
0.0009185816161334515,
0.007924353703856468,
-0.02981603890657425,
0.02420201525092125,
0.016781870275735855,
0.002142886631190777,
-0.0021880397107452154,
-0.0014749984256923199,
0.0017713150009512901,
0.019190030172467232,
0.017112990841269493,
-0.025180330500006676,
-0.0017261620378121734,
0.0011890293098986149,
0.01736885868012905,
0.007924353703856468,
0.0024947039783000946,
0.00600535050034523,
0.012116058729588985,
-0.011378559283912182,
-0.018061205744743347,
0.030613742768764496,
-0.013899601995944977,
-0.027723949402570724,
-0.0028389955405145884,
-0.004993170499801636,
-0.01147639099508524,
0.00815011840313673,
0.016435695812106133,
0.009181112051010132,
-0.00012417077959980816,
0.0004157839866820723,
0.02477395348250866,
0.021899210289120674,
0.006543423980474472,
-0.008842464536428452,
0.017504317685961723,
0.04102903604507446,
-0.015412228181958199,
-0.01572829857468605,
-0.013229832984507084,
0.011754834093153477,
0.00123324163723737,
0.005049611907452345,
-0.016074473038315773,
0.017007634043693542,
-0.0014834646135568619,
-0.022425996139645576,
0.011521543376147747,
0.012469757348299026,
0.001911477535031736,
0.01565304398536682,
0.009256367571651936,
0.004714726936072111,
-0.02051451802253723,
-0.026188747957348824,
0.008691954426467419
] | 97 |
CVE-2019-20159 | 2019-12-31T00:15:12.243000 | "An issue was discovered in GPAC version 0.8.0 and 0.9.0-development-20191109. There is a memory lea(...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Exploit","Third Party Advisory"],"url":"https://github.com/gpac/(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:gpac:gpac:0.8.0:*:*:*:*:*:*:*","matchCriteriaId":"93E(...TRUNCATED) | https://github.com/gpac/gpac/issues/1321 | [
"Exploit",
"Third Party Advisory"
] | github.com | [
"gpac",
"gpac"
] | "System info: \r\nUbuntu 16.04.6 LTS, X64, gcc 5.4.0, gpac (master 6ada10e) \r\nCompile Command:\r(...TRUNCATED) | AddressSanitizer: a memory leak of dinf_New() | https://api.github.com/repos/gpac/gpac/issues/1321/comments | 2 | 2019-10-28T16:03:11 | 2020-01-08T12:43:28Z | https://github.com/gpac/gpac/issues/1321 | 513,400,465 | 1,321 | true | "This is a GitHub Issue\nrepo:gpac\nowner:gpac\nTitle : AddressSanitizer: a memory leak of dinf_New((...TRUNCATED) | 1,983 | [-0.041972242295742035,0.04615168273448944,-0.013360867276787758,-0.010663499124348164,0.02014134079(...TRUNCATED) | 121 |
CVE-2021-33361 | 2021-09-13T20:15:08.510000 | "Memory leak in the afra_box_read function in MP4Box in GPAC 1.0.1 allows attackers to read memory v(...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Patch","Third Party Advisory"],"url":"https://github.com/gpac/gp(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:gpac:gpac:1.0.1:*:*:*:*:*:*:*","matchCriteriaId":"82D(...TRUNCATED) | https://github.com/gpac/gpac/issues/1782 | [
"Exploit",
"Issue Tracking",
"Patch",
"Third Party Advisory"
] | github.com | [
"gpac",
"gpac"
] | null | [security]memory leak in MP4Box afra_box_read | https://api.github.com/repos/gpac/gpac/issues/1782/comments | 0 | 2021-05-08T05:12:31 | 2023-09-22T06:09:46Z | https://github.com/gpac/gpac/issues/1782 | 880,294,671 | 1,782 | true | "This is a GitHub Issue\nrepo:gpac\nowner:gpac\nTitle : [security]memory leak in MP4Box afra_box_rea(...TRUNCATED) | 152 | [-0.02855638787150383,0.027851847931742668,-0.0010830441024154425,0.004425865598022938,0.03516707941(...TRUNCATED) | 312 |
CVE-2021-26197 | 2021-06-10T23:15:08.403000 | "An issue was discovered in JerryScript 2.4.0. There is a SEGV in main_print_unhandled_exception in (...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Exploit","Issue Tracking","Patch","Third Party Advisory"],"url":(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:jerryscript:jerryscript:2.4.0:*:*:*:*:*:*:*","matchCr(...TRUNCATED) | https://github.com/jerryscript-project/jerryscript/issues/4403 | [
"Exploit",
"Issue Tracking",
"Patch",
"Third Party Advisory"
] | github.com | [
"jerryscript-project",
"jerryscript"
] | "\r\n###### JerryScript revision\r\n2faafa4\r\n###### Build platform\r\nUbuntu 18.04.5 LTS(Linux 4.1(...TRUNCATED) | SEGV in main_print_unhandled_exception | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4403/comments | 0 | 2021-01-02T14:31:59 | 2021-01-08T15:03:34Z | https://github.com/jerryscript-project/jerryscript/issues/4403 | 777,469,465 | 4,403 | true | "This is a GitHub Issue\nrepo:jerryscript\nowner:jerryscript-project\nTitle : SEGV in main_print_unh(...TRUNCATED) | 1,622 | [-0.01165247242897749,0.00813268218189478,-0.0038732264656573534,0.005057421047240496,0.029455468058(...TRUNCATED) | 265 |
null | null | null | null | null | null | null | null | null | [
"axiomatic-systems",
"Bento4"
] | "Hi\r\n\r\nI found an crash erro.\r\n\r\nSystem info:\r\nUbuntu 20.04 : clang 10.0.0 , gcc 9.3.0\r(...TRUNCATED) | NULL pointer dereference of Ap4StszAtom.cpp in function GetSampleSize | https://api.github.com/repos/axiomatic-systems/Bento4/issues/602/comments | 1 | 2021-05-12T06:11:50 | 2021-07-24T18:23:50Z | https://github.com/axiomatic-systems/Bento4/issues/602 | 889,698,306 | 602 | false | "This is a GitHub Issue\nrepo:Bento4\nowner:axiomatic-systems\nTitle : NULL pointer dereference of A(...TRUNCATED) | 5,655 | [-0.0204120222479105,0.0052501726895570755,-0.006331847980618477,0.02064749039709568,0.0443854816257(...TRUNCATED) | 2,070 |
CVE-2021-39525 | 2021-09-20T16:15:11.990000 | "An issue was discovered in libredwg through v0.10.1.3751. bit_read_fixed() in bits.c has a heap-bas(...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Exploit","Issue Tracking","Third Party Advisory"],"url":"https:/(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:gnu:libredwg:*:*:*:*:*:*:*:*","matchCriteriaId":"937A(...TRUNCATED) | https://github.com/LibreDWG/libredwg/issues/261 | [
"Exploit",
"Issue Tracking",
"Third Party Advisory"
] | github.com | [
"LibreDWG",
"libredwg"
] | "## System info\r\n\r\nUbuntu X64, gcc (Ubuntu 5.5.0-12ubuntu1), dwg2dxf (latest master [39ef943](ht(...TRUNCATED) | A heap overflow in bits.c:1424 | https://api.github.com/repos/LibreDWG/libredwg/issues/261/comments | 1 | 2020-08-02T04:51:37 | 2020-08-02T12:15:30Z | https://github.com/LibreDWG/libredwg/issues/261 | 671,508,299 | 261 | true | "This is a GitHub Issue\nrepo:libredwg\nowner:LibreDWG\nTitle : A heap overflow in bits.c:1424\nIssu(...TRUNCATED) | 3,800 | [-0.028952211141586304,0.0179443396627903,-0.0033966070041060448,-0.0007030712440609932,0.0591107644(...TRUNCATED) | 336 |
CVE-2020-23266 | 2021-09-22T00:15:08.567000 | "An issue was discovered in gpac 0.8.0. The OD_ReadUTF8String function in odf_code.c has a heap-base(...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Exploit","Issue Tracking","Third Party Advisory"],"url":"https:/(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:gpac:gpac:0.8.0:*:*:*:*:*:*:*","matchCriteriaId":"93E(...TRUNCATED) | https://github.com/gpac/gpac/issues/1481 | [
"Exploit",
"Issue Tracking",
"Third Party Advisory"
] | github.com | [
"gpac",
"gpac"
] | "- [ y] I looked for a similar issue and couldn't find any.\r\n- [ y] I tried with the latest versio(...TRUNCATED) | Heap-buffer-overflow in OD_ReadUTF8String() odf_code.c | https://api.github.com/repos/gpac/gpac/issues/1481/comments | 1 | 2020-05-12T18:18:19 | 2020-06-11T15:01:32Z | https://github.com/gpac/gpac/issues/1481 | 616,861,182 | 1,481 | true | "This is a GitHub Issue\nrepo:gpac\nowner:gpac\nTitle : Heap-buffer-overflow in OD_ReadUTF8String() (...TRUNCATED) | 4,906 | [-0.04395993426442146,0.03342880681157112,-0.008312067948281765,0.004054483957588673,0.0210472103208(...TRUNCATED) | 343 |
CVE-2019-12979 | 2019-06-26T18:15:10.417000 | "ImageMagick 7.0.8-34 has a \"use of uninitialized value\" vulnerability in the SyncImageSettings fu(...TRUNCATED) | {"cvssMetricV2":[{"acInsufInfo":false,"baseSeverity":"MEDIUM","cvssData":{"accessComplexity":"MEDIUM(...TRUNCATED) | [{"source":"cve@mitre.org","tags":["Mailing List","Third Party Advisory"],"url":"http://lists.opensu(...TRUNCATED) | [{"nodes":[{"cpeMatch":[{"criteria":"cpe:2.3:a:imagemagick:imagemagick:7.0.8-34:*:*:*:*:*:*:*","matc(...TRUNCATED) | https://github.com/ImageMagick/ImageMagick/issues/1522 | [
"Patch",
"Third Party Advisory"
] | github.com | [
"ImageMagick",
"ImageMagick"
] | "### Prerequisites\r\n\r\n- [ Y ] I have written a descriptive issue title\r\n- [ Y ] I have verifie(...TRUNCATED) | Use-of-uninitialized-value in function SyncImageSettings. | https://api.github.com/repos/ImageMagick/ImageMagick/issues/1522/comments | 5 | 2019-03-21T11:58:29 | 2019-08-10T06:30:27Z | https://github.com/ImageMagick/ImageMagick/issues/1522 | 423,694,012 | 1,522 | true | "This is a GitHub Issue\nrepo:ImageMagick\nowner:ImageMagick\nTitle : Use-of-uninitialized-value in (...TRUNCATED) | 1,728 | [-0.03209313005208969,0.04295886680483818,-0.003528564004227519,0.03164505586028099,0.01354716531932(...TRUNCATED) | 48 |
null | null | null | null | null | null | null | null | null | [
"jerryscript-project",
"jerryscript"
] | "E.g\r\n\r\n```\r\nclass foo\r\n{\r\npublic:\r\n void printxx(const char* str)\r\n {\r\n (...TRUNCATED) | How to register a C++ class to the script? | https://api.github.com/repos/jerryscript-project/jerryscript/issues/4711/comments | 1 | 2021-07-15T06:53:59 | 2022-10-13T12:55:30Z | https://github.com/jerryscript-project/jerryscript/issues/4711 | 945,061,608 | 4,711 | false | "This is a GitHub Issue\nrepo:jerryscript\nowner:jerryscript-project\nTitle : How to register a C++ (...TRUNCATED) | 429 | [-0.008068752475082874,0.015139308758080006,-0.018095504492521286,0.010634628124535084,0.04340873658(...TRUNCATED) | 2,265 |
End of preview. Expand
in Dataset Viewer.
README.md exists but content is empty.
- Downloads last month
- 32