This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/opennlp-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 96832fa4c Automatic Site Publish by Buildbot
96832fa4c is described below

commit 96832fa4cf8c4f08326dd81800e176f7265d173c
Author: buildbot <[email protected]>
AuthorDate: Tue May 5 19:03:02 2026 +0000

    Automatic Site Publish by Buildbot
---
 css/asciidoctor.css                |   0
 css/custom-style.css               | 113 +++++++++++++++++
 css/prettify.css                   |   0
 css/scheme-dark.css                |  40 ++++++
 feed.xml                           | 138 ++++++++++-----------
 img/glyphicons-halflings-white.png | Bin
 img/glyphicons-halflings.png       | Bin
 js/html5shiv.min.js                |   0
 js/prettify.js                     |   0
 news/index.html                    |   2 +-
 team.html                          | 243 ++++++++++++++++++++-----------------
 11 files changed, 355 insertions(+), 181 deletions(-)

diff --git a/css/asciidoctor.css b/css/asciidoctor.css
old mode 100644
new mode 100755
diff --git a/css/custom-style.css b/css/custom-style.css
index 02e010475..80f9b6629 100644
--- a/css/custom-style.css
+++ b/css/custom-style.css
@@ -148,4 +148,117 @@ div.qlist.qanda > ol > li {
     #forkongithub {
         display: none;
     }
+}
+
+/* Contributor card grid (Active / Emeritus / Wall of Fame on team.html)
+-------------------------------------------------- */
+.contributor-grid {
+    display: grid;
+    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
+    gap: 12px;
+    list-style: none;
+    padding: 0;
+    margin: 0 0 1.5em 0;
+}
+
+.contributor-card {
+    display: flex;
+    align-items: center;
+    gap: 12px;
+    padding: 10px 12px;
+    border: 1px solid #d0d0d0;
+    border-radius: 6px;
+    background: #fff;
+    text-decoration: none;
+    color: inherit;
+    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 
0.15s ease;
+}
+
+.contributor-card:hover,
+.contributor-card:focus {
+    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
+    border-color: #5614b0;
+    text-decoration: none;
+    transform: translateY(-1px);
+}
+
+.contributor-badge {
+    flex: 0 0 auto;
+    width: 40px;
+    height: 40px;
+    border-radius: 50%;
+    display: inline-flex;
+    align-items: center;
+    justify-content: center;
+    color: #fff;
+    font-weight: 600;
+    font-size: 0.95em;
+    letter-spacing: 0.5px;
+}
+
+.contributor-name {
+    flex: 1 1 auto;
+    color: #333;
+    font-size: 1em;
+    font-weight: 500;
+    word-break: break-word;
+}
+
+.contributor-role {
+    flex: 0 0 auto;
+    font-size: 0.75em;
+    font-weight: 600;
+    color: #5614b0;
+    border: 1px solid #5614b0;
+    border-radius: 3px;
+    padding: 1px 5px;
+    letter-spacing: 0.5px;
+}
+
+.contributor-role-chair {
+    color: #fff;
+    background: #f59523;
+    border-color: #f59523;
+    letter-spacing: 0.3px;
+}
+
+.contributor-empty {
+    grid-column: 1 / -1;
+    color: #777;
+    font-style: italic;
+    margin: 0;
+}
+
+.contributor-legend {
+    color: #555;
+    font-size: 0.85em;
+    margin: 0;
+    display: inline-flex;
+    flex-wrap: wrap;
+    gap: 0.4em;
+    align-items: center;
+}
+
+.contributor-legend .contributor-role {
+    display: inline-flex;
+    align-items: center;
+}
+
+.team-meta {
+    display: flex;
+    flex-wrap: wrap;
+    align-items: center;
+    gap: 0.5em 1.5em;
+    margin: 0 0 1.5em 0;
+}
+
+.team-last-updated {
+    color: #777;
+    font-size: 0.85em;
+    margin: 0;
+}
+
+.team-last-updated time {
+    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
+    color: #555;
 }
\ No newline at end of file
diff --git a/css/prettify.css b/css/prettify.css
old mode 100644
new mode 100755
diff --git a/css/scheme-dark.css b/css/scheme-dark.css
index 6782680db..4cccdfe94 100644
--- a/css/scheme-dark.css
+++ b/css/scheme-dark.css
@@ -95,4 +95,44 @@
         color: #f59523;
         background-color: #444;
     }
+
+    /* Contributor cards (team page) */
+    .contributor-card {
+        background: #2c2c2c;
+        border-color: #3a3a3a;
+        color: #eee;
+    }
+    .contributor-card:hover,
+    .contributor-card:focus {
+        border-color: #A09fff;
+        background: #333;
+        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
+    }
+    .contributor-name {
+        color: #eee;
+    }
+    .contributor-role {
+        color: #c8c4ff;
+        border-color: #A09fff;
+    }
+    .contributor-role-chair {
+        color: #1a1a1a;
+        background: #f59523;
+        border-color: #f59523;
+    }
+    .contributor-badge {
+        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
+    }
+    .contributor-empty {
+        color: #aaa;
+    }
+    .team-last-updated {
+        color: #aaa;
+    }
+    .team-last-updated time {
+        color: #ccc;
+    }
+    .contributor-legend {
+        color: #bbb;
+    }
 }
