zstd 1.1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +5 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +64 -0
  7. data/Rakefile +19 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +8 -0
  10. data/exe/zstd +3 -0
  11. data/ext/zstd/extconf.rb +20 -0
  12. data/ext/zstd/libzstd/.gitignore +2 -0
  13. data/ext/zstd/libzstd/LICENSE +1262 -0
  14. data/ext/zstd/libzstd/Makefile +133 -0
  15. data/ext/zstd/libzstd/PATENTS +1272 -0
  16. data/ext/zstd/libzstd/README.md +77 -0
  17. data/ext/zstd/libzstd/common/bitstream.h +414 -0
  18. data/ext/zstd/libzstd/common/entropy_common.c +227 -0
  19. data/ext/zstd/libzstd/common/error_private.c +43 -0
  20. data/ext/zstd/libzstd/common/error_private.h +76 -0
  21. data/ext/zstd/libzstd/common/fse.h +668 -0
  22. data/ext/zstd/libzstd/common/fse_decompress.c +329 -0
  23. data/ext/zstd/libzstd/common/huf.h +238 -0
  24. data/ext/zstd/libzstd/common/mem.h +372 -0
  25. data/ext/zstd/libzstd/common/xxhash.c +867 -0
  26. data/ext/zstd/libzstd/common/xxhash.h +309 -0
  27. data/ext/zstd/libzstd/common/zstd_common.c +77 -0
  28. data/ext/zstd/libzstd/common/zstd_errors.h +60 -0
  29. data/ext/zstd/libzstd/common/zstd_internal.h +270 -0
  30. data/ext/zstd/libzstd/compress/fse_compress.c +850 -0
  31. data/ext/zstd/libzstd/compress/huf_compress.c +609 -0
  32. data/ext/zstd/libzstd/compress/zstd_compress.c +3291 -0
  33. data/ext/zstd/libzstd/compress/zstd_opt.h +919 -0
  34. data/ext/zstd/libzstd/decompress/huf_decompress.c +885 -0
  35. data/ext/zstd/libzstd/decompress/zstd_decompress.c +2154 -0
  36. data/ext/zstd/libzstd/deprecated/zbuff.h +210 -0
  37. data/ext/zstd/libzstd/deprecated/zbuff_compress.c +145 -0
  38. data/ext/zstd/libzstd/deprecated/zbuff_decompress.c +74 -0
  39. data/ext/zstd/libzstd/dictBuilder/divsufsort.c +1913 -0
  40. data/ext/zstd/libzstd/dictBuilder/divsufsort.h +67 -0
  41. data/ext/zstd/libzstd/dictBuilder/zdict.c +1012 -0
  42. data/ext/zstd/libzstd/dictBuilder/zdict.h +111 -0
  43. data/ext/zstd/libzstd/dll/example/Makefile +47 -0
  44. data/ext/zstd/libzstd/dll/example/README.md +69 -0
  45. data/ext/zstd/libzstd/dll/example/build_package.bat +17 -0
  46. data/ext/zstd/libzstd/dll/example/fullbench-dll.sln +25 -0
  47. data/ext/zstd/libzstd/dll/example/fullbench-dll.vcxproj +179 -0
  48. data/ext/zstd/libzstd/dll/libzstd.def +86 -0
  49. data/ext/zstd/libzstd/legacy/zstd_legacy.h +259 -0
  50. data/ext/zstd/libzstd/legacy/zstd_v01.c +2095 -0
  51. data/ext/zstd/libzstd/legacy/zstd_v01.h +80 -0
  52. data/ext/zstd/libzstd/legacy/zstd_v02.c +3518 -0
  53. data/ext/zstd/libzstd/legacy/zstd_v02.h +79 -0
  54. data/ext/zstd/libzstd/legacy/zstd_v03.c +3159 -0
  55. data/ext/zstd/libzstd/legacy/zstd_v03.h +79 -0
  56. data/ext/zstd/libzstd/legacy/zstd_v04.c +3795 -0
  57. data/ext/zstd/libzstd/legacy/zstd_v04.h +128 -0
  58. data/ext/zstd/libzstd/legacy/zstd_v05.c +4056 -0
  59. data/ext/zstd/libzstd/legacy/zstd_v05.h +149 -0
  60. data/ext/zstd/libzstd/legacy/zstd_v06.c +4167 -0
  61. data/ext/zstd/libzstd/legacy/zstd_v06.h +159 -0
  62. data/ext/zstd/libzstd/legacy/zstd_v07.c +4540 -0
  63. data/ext/zstd/libzstd/legacy/zstd_v07.h +173 -0
  64. data/ext/zstd/libzstd/libzstd.pc.in +14 -0
  65. data/ext/zstd/libzstd/zstd.h +673 -0
  66. data/ext/zstd/zstd.c +185 -0
  67. data/ext/zstd/zstd.h +7 -0
  68. data/lib/zstd/version.rb +3 -0
  69. data/lib/zstd.rb +6 -0
  70. data/zstd.gemspec +38 -0
  71. metadata +172 -0