\ No newline at end of file
diff --git a/feed.xml b/feed.xml
index 94165ef6a..296df3247 100644
--- a/feed.xml
+++ b/feed.xml
@@ -24,8 +24,8 @@
     <atom:link href="https://opennlp.apache.org/feed.xml"; rel="self" 
type="application/rss+xml" />
     <description>The Apache OpenNLP library is a machine learning based 
toolkit for the processing of natural language text</description>
     <language>en-us</language>
-    <pubDate>Fri, 1 May 2026 17:50:40 +0000</pubDate>
-    <lastBuildDate>Fri, 1 May 2026 17:50:40 +0000</lastBuildDate>
+    <pubDate>Tue, 5 May 2026 19:02:03 +0000</pubDate>
+    <lastBuildDate>Tue, 5 May 2026 19:02:03 +0000</lastBuildDate>
 
     <item>
       <title>Apache OpenNLP 3.0.0-M3 released</title>
@@ -268,15 +268,15 @@ For all three issues, users who cannot upgrade 
immediately should restrict input
        </description>
     </item>
     <item>
-      <title>Apache OpenNLP 2.5.8 released</title>
-      <link>https://opennlp.apache.org/news/release-258.html</link>
+      <title>Apache OpenNLP 3.0.0-M2 released</title>
+      <link>https://opennlp.apache.org/news/release-300-M2.html</link>
       <pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate>
-      <guid isPermaLink="false">news/release-258.html</guid>
+      <guid isPermaLink="false">news/release-300-M2.html</guid>
        <description>
        &lt;div id=&quot;preamble&quot;&gt;
 &lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;The Apache OpenNLP team is pleased to announce the release of Apache 
OpenNLP 2.5.8.&lt;/p&gt;
+&lt;p&gt;The Apache OpenNLP team is pleased to announce the release of Apache 
OpenNLP 3.0.0-M2.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The Apache OpenNLP library is a machine learning based toolkit for 
the processing of natural language text.&lt;/p&gt;
@@ -285,7 +285,7 @@ For all three issues, users who cannot upgrade immediately 
should restrict input
 &lt;p&gt;It supports the most common NLP tasks, such as tokenization, sentence 
segmentation, part-of-speech tagging, named entity extraction, chunking, 
parsing, and coreference resolution.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Apache OpenNLP 2.5.8 binary and source distributions are available 
for download from our &lt;a href=&quot;/download.html&quot;&gt;download 
page&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Apache OpenNLP 3.0.0-M2 binary and source distributions are available 
for download from our &lt;a href=&quot;/download.html&quot;&gt;download 
page&lt;/a&gt;.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The OpenNLP library is distributed by Maven Central as well. See the 
&lt;a href=&quot;/maven-dependency.html&quot;&gt;Maven dependency&lt;/a&gt; 
page for more details.&lt;/p&gt;
@@ -293,14 +293,47 @@ For all three issues, users who cannot upgrade 
immediately should restrict input
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;sect1&quot;&gt;
-&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_5_8&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.5.8&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new&quot;&gt;What&amp;#8217;s new&lt;/h2&gt;
 &lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Summary:&lt;/p&gt;
+&lt;p&gt;The 3.x release line of Apache OpenNLP introduces no known breaking 
changes while significantly modularizing the project to improve library usage 
and future extensibility.
+The core API remains stable and fully compatible with 2.x, so existing 
projects can continue using the opennlp-tools artifact without 
modifications.&lt;/p&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;Key Highlights and Recommendations:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
+&lt;p&gt;Notable Changes:&lt;/p&gt;
+&lt;div class=&quot;ulist&quot;&gt;
+&lt;ul&gt;
+&lt;li&gt;
+&lt;p&gt;The minimum Java compiler level was raised to 
&lt;strong&gt;21&lt;/strong&gt; (OPENNLP-1735)&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;The artifact &apos;opennlp-models&apos; was renamed to 
&apos;opennlp-model-resolver&apos;. It can be used to detect and load OpenNLP 
compliant models from the classpath (OPENNLP-1807)&lt;/p&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/div&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;New Features:&lt;/p&gt;
+&lt;div class=&quot;ulist&quot;&gt;
+&lt;ul&gt;
+&lt;li&gt;
+&lt;p&gt;Apache OpenNLP can now detect sentiment from text 
(OPENNLP-855)&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;The eval corpus format for GermEval2014 is now supported 
(OPENNLP-976)&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Document Categorization is now possible via a binding to LibSVM 
(OPENNLP-1808)&lt;/p&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/div&gt;
+&lt;/li&gt;
+&lt;li&gt;
 &lt;p&gt;Bug Fixes:&lt;/p&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -315,10 +348,10 @@ For all three issues, users who cannot upgrade 
immediately should restrict input
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
-&lt;p&gt;The OpenNLP developer manual (HTML + PDF) got an uplift for the UIMA 
documentation part, being largely extended (OPENNLP-49)&lt;/p&gt;
+&lt;p&gt;Language Codes passed in are now stricter validated to comply with 
ISO-693 standard (OPENNLP-991)&lt;/p&gt;
 &lt;/li&gt;
 &lt;li&gt;
-&lt;p&gt;Some updates of dependencies&lt;/p&gt;
+&lt;p&gt;The OpenNLP developer manual (HTML + PDF) got an uplift for the UIMA 
documentation part, being largely extended (OPENNLP-49)&lt;/p&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/div&gt;
@@ -326,7 +359,21 @@ For all three issues, users who cannot upgrade immediately 
should restrict input
 &lt;/ul&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;For further details, check the full list of &lt;a 
href=&quot;https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&amp;amp;version=12356577&quot;
 class=&quot;external&quot; target=&quot;_blank&quot; 
rel=&quot;noopener&quot;&gt;changes&lt;/a&gt; via the project&amp;#8217;s issue 
tracker.&lt;/p&gt;
+&lt;p&gt;For further details, check the full list of &lt;a 
href=&quot;https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&amp;amp;version=12356724&quot;
 class=&quot;external&quot; target=&quot;_blank&quot; 
rel=&quot;noopener&quot;&gt;changes&lt;/a&gt; via the project&amp;#8217;s issue 
tracker.&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
+&lt;/div&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;migrating_from_2_x_to_3_x&quot;&gt;Migrating from 2.x to 
3.x&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;The 3.x release line of Apache OpenNLP upgrades the compiler level to 
Java 21 and modularizes the project for better usage as a library and to 
support future extensibility. The core API remains stable and compatible with 
2.x, but the project structure has been reorganized into multiple 
modules.&lt;/p&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;That means, that you can continue to use the previous opennlp-tools 
artifact as a dependency. However, we strongly recommend to switch to the new 
modular structure and import only the components you need, which will result in 
a smaller dependency footprint.&lt;/p&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;Only opennlp-runtime needs to be added as a dependency, and you can 
add additional modules (e.g. opennlp-ml-maxent, opennlp-models, etc.) as 
required by your project. For users of the traditional CLI toolkit, nothing 
changes with the 3.x release line. CLI usage remains stable&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
@@ -336,15 +383,15 @@ For all three issues, users who cannot upgrade 
immediately should restrict input
        </description>
     </item>
     <item>
-      <title>Apache OpenNLP 3.0.0-M2 released</title>
-      <link>https://opennlp.apache.org/news/release-300-M2.html</link>
+      <title>Apache OpenNLP 2.5.8 released</title>
+      <link>https://opennlp.apache.org/news/release-258.html</link>
       <pubDate>Tue, 31 Mar 2026 00:00:00 +0000</pubDate>
-      <guid isPermaLink="false">news/release-300-M2.html</guid>
+      <guid isPermaLink="false">news/release-258.html</guid>
        <description>
        &lt;div id=&quot;preamble&quot;&gt;
 &lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;The Apache OpenNLP team is pleased to announce the release of Apache 
OpenNLP 3.0.0-M2.&lt;/p&gt;
+&lt;p&gt;The Apache OpenNLP team is pleased to announce the release of Apache 
OpenNLP 2.5.8.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The Apache OpenNLP library is a machine learning based toolkit for 
the processing of natural language text.&lt;/p&gt;
@@ -353,7 +400,7 @@ For all three issues, users who cannot upgrade immediately 
should restrict input
 &lt;p&gt;It supports the most common NLP tasks, such as tokenization, sentence 
segmentation, part-of-speech tagging, named entity extraction, chunking, 
parsing, and coreference resolution.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Apache OpenNLP 3.0.0-M2 binary and source distributions are available 
for download from our &lt;a href=&quot;/download.html&quot;&gt;download 
page&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Apache OpenNLP 2.5.8 binary and source distributions are available 
for download from our &lt;a href=&quot;/download.html&quot;&gt;download 
page&lt;/a&gt;.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The OpenNLP library is distributed by Maven Central as well. See the 
&lt;a href=&quot;/maven-dependency.html&quot;&gt;Maven dependency&lt;/a&gt; 
page for more details.&lt;/p&gt;
@@ -361,47 +408,14 @@ For all three issues, users who cannot upgrade 
immediately should restrict input
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;sect1&quot;&gt;
-&lt;h2 id=&quot;whats_new&quot;&gt;What&amp;#8217;s new&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_5_8&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.5.8&lt;/h2&gt;
 &lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;The 3.x release line of Apache OpenNLP introduces no known breaking 
changes while significantly modularizing the project to improve library usage 
and future extensibility.
-The core API remains stable and fully compatible with 2.x, so existing 
projects can continue using the opennlp-tools artifact without 
modifications.&lt;/p&gt;
-&lt;/div&gt;
-&lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Key Highlights and Recommendations:&lt;/p&gt;
+&lt;p&gt;Summary:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
-&lt;p&gt;Notable Changes:&lt;/p&gt;
-&lt;div class=&quot;ulist&quot;&gt;
-&lt;ul&gt;
-&lt;li&gt;
-&lt;p&gt;The minimum Java compiler level was raised to 
&lt;strong&gt;21&lt;/strong&gt; (OPENNLP-1735)&lt;/p&gt;
-&lt;/li&gt;
-&lt;li&gt;
-&lt;p&gt;The artifact &apos;opennlp-models&apos; was renamed to 
&apos;opennlp-model-resolver&apos;. It can be used to detect and load OpenNLP 
compliant models from the classpath (OPENNLP-1807)&lt;/p&gt;
-&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/div&gt;
-&lt;/li&gt;
-&lt;li&gt;
-&lt;p&gt;New Features:&lt;/p&gt;
-&lt;div class=&quot;ulist&quot;&gt;
-&lt;ul&gt;
-&lt;li&gt;
-&lt;p&gt;Apache OpenNLP can now detect sentiment from text 
(OPENNLP-855)&lt;/p&gt;
-&lt;/li&gt;
-&lt;li&gt;
-&lt;p&gt;The eval corpus format for GermEval2014 is now supported 
(OPENNLP-976)&lt;/p&gt;
-&lt;/li&gt;
-&lt;li&gt;
-&lt;p&gt;Document Categorization is now possible via a binding to LibSVM 
(OPENNLP-1808)&lt;/p&gt;
-&lt;/li&gt;
-&lt;/ul&gt;
-&lt;/div&gt;
-&lt;/li&gt;
-&lt;li&gt;
 &lt;p&gt;Bug Fixes:&lt;/p&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -416,10 +430,10 @@ The core API remains stable and fully compatible with 