@@ -0,0 +1,1262 @@
1
+
2
+
3
+
4
+
5
+ <!DOCTYPE html>
6
+ <html lang="en" class="">
7
+ <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
8
+ <meta charset='utf-8'>
9
+
10
+
11
+ <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-c07e6f4b02b556d1d85052fb3853caf84c80e6b23dcdb1ae1b00f051da1115a2.css" integrity="sha256-wH5vSwK1VtHYUFL7OFPK+EyA5rI9zbGuGwDwUdoRFaI=" media="all" rel="stylesheet" />
12
+ <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-85f6307e0a74c78ba00f8c5bf9c7fb17a418d361627638f51f989be45f709416.css" integrity="sha256-hfYwfgp0x4ugD4xb+cf7F6QY02Fidjj1H5ib5F9wlBY=" media="all" rel="stylesheet" />
13
+
14
+
15
+
16
+
17
+
18
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
19
+ <meta http-equiv="Content-Language" content="en">
20
+ <meta name="viewport" content="width=device-width">
21
+
22
+ <title>zstd/LICENSE at dev · facebook/zstd</title>
23
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
24
+ <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
25
+ <link rel="apple-touch-icon" href="/apple-touch-icon.png">
26
+ <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
27
+ <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
28
+ <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
29
+ <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
30
+ <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
31
+ <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
32
+ <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
33
+ <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
34
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
35
+ <meta property="fb:app_id" content="1401488693436528">
36
+
37
+ <meta content="https://avatars2.githubusercontent.com/u/69631?v=3&amp;s=400" name="twitter:image:src" /><meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="facebook/zstd" name="twitter:title" /><meta content="zstd - Zstandard - Fast real-time compression algorithm" name="twitter:description" />
38
+ <meta content="https://avatars2.githubusercontent.com/u/69631?v=3&amp;s=400" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="facebook/zstd" property="og:title" /><meta content="https://github.com/facebook/zstd" property="og:url" /><meta content="zstd - Zstandard - Fast real-time compression algorithm" property="og:description" />
39
+ <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
40
+ <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
41
+ <link rel="assets" href="https://assets-cdn.github.com/">
42
+ <link rel="web-socket" href="wss://live.github.com/_sockets/VjI6MTQ1MDk4Mjc4OjViYTg5NTk4ZmVlNDU1MDhkMzkyNzRmOGEyYWM1Njg3M2ZkZjkyYjA3Y2ZlMWI2MDRhMTZjNzcwNzFhYTViMDU=--11a059494d84324511fd07eeeacb1fd8fc720cb1">
43
+ <meta name="pjax-timeout" content="1000">
44
+ <link rel="sudo-modal" href="/sessions/sudo_modal">
45
+ <meta name="request-id" content="85C7:4D7F:425E517:6BFD969:58885D3A" data-pjax-transient>
46
+
47
+ <meta name="msapplication-TileImage" content="/windows-tile.png">
48
+ <meta name="msapplication-TileColor" content="#ffffff">
49
+ <meta name="selected-link" value="repo_source" data-pjax-transient>
50
+
51
+ <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
52
+ <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
53
+ <meta name="google-analytics" content="UA-3769691-2">
54
+
55
+ <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="85C7:4D7F:425E517:6BFD969:58885D3A" name="octolytics-dimension-request_id" /><meta content="427660" name="octolytics-actor-id" /><meta content="larsin" name="octolytics-actor-login" /><meta content="4be37f9ad02549439bf16d376ca0c4a19c46946b97dc2347527f9897344c0d73" name="octolytics-actor-hash" />
56
+ <meta content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" name="analytics-location" />
57
+
58
+
59
+
60
+ <meta class="js-ga-set" name="dimension1" content="Logged In">
61
+
62
+
63
+
64
+ <meta name="hostname" content="github.com">
65
+ <meta name="user-login" content="larsin">
66
+
67
+ <meta name="expected-hostname" content="github.com">
68
+ <meta name="js-proxy-site-detection-payload" content="Yzc0OTQ1MGI3MTE0MDcxZDBlZGI5ZGE5NWM2NjhkMzU5NGEyODQxNDFmY2UwNGI1M2I1ODI1MmY3MjFkZWZiZHx7InJlbW90ZV9hZGRyZXNzIjoiMTk1LjE1OS4xMTkuMzQiLCJyZXF1ZXN0X2lkIjoiODVDNzo0RDdGOjQyNUU1MTc6NkJGRDk2OTo1ODg4NUQzQSIsInRpbWVzdGFtcCI6MTQ4NTMzMTc3MCwiaG9zdCI6ImdpdGh1Yi5jb20ifQ==">
69
+
70
+
71
+ <link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#000000">
72
+ <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
73
+
74
+ <meta name="html-safe-nonce" content="7bdd1a62ccfbd393f6c76d33230e7d72f43bcc9a">
75
+
76
+ <meta http-equiv="x-pjax-version" content="a0d44715f0023df63908ae97906689f8">
77
+
78
+
79
+
80
+ <meta name="description" content="zstd - Zstandard - Fast real-time compression algorithm">
81
+ <meta name="go-import" content="github.com/facebook/zstd git https://github.com/facebook/zstd.git">
82
+
83
+ <meta content="69631" name="octolytics-dimension-user_id" /><meta content="facebook" name="octolytics-dimension-user_login" /><meta content="29759715" name="octolytics-dimension-repository_id" /><meta content="facebook/zstd" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="29759715" name="octolytics-dimension-repository_network_root_id" /><meta content="facebook/zstd" name="octolytics-dimension-repository_network_root_nwo" />
84
+ <link href="https://github.com/facebook/zstd/commits/dev.atom" rel="alternate" title="Recent Commits to zstd:dev" type="application/atom+xml">
85
+
86
+
87
+ <link rel="canonical" href="https://github.com/facebook/zstd/blob/dev/LICENSE" data-pjax-transient>
88
+ </head>
89
+
90
+
91
+ <body class="logged-in env-production linux vis-public page-blob">
92
+ <div id="js-pjax-loader-bar" class="pjax-loader-bar"><div class="progress"></div></div>
93
+ <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+ <div class="header header-logged-in true" role="banner">
102
+ <div class="container clearfix">
103
+
104
+ <a class="header-logo-invertocat" href="https://github.com/" data-hotkey="g d" aria-label="Homepage" data-ga-click="Header, go to dashboard, icon:logo">
105
+ <svg aria-hidden="true" class="octicon octicon-mark-github" height="28" version="1.1" viewBox="0 0 16 16" width="28"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
106
+ </a>
107
+
108
+
109
+ <div class="header-search scoped-search site-scoped-search js-site-search" role="search">
110
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/facebook/zstd/search" class="js-site-search-form" data-scoped-search-url="/facebook/zstd/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
111
+ <label class="form-control header-search-wrapper js-chromeless-input-container">
112
+ <div class="header-search-scope">This repository</div>
113
+ <input type="text"
114
+ class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"
115
+ data-hotkey="s"
116
+ name="q"
117
+ placeholder="Search"
118
+ aria-label="Search this repository"
119
+ data-unscoped-placeholder="Search GitHub"
120
+ data-scoped-placeholder="Search"
121
+ autocapitalize="off">
122
+ </label>
123
+ </form></div>
124
+
125
+
126
+ <ul class="header-nav float-left" role="navigation">
127
+ <li class="header-nav-item">
128
+ <a href="/pulls" aria-label="Pull requests you created" class="js-selected-navigation-item header-nav-link" data-ga-click="Header, click, Nav menu - item:pulls context:user" data-hotkey="g p" data-selected-links="/pulls /pulls/assigned /pulls/mentioned /pulls">
129
+ Pull requests
130
+ </a> </li>
131
+ <li class="header-nav-item">
132
+ <a href="/issues" aria-label="Issues you created" class="js-selected-navigation-item header-nav-link" data-ga-click="Header, click, Nav menu - item:issues context:user" data-hotkey="g i" data-selected-links="/issues /issues/assigned /issues/mentioned /issues">
133
+ Issues
134
+ </a> </li>
135
+ <li class="header-nav-item">
136
+ <a class="header-nav-link" href="https://gist.github.com/" data-ga-click="Header, go to gist, text:gist">Gist</a>
137
+ </li>
138
+ </ul>
139
+
140
+
141
+ <ul class="header-nav user-nav float-right" id="user-links">
142
+ <li class="header-nav-item">
143
+
144
+ <a href="/notifications" aria-label="You have unread notifications" class="header-nav-link notification-indicator tooltipped tooltipped-s js-socket-channel js-notification-indicator" data-channel="tenant:1:notification-changed:427660" data-ga-click="Header, go to notifications, icon:unread" data-hotkey="g n">
145
+ <span class="mail-status unread"></span>
146
+ <svg aria-hidden="true" class="octicon octicon-bell" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M14 12v1H0v-1l.73-.58c.77-.77.81-2.55 1.19-4.42C2.69 3.23 6 2 6 2c0-.55.45-1 1-1s1 .45 1 1c0 0 3.39 1.23 4.16 5 .38 1.88.42 3.66 1.19 4.42l.66.58H14zm-7 4c1.11 0 2-.89 2-2H5c0 1.11.89 2 2 2z"/></svg>
147
+ </a>
148
+ </li>
149
+
150
+ <li class="header-nav-item dropdown js-menu-container">
151
+ <a class="header-nav-link tooltipped tooltipped-s js-menu-target" href="/new"
152
+ aria-label="Create new…"
153
+ data-ga-click="Header, create new, icon:add">
154
+ <svg aria-hidden="true" class="octicon octicon-plus float-left" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 9H7v5H5V9H0V7h5V2h2v5h5z"/></svg>
155
+ <span class="dropdown-caret"></span>
156
+ </a>
157
+
158
+ <div class="dropdown-menu-content js-menu-content">
159
+ <ul class="dropdown-menu dropdown-menu-sw">
160
+
161
+ <a class="dropdown-item" href="/new" data-ga-click="Header, create new repository">
162
+ New repository
163
+ </a>
164
+
165
+ <a class="dropdown-item" href="/new/import" data-ga-click="Header, import a repository">
166
+ Import repository
167
+ </a>
168
+
169
+ <a class="dropdown-item" href="https://gist.github.com/" data-ga-click="Header, create new gist">
170
+ New gist
171
+ </a>
172
+
173
+ <a class="dropdown-item" href="/organizations/new" data-ga-click="Header, create new organization">
174
+ New organization
175
+ </a>
176
+
177
+
178
+
179
+ <div class="dropdown-divider"></div>
180
+ <div class="dropdown-header">
181
+ <span title="facebook/zstd">This repository</span>
182
+ </div>
183
+ <a class="dropdown-item" href="/facebook/zstd/issues/new" data-ga-click="Header, create new issue">
184
+ New issue
185
+ </a>
186
+
187
+ </ul>
188
+ </div>
189
+ </li>
190
+
191
+ <li class="header-nav-item dropdown js-menu-container">
192
+ <a class="header-nav-link name tooltipped tooltipped-sw js-menu-target" href="/larsin"
193
+ aria-label="View profile and more"
194
+ data-ga-click="Header, show menu, icon:avatar">
195
+ <img alt="@larsin" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/427660?v=3&amp;s=40" width="20" />
196
+ <span class="dropdown-caret"></span>
197
+ </a>
198
+
199
+ <div class="dropdown-menu-content js-menu-content">
200
+ <div class="dropdown-menu dropdown-menu-sw">
201
+ <div class="dropdown-header header-nav-current-user css-truncate">
202
+ Signed in as <strong class="css-truncate-target">larsin</strong>
203
+ </div>
204
+
205
+ <div class="dropdown-divider"></div>
206
+
207
+ <a class="dropdown-item" href="/larsin" data-ga-click="Header, go to profile, text:your profile">
208
+ Your profile
209
+ </a>
210
+ <a class="dropdown-item" href="/larsin?tab=stars" data-ga-click="Header, go to starred repos, text:your stars">
211
+ Your stars
212
+ </a>
213
+ <a class="dropdown-item" href="/explore" data-ga-click="Header, go to explore, text:explore">
214
+ Explore
215
+ </a>
216
+ <a class="dropdown-item" href="/integrations" data-ga-click="Header, go to integrations, text:integrations">
217
+ Integrations
218
+ </a>
219
+ <a class="dropdown-item" href="https://help.github.com" data-ga-click="Header, go to help, text:help">
220
+ Help
221
+ </a>
222
+
223
+ <div class="dropdown-divider"></div>
224
+
225
+ <a class="dropdown-item" href="/settings/profile" data-ga-click="Header, go to settings, icon:settings">
226
+ Settings
227
+ </a>
228
+
229
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="2XD1dPgk96NukgI9zPOffBNcc4vFyOxYVNIZKrpL7I1G+z/sZ2COpj/LS8jSGoe/rB0WMqoGjYiaMOENgsoqqA==" /></div>
230
+ <button type="submit" class="dropdown-item dropdown-signout" data-ga-click="Header, sign out, icon:logout">
231
+ Sign out
232
+ </button>
233
+ </form> </div>
234
+ </div>
235
+ </li>
236
+ </ul>
237
+
238
+
239
+
240
+ </div>
241
+ </div>
242
+
243
+
244
+
245
+
246
+
247
+ <div id="start-of-content" class="accessibility-aid"></div>
248
+
249
+ <div id="js-flash-container">
250
+ </div>
251
+
252
+
253
+ <div role="main">
254
+ <div itemscope itemtype="http://schema.org/SoftwareSourceCode">
255
+ <div id="js-repo-pjax-container" data-pjax-container>
256
+
257
+ <div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav">
258
+ <div class="container repohead-details-container">
259
+
260
+
261
+
262
+ <ul class="pagehead-actions">
263
+
264
+ <li>
265
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="vj7iwy672DHy9gUFQl8bHTd/PGbgawhu29XQ7HxTqBlPV10BfBlUaA1XlwRMx0n3l/lf++YLC2iDp6YXC19leg==" /></div> <input class="form-control" id="repository_id" name="repository_id" type="hidden" value="29759715" />
266
+
267
+ <div class="select-menu js-menu-container js-select-menu">
268
+ <a href="/facebook/zstd/subscription"
269
+ class="btn btn-sm btn-with-count select-menu-button js-menu-target" role="button" tabindex="0" aria-haspopup="true"
270
+ data-ga-click="Repository, click Watch settings, action:blob#show">
271
+ <span class="js-select-button">
272
+ <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
273
+ Watch
274
+ </span>
275
+ </a>
276
+ <a class="social-count js-social-count"
277
+ href="/facebook/zstd/watchers"
278
+ aria-label="247 users are watching this repository">
279
+ 247
280
+ </a>
281
+
282
+ <div class="select-menu-modal-holder">
283
+ <div class="select-menu-modal subscription-menu-modal js-menu-content" aria-hidden="true">
284
+ <div class="select-menu-header js-navigation-enable" tabindex="-1">
285
+ <svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
286
+ <span class="select-menu-title">Notifications</span>
287
+ </div>
288
+
289
+ <div class="select-menu-list js-navigation-container" role="menu">
290
+
291
+ <div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
292
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
293
+ <div class="select-menu-item-text">
294
+ <input checked="checked" id="do_included" name="do" type="radio" value="included" />
295
+ <span class="select-menu-item-heading">Not watching</span>
296
+ <span class="description">Be notified when participating or @mentioned.</span>
297
+ <span class="js-select-button-text hidden-select-button-text">
298
+ <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
299
+ Watch
300
+ </span>
301
+ </div>
302
+ </div>
303
+
304
+ <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
305
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
306
+ <div class="select-menu-item-text">
307
+ <input id="do_subscribed" name="do" type="radio" value="subscribed" />
308
+ <span class="select-menu-item-heading">Watching</span>
309
+ <span class="description">Be notified of all conversations.</span>
310
+ <span class="js-select-button-text hidden-select-button-text">
311
+ <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
312
+ Unwatch
313
+ </span>
314
+ </div>
315
+ </div>
316
+
317
+ <div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
318
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
319
+ <div class="select-menu-item-text">
320
+ <input id="do_ignore" name="do" type="radio" value="ignore" />
321
+ <span class="select-menu-item-heading">Ignoring</span>
322
+ <span class="description">Never be notified.</span>
323
+ <span class="js-select-button-text hidden-select-button-text">
324
+ <svg aria-hidden="true" class="octicon octicon-mute" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8 2.81v10.38c0 .67-.81 1-1.28.53L3 10H1c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h2l3.72-3.72C7.19 1.81 8 2.14 8 2.81zm7.53 3.22l-1.06-1.06-1.97 1.97-1.97-1.97-1.06 1.06L11.44 8 9.47 9.97l1.06 1.06 1.97-1.97 1.97 1.97 1.06-1.06L13.56 8l1.97-1.97z"/></svg>
325
+ Stop ignoring
326
+ </span>
327
+ </div>
328
+ </div>
329
+
330
+ </div>
331
+
332
+ </div>
333
+ </div>
334
+ </div>
335
+ </form>
336
+ </li>
337
+
338
+ <li>
339
+ <div class="js-toggler-container js-social-container starring-container ">
340
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/facebook/zstd/unstar" class="starred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="Y9NHVkdgOZL+0OLeSxuLZgz0JD0m09lQ27lP2DzjnE8AV6mYfU/MfeONKoxTakdhDtqcssEpQhYOaz49JdNHAQ==" /></div>
341
+ <button
342
+ type="submit"
343
+ class="btn btn-sm btn-with-count js-toggler-target"
344
+ aria-label="Unstar this repository" title="Unstar facebook/zstd"
345
+ data-ga-click="Repository, click unstar button, action:blob#show; text:Unstar">
346
+ <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"/></svg>
347
+ Unstar
348
+ </button>
349
+ <a class="social-count js-social-count" href="/facebook/zstd/stargazers"
350
+ aria-label="4574 users starred this repository">
351
+ 4,574
352
+ </a>
353
+ </form>
354
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/facebook/zstd/star" class="unstarred" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="9AFG9Kz/PX9mq0c/NTqL95CQdbdYI2TSpZhTMTO2Lt4rslprw6b2iZk7Uh5izJjrz+7wzU5e71q4yAzgvXWYsA==" /></div>
355
+ <button
356
+ type="submit"
357
+ class="btn btn-sm btn-with-count js-toggler-target"
358
+ aria-label="Star this repository" title="Star facebook/zstd"
359
+ data-ga-click="Repository, click star button, action:blob#show; text:Star">
360
+ <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"/></svg>
361
+ Star
362
+ </button>
363
+ <a class="social-count js-social-count" href="/facebook/zstd/stargazers"
364
+ aria-label="4574 users starred this repository">
365
+ 4,574
366
+ </a>
367
+ </form> </div>
368
+
369
+ </li>
370
+
371
+ <li>
372
+ <a href="#fork-destination-box" class="btn btn-sm btn-with-count"
373
+ title="Fork your own copy of facebook/zstd to your account"
374
+ aria-label="Fork your own copy of facebook/zstd to your account"
375
+ rel="facebox"
376
+ data-ga-click="Repository, show fork modal, action:blob#show; text:Fork">
377
+ <svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
378
+ Fork
379
+ </a>
380
+
381
+ <div id="fork-destination-box" style="display: none;">
382
+ <h2 class="facebox-header" data-facebox-id="facebox-header">Where should we fork this repository?</h2>
383
+ <include-fragment src=""
384
+ class="js-fork-select-fragment fork-select-fragment"
385
+ data-url="/facebook/zstd/fork?fragment=1">
386
+ <img alt="Loading" height="64" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-128.gif" width="64" />
387
+ </include-fragment>
388
+ </div>
389
+
390
+ <a href="/facebook/zstd/network" class="social-count"
391
+ aria-label="385 users forked this repository">
392
+ 385
393
+ </a>
394
+ </li>
395
+ </ul>
396
+
397
+ <h1 class="public ">
398
+ <svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
399
+ <span class="author" itemprop="author"><a href="/facebook" class="url fn" rel="author">facebook</a></span><!--
400
+ --><span class="path-divider">/</span><!--
401
+ --><strong itemprop="name"><a href="/facebook/zstd" data-pjax="#js-repo-pjax-container">zstd</a></strong>
402
+
403
+ </h1>
404
+
405
+ </div>
406
+ <div class="container">
407
+
408
+ <nav class="reponav js-repo-nav js-sidenav-container-pjax"
409
+ itemscope
410
+ itemtype="http://schema.org/BreadcrumbList"
411
+ role="navigation"
412
+ data-pjax="#js-repo-pjax-container">
413
+
414
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
415
+ <a href="/facebook/zstd" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /facebook/zstd" itemprop="url">
416
+ <svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg>
417
+ <span itemprop="name">Code</span>
418
+ <meta itemprop="position" content="1">
419
+ </a> </span>
420
+
421
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
422
+ <a href="/facebook/zstd/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /facebook/zstd/issues" itemprop="url">
423
+ <svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/></svg>
424
+ <span itemprop="name">Issues</span>
425
+ <span class="counter">32</span>
426
+ <meta itemprop="position" content="2">
427
+ </a> </span>
428
+
429
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
430
+ <a href="/facebook/zstd/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /facebook/zstd/pulls" itemprop="url">
431
+ <svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
432
+ <span itemprop="name">Pull requests</span>
433
+ <span class="counter">1</span>
434
+ <meta itemprop="position" content="3">
435
+ </a> </span>
436
+
437
+ <a href="/facebook/zstd/projects" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /facebook/zstd/projects">
438
+ <svg aria-hidden="true" class="octicon octicon-project" height="16" version="1.1" viewBox="0 0 15 16" width="15"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"/></svg>
439
+ Projects
440
+ <span class="counter">0</span>
441
+ </a>
442
+ <a href="/facebook/zstd/wiki" class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /facebook/zstd/wiki">
443
+ <svg aria-hidden="true" class="octicon octicon-book" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"/></svg>
444
+ Wiki
445
+ </a>
446
+
447
+ <a href="/facebook/zstd/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="pulse /facebook/zstd/pulse">
448
+ <svg aria-hidden="true" class="octicon octicon-pulse" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"/></svg>
449
+ Pulse
450
+ </a>
451
+ <a href="/facebook/zstd/graphs" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors /facebook/zstd/graphs">
452
+ <svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"/></svg>
453
+ Graphs
454
+ </a>
455
+
456
+ </nav>
457
+
458
+ </div>
459
+ </div>
460
+
461
+ <div class="container new-discussion-timeline experiment-repo-nav">
462
+ <div class="repository-content">
463
+
464
+
465
+
466
+ <a href="/facebook/zstd/blob/900f39e7091f39f5d8ca50d7f9fdc25e68f4e0e9/LICENSE" class="d-none js-permalink-shortcut" data-hotkey="y">Permalink</a>
467
+
468
+ <!-- blob contrib key: blob_contributors:v21:663b450927216cc891e5308822722477 -->
469
+
470
+ <div class="file-navigation js-zeroclipboard-container">
471
+
472
+ <div class="select-menu branch-select-menu js-menu-container js-select-menu float-left">
473
+ <button class="btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"
474
+
475
+ type="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
476
+ <i>Branch:</i>
477
+ <span class="js-select-button css-truncate-target">dev</span>
478
+ </button>
479
+
480
+ <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">
481
+
482
+ <div class="select-menu-modal">
483
+ <div class="select-menu-header">
484
+ <svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
485
+ <span class="select-menu-title">Switch branches/tags</span>
486
+ </div>
487
+
488
+ <div class="select-menu-filters">
489
+ <div class="select-menu-text-filter">
490
+ <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
491
+ </div>
492
+ <div class="select-menu-tabs">
493
+ <ul>
494
+ <li class="select-menu-tab">
495
+ <a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>
496
+ </li>
497
+ <li class="select-menu-tab">
498
+ <a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>
499
+ </li>
500
+ </ul>
501
+ </div>
502
+ </div>
503
+
504
+ <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">
505
+
506
+ <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
507
+
508
+
509
+ <a class="select-menu-item js-navigation-item js-navigation-open "
510
+ href="/facebook/zstd/blob/2stagesDec/LICENSE"
511
+ data-name="2stagesDec"
512
+ data-skip-pjax="true"
513
+ rel="nofollow">
514
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
515
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
516
+ 2stagesDec
517
+ </span>
518
+ </a>
519
+ <a class="select-menu-item js-navigation-item js-navigation-open selected"
520
+ href="/facebook/zstd/blob/dev/LICENSE"
521
+ data-name="dev"
522
+ data-skip-pjax="true"
523
+ rel="nofollow">
524
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
525
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
526
+ dev
527
+ </span>
528
+ </a>
529
+ <a class="select-menu-item js-navigation-item js-navigation-open "
530
+ href="/facebook/zstd/blob/gh-pages/LICENSE"
531
+ data-name="gh-pages"
532
+ data-skip-pjax="true"
533
+ rel="nofollow">
534
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
535
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
536
+ gh-pages
537
+ </span>
538
+ </a>
539
+ <a class="select-menu-item js-navigation-item js-navigation-open "
540
+ href="/facebook/zstd/blob/master/LICENSE"
541
+ data-name="master"
542
+ data-skip-pjax="true"
543
+ rel="nofollow">
544
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
545
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
546
+ master
547
+ </span>
548
+ </a>
549
+ <a class="select-menu-item js-navigation-item js-navigation-open "
550
+ href="/facebook/zstd/blob/zstdmt/LICENSE"
551
+ data-name="zstdmt"
552
+ data-skip-pjax="true"
553
+ rel="nofollow">
554
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
555
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
556
+ zstdmt
557
+ </span>
558
+ </a>
559
+ </div>
560
+
561
+ <div class="select-menu-no-results">Nothing to show</div>
562
+ </div>
563
+
564
+ <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
565
+ <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
566
+
567
+
568
+ <a class="select-menu-item js-navigation-item js-navigation-open "
569
+ href="/facebook/zstd/tree/zstd-0.4.2/LICENSE"
570
+ data-name="zstd-0.4.2"
571
+ data-skip-pjax="true"
572
+ rel="nofollow">
573
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
574
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.4.2">
575
+ zstd-0.4.2
576
+ </span>
577
+ </a>
578
+ <a class="select-menu-item js-navigation-item js-navigation-open "
579
+ href="/facebook/zstd/tree/zstd-0.4.1/LICENSE"
580
+ data-name="zstd-0.4.1"
581
+ data-skip-pjax="true"
582
+ rel="nofollow">
583
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
584
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.4.1">
585
+ zstd-0.4.1
586
+ </span>
587
+ </a>
588
+ <a class="select-menu-item js-navigation-item js-navigation-open "
589
+ href="/facebook/zstd/tree/zstd-0.4.0/LICENSE"
590
+ data-name="zstd-0.4.0"
591
+ data-skip-pjax="true"
592
+ rel="nofollow">
593
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
594
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.4.0">
595
+ zstd-0.4.0
596
+ </span>
597
+ </a>
598
+ <a class="select-menu-item js-navigation-item js-navigation-open "
599
+ href="/facebook/zstd/tree/zstd-0.3.6/LICENSE"
600
+ data-name="zstd-0.3.6"
601
+ data-skip-pjax="true"
602
+ rel="nofollow">
603
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
604
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.6">
605
+ zstd-0.3.6
606
+ </span>
607
+ </a>
608
+ <a class="select-menu-item js-navigation-item js-navigation-open "
609
+ href="/facebook/zstd/tree/zstd-0.3.5/LICENSE"
610
+ data-name="zstd-0.3.5"
611
+ data-skip-pjax="true"
612
+ rel="nofollow">
613
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
614
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.5">
615
+ zstd-0.3.5
616
+ </span>
617
+ </a>
618
+ <a class="select-menu-item js-navigation-item js-navigation-open "
619
+ href="/facebook/zstd/tree/zstd-0.3.4/LICENSE"
620
+ data-name="zstd-0.3.4"
621
+ data-skip-pjax="true"
622
+ rel="nofollow">
623
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
624
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.4">
625
+ zstd-0.3.4
626
+ </span>
627
+ </a>
628
+ <a class="select-menu-item js-navigation-item js-navigation-open "
629
+ href="/facebook/zstd/tree/zstd-0.3.3/LICENSE"
630
+ data-name="zstd-0.3.3"
631
+ data-skip-pjax="true"
632
+ rel="nofollow">
633
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
634
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.3">
635
+ zstd-0.3.3
636
+ </span>
637
+ </a>
638
+ <a class="select-menu-item js-navigation-item js-navigation-open "
639
+ href="/facebook/zstd/tree/zstd-0.3.2/LICENSE"
640
+ data-name="zstd-0.3.2"
641
+ data-skip-pjax="true"
642
+ rel="nofollow">
643
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
644
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.2">
645
+ zstd-0.3.2
646
+ </span>
647
+ </a>
648
+ <a class="select-menu-item js-navigation-item js-navigation-open "
649
+ href="/facebook/zstd/tree/zstd-0.3.1/LICENSE"
650
+ data-name="zstd-0.3.1"
651
+ data-skip-pjax="true"
652
+ rel="nofollow">
653
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
654
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.1">
655
+ zstd-0.3.1
656
+ </span>
657
+ </a>
658
+ <a class="select-menu-item js-navigation-item js-navigation-open "
659
+ href="/facebook/zstd/tree/zstd-0.3.0/LICENSE"
660
+ data-name="zstd-0.3.0"
661
+ data-skip-pjax="true"
662
+ rel="nofollow">
663
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
664
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.3.0">
665
+ zstd-0.3.0
666
+ </span>
667
+ </a>
668
+ <a class="select-menu-item js-navigation-item js-navigation-open "
669
+ href="/facebook/zstd/tree/zstd-0.2.2/LICENSE"
670
+ data-name="zstd-0.2.2"
671
+ data-skip-pjax="true"
672
+ rel="nofollow">
673
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
674
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.2.2">
675
+ zstd-0.2.2
676
+ </span>
677
+ </a>
678
+ <a class="select-menu-item js-navigation-item js-navigation-open "
679
+ href="/facebook/zstd/tree/zstd-0.2.1/LICENSE"
680
+ data-name="zstd-0.2.1"
681
+ data-skip-pjax="true"
682
+ rel="nofollow">
683
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
684
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.2.1">
685
+ zstd-0.2.1
686
+ </span>
687
+ </a>
688
+ <a class="select-menu-item js-navigation-item js-navigation-open "
689
+ href="/facebook/zstd/tree/zstd-0.2.0/LICENSE"
690
+ data-name="zstd-0.2.0"
691
+ data-skip-pjax="true"
692
+ rel="nofollow">
693
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
694
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.2.0">
695
+ zstd-0.2.0
696
+ </span>
697
+ </a>
698
+ <a class="select-menu-item js-navigation-item js-navigation-open "
699
+ href="/facebook/zstd/tree/zstd-0.1.3/LICENSE"
700
+ data-name="zstd-0.1.3"
701
+ data-skip-pjax="true"
702
+ rel="nofollow">
703
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
704
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.1.3">
705
+ zstd-0.1.3
706
+ </span>
707
+ </a>
708
+ <a class="select-menu-item js-navigation-item js-navigation-open "
709
+ href="/facebook/zstd/tree/zstd-0.1.2/LICENSE"
710
+ data-name="zstd-0.1.2"
711
+ data-skip-pjax="true"
712
+ rel="nofollow">
713
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
714
+ <span class="select-menu-item-text css-truncate-target" title="zstd-0.1.2">
715
+ zstd-0.1.2
716
+ </span>
717
+ </a>
718
+ <a class="select-menu-item js-navigation-item js-navigation-open "
719
+ href="/facebook/zstd/tree/v1.1.2/LICENSE"
720
+ data-name="v1.1.2"
721
+ data-skip-pjax="true"
722
+ rel="nofollow">
723
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
724
+ <span class="select-menu-item-text css-truncate-target" title="v1.1.2">
725
+ v1.1.2
726
+ </span>
727
+ </a>
728
+ <a class="select-menu-item js-navigation-item js-navigation-open "
729
+ href="/facebook/zstd/tree/v1.1.1/LICENSE"
730
+ data-name="v1.1.1"
731
+ data-skip-pjax="true"
732
+ rel="nofollow">
733
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
734
+ <span class="select-menu-item-text css-truncate-target" title="v1.1.1">
735
+ v1.1.1
736
+ </span>
737
+ </a>
738
+ <a class="select-menu-item js-navigation-item js-navigation-open "
739
+ href="/facebook/zstd/tree/v1.1.0/LICENSE"
740
+ data-name="v1.1.0"
741
+ data-skip-pjax="true"
742
+ rel="nofollow">
743
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
744
+ <span class="select-menu-item-text css-truncate-target" title="v1.1.0">
745
+ v1.1.0
746
+ </span>
747
+ </a>
748
+ <a class="select-menu-item js-navigation-item js-navigation-open "
749
+ href="/facebook/zstd/tree/v1.0.0/LICENSE"
750
+ data-name="v1.0.0"
751
+ data-skip-pjax="true"
752
+ rel="nofollow">
753
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
754
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.0">
755
+ v1.0.0
756
+ </span>
757
+ </a>
758
+ <a class="select-menu-item js-navigation-item js-navigation-open "
759
+ href="/facebook/zstd/tree/v0.8.1/LICENSE"
760
+ data-name="v0.8.1"
761
+ data-skip-pjax="true"
762
+ rel="nofollow">
763
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
764
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.1">
765
+ v0.8.1
766
+ </span>
767
+ </a>
768
+ <a class="select-menu-item js-navigation-item js-navigation-open "
769
+ href="/facebook/zstd/tree/v0.8.0/LICENSE"
770
+ data-name="v0.8.0"
771
+ data-skip-pjax="true"
772
+ rel="nofollow">
773
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
774
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.0">
775
+ v0.8.0
776
+ </span>
777
+ </a>
778
+ <a class="select-menu-item js-navigation-item js-navigation-open "
779
+ href="/facebook/zstd/tree/v0.7.5/LICENSE"
780
+ data-name="v0.7.5"
781
+ data-skip-pjax="true"
782
+ rel="nofollow">
783
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
784
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.5">
785
+ v0.7.5
786
+ </span>
787
+ </a>
788
+ <a class="select-menu-item js-navigation-item js-navigation-open "
789
+ href="/facebook/zstd/tree/v0.7.4/LICENSE"
790
+ data-name="v0.7.4"
791
+ data-skip-pjax="true"
792
+ rel="nofollow">
793
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
794
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.4">
795
+ v0.7.4
796
+ </span>
797
+ </a>
798
+ <a class="select-menu-item js-navigation-item js-navigation-open "
799
+ href="/facebook/zstd/tree/v0.7.3/LICENSE"
800
+ data-name="v0.7.3"
801
+ data-skip-pjax="true"
802
+ rel="nofollow">
803
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
804
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.3">
805
+ v0.7.3
806
+ </span>
807
+ </a>
808
+ <a class="select-menu-item js-navigation-item js-navigation-open "
809
+ href="/facebook/zstd/tree/v0.7.2/LICENSE"
810
+ data-name="v0.7.2"
811
+ data-skip-pjax="true"
812
+ rel="nofollow">
813
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
814
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.2">
815
+ v0.7.2
816
+ </span>
817
+ </a>
818
+ <a class="select-menu-item js-navigation-item js-navigation-open "
819
+ href="/facebook/zstd/tree/v0.7.1/LICENSE"
820
+ data-name="v0.7.1"
821
+ data-skip-pjax="true"
822
+ rel="nofollow">
823
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
824
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.1">
825
+ v0.7.1
826
+ </span>
827
+ </a>
828
+ <a class="select-menu-item js-navigation-item js-navigation-open "
829
+ href="/facebook/zstd/tree/v0.7.0/LICENSE"
830
+ data-name="v0.7.0"
831
+ data-skip-pjax="true"
832
+ rel="nofollow">
833
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
834
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.0">
835
+ v0.7.0
836
+ </span>
837
+ </a>
838
+ <a class="select-menu-item js-navigation-item js-navigation-open "
839
+ href="/facebook/zstd/tree/v0.6.2/LICENSE"
840
+ data-name="v0.6.2"
841
+ data-skip-pjax="true"
842
+ rel="nofollow">
843
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
844
+ <span class="select-menu-item-text css-truncate-target" title="v0.6.2">
845
+ v0.6.2
846
+ </span>
847
+ </a>
848
+ <a class="select-menu-item js-navigation-item js-navigation-open "
849
+ href="/facebook/zstd/tree/v0.6.1/LICENSE"
850
+ data-name="v0.6.1"
851
+ data-skip-pjax="true"
852
+ rel="nofollow">
853
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
854
+ <span class="select-menu-item-text css-truncate-target" title="v0.6.1">
855
+ v0.6.1
856
+ </span>
857
+ </a>
858
+ <a class="select-menu-item js-navigation-item js-navigation-open "
859
+ href="/facebook/zstd/tree/v0.6.0/LICENSE"
860
+ data-name="v0.6.0"
861
+ data-skip-pjax="true"
862
+ rel="nofollow">
863
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
864
+ <span class="select-menu-item-text css-truncate-target" title="v0.6.0">
865
+ v0.6.0
866
+ </span>
867
+ </a>
868
+ <a class="select-menu-item js-navigation-item js-navigation-open "
869
+ href="/facebook/zstd/tree/v0.5.1/LICENSE"
870
+ data-name="v0.5.1"
871
+ data-skip-pjax="true"
872
+ rel="nofollow">
873
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
874
+ <span class="select-menu-item-text css-truncate-target" title="v0.5.1">
875
+ v0.5.1
876
+ </span>
877
+ </a>
878
+ <a class="select-menu-item js-navigation-item js-navigation-open "
879
+ href="/facebook/zstd/tree/v0.5.0/LICENSE"
880
+ data-name="v0.5.0"
881
+ data-skip-pjax="true"
882
+ rel="nofollow">
883
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
884
+ <span class="select-menu-item-text css-truncate-target" title="v0.5.0">
885
+ v0.5.0
886
+ </span>
887
+ </a>
888
+ <a class="select-menu-item js-navigation-item js-navigation-open "
889
+ href="/facebook/zstd/tree/v0.4.7/LICENSE"
890
+ data-name="v0.4.7"
891
+ data-skip-pjax="true"
892
+ rel="nofollow">
893
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
894
+ <span class="select-menu-item-text css-truncate-target" title="v0.4.7">
895
+ v0.4.7
896
+ </span>
897
+ </a>
898
+ <a class="select-menu-item js-navigation-item js-navigation-open "
899
+ href="/facebook/zstd/tree/v0.4.6/LICENSE"
900
+ data-name="v0.4.6"
901
+ data-skip-pjax="true"
902
+ rel="nofollow">
903
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
904
+ <span class="select-menu-item-text css-truncate-target" title="v0.4.6">
905
+ v0.4.6
906
+ </span>
907
+ </a>
908
+ <a class="select-menu-item js-navigation-item js-navigation-open "
909
+ href="/facebook/zstd/tree/v0.4.5/LICENSE"
910
+ data-name="v0.4.5"
911
+ data-skip-pjax="true"
912
+ rel="nofollow">
913
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
914
+ <span class="select-menu-item-text css-truncate-target" title="v0.4.5">
915
+ v0.4.5
916
+ </span>
917
+ </a>
918
+ <a class="select-menu-item js-navigation-item js-navigation-open "
919
+ href="/facebook/zstd/tree/v0.4.4/LICENSE"
920
+ data-name="v0.4.4"
921
+ data-skip-pjax="true"
922
+ rel="nofollow">
923
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
924
+ <span class="select-menu-item-text css-truncate-target" title="v0.4.4">
925
+ v0.4.4
926
+ </span>
927
+ </a>
928
+ <a class="select-menu-item js-navigation-item js-navigation-open "
929
+ href="/facebook/zstd/tree/v0.4.3/LICENSE"
930
+ data-name="v0.4.3"
931
+ data-skip-pjax="true"
932
+ rel="nofollow">
933
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
934
+ <span class="select-menu-item-text css-truncate-target" title="v0.4.3">
935
+ v0.4.3
936
+ </span>
937
+ </a>
938
+ <a class="select-menu-item js-navigation-item js-navigation-open "
939
+ href="/facebook/zstd/tree/v0.1.1/LICENSE"
940
+ data-name="v0.1.1"
941
+ data-skip-pjax="true"
942
+ rel="nofollow">
943
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
944
+ <span class="select-menu-item-text css-truncate-target" title="v0.1.1">
945
+ v0.1.1
946
+ </span>
947
+ </a>
948
+ <a class="select-menu-item js-navigation-item js-navigation-open "
949
+ href="/facebook/zstd/tree/v0.1.0/LICENSE"
950
+ data-name="v0.1.0"
951
+ data-skip-pjax="true"
952
+ rel="nofollow">
953
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
954
+ <span class="select-menu-item-text css-truncate-target" title="v0.1.0">
955
+ v0.1.0
956
+ </span>
957
+ </a>
958
+ </div>
959
+
960
+ <div class="select-menu-no-results">Nothing to show</div>
961
+ </div>
962
+
963
+ </div>
964
+ </div>
965
+ </div>
966
+
967
+ <div class="BtnGroup float-right">
968
+ <a href="/facebook/zstd/find/dev"
969
+ class="js-pjax-capture-input btn btn-sm BtnGroup-item"
970
+ data-pjax
971
+ data-hotkey="t">
972
+ Find file
973
+ </a>
974
+ <button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm BtnGroup-item tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>
975
+ </div>
976
+ <div class="breadcrumb js-zeroclipboard-target">
977
+ <span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/facebook/zstd"><span>zstd</span></a></span></span><span class="separator">/</span><strong class="final-path">LICENSE</strong>
978
+ </div>
979
+ </div>
980
+
981
+
982
+ <div class="commit-tease">
983
+ <span class="float-right">
984
+ <a class="commit-tease-sha" href="/facebook/zstd/commit/4ded9e591cbed57c54fc8f7a50412af5980e23a7" data-pjax>
985
+ 4ded9e5
986
+ </a>
987
+ <relative-time datetime="2016-08-30T18:06:28Z">Aug 30, 2016</relative-time>
988
+ </span>
989
+ <div>
990
+ <img alt="@Cyan4973" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/750081?v=3&amp;s=40" width="20" />
991
+ <a href="/Cyan4973" class="user-mention" rel="contributor">Cyan4973</a>
992
+ <a href="/facebook/zstd/commit/4ded9e591cbed57c54fc8f7a50412af5980e23a7" class="message" data-pjax="true" title="added boilerplate">added boilerplate</a>
993
+ </div>
994
+
995
+ <div class="commit-tease-contributors">
996
+ <button type="button" class="btn-link muted-link contributors-toggle" data-facebox="#blob_contributors_box">
997
+ <strong>1</strong>
998
+ contributor
999
+ </button>
1000
+
1001
+ </div>
1002
+
1003
+ <div id="blob_contributors_box" style="display:none">
1004
+ <h2 class="facebox-header" data-facebox-id="facebox-header">Users who have contributed to this file</h2>
1005
+ <ul class="facebox-user-list" data-facebox-id="facebox-description">
1006
+ <li class="facebox-user-list-item">
1007
+ <img alt="@Cyan4973" height="24" src="https://avatars2.githubusercontent.com/u/750081?v=3&amp;s=48" width="24" />
1008
+ <a href="/Cyan4973">Cyan4973</a>
1009
+ </li>
1010
+ </ul>
1011
+ </div>
1012
+ </div>
1013
+
1014
+
1015
+ <div class="file">
1016
+ <div class="file-header">
1017
+ <div class="file-actions">
1018
+
1019
+ <div class="BtnGroup">
1020
+ <a href="/facebook/zstd/raw/dev/LICENSE" class="btn btn-sm BtnGroup-item" id="raw-url">Raw</a>
1021
+ <a href="/facebook/zstd/blame/dev/LICENSE" class="btn btn-sm js-update-url-with-hash BtnGroup-item" data-hotkey="b">Blame</a>
1022
+ <a href="/facebook/zstd/commits/dev/LICENSE" class="btn btn-sm BtnGroup-item" rel="nofollow">History</a>
1023
+ </div>
1024
+
1025
+
1026
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/facebook/zstd/edit/dev/LICENSE" class="inline-form js-update-url-with-hash" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="X5a3cEKhZu/lIpa/TkRE8jvssFMdBKkhlLs5hobbAYcgxcSrMTYB5E8J+P4nBOfCJfPgNPyaR4tNHNcmcs+3ow==" /></div>
1027
+ <button class="btn-octicon tooltipped tooltipped-nw" type="submit"
1028
+ aria-label="Fork this project and edit the file" data-hotkey="e" data-disable-with>
1029
+ <svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"/></svg>
1030
+ </button>
1031
+ </form> <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/facebook/zstd/delete/dev/LICENSE" class="inline-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="+2VDqjW2xqywISlIezsLChyxSfVDQI4UvSAUcA3z4FJD6hrbQfmhXehwQOVyfcGOwRjojZ2FwFEX8DdVCaqpww==" /></div>
1032
+ <button class="btn-octicon btn-octicon-danger tooltipped tooltipped-nw" type="submit"
1033
+ aria-label="Fork this project and delete the file" data-disable-with>
1034
+ <svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"/></svg>
1035
+ </button>
1036
+ </form> </div>
1037
+
1038
+ <div class="file-info">
1039
+ 31 lines (23 sloc)
1040
+ <span class="file-info-divider"></span>
1041
+ 1.49 KB
1042
+ </div>
1043
+ </div>
1044
+
1045
+
1046
+
1047
+ <div itemprop="text" class="blob-wrapper data type-text">
1048
+ <table class="highlight tab-size js-file-line-container" data-tab-size="8">
1049
+ <tr>
1050
+ <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
1051
+ <td id="LC1" class="blob-code blob-code-inner js-file-line">BSD License</td>
1052
+ </tr>
1053
+ <tr>
1054
+ <td id="L2" class="blob-num js-line-number" data-line-number="2"></td>
1055
+ <td id="LC2" class="blob-code blob-code-inner js-file-line">
1056
+ </td>
1057
+ </tr>
1058
+ <tr>
1059
+ <td id="L3" class="blob-num js-line-number" data-line-number="3"></td>
1060
+ <td id="LC3" class="blob-code blob-code-inner js-file-line">For Zstandard software</td>
1061
+ </tr>
1062
+ <tr>
1063
+ <td id="L4" class="blob-num js-line-number" data-line-number="4"></td>
1064
+ <td id="LC4" class="blob-code blob-code-inner js-file-line">
1065
+ </td>
1066
+ </tr>
1067
+ <tr>
1068
+ <td id="L5" class="blob-num js-line-number" data-line-number="5"></td>
1069
+ <td id="LC5" class="blob-code blob-code-inner js-file-line">Copyright (c) 2016-present, Facebook, Inc. All rights reserved.</td>
1070
+ </tr>
1071
+ <tr>
1072
+ <td id="L6" class="blob-num js-line-number" data-line-number="6"></td>
1073
+ <td id="LC6" class="blob-code blob-code-inner js-file-line">
1074
+ </td>
1075
+ </tr>
1076
+ <tr>
1077
+ <td id="L7" class="blob-num js-line-number" data-line-number="7"></td>
1078
+ <td id="LC7" class="blob-code blob-code-inner js-file-line">Redistribution and use in source and binary forms, with or without modification,</td>
1079
+ </tr>
1080
+ <tr>
1081
+ <td id="L8" class="blob-num js-line-number" data-line-number="8"></td>
1082
+ <td id="LC8" class="blob-code blob-code-inner js-file-line">are permitted provided that the following conditions are met:</td>
1083
+ </tr>
1084
+ <tr>
1085
+ <td id="L9" class="blob-num js-line-number" data-line-number="9"></td>
1086
+ <td id="LC9" class="blob-code blob-code-inner js-file-line">
1087
+ </td>
1088
+ </tr>
1089
+ <tr>
1090
+ <td id="L10" class="blob-num js-line-number" data-line-number="10"></td>
1091
+ <td id="LC10" class="blob-code blob-code-inner js-file-line"> * Redistributions of source code must retain the above copyright notice, this</td>
1092
+ </tr>
1093
+ <tr>
1094
+ <td id="L11" class="blob-num js-line-number" data-line-number="11"></td>
1095
+ <td id="LC11" class="blob-code blob-code-inner js-file-line"> list of conditions and the following disclaimer.</td>
1096
+ </tr>
1097
+ <tr>
1098
+ <td id="L12" class="blob-num js-line-number" data-line-number="12"></td>
1099
+ <td id="LC12" class="blob-code blob-code-inner js-file-line">
1100
+ </td>
1101
+ </tr>
1102
+ <tr>
1103
+ <td id="L13" class="blob-num js-line-number" data-line-number="13"></td>
1104
+ <td id="LC13" class="blob-code blob-code-inner js-file-line"> * Redistributions in binary form must reproduce the above copyright notice,</td>
1105
+ </tr>
1106
+ <tr>
1107
+ <td id="L14" class="blob-num js-line-number" data-line-number="14"></td>
1108
+ <td id="LC14" class="blob-code blob-code-inner js-file-line"> this list of conditions and the following disclaimer in the documentation</td>
1109
+ </tr>
1110
+ <tr>
1111
+ <td id="L15" class="blob-num js-line-number" data-line-number="15"></td>
1112
+ <td id="LC15" class="blob-code blob-code-inner js-file-line"> and/or other materials provided with the distribution.</td>
1113
+ </tr>
1114
+ <tr>
1115
+ <td id="L16" class="blob-num js-line-number" data-line-number="16"></td>
1116
+ <td id="LC16" class="blob-code blob-code-inner js-file-line">
1117
+ </td>
1118
+ </tr>
1119
+ <tr>
1120
+ <td id="L17" class="blob-num js-line-number" data-line-number="17"></td>
1121
+ <td id="LC17" class="blob-code blob-code-inner js-file-line"> * Neither the name Facebook nor the names of its contributors may be used to</td>
1122
+ </tr>
1123
+ <tr>
1124
+ <td id="L18" class="blob-num js-line-number" data-line-number="18"></td>
1125
+ <td id="LC18" class="blob-code blob-code-inner js-file-line"> endorse or promote products derived from this software without specific</td>
1126
+ </tr>
1127
+ <tr>
1128
+ <td id="L19" class="blob-num js-line-number" data-line-number="19"></td>
1129
+ <td id="LC19" class="blob-code blob-code-inner js-file-line"> prior written permission.</td>
1130
+ </tr>
1131
+ <tr>
1132
+ <td id="L20" class="blob-num js-line-number" data-line-number="20"></td>
1133
+ <td id="LC20" class="blob-code blob-code-inner js-file-line">
1134
+ </td>
1135
+ </tr>
1136
+ <tr>
1137
+ <td id="L21" class="blob-num js-line-number" data-line-number="21"></td>
1138
+ <td id="LC21" class="blob-code blob-code-inner js-file-line">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; AND</td>
1139
+ </tr>
1140
+ <tr>
1141
+ <td id="L22" class="blob-num js-line-number" data-line-number="22"></td>
1142
+ <td id="LC22" class="blob-code blob-code-inner js-file-line">ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</td>
1143
+ </tr>
1144
+ <tr>
1145
+ <td id="L23" class="blob-num js-line-number" data-line-number="23"></td>
1146
+ <td id="LC23" class="blob-code blob-code-inner js-file-line">WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</td>
1147
+ </tr>
1148
+ <tr>
1149
+ <td id="L24" class="blob-num js-line-number" data-line-number="24"></td>
1150
+ <td id="LC24" class="blob-code blob-code-inner js-file-line">DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR</td>
1151
+ </tr>
1152
+ <tr>
1153
+ <td id="L25" class="blob-num js-line-number" data-line-number="25"></td>
1154
+ <td id="LC25" class="blob-code blob-code-inner js-file-line">ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</td>
1155
+ </tr>
1156
+ <tr>
1157
+ <td id="L26" class="blob-num js-line-number" data-line-number="26"></td>
1158
+ <td id="LC26" class="blob-code blob-code-inner js-file-line">(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</td>
1159
+ </tr>
1160
+ <tr>
1161
+ <td id="L27" class="blob-num js-line-number" data-line-number="27"></td>
1162
+ <td id="LC27" class="blob-code blob-code-inner js-file-line">LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON</td>
1163
+ </tr>
1164
+ <tr>
1165
+ <td id="L28" class="blob-num js-line-number" data-line-number="28"></td>
1166
+ <td id="LC28" class="blob-code blob-code-inner js-file-line">ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</td>
1167
+ </tr>
1168
+ <tr>
1169
+ <td id="L29" class="blob-num js-line-number" data-line-number="29"></td>
1170
+ <td id="LC29" class="blob-code blob-code-inner js-file-line">(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</td>
1171
+ </tr>
1172
+ <tr>
1173
+ <td id="L30" class="blob-num js-line-number" data-line-number="30"></td>
1174
+ <td id="LC30" class="blob-code blob-code-inner js-file-line">SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</td>
1175
+ </tr>
1176
+ </table>
1177
+
1178
+ </div>
1179
+
1180
+ </div>
1181
+
1182
+ <button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="d-none">Jump to Line</button>
1183
+ <div id="jump-to-line" style="display:none">
1184
+ <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
1185
+ <input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
1186
+ <button type="submit" class="btn">Go</button>
1187
+ </form></div>
1188
+
1189
+ </div>
1190
+ <div class="modal-backdrop js-touch-events"></div>
1191
+ </div>
1192
+
1193
+
1194
+ </div>
1195
+ </div>
1196
+
1197
+ </div>
1198
+
1199
+ <div class="container site-footer-container">
1200
+ <div class="site-footer" role="contentinfo">
1201
+ <ul class="site-footer-links float-right">
1202
+ <li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact GitHub</a></li>
1203
+ <li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
1204
+ <li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
1205
+ <li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
1206
+ <li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
1207
+ <li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
1208
+
1209
+ </ul>
1210
+
1211
+ <a href="https://github.com" aria-label="Homepage" class="site-footer-mark" title="GitHub">
1212
+ <svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
1213
+ </a>
1214
+ <ul class="site-footer-links">
1215
+ <li>&copy; 2017 <span title="0.13353s from github-fe119-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
1216
+ <li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
1217
+ <li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
1218
+ <li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
1219
+ <li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
1220
+ <li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
1221
+ </ul>
1222
+ </div>
1223
+ </div>
1224
+
1225
+
1226
+
1227
+
1228
+
1229
+ <div id="ajax-error-message" class="ajax-error-message flash flash-error">
1230
+ <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
1231
+ <button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
1232
+ <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
1233
+ </button>
1234
+ You can't perform that action at this time.
1235
+ </div>
1236
+
1237
+
1238
+
1239
+ <script crossorigin="anonymous" integrity="sha256-0j4y5IIRK6Xj6pvY3H5VVoARanTgAnRqyR9BpOWHWps=" src="https://assets-cdn.github.com/assets/frameworks-d23e32e482112ba5e3ea9bd8dc7e555680116a74e002746ac91f41a4e5875a9b.js"></script>
1240
+ <script async="async" crossorigin="anonymous" integrity="sha256-DeRGyzdl03caIB25OS+rzBwVlt3Yio4iDy83c8zBL50=" src="https://assets-cdn.github.com/assets/github-0de446cb3765d3771a201db9392fabcc1c1596ddd88a8e220f2f3773ccc12f9d.js"></script>
1241
+
1242
+
1243
+
1244
+
1245
+ <div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner d-none">
1246
+ <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
1247
+ <span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
1248
+ <span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
1249
+ </div>
1250
+ <div class="facebox" id="facebox" style="display:none;">
1251
+ <div class="facebox-popup">
1252
+ <div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
1253
+ </div>
1254
+ <button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
1255
+ <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
1256
+ </button>
1257
+ </div>
1258
+ </div>
1259
+
1260
+ </body>
1261
+ </html>
1262
+