2.x, so existing projects
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
-&lt;p&gt;Language Codes passed in are now stricter validated to comply with 
ISO-693 standard (OPENNLP-991)&lt;/p&gt;
+&lt;p&gt;The OpenNLP developer manual (HTML + PDF) got an uplift for the UIMA 
documentation part, being largely extended (OPENNLP-49)&lt;/p&gt;
 &lt;/li&gt;
 &lt;li&gt;
-&lt;p&gt;The OpenNLP developer manual (HTML + PDF) got an uplift for the UIMA 
documentation part, being largely extended (OPENNLP-49)&lt;/p&gt;
+&lt;p&gt;Some updates of dependencies&lt;/p&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/div&gt;
@@ -427,21 +441,7 @@ The core API remains stable and fully compatible with 2.x, 
so existing projects
 &lt;/ul&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;For further details, check the full list of &lt;a 
href=&quot;https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&amp;amp;version=12356724&quot;
 class=&quot;external&quot; target=&quot;_blank&quot; 
rel=&quot;noopener&quot;&gt;changes&lt;/a&gt; via the project&amp;#8217;s issue 
tracker.&lt;/p&gt;
-&lt;/div&gt;
-&lt;/div&gt;
-&lt;/div&gt;
-&lt;div class=&quot;sect1&quot;&gt;
-&lt;h2 id=&quot;migrating_from_2_x_to_3_x&quot;&gt;Migrating from 2.x to 
3.x&lt;/h2&gt;
-&lt;div class=&quot;sectionbody&quot;&gt;
-&lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;The 3.x release line of Apache OpenNLP upgrades the compiler level to 
Java 21 and modularizes the project for better usage as a library and to 
support future extensibility. The core API remains stable and compatible with 
2.x, but the project structure has been reorganized into multiple 
modules.&lt;/p&gt;
-&lt;/div&gt;
-&lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;That means, that you can continue to use the previous opennlp-tools 
artifact as a dependency. However, we strongly recommend to switch to the new 
modular structure and import only the components you need, which will result in 
a smaller dependency footprint.&lt;/p&gt;
-&lt;/div&gt;
-&lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Only opennlp-runtime needs to be added as a dependency, and you can 
add additional modules (e.g. opennlp-ml-maxent, opennlp-models, etc.) as 
required by your project. For users of the traditional CLI toolkit, nothing 
changes with the 3.x release line. CLI usage remains stable&lt;/p&gt;
+&lt;p&gt;For further details, check the full list of &lt;a 
href=&quot;https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311215&amp;amp;version=12356577&quot;
 class=&quot;external&quot; target=&quot;_blank&quot; 
rel=&quot;noopener&quot;&gt;changes&lt;/a&gt; via the project&amp;#8217;s issue 
tracker.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
diff --git a/img/glyphicons-halflings-white.png 
b/img/glyphicons-halflings-white.png
old mode 100644
new mode 100755
diff --git a/img/glyphicons-halflings.png b/img/glyphicons-halflings.png
old mode 100644
new mode 100755
diff --git a/js/html5shiv.min.js b/js/html5shiv.min.js
old mode 100644
new mode 100755
diff --git a/js/prettify.js b/js/prettify.js
old mode 100644
new mode 100755
diff --git a/news/index.html b/news/index.html
index 6aa5b0dd8..ca85f79e6 100644
--- a/news/index.html
+++ b/news/index.html
@@ -188,8 +188,8 @@
                 <li><p>2013-04-17: <a href="/news/release-153.html">Apache 
OpenNLP 1.5.3 released</a></p></li>
                 <li><p>2012-02-15: <a 
href="/news/news-2012-02-15.html">OpenNLP graduated from the incubator as a Top 
Level Project</a></p></li>
                 <li><p>2011-12-22: <a href="/news/news-2011-12-22.html">New 
members and new features&#8230;&#8203;</a></p></li>
-                <li><p>2011-11-28: <a href="/news/news-2011-05-02.html">First 
release of 1.5.1-incubating is ready!</a></p></li>
                 <li><p>2011-11-28: <a href="/news/release-152.html">Apache 
OpenNLP 1.5.2 Incubating released</a></p></li>
+                <li><p>2011-11-28: <a href="/news/news-2011-05-02.html">First 
release of 1.5.1-incubating is ready!</a></p></li>
                 <li><p>2011-01-29: <a href="/news/news-2011-01-29.html">Issue 
tracker moved to JIRA</a></p></li>
                 <li><p>2010-12-24: <a 
href="/news/news-2010-12-24.html">Working on Apache Incubator 
requirements</a></p></li>
                 <li><p>2010-11-23: <a 
href="/news/news-2010-11-23.html">OpenNLP is now into Apache 
Incubation!</a></p></li>
diff --git a/team.html b/team.html
index e6c6dbe34..20078ca75 100644
--- a/team.html
+++ b/team.html
@@ -2,7 +2,7 @@
 <html lang="en">
 <head>
     <meta charset="utf-8">
-    <title>Apache OpenNLP project team - Apache OpenNLP</title>
+    <title>Apache OpenNLP Project Team - Apache OpenNLP</title>
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1">
     <meta name="color-scheme" content="dark light">
@@ -136,123 +136,144 @@
 </nav>
 
 <div class="container">
-    <h1 class="title">Apache OpenNLP project team</h1>
+    <h1 class="title">Apache OpenNLP Project Team</h1>
 
-    <div class="paragraph">
-<p>The OpenNLP team currently consists of:</p>
+    <div id="preamble">
+<div class="sectionbody">
+<div class="team-meta">
+  <p class="team-last-updated">Last updated: <time 
datetime="2026-05-05T19:01:54.246265261Z">2026-05-05 19:01 UTC</time></p>
+  <p class="contributor-legend"><span class="contributor-role">C</span> 
indicates a committer, <span class="contributor-role">C-P</span> a PMC member, 
and <span class="contributor-role contributor-role-chair">Chair</span> the 
current PMC chair.</p>
 </div>
-<div class="ulist">
-<ul>
-<li>
-<p>Jörn Kottmann (joern) (C-P)</p>
-</li>
-<li>
-<p>Grant Ingersoll (gsingers) (C-P)</p>
-</li>
-<li>
-<p>Isabel Drost (isabel) (P)</p>
-</li>
-<li>
-<p>James Kosin (jkosin) (C-P)</p>
-</li>
-<li>
-<p>Jason Baldridge (jbaldrid) (C-P)</p>
-</li>
-<li>
-<p>Thomas Morton (tsmorton) (C-P)</p>
-</li>
-<li>
-<p>William Silva (colen) (C-P)</p>
-</li>
-<li>
-<p>Rodrigo Agerri (ragerri) (C-P)</p>
-</li>
-<li>
-<p>Aliaksandr Autayeu (autayeu) ( C )</p>
-</li>
-<li>
-<p>Boris Galitsky (bgalitsky) ( C )</p>
-</li>
-<li>
-<p>Mark Giaconia ( C )</p>
-</li>
-<li>
-<p>Tommaso Teofili (tommaso) (C-P)</p>
-</li>
-<li>
-<p>Vinh Khuc (vkhuc) ( C )</p>
-</li>
-<li>
-<p>Anthony Beylerian (beylerian) ( C )</p>
-</li>
-<li>
-<p>Mondher Bouazizi (mondher) ( C )</p>
-</li>
-<li>
-<p>Chris Mattmann (mattmann) ( C )</p>
-</li>
-<li>
-<p>Anastasija Mensikova (anastasijam) ( C )</p>
-</li>
-<li>
-<p>Suneel Marthi (smarthi) (C-P)</p>
-</li>
-<li>
-<p>Daniel Russ (druss) (C-P)</p>
-</li>
-<li>
-<p>Peter Thygesen (thygesen) ( C-P )</p>
-</li>
-<li>
-<p>Koji Sekiguchi (koji) ( C-P )</p>
-</li>
-<li>
-<p>Bruno P. Kinoshita (kinow) (C-P)</p>
-</li>
-<li>
-<p>Jeff Zemerick (jzemerick) <strong>Chair</strong> ( C-P )</p>
-</li>
-<li>
-<p>Richard Zowalla (rzo1) ( C-P )</p>
-</li>
-<li>
-<p>Martin Wiesner (mawiesne) ( C-P )</p>
-</li>
-<li>
-<p>Atita Arora (atarora) ( C-P )</p>
-</li>
-<li>
-<p>Nishant Shrivastava (shrivnis) ( C )</p>
-</li>
-</ul>
 </div>
+</div>
+<div class="sect1">
+<h2 id="active_team">Active Team</h2>
+<div class="sectionbody">
 <div class="paragraph">
-<p>These people contributed to OpenNLP:</p>
+<p>The following people are currently active on Apache OpenNLP.</p>
+</div>
+<div class="contributor-grid">
+  <a class="contributor-card" href="https://github.com/atarora"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#16222a;" 
aria-hidden="true">AA</span><span class="contributor-name">Atita 
Arora</span><span class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/kinow"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#1d2671;" 
aria-hidden="true">BK</span><span class="contributor-name">Bruno P. 
Kinoshita</span><span class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/kottmann"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">JK</span><span 
class="contributor-name">Jörn Kottmann</span><span 
class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/smarthi"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#2c5364;" 
aria-hidden="true">SM</span><span class="contributor-name">Suneel 
Marthi</span><span class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/mawiesne"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#1d2671;" aria-hidden="true">MW</span><span 
class="contributor-name">Martin Wiesner</span><span 
class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/jzonthemtn"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#11324d;" aria-hidden="true">JZ</span><span 
class="contributor-name">Jeff Zemerick</span><span 
class="contributor-role">C-P</span><span class="contributor-role 
contributor-role-chair">Chair</span></a>
+  <a class="contributor-card" href="https://github.com/rzo1"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#0f2027;" 
aria-hidden="true">RZ</span><span class="contributor-name">Richard 
Zowalla</span><span class="contributor-role">C-P</span></a>
+</div>
 </div>
-<div class="ulist">
-<ul>
-<li>
-<p>Sean Adams</p>
-</li>
-<li>
-<p>Thilo Goetz (twgoetz)</p>
-</li>
-<li>
-<p>Gann Bierner</p>
-</li>
-<li>
-<p>Eric Friedman</p>
-</li>
-<li>
-<p>Joao Cavalcanti</p>
-</li>
-<li>
-<p>Hyosup Shim</p>
-</li>
-</ul>
 </div>
+<div class="sect1">
+<h2 id="emeritus">Emeritus</h2>
+<div class="sectionbody">
 <div class="paragraph">
-<p><strong>C</strong> indicates a committer and <strong>P</strong> a PMC 
member.</p>
+<p>Open source contribution is voluntary, and priorities, jobs and life 
circumstances change.
+The people below have served Apache OpenNLP in the past as committers or PMC 
members and
+are not currently active on the project. Their merit doesn&#8217;t expire, and 
they&#8217;re warmly
+welcome to return to active contribution at any time; a short note to the dev 
or private
+list is enough.</p>
+</div>
+<div class="contributor-grid">
+  <a class="contributor-card" href="https://github.com/ragerri"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#3a1c71;" 
aria-hidden="true">RA</span><span class="contributor-name">Rodrigo 
Agerri</span><span class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/tballison"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">TA</span><span 
class="contributor-name">Tim Allison</span><span 
class="contributor-role">C</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">AA</span><span 
class="contributor-name">Aliaksandr Autayeu</span><span 
class="contributor-role">C</span></span>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#11324d;" aria-hidden="true">JB</span><span 
class="contributor-name">Jason Baldridge</span><span 
class="contributor-role">C-P</span></span>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">AB</span><span 
class="contributor-name">Anthony Beylerian</span><span 
class="contributor-role">C</span></span>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#1d2671;" aria-hidden="true">MB</span><span 
class="contributor-name">Mondher Bouazizi</span><span 
class="contributor-role">C</span></span>
+  <a class="contributor-card" href="https://github.com/wcolen"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#16222a;" 
aria-hidden="true">WC</span><span class="contributor-name">William 
Colen</span><span class="contributor-role">C-P</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">ID</span><span 
class="contributor-name">Isabel Drost-Fromm</span><span 
class="contributor-role">C-P</span></span>
+  <a class="contributor-card" href="https://github.com/bgalitsky"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">BG</span><span 
class="contributor-name">Boris Galitsky</span><span 
class="contributor-role">C</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#1f4068;" aria-hidden="true">MG</span><span 
class="contributor-name">Mark Giaconia</span><span 
class="contributor-role">C</span></span>
+  <a class="contributor-card" href="https://github.com/gsingers"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">GI</span><span 
class="contributor-name">Grant Ingersoll</span><span 
class="contributor-role">C-P</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">VK</span><span 
class="contributor-name">Vinh Ngoc Khuc</span><span 
class="contributor-role">C</span></span>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">JK</span><span 
class="contributor-name">James Kosin</span><span 
class="contributor-role">C-P</span></span>
+  <a class="contributor-card" href="https://github.com/chrismattmann"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">CM</span><span 
class="contributor-name">Chris Mattmann</span><span 
class="contributor-role">C</span></a>
+  <a class="contributor-card" href="https://github.com/amensiko"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">AM</span><span 
class="contributor-name">Anastasija Mensikova</span><span 
class="contributor-role">C</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">TM</span><span 
class="contributor-name">Tom Morton</span><span 
class="contributor-role">C-P</span></span>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">KR</span><span 
class="contributor-name">Kristian Rickert</span><span 
class="contributor-role">C</span></span>
+  <a class="contributor-card" href="https://github.com/danielruss"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">DR</span><span 
class="contributor-name">Daniel Russ</span><span 
class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/kojisekig"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#373b44;" aria-hidden="true">KS</span><span 
class="contributor-name">Koji Sekiguchi</span><span 
class="contributor-role">C-P</span></a>
+  <span class="contributor-card"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">NS</span><span 
class="contributor-name">Nishant Shrivastava</span><span 
class="contributor-role">C</span></span>
+  <a class="contributor-card" href="https://github.com/tteofili"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#283c86;" aria-hidden="true">TT</span><span 
class="contributor-name">Tommaso Teofili</span><span 
class="contributor-role">C-P</span></a>
+  <a class="contributor-card" href="https://github.com/thygesen"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">PT</span><span 
class="contributor-name">Peter Thygesen</span><span 
class="contributor-role">C-P</span></a>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="wall_of_famethanks_to_our_contributors">Wall of 
Fame&#8201;&#8212;&#8201;Thanks to our Contributors</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>Apache OpenNLP exists because of the people below, who have contributed 
code, reviews,
+documentation and bug reports across <a 
href="https://github.com/apache/opennlp";>opennlp</a>,
+<a href="https://github.com/apache/opennlp-site";>opennlp-site</a>,
+<a href="https://github.com/apache/opennlp-addons";>opennlp-addons</a> and
+<a href="https://github.com/apache/opennlp-sandbox";>opennlp-sandbox</a>. The 
list is generated
+automatically from GitHub: if you&#8217;ve contributed and don&#8217;t see 
yourself, please ping us
+on the dev@ mailing list.</p>
+</div>
+<div class="contributor-grid">
+  <a class="contributor-card" href="https://github.com/2300030127"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">23</span><span 
class="contributor-name">2300030127</span></a>
+  <a class="contributor-card" href="https://github.com/adoroszlai"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">AD</span><span 
class="contributor-name">adoroszlai</span></a>
+  <a class="contributor-card" href="https://github.com/alsmolarczyk"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">AL</span><span 
class="contributor-name">alsmolarczyk</span></a>
+  <a class="contributor-card" href="https://github.com/am6010"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#0f2027;" 
aria-hidden="true">AM</span><span class="contributor-name">am6010</span></a>
+  <a class="contributor-card" href="https://github.com/avanco"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#1d2671;" 
aria-hidden="true">AV</span><span class="contributor-name">avanco</span></a>
+  <a class="contributor-card" href="https://github.com/bachelarius"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#11324d;" aria-hidden="true">BA</span><span 
class="contributor-name">bachelarius</span></a>
+  <a class="contributor-card" href="https://github.com/bd2019us"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">BD</span><span 
class="contributor-name">bd2019us</span></a>
+  <a class="contributor-card" href="https://github.com/brigaldies"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">BR</span><span 
class="contributor-name">brigaldies</span></a>
+  <a class="contributor-card" href="https://github.com/chenrui333"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">CH</span><span 
class="contributor-name">chenrui333</span></a>
+  <a class="contributor-card" href="https://github.com/christ"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#6a3093;" 
aria-hidden="true">CH</span><span class="contributor-name">christ</span></a>
+  <a class="contributor-card" href="https://github.com/codyfearer"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#1d2671;" aria-hidden="true">CO</span><span 
class="contributor-name">codyfearer</span></a>
+  <a class="contributor-card" href="https://github.com/cpoerschke"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">CP</span><span 
class="contributor-name">cpoerschke</span></a>
+  <a class="contributor-card" href="https://github.com/DaryanIbe"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">DA</span><span 
class="contributor-name">DaryanIbe</span></a>
+  <a class="contributor-card" href="https://github.com/demq"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#373b44;" 
aria-hidden="true">DE</span><span class="contributor-name">demq</span></a>
+  <a class="contributor-card" href="https://github.com/eddspencer"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">ED</span><span 
class="contributor-name">eddspencer</span></a>
+  <a class="contributor-card" href="https://github.com/gmcdonald"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">GM</span><span 
class="contributor-name">gmcdonald</span></a>
+  <a class="contributor-card" href="https://github.com/gongmingwang"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#6a3093;" aria-hidden="true">GO</span><span 
class="contributor-name">gongmingwang</span></a>
+  <a class="contributor-card" href="https://github.com/janissl"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#1d2671;" 
aria-hidden="true">JA</span><span class="contributor-name">janissl</span></a>
+  <a class="contributor-card" href="https://github.com/JLLeitschuh"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">JL</span><span 
class="contributor-name">JLLeitschuh</span></a>
+  <a class="contributor-card" href="https://github.com/JOBIN-SABU"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">JO</span><span 
class="contributor-name">JOBIN-SABU</span></a>
+  <a class="contributor-card" href="https://github.com/jongwoojeff"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#283c86;" aria-hidden="true">JO</span><span 
class="contributor-name">jongwoojeff</span></a>
+  <a class="contributor-card" href="https://github.com/jonmv"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#1f4068;" 
aria-hidden="true">JO</span><span class="contributor-name">jonmv</span></a>
+  <a class="contributor-card" href="https://github.com/jsteggink"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">JS</span><span 
class="contributor-name">jsteggink</span></a>
+  <a class="contributor-card" href="https://github.com/klu2300030052"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#373b44;" aria-hidden="true">KL</span><span 
class="contributor-name">klu2300030052</span></a>
+  <a class="contributor-card" href="https://github.com/klu2300031264"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">KL</span><span 
class="contributor-name">klu2300031264</span></a>
+  <a class="contributor-card" href="https://github.com/krickert"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#373b44;" aria-hidden="true">KR</span><span 
class="contributor-name">krickert</span></a>
+  <a class="contributor-card" href="https://github.com/kumar-abhishek"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#1f4068;" aria-hidden="true">KU</span><span 
class="contributor-name">kumar-abhishek</span></a>
+  <a class="contributor-card" href="https://github.com/l-ma"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#0f2027;" 
aria-hidden="true">L-</span><span class="contributor-name">l-ma</span></a>
+  <a class="contributor-card" href="https://github.com/madhawa-gunasekara"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">MA</span><span 
class="contributor-name">madhawa-gunasekara</span></a>
+  <a class="contributor-card" href="https://github.com/maximestein"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">MA</span><span 
class="contributor-name">maximestein</span></a>
+  <a class="contributor-card" href="https://github.com/meriam2303"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">ME</span><span 
class="contributor-name">meriam2303</span></a>
+  <a class="contributor-card" href="https://github.com/MikalaiD"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#1f4068;" aria-hidden="true">MI</span><span 
class="contributor-name">MikalaiD</span></a>
+  <a class="contributor-card" href="https://github.com/NishantShri4"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#373b44;" aria-hidden="true">NI</span><span 
class="contributor-name">NishantShri4</span></a>
+  <a class="contributor-card" href="https://github.com/jimregan"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#373b44;" aria-hidden="true">JO</span><span 
class="contributor-name">Jim O’Regan</span></a>
+  <a class="contributor-card" href="https://github.com/pazairfog"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#0f2027;" aria-hidden="true">PA</span><span 
class="contributor-name">pazairfog</span></a>
+  <a class="contributor-card" href="https://github.com/pono"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#3a1c71;" 
aria-hidden="true">PO</span><span class="contributor-name">pono</span></a>
+  <a class="contributor-card" href="https://github.com/PrachiPrakash"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#6a3093;" aria-hidden="true">PR</span><span 
class="contributor-name">PrachiPrakash</span></a>
+  <a class="contributor-card" href="https://github.com/rdorado"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#2c5364;" 
aria-hidden="true">RD</span><span class="contributor-name">rdorado</span></a>
+  <a class="contributor-card" href="https://github.com/reckart"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#283c86;" 
aria-hidden="true">RE</span><span class="contributor-name">reckart</span></a>
+  <a class="contributor-card" href="https://github.com/reikdas"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#6a3093;" 
aria-hidden="true">RE</span><span class="contributor-name">reikdas</span></a>
+  <a class="contributor-card" href="https://github.com/rsvoboda"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#283c86;" aria-hidden="true">RS</span><span 
class="contributor-name">rsvoboda</span></a>
+  <a class="contributor-card" href="https://github.com/rwenig026"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">RW</span><span 
class="contributor-name">rwenig026</span></a>
+  <a class="contributor-card" href="https://github.com/scadams"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#3a1c71;" 
aria-hidden="true">SC</span><span class="contributor-name">scadams</span></a>
+  <a class="contributor-card" href="https://github.com/SchmaR"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#5614b0;" 
aria-hidden="true">SC</span><span class="contributor-name">SchmaR</span></a>
+  <a class="contributor-card" href="https://github.com/shellrean"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">SH</span><span 
class="contributor-name">shellrean</span></a>
+  <a class="contributor-card" href="https://github.com/skrcode"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#3b1f5b;" 
aria-hidden="true">SK</span><span class="contributor-name">skrcode</span></a>
+  <a class="contributor-card" href="https://github.com/smadha"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#5614b0;" 
aria-hidden="true">SM</span><span class="contributor-name">smadha</span></a>
+  <a class="contributor-card" href="https://github.com/soupslurpr"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#2c5364;" aria-hidden="true">SO</span><span 
class="contributor-name">soupslurpr</span></a>
+  <a class="contributor-card" href="https://github.com/subbudvk"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#5614b0;" aria-hidden="true">SU</span><span 
class="contributor-name">subbudvk</span></a>
+  <a class="contributor-card" href="https://github.com/Sujishark"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#16222a;" aria-hidden="true">SU</span><span 
class="contributor-name">Sujishark</span></a>
+  <a class="contributor-card" href="https://github.com/tenatus"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#5614b0;" 
aria-hidden="true">TE</span><span class="contributor-name">tenatus</span></a>
+  <a class="contributor-card" href="https://github.com/thammegowda"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3a1c71;" aria-hidden="true">TH</span><span 
class="contributor-name">thammegowda</span></a>
+  <a class="contributor-card" href="https://github.com/twgoetz"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#283c86;" 
aria-hidden="true">TW</span><span class="contributor-name">twgoetz</span></a>
+  <a class="contributor-card" href="https://github.com/veita"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#2c5364;" 
aria-hidden="true">VE</span><span class="contributor-name">veita</span></a>
+  <a class="contributor-card" href="https://github.com/Alanscut"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">AW</span><span 
class="contributor-name">Alan Wang</span></a>
+  <a class="contributor-card" href="https://github.com/Wgm-Inspur"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">WG</span><span 
class="contributor-name">Wgm-Inspur</span></a>
+  <a class="contributor-card" href="https://github.com/wx930910"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#3b1f5b;" aria-hidden="true">WX</span><span 
class="contributor-name">wx930910</span></a>
+  <a class="contributor-card" href="https://github.com/x-ji"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#283c86;" 
aria-hidden="true">X-</span><span class="contributor-name">x-ji</span></a>
+  <a class="contributor-card" href="https://github.com/Yilinwang"; 
rel="noopener" target="_blank"><span class="contributor-badge" 
style="background:#283c86;" aria-hidden="true">YI</span><span 
class="contributor-name">Yilinwang</span></a>
+  <a class="contributor-card" href="https://github.com/zameji"; rel="noopener" 
target="_blank"><span class="contributor-badge" style="background:#5614b0;" 
aria-hidden="true">ZA</span><span class="contributor-name">zameji</span></a>
+</div>
+</div>
 </div>
 
     <div id="share">


Reply via email to