diff --git a/.gitignore b/.gitignore
index e43b0f9..2608ec2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
.DS_Store
+.vscode
\ No newline at end of file
diff --git a/README.md b/README.md
index 8660c6c..a6dc04e 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,12 @@
# github-style
+像素级抄袭 GitHub。
+
+目前完成:
+
+- header 栏(还没有移动端的样式切换)
+- light/dark 模式切换
+
## Init hugo site
```bash
@@ -14,7 +21,9 @@ git submodule add git@github.com:MeiK2333/github-style.git themes/github-style
```
## Update the theme
-If you just installed the theme, it is already in the lattest version. If not, you can update using the below commands
+
+If you just installed the theme, it is already in the latest version. If not, you can update using the below commands
+
```bash
cd themes/github-style
git pull
@@ -57,6 +66,7 @@ summary: "The summary content"
```
### Approch 2: use ``
+
Use `` to seperate content that will display in the posts page as abstraction and the rest of the content. This is different from summary, as summary will not appear in the post.
```
---
@@ -70,6 +80,7 @@ other content
```
## add last modified data
+
Unfortunately, hugo cannot automaticlly get files' modified date, and it needs to be manually set in page as `lastmode`.
```
---
@@ -78,18 +89,23 @@ lastmode: 2019-10-22T18:46:47+08:00
```
## Support LaTex
+
In you post add `katex:true` to [front matter](https://gohugo.io/content-management/front-matter/)
+
```
---
katex: true
---
```
-Then the [katex script](https://katex.org/docs/autorender.html) will auto render the string enclosed be delimiters.
+
+Then the [katex script](https://katex.org/docs/autorender.html) will auto render the string enclosed be delimiters.
+
```
# replace ... with latex formula
display inline \\( ... \\)
display block $$ ... $$
```
+

## config.toml example
@@ -151,4 +167,4 @@ cd public && git add --all && git commit -m "Publishing to gh-pages (publish.sh)
#echo "Pushing to github"
#git push --all
```
-Then you can verify the site is working and use `git push --all` to push the change to github. If you don't want to check again every time, you can uncomment the `#git push --all` in the script.
\ No newline at end of file
+Then you can verify the site is working and use `git push --all` to push the change to github. If you don't want to check again every time, you can uncomment the `#git push --all` in the script.
diff --git a/layouts/_default/about.html b/layouts/_default/about.html
index 3420ea0..a029354 100644
--- a/layouts/_default/about.html
+++ b/layouts/_default/about.html
@@ -1,11 +1,11 @@
{{ define "content" }}
-
-
+
+
- {{ partial "user-profile.html" . }}
+ {{ partial "user-profile.html" . }}
- {{ partial "about.html" .}}
-
+ {{ partial "about.html" .}}
+
{{end }}
\ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index f9290d1..9e6593e 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -2,10 +2,12 @@
{{ partial "head.html" . }}
-
+
{{ partial "header" . }}
- {{ block "content" . }}{{ end }}
- {{ partial "footer.html" . }}
+
+
+{{ partial "script.html" . }}
+
\ No newline at end of file
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 57faa97..96ec48a 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,12 +1,12 @@
{{ define "content" }}
-
-
+
+
- {{ partial "user-profile.html" . }}
+ {{ partial "user-profile.html" . }}
- {{ partial "posts.html" .}}
+ {{ partial "posts.html" .}}
-
+
{{end }}
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index f626fa2..4ac61a6 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,29 +1,28 @@
{{ if .Params.katex }}
- {{ partial "katex.html" . }}
-{{ end }}
-{{ partial "script.html" . }}
+{{ partial "katex.html" . }}
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 9ac9a71..0c60fa8 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,64 +1,10 @@
-
-
- {{ if $.Site.Params.disableDarkMode }}
- {{ else }}
-
- {{end}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ if isset .Params "date" }}
-
- {{ end }}
-
-
- {{ with .OutputFormats.Get "RSS" }}
-
- {{ end }}
-
-
- {{ with .OutputFormats.Get "json" }}
-
- {{ end }}
-
+
+
+
{{ if .IsHome }}{{ else }}{{ .Title }} - {{ end }}{{ .Site.Title }}
-
-
+
-
-
- {{ partial "extended_head.html" . }}
-
- {{ if eq (getenv "HUGO_ENV") "production"}}
- {{ template "_internal/google_analytics_async.html" . }}
- {{ end }}
\ No newline at end of file
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index b9ce7ec..a16d825 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,55 +1,34 @@
-
-
-
-
-
+
+
+
\ No newline at end of file
diff --git a/layouts/partials/home.html b/layouts/partials/home.html
index e43b4f4..efa66d1 100644
--- a/layouts/partials/home.html
+++ b/layouts/partials/home.html
@@ -1,10 +1,10 @@
-
-
+
+
- {{ partial "user-profile.html" . }}
+ {{ partial "user-profile.html" . }}
- {{ partial "overview.html" .}}
+ {{ partial "overview.html" .}}
-
-
+
+
\ No newline at end of file
diff --git a/layouts/partials/script.html b/layouts/partials/script.html
index f9cb244..49fbdc1 100644
--- a/layouts/partials/script.html
+++ b/layouts/partials/script.html
@@ -1,7 +1 @@
-
-
-
-
-
\ No newline at end of file
+
diff --git a/static/css/dark.css b/static/css/dark.css
index b40a680..74333f6 100644
--- a/static/css/dark.css
+++ b/static/css/dark.css
@@ -1,362 +1,684 @@
-/* powered by DARK READER */
-
-body {
- color: rgb(216, 214, 208);
- background-color: rgb(24, 26, 27);
-}
-
-a {
- color: rgb(77, 172, 253);
-}
-
-.UnderlineNav-item.selected {
- color: rgb(216, 214, 208) !important;
- border-bottom-color: rgb(196, 85, 8) !important;
-}
-
-.UnderlineNav-item {
- color: rgb(196, 191, 183);
- border-bottom-color: transparent;
-}
-
-.UnderlineNav-item:focus,
-.UnderlineNav-item:hover {
- color: rgb(216, 214, 208);
- text-decoration-color: initial;
- border-bottom-color: rgb(55, 61, 69);
-}
-
-.Box {
- background-color: rgb(24, 26, 27);
- border-top-color: rgb(55, 61, 69);
- border-right-color: rgb(55, 61, 69);
- border-bottom-color: rgb(55, 61, 69);
- border-left-color: rgb(55, 61, 69);
-}
-
-.Box-header {
- background-color: rgb(27, 28, 30);
- border-top-color: rgb(55, 61, 69);
- border-right-color: rgb(55, 61, 69);
- border-bottom-color: rgb(55, 61, 69);
- border-left-color: rgb(55, 61, 69);
-}
-
-.Box-body {
- border-bottom-color: rgb(52, 59, 68);
-}
-
-.Counter {
- color: rgb(196, 191, 183);
- background-color: rgba(27, 31, 35, 0.08);
-}
-
-.text-gray {
- color: rgb(196, 191, 183) !important;
-}
-
-.text-gray-light {
- color: rgb(189, 184, 174) !important;
-}
-
-.btn {
- color: rgb(216, 214, 208);
- background-color: rgb(29, 31, 32);
- background-image: linear-gradient(
- -180deg,
- rgb(26, 27, 28),
- rgb(29, 31, 32) 90%
- );
-}
-
-.btn.hover,
-.btn:hover {
- background-color: rgb(31, 33, 35);
- background-image: linear-gradient(
- -180deg,
- rgb(29, 30, 32),
- rgb(31, 33, 35) 90%
- );
- border-top-color: rgba(86, 99, 112, 0.35);
- border-right-color: rgba(86, 99, 112, 0.35);
- border-bottom-color: rgba(86, 99, 112, 0.35);
- border-left-color: rgba(86, 99, 112, 0.35);
-}
-
-.btn-outline.disabled,
-.btn-outline:disabled {
- color: rgba(220, 218, 212, 0.3);
- background-color: rgb(24, 26, 27);
- border-top-color: rgba(86, 99, 112, 0.15);
- border-right-color: rgba(86, 99, 112, 0.15);
- border-bottom-color: rgba(86, 99, 112, 0.15);
- border-left-color: rgba(86, 99, 112, 0.15);
- box-shadow: none;
-}
-
-.btn.disabled,
-.btn:disabled {
- color: rgba(216, 214, 208, 0.4);
- background-color: rgb(29, 31, 32);
- background-image: none;
- border-top-color: rgba(86, 99, 112, 0.2);
- border-right-color: rgba(86, 99, 112, 0.2);
- border-bottom-color: rgba(86, 99, 112, 0.2);
- border-left-color: rgba(86, 99, 112, 0.2);
- box-shadow: none;
-}
-
-.btn-outline {
- color: rgb(77, 172, 253);
- background-color: rgb(24, 26, 27);
- background-image: none;
-}
-
-.btn-outline.selected,
-.btn-outline:active,
-.btn-outline:hover,
-[open] > .btn-outline {
- color: rgb(255, 255, 255);
- background-color: rgb(3, 95, 199);
- background-image: none;
- border-top-color: rgb(3, 99, 207);
- border-right-color: rgb(3, 99, 207);
- border-bottom-color: rgb(3, 99, 207);
- border-left-color: rgb(3, 99, 207);
-}
-
-.btn-outline.disabled,
-.btn-outline:disabled {
- color: rgba(220, 218, 212, 0.3);
- background-color: rgb(24, 26, 27);
- border-top-color: rgba(86, 99, 112, 0.15);
- border-right-color: rgba(86, 99, 112, 0.15);
- border-bottom-color: rgba(86, 99, 112, 0.15);
- border-left-color: rgba(86, 99, 112, 0.15);
- box-shadow: none;
-}
-
-.user-profile-sticky-bar::after {
- background-color: rgb(24, 26, 27);
- border-bottom-color: rgb(55, 61, 69);
- box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px;
-}
-
-.user-profile-nav {
- background-color: rgb(24, 26, 27);
- border-bottom-color: rgb(55, 61, 69);
-}
-
-.vcard-username {
- color: rgb(195, 191, 182);
-}
-
-.vcard-username {
- color: rgb(195, 191, 182);
-}
-
-.vcard-detail .octicon {
- color: rgb(189, 184, 174);
-}
-
-.border-top {
- border-top-color: rgb(52, 59, 68) !important;
-}
-
-.border-bottom {
- border-bottom-color: rgb(52, 59, 68) !important;
-}
-
-.border {
- border-top-color: rgb(52, 59, 68) !important;
- border-right-color: rgb(52, 59, 68) !important;
- border-bottom-color: rgb(52, 59, 68) !important;
- border-left-color: rgb(52, 59, 68) !important;
-}
-
-.border-gray-dark {
- border-top-color: rgb(55, 61, 69) !important;
- border-right-color: rgb(55, 61, 69) !important;
- border-bottom-color: rgb(55, 61, 69) !important;
- border-left-color: rgb(55, 61, 69) !important;
-}
-
-.repohead.experiment-repo-nav {
- background-color: rgb(26, 27, 28);
-}
-
-.repohead h1 {
- color: rgb(196, 191, 183);
-}
-
-.pagehead {
- border-bottom-color: rgb(52, 59, 68);
-}
-
-.file-info-divider {
- background-color: rgb(34, 36, 37);
-}
-
-.markdown-body h1,
-.markdown-body h2 {
- border-bottom-color: rgb(50, 57, 66);
-}
-
-.markdown-body .highlight pre,
-.markdown-body pre {
- background-color: rgb(27, 28, 30);
-}
-
-.markdown-body table tr {
- background-color: rgb(24, 26, 27);
- border-top-color: rgb(57, 63, 71);
-}
-
-.markdown-body table td,
-.markdown-body table th {
- border-top-color: rgb(53, 59, 66);
- border-right-color: rgb(53, 59, 66);
- border-bottom-color: rgb(53, 59, 66);
- border-left-color: rgb(53, 59, 66);
-}
-
-.markdown-body table tr {
- background-color: rgb(24, 26, 27);
- border-top-color: rgb(57, 63, 71);
-}
-
-.markdown-body table tr:nth-child(2n) {
- background-color: rgb(27, 28, 30);
-}
-
-.markdown-body table td,
-.markdown-body table th {
- border-top-color: rgb(53, 59, 66);
- border-right-color: rgb(53, 59, 66);
- border-bottom-color: rgb(53, 59, 66);
- border-left-color: rgb(53, 59, 66);
-}
-
-.markdown-body blockquote {
- color: rgb(189, 184, 174);
- border-left-color: rgb(53, 59, 66);
-}
-
-.markdown-body hr {
- background-color: rgb(33, 35, 36);
- border-top-color: initial;
- border-right-color: initial;
- border-bottom-color: initial;
- border-left-color: initial;
-}
-
-.text-gray {
- color: rgb(196, 192, 183) !important;
-}
-
-.calendar-graph text.month {
- fill: rgb(190, 185, 175);
-}
-
-.calendar-graph text.wday {
- fill: rgb(190, 185, 175);
-}
-
-.day[fill='#ebedf0'],
-.legend li[style*='background-color: rgb(235, 237, 240)'],
-.legend li[style*='background-color: #ebedf0'] {
- fill: #0f1114 !important;
- background-color: #0f1114 !important;
-}
-
-.day[fill='#c6e48b'],
-.legend li[style*='background-color: rgb(198, 228, 139)'],
-.legend li[style*='background-color: #c6e48b'] {
- fill: #2c3a31 !important;
- background-color: #2c3a31 !important;
-}
-
-.day[fill='#7bc96f'],
-.legend li[style*='background-color: rgb(123, 201, 111)'],
-.legend li[style*='background-color: #7bc96f'] {
- fill: #58965c !important;
- background-color: #58965c !important;
-}
-
-.day[fill='#239a3b'],
-.legend li[style*='background-color: rgb(35, 154, 59)'],
-.legend li[style*='background-color: #239a3b'] {
- fill: #87ee9f !important;
- background-color: #87ee9f !important;
-}
-
-.day[fill='#196127'],
-.legend li[style*='background-color: rgb(25, 97, 39)'],
-.legend li[style*='background-color: #196127'] {
- fill: #adf5bb !important;
- background-color: #adf5bb !important;
-}
-
-.bg-white {
- background-color: rgb(24, 26, 27) !important;
-}
-
-.filter-item {
- color: rgb(196, 191, 183);
- text-decoration-color: initial;
-}
-
-.filter-item.selected {
- color: rgb(255, 255, 255);
- background-color: rgb(3, 95, 199);
-}
-
-.filter-item:hover {
- text-decoration-color: initial;
- background-color: rgb(30, 32, 33);
-}
-
-.no-underline {
- text-decoration-color: initial !important;
-}
-
-.muted-link {
- color: rgb(196, 191, 183) !important;
-}
-
-.muted-link:hover {
- text-decoration-color: initial;
- color: rgb(77, 172, 253) !important;
-}
-
-.discussion-timeline::before {
- background-color: rgb(33, 35, 36);
-}
-
-.profile-timeline.discussion-timeline::before {
- background-color: rgb(30, 32, 33);
-}
-
-.profile-timeline.discussion-timeline .profile-timeline-month-heading::after {
- background-color: rgb(30, 32, 33);
-}
-
-.discussion-item-icon {
- color: rgb(216, 214, 208);
- background-color: rgb(33, 35, 36);
- border-top-color: rgb(51, 51, 51);
- border-right-color: rgb(51, 51, 51);
- border-bottom-color: rgb(51, 51, 51);
- border-left-color: rgb(51, 51, 51);
-}
-
-.octicon {
- fill: currentcolor;
-}
-
-/* custom */
-
-.github-octicon {
- fill: currentColor;
- color: #fff;
-}
+[data-theme=dark] {
+ --body-background-color: #000;
+ --color-actions-workflow-table-sticky-bg: rgba(13, 17, 23, 0.95);
+ --color-alert-error-bg: rgba(248, 81, 73, 0.1);
+ --color-alert-error-border: rgba(248, 81, 73, 0.4);
+ --color-alert-error-icon: #ff7b72;
+ --color-alert-error-text: #ff7b72;
+ --color-alert-info-bg: rgba(56, 139, 253, 0.1);
+ --color-alert-info-border: rgba(56, 139, 253, 0.4);
+ --color-alert-info-icon: #79c0ff;
+ --color-alert-info-text: #79c0ff;
+ --color-alert-success-bg: rgba(46, 160, 67, 0.1);
+ --color-alert-success-border: rgba(46, 160, 67, 0.4);
+ --color-alert-success-icon: #56d364;
+ --color-alert-success-text: #56d364;
+ --color-alert-warn-bg: rgba(187, 128, 9, 0.1);
+ --color-alert-warn-border: rgba(187, 128, 9, 0.4);
+ --color-alert-warn-icon: #e3b341;
+ --color-alert-warn-text: #e3b341;
+ --color-ansi-black: #0d1117;
+ --color-ansi-black-bright: #161b22;
+ --color-ansi-blue: #58a6ff;
+ --color-ansi-blue-bright: #79c0ff;
+ --color-ansi-cyan: #76e3ea;
+ --color-ansi-cyan-bright: #b3f0ff;
+ --color-ansi-gray: #6e7681;
+ --color-ansi-green: #3fb950;
+ --color-ansi-green-bright: #56d364;
+ --color-ansi-magenta: #bc8cff;
+ --color-ansi-magenta-bright: #d2a8ff;
+ --color-ansi-red: #ff7b72;
+ --color-ansi-red-bright: #ffa198;
+ --color-ansi-white: #b1bac4;
+ --color-ansi-white-bright: #b1bac4;
+ --color-ansi-yellow: #d29922;
+ --color-ansi-yellow-bright: #e3b341;
+ --color-auto-black: #f0f6fc;
+ --color-auto-blue-0: #051d4d;
+ --color-auto-blue-1: #0c2d6b;
+ --color-auto-blue-2: #0d419d;
+ --color-auto-blue-3: #1158c7;
+ --color-auto-blue-4: #1f6feb;
+ --color-auto-blue-5: #388bfd;
+ --color-auto-blue-6: #58a6ff;
+ --color-auto-blue-7: #79c0ff;
+ --color-auto-blue-8: #a5d6ff;
+ --color-auto-blue-9: #cae8ff;
+ --color-auto-gray-0: #0d1117;
+ --color-auto-gray-1: #161b22;
+ --color-auto-gray-2: #21262d;
+ --color-auto-gray-3: #30363d;
+ --color-auto-gray-4: #484f58;
+ --color-auto-gray-5: #6e7681;
+ --color-auto-gray-6: #8b949e;
+ --color-auto-gray-7: #b1bac4;
+ --color-auto-gray-8: #c9d1d9;
+ --color-auto-gray-9: #f0f6fc;
+ --color-auto-green-0: #04260f;
+ --color-auto-green-1: #033a16;
+ --color-auto-green-2: #0f5323;
+ --color-auto-green-3: #196c2e;
+ --color-auto-green-4: #238636;
+ --color-auto-green-5: #2ea043;
+ --color-auto-green-6: #3fb950;
+ --color-auto-green-7: #56d364;
+ --color-auto-green-8: #7ee787;
+ --color-auto-green-9: #aff5b4;
+ --color-auto-orange-0: #3d1300;
+ --color-auto-orange-1: #5a1e02;
+ --color-auto-orange-2: #762d0a;
+ --color-auto-orange-3: #9b4215;
+ --color-auto-orange-4: #bd561d;
+ --color-auto-orange-5: #db6d28;
+ --color-auto-orange-6: #f0883e;
+ --color-auto-orange-7: #ffa657;
+ --color-auto-orange-8: #ffc680;
+ --color-auto-orange-9: #ffdfb6;
+ --color-auto-pink-0: #42062a;
+ --color-auto-pink-1: #5e103e;
+ --color-auto-pink-2: #7d2457;
+ --color-auto-pink-3: #9e3670;
+ --color-auto-pink-4: #bf4b8a;
+ --color-auto-pink-5: #db61a2;
+ --color-auto-pink-6: #f778ba;
+ --color-auto-pink-7: #ff9bce;
+ --color-auto-pink-8: #ffbedd;
+ --color-auto-pink-9: #ffdaec;
+ --color-auto-purple-0: #271052;
+ --color-auto-purple-1: #3c1e70;
+ --color-auto-purple-2: #553098;
+ --color-auto-purple-3: #6e40c9;
+ --color-auto-purple-4: #8957e5;
+ --color-auto-purple-5: #a371f7;
+ --color-auto-purple-6: #bc8cff;
+ --color-auto-purple-7: #d2a8ff;
+ --color-auto-purple-8: #e2c5ff;
+ --color-auto-purple-9: #eddeff;
+ --color-auto-red-0: #490202;
+ --color-auto-red-1: #67060c;
+ --color-auto-red-2: #8e1519;
+ --color-auto-red-3: #b62324;
+ --color-auto-red-4: #da3633;
+ --color-auto-red-5: #f85149;
+ --color-auto-red-6: #ff7b72;
+ --color-auto-red-7: #ffa198;
+ --color-auto-red-8: #ffc1ba;
+ --color-auto-red-9: #ffdcd7;
+ --color-auto-white: #010409;
+ --color-auto-yellow-0: #341a00;
+ --color-auto-yellow-1: #4b2900;
+ --color-auto-yellow-2: #693e00;
+ --color-auto-yellow-3: #845306;
+ --color-auto-yellow-4: #9e6a03;
+ --color-auto-yellow-5: #bb8009;
+ --color-auto-yellow-6: #d29922;
+ --color-auto-yellow-7: #e3b341;
+ --color-auto-yellow-8: #f2cc60;
+ --color-auto-yellow-9: #f8e3a1;
+ --color-autocomplete-row-border: #30363d;
+ --color-autocomplete-shadow: 0 16px 32px rgba(1, 4, 9, 0.85);
+ --color-avatar-bg: #f0f6fc;
+ --color-avatar-border: rgba(240, 246, 252, 0.1);
+ --color-avatar-child-shadow: -2px -2px 0 #0d1117;
+ --color-avatar-stack-fade: #30363d;
+ --color-avatar-stack-fade-more: #21262d;
+ --color-bg-backdrop: rgba(1, 4, 9, 0.8);
+ --color-bg-canvas: #0d1117;
+ --color-bg-canvas-inset: #06090f;
+ --color-bg-canvas-inverse: #f0f6fc;
+ --color-bg-canvas-mobile: #010409;
+ --color-bg-danger: rgba(248, 81, 73, 0.1);
+ --color-bg-danger-inverse: #da3633;
+ --color-bg-discussions-row-emoji-box: #30363d;
+ --color-bg-info: rgba(56, 139, 253, 0.1);
+ --color-bg-info-inverse: #388bfd;
+ --color-bg-overlay: #21262d;
+ --color-bg-primary: #0d1117;
+ --color-bg-secondary: #0d1117;
+ --color-bg-success: rgba(46, 160, 67, 0.1);
+ --color-bg-success-inverse: #2ea043;
+ --color-bg-tertiary: #161b22;
+ --color-bg-warning: rgba(187, 128, 9, 0.1);
+ --color-bg-warning-inverse: #bb8009;
+ --color-blankslate-icon: #535c66;
+ --color-blob-line-highlight-bg: rgba(187, 128, 9, 0.1);
+ --color-blob-line-highlight-border: #bb8009;
+ --color-border-danger: rgba(248, 81, 73, 0.4);
+ --color-border-info: rgba(56, 139, 253, 0.4);
+ --color-border-inverse: #f0f6fc;
+ --color-border-overlay: #30363d;
+ --color-border-primary: #30363d;
+ --color-border-secondary: #21262d;
+ --color-border-success: rgba(63, 185, 80, 0.4);
+ --color-border-tertiary: #6e7681;
+ --color-border-warning: rgba(187, 128, 9, 0.4);
+ --color-box-bg-info: rgba(56, 139, 253, 0.1);
+ --color-box-bg-warning: rgba(187, 128, 9, 0.1);
+ --color-box-blue-border: #0d419d;
+ --color-box-border-info: rgba(56, 139, 253, 0.4);
+ --color-box-border-warning: rgba(187, 128, 9, 0.4);
+ --color-box-header-blue-bg: #0d1117;
+ --color-box-header-blue-border: #30363d;
+ --color-box-row-blue-bg: rgba(121, 192, 255, 0.1);
+ --color-box-row-yellow-bg: rgba(235, 196, 64, 0.1);
+ --color-branch-name-bg: rgba(88, 166, 255, 0.1);
+ --color-branch-name-icon: #b1bac4;
+ --color-branch-name-link-bg: rgba(88, 166, 255, 0.1);
+ --color-branch-name-link-icon: #58a6ff;
+ --color-branch-name-link-text: #58a6ff;
+ --color-branch-name-text: #c9d1d9;
+ --color-btn-bg: #21262d;
+ --color-btn-border: #30363d;
+ --color-btn-counter-bg: #30363d;
+ --color-btn-danger-counter-bg: rgba(218, 54, 51, 0.1);
+ --color-btn-danger-disabled-bg: #0d1117;
+ --color-btn-danger-disabled-counter-bg: rgba(218, 54, 51, 0.05);
+ --color-btn-danger-disabled-text: #f85149;
+ --color-btn-danger-focus-border: #f85149;
+ --color-btn-danger-focus-shadow: 0 0 0 3px rgba(182, 35, 36, 0.4);
+ --color-btn-danger-hover-bg: #da3633;
+ --color-btn-danger-hover-border: #f85149;
+ --color-btn-danger-hover-counter-bg: hsla(0, 0%, 100%, 0.2);
+ --color-btn-danger-hover-inset-shadow: 0 0 transparent;
+ --color-btn-danger-hover-shadow: 0 0 transparent;
+ --color-btn-danger-hover-text: #fff;
+ --color-btn-danger-selected-bg: #b62324;
+ --color-btn-danger-selected-border: rgba(240, 246, 252, 0.1);
+ --color-btn-danger-selected-shadow: 0 0 transparent;
+ --color-btn-danger-selected-text: #fff;
+ --color-btn-danger-text: #f85149;
+ --color-btn-focus-bg: #21262d;
+ --color-btn-focus-border: #8b949e;
+ --color-btn-focus-shadow: 0 0 0 3px rgba(139, 148, 158, 0.3);
+ --color-btn-hover-bg: #30363d;
+ --color-btn-hover-border: #8b949e;
+ --color-btn-inset-shadow: 0 0 transparent;
+ --color-btn-outline-counter-bg: rgba(31, 111, 235, 0.1);
+ --color-btn-outline-disabled-bg: #0d1117;
+ --color-btn-outline-disabled-counter-bg: rgba(31, 111, 235, 0.05);
+ --color-btn-outline-disabled-text: rgba(88, 166, 255, 0.5);
+ --color-btn-outline-focus-border: #58a6ff;
+ --color-btn-outline-focus-shadow: 0 0 0 3px rgba(17, 88, 199, 0.4);
+ --color-btn-outline-hover-bg: #30363d;
+ --color-btn-outline-hover-border: #58a6ff;
+ --color-btn-outline-hover-counter-bg: rgba(240, 246, 252, 0.2);
+ --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(240, 246, 252, 0.03);
+ --color-btn-outline-hover-shadow: 0 1px 0 rgba(1, 4, 9, 0.1);
+ --color-btn-outline-hover-text: #58a6ff;
+ --color-btn-outline-selected-bg: #0d419d;
+ --color-btn-outline-selected-border: rgba(240, 246, 252, 0.1);
+ --color-btn-outline-selected-shadow: 0 0 transparent;
+ --color-btn-outline-selected-text: #f0f6fc;
+ --color-btn-outline-text: #58a6ff;
+ --color-btn-primary-bg: #238636;
+ --color-btn-primary-border: #2ea043;
+ --color-btn-primary-counter-bg: rgba(240, 246, 252, 0.2);
+ --color-btn-primary-disabled-bg: rgba(35, 134, 54, 0.6);
+ --color-btn-primary-disabled-border: transparent;
+ --color-btn-primary-disabled-text: rgba(240, 246, 252, 0.5);
+ --color-btn-primary-focus-bg: #238636;
+ --color-btn-primary-focus-border: #3fb950;
+ --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46, 164, 79, 0.4);
+ --color-btn-primary-hover-bg: #2ea043;
+ --color-btn-primary-hover-border: #3fb950;
+ --color-btn-primary-icon: #f0f6fc;
+ --color-btn-primary-inset-shadow: 0 0 transparent;
+ --color-btn-primary-selected-bg: #238636;
+ --color-btn-primary-selected-shadow: 0 0 transparent;
+ --color-btn-primary-shadow: 0 0 transparent;
+ --color-btn-primary-text: #fff;
+ --color-btn-selected-bg: #161b22;
+ --color-btn-shadow: 0 0 transparent;
+ --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1, 4, 9, 0.15);
+ --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(31, 111, 235, 0.3);
+ --color-btn-text: #c9d1d9;
+ --color-calendar-graph-day-L1-bg: #01311f;
+ --color-calendar-graph-day-L1-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L2-bg: #034525;
+ --color-calendar-graph-day-L2-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L3-bg: #0f6d31;
+ --color-calendar-graph-day-L3-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L4-bg: #00c647;
+ --color-calendar-graph-day-L4-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-bg: #161b22;
+ --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-halloween-graph-day-L1-bg: #631c03;
+ --color-calendar-halloween-graph-day-L2-bg: #bd561d;
+ --color-calendar-halloween-graph-day-L3-bg: #fa7a18;
+ --color-calendar-halloween-graph-day-L4-bg: #fddf68;
+ --color-checks-donut-error: #f85149;
+ --color-checks-donut-neutral: #8b949e;
+ --color-checks-donut-pending: #d29922;
+ --color-checks-donut-success: #2ea043;
+ --color-code-selection-bg: rgba(121, 192, 255, 0.3);
+ --color-codemirror-activeline-bg: #161b22;
+ --color-codemirror-bg: #0d1117;
+ --color-codemirror-cursor: #f0f6fc;
+ --color-codemirror-guttermarker-subtle-text: #6e7681;
+ --color-codemirror-guttermarker-text: #0d1117;
+ --color-codemirror-gutters-bg: #0d1117;
+ --color-codemirror-linenumber-text: #8b949e;
+ --color-codemirror-lines-bg: #0d1117;
+ --color-codemirror-matchingbracket-text: #c9d1d9;
+ --color-codemirror-selection-bg: rgba(121, 192, 255, 0.3);
+ --color-codemirror-syntax-comment: #8b949e;
+ --color-codemirror-syntax-constant: #79c0ff;
+ --color-codemirror-syntax-entity: #d2a8ff;
+ --color-codemirror-syntax-keyword: #ff7b72;
+ --color-codemirror-syntax-storage: #ff7b72;
+ --color-codemirror-syntax-string: #a5d6ff;
+ --color-codemirror-syntax-support: #79c0ff;
+ --color-codemirror-syntax-variable: #ffa657;
+ --color-codemirror-text: #c9d1d9;
+ --color-counter-bg: #30363d;
+ --color-counter-primary-bg: #6e7681;
+ --color-counter-primary-text: #c9d1d9;
+ --color-counter-secondary-text: #8b949e;
+ --color-counter-text: #c9d1d9;
+ --color-diff-addition-bg: rgba(35, 134, 54, 0.15);
+ --color-diff-addition-border: #196c2e;
+ --color-diff-addition-text: #56d364;
+ --color-diff-blob-addition-line-bg: rgba(35, 134, 54, 0.15);
+ --color-diff-blob-addition-num-bg: rgba(35, 134, 54, 0.05);
+ --color-diff-blob-addition-num-hover-text: #7ee787;
+ --color-diff-blob-addition-num-text: #3fb950;
+ --color-diff-blob-addition-word-bg: rgba(35, 134, 54, 0.3);
+ --color-diff-blob-comment-button-bg: #1f6feb;
+ --color-diff-blob-comment-button-gradient-bg: #367eed;
+ --color-diff-blob-comment-button-icon: #f0f6fc;
+ --color-diff-blob-deletion-line-bg: rgba(218, 54, 51, 0.15);
+ --color-diff-blob-deletion-num-bg: rgba(218, 54, 51, 0.05);
+ --color-diff-blob-deletion-num-hover-text: #ffa198;
+ --color-diff-blob-deletion-num-text: #f85149;
+ --color-diff-blob-deletion-word-bg: rgba(218, 54, 51, 0.3);
+ --color-diff-blob-empty-block-bg: #161b22;
+ --color-diff-blob-expander-hover-bg: #1f6feb;
+ --color-diff-blob-expander-hover-icon: #f0f6fc;
+ --color-diff-blob-expander-icon: #8b949e;
+ --color-diff-blob-hunk-line-bg: rgba(88, 166, 255, 0.1);
+ --color-diff-blob-hunk-num-bg: rgba(88, 166, 255, 0.15);
+ --color-diff-blob-hunk-text: #8b949e;
+ --color-diff-blob-num-hover-text: rgba(240, 246, 252, 0.6);
+ --color-diff-blob-num-text: rgba(240, 246, 252, 0.3);
+ --color-diff-blob-selected-line-highlight-bg: rgba(187, 128, 9, 0.1);
+ --color-diff-blob-selected-line-highlight-border: #bb8009;
+ --color-diff-blob-selected-line-highlight-mix-blend-mode: normal;
+ --color-diff-change-bg: #341a00;
+ --color-diff-change-border: #9e6a03;
+ --color-diff-change-text: #e3b341;
+ --color-diff-deletion-bg: rgba(218, 54, 51, 0.15);
+ --color-diff-deletion-border: #b62324;
+ --color-diff-deletion-text: #f85149;
+ --color-diffstat-addition-bg: #238636;
+ --color-diffstat-addition-border: #2ea043;
+ --color-diffstat-deletion-bg: #da3633;
+ --color-diffstat-deletion-border: #f85149;
+ --color-diffstat-neutral-bg: #30363d;
+ --color-diffstat-neutral-border: rgba(240, 246, 252, 0.1);
+ --color-discussion-bg-success: rgba(46, 160, 67, 0.1);
+ --color-discussion-border: #34513b;
+ --color-discussions-answer-border: rgba(#3fb950, 0.3);
+ --color-discussions-answer-icon: #3fb950;
+ --color-discussions-answer-text: #3fb950;
+ --color-discussions-state-answered-icon: #3fb950;
+ --color-drag-and-drop-border: #25292f;
+ --color-dropdown-shadow: 0 16px 32px rgba(1, 4, 9, 0.85);
+ --color-fade-black-10: rgba(1, 4, 9, 0.1);
+ --color-fade-black-15: rgba(1, 4, 9, 0.15);
+ --color-fade-black-30: rgba(1, 4, 9, 0.3);
+ --color-fade-black-50: rgba(1, 4, 9, 0.5);
+ --color-fade-black-70: rgba(1, 4, 9, 0.7);
+ --color-fade-black-85: rgba(1, 4, 9, 0.85);
+ --color-fade-fg-10: rgba(240, 246, 252, 0.1);
+ --color-fade-fg-15: rgba(240, 246, 252, 0.15);
+ --color-fade-fg-30: rgba(240, 246, 252, 0.3);
+ --color-fade-fg-50: rgba(240, 246, 252, 0.5);
+ --color-fade-fg-70: rgba(240, 246, 252, 0.7);
+ --color-fade-fg-85: rgba(240, 246, 252, 0.85);
+ --color-fade-white-10: rgba(240, 246, 252, 0.1);
+ --color-fade-white-15: rgba(240, 246, 252, 0.15);
+ --color-fade-white-30: rgba(240, 246, 252, 0.3);
+ --color-fade-white-50: rgba(240, 246, 252, 0.5);
+ --color-fade-white-70: rgba(240, 246, 252, 0.7);
+ --color-fade-white-85: rgba(240, 246, 252, 0.85);
+ --color-files-explorer-icon: #6e7681;
+ --color-filter-item-bar-bg: #12161c;
+ --color-footer-invertocat-octicon: #30363d;
+ --color-footer-invertocat-octicon-hover: #6e7681;
+ --color-global-nav-bg: #161b22;
+ --color-global-nav-icon: #c9d1d9;
+ --color-global-nav-input-bg: #0d1117;
+ --color-global-nav-input-border: #21262d;
+ --color-global-nav-input-icon: #21262d;
+ --color-global-nav-input-placeholder: #484f58;
+ --color-global-nav-logo: #f0f6fc;
+ --color-global-nav-text: #c9d1d9;
+ --color-header-bg: #161b22;
+ --color-header-logo: #f0f6fc;
+ --color-header-search-bg: #0d1117;
+ --color-header-search-border: #21262d;
+ --color-header-text: rgba(240, 246, 252, 0.7);
+ --color-hidden-text-expander-bg: #21262d;
+ --color-hidden-text-expander-bg-hover: #30363d;
+ --color-hl-author-bg: #051d4d;
+ --color-hl-author-border: #0d419d;
+ --color-icon-danger: #f85149;
+ --color-icon-info: #79c0ff;
+ --color-icon-primary: #c9d1d9;
+ --color-icon-secondary: #6e7681;
+ --color-icon-success: #56d364;
+ --color-icon-tertiary: #484f58;
+ --color-icon-warning: #e3b341;
+ --color-input-bg: #0d1117;
+ --color-input-border: #21262d;
+ --color-input-contrast-bg: rgba(1, 4, 9, 0.3);
+ --color-input-disabled-bg: #161b22;
+ --color-input-disabled-border: #30363d;
+ --color-input-error-border: #f85149;
+ --color-input-shadow: 0 0 transparent;
+ --color-input-tooltip-error-bg: #25171c;
+ --color-input-tooltip-error-border: #792e2e;
+ --color-input-tooltip-error-text: #ff7b72;
+ --color-input-tooltip-success-bg: #101f1b;
+ --color-input-tooltip-success-border: #1c532b;
+ --color-input-tooltip-success-text: #56d364;
+ --color-input-tooltip-warning-bg: #1e1c16;
+ --color-input-tooltip-warning-border: #5d4411;
+ --color-input-tooltip-warning-text: #e3b341;
+ --color-input-warning-border: #d29922;
+ --color-label-border: #30363d;
+ --color-label-danger-border: rgba(248, 81, 73, 0.4);
+ --color-label-danger-text: #f85149;
+ --color-label-info-border: rgba(56, 139, 253, 0.4);
+ --color-label-info-text: #388bfd;
+ --color-label-orange-border: rgba(219, 109, 40, 0.4);
+ --color-label-orange-text: #db6d28;
+ --color-label-primary-border: #6e7681;
+ --color-label-primary-text: #b1bac4;
+ --color-label-secondary-border: #30363d;
+ --color-label-secondary-text: #8b949e;
+ --color-label-success-border: rgba(46, 160, 67, 0.4);
+ --color-label-success-text: #3fb950;
+ --color-label-warning-border: rgba(242, 211, 91, 0.4);
+ --color-label-warning-text: #e3b341;
+ --color-logo-subdued: #30363d;
+ --color-markdown-blockquote-border: #3b434b;
+ --color-markdown-code-bg: rgba(240, 246, 252, 0.15);
+ --color-markdown-frame-border: #3b434b;
+ --color-markdown-table-border: #3b434b;
+ --color-markdown-table-tr-border: #272c32;
+ --color-marketing-icon-primary: #79c0ff;
+ --color-marketing-icon-secondary: #1f6feb;
+ --color-menu-bg-active: #161b22;
+ --color-menu-border-active: #f78166;
+ --color-menu-heading-text: #8b949e;
+ --color-merge-box-error-icon-bg: rgba(248, 81, 73, 0.1);
+ --color-merge-box-error-icon-border: rgba(248, 81, 73, 0.4);
+ --color-merge-box-error-icon-text: #f85149;
+ --color-merge-box-error-indicator-bg: #da3633;
+ --color-merge-box-error-indicator-border: #f85149;
+ --color-merge-box-merged-box-border: rgba(188, 140, 255, 0.4);
+ --color-merge-box-merged-icon-bg: rgba(188, 140, 255, 0.1);
+ --color-merge-box-merged-icon-border: rgba(188, 140, 255, 0.4);
+ --color-merge-box-merged-icon-text: #a371f7;
+ --color-merge-box-neutral-icon-bg: rgba(201, 209, 217, 0.1);
+ --color-merge-box-neutral-icon-border: rgba(201, 209, 217, 0.4);
+ --color-merge-box-neutral-icon-text: #8b949e;
+ --color-merge-box-neutral-indicator-bg: #484f58;
+ --color-merge-box-neutral-indicator-border: #6e7681;
+ --color-merge-box-success-icon-bg: rgba(46, 160, 67, 0.1);
+ --color-merge-box-success-icon-border: rgba(46, 160, 67, 0.4);
+ --color-merge-box-success-icon-text: #3fb950;
+ --color-merge-box-success-indicator-bg: #238636;
+ --color-merge-box-success-indicator-border: #2ea043;
+ --color-merge-box-warning-box-border: rgba(187, 128, 9, 0.4);
+ --color-merge-box-warning-icon-bg: rgba(187, 128, 9, 0.1);
+ --color-merge-box-warning-icon-border: rgba(187, 128, 9, 0.4);
+ --color-merge-box-warning-icon-text: #e3b341;
+ --color-merge-box-warning-merge-highlight: rgba(187, 128, 9, 0.1);
+ --color-notifications-button-hover-bg: #388bfd;
+ --color-notifications-button-hover-text: #f0f6fc;
+ --color-notifications-button-text: #f0f6fc;
+ --color-notifications-row-bg: #161b22;
+ --color-notifications-row-read-bg: #0d1117;
+ --color-pr-state-closed-bg: rgba(218, 54, 51, 0.1);
+ --color-pr-state-closed-border: rgba(218, 54, 51, 0.4);
+ --color-pr-state-closed-text: #f85149;
+ --color-pr-state-draft-bg: rgba(139, 148, 158, 0.1);
+ --color-pr-state-draft-border: rgba(139, 148, 158, 0.4);
+ --color-pr-state-draft-text: #8b949e;
+ --color-pr-state-merged-bg: rgba(188, 140, 255, 0.1);
+ --color-pr-state-merged-border: rgba(188, 140, 255, 0.4);
+ --color-pr-state-merged-text: #a371f7;
+ --color-pr-state-open-bg: rgba(63, 185, 80, 0.1);
+ --color-pr-state-open-border: rgba(63, 185, 80, 0.4);
+ --color-pr-state-open-text: #3fb950;
+ --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
+ --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
+ --color-prettylights-syntax-carriage-return-bg: #b62324;
+ --color-prettylights-syntax-carriage-return-text: #f0f6fc;
+ --color-prettylights-syntax-comment: #8b949e;
+ --color-prettylights-syntax-constant: #79c0ff;
+ --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
+ --color-prettylights-syntax-entity: #d2a8ff;
+ --color-prettylights-syntax-entity-tag: #7ee787;
+ --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
+ --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
+ --color-prettylights-syntax-keyword: #ff7b72;
+ --color-prettylights-syntax-markup-bold: #c9d1d9;
+ --color-prettylights-syntax-markup-changed-bg: #5a1e02;
+ --color-prettylights-syntax-markup-changed-text: #ffdfb6;
+ --color-prettylights-syntax-markup-deleted-bg: #67060c;
+ --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
+ --color-prettylights-syntax-markup-heading: #1f6feb;
+ --color-prettylights-syntax-markup-ignored-bg: #1158c7;
+ --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
+ --color-prettylights-syntax-markup-inserted-bg: #033a16;
+ --color-prettylights-syntax-markup-inserted-text: #aff5b4;
+ --color-prettylights-syntax-markup-italic: #c9d1d9;
+ --color-prettylights-syntax-markup-list: #f2cc60;
+ --color-prettylights-syntax-meta-diff-range: #d2a8ff;
+ --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
+ --color-prettylights-syntax-string: #a5d6ff;
+ --color-prettylights-syntax-string-regexp: #7ee787;
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
+ --color-prettylights-syntax-variable: #ffa657;
+ --color-previewable-comment-form-border: #25292f;
+ --color-profile-color-modes-toggle-moon: #f8e3a1;
+ --color-profile-color-modes-toggle-thumb-bg: #6e40c9;
+ --color-profile-color-modes-toggle-track-bg: #271052;
+ --color-profile-color-modes-toggle-track-border: #3c1e70;
+ --color-project-card-bg: #161b22;
+ --color-project-gradient-in: #161b22;
+ --color-project-gradient-out: rgba(22, 27, 34, 0);
+ --color-project-header-bg: #0d1117;
+ --color-project-sidebar-bg: #161b22;
+ --color-promo-color-modes-toggle-moon: #f8e3a1;
+ --color-promo-color-modes-toggle-thumb-bg: #6e40c9;
+ --color-promo-color-modes-toggle-track-bg: #271052;
+ --color-promo-color-modes-toggle-track-border: #3c1e70;
+ --color-repo-language-color-border: rgba(240, 246, 252, 0.2);
+ --color-scale-black: #010409;
+ --color-scale-blue-0: #cae8ff;
+ --color-scale-blue-1: #a5d6ff;
+ --color-scale-blue-2: #79c0ff;
+ --color-scale-blue-3: #58a6ff;
+ --color-scale-blue-4: #388bfd;
+ --color-scale-blue-5: #1f6feb;
+ --color-scale-blue-6: #1158c7;
+ --color-scale-blue-7: #0d419d;
+ --color-scale-blue-8: #0c2d6b;
+ --color-scale-blue-9: #051d4d;
+ --color-scale-gray-0: #f0f6fc;
+ --color-scale-gray-1: #c9d1d9;
+ --color-scale-gray-2: #b1bac4;
+ --color-scale-gray-3: #8b949e;
+ --color-scale-gray-4: #6e7681;
+ --color-scale-gray-5: #484f58;
+ --color-scale-gray-6: #30363d;
+ --color-scale-gray-7: #21262d;
+ --color-scale-gray-8: #161b22;
+ --color-scale-gray-9: #0d1117;
+ --color-scale-green-0: #aff5b4;
+ --color-scale-green-1: #7ee787;
+ --color-scale-green-2: #56d364;
+ --color-scale-green-3: #3fb950;
+ --color-scale-green-4: #2ea043;
+ --color-scale-green-5: #238636;
+ --color-scale-green-6: #196c2e;
+ --color-scale-green-7: #0f5323;
+ --color-scale-green-8: #033a16;
+ --color-scale-green-9: #04260f;
+ --color-scale-orange-0: #ffdfb6;
+ --color-scale-orange-1: #ffc680;
+ --color-scale-orange-2: #ffa657;
+ --color-scale-orange-3: #f0883e;
+ --color-scale-orange-4: #db6d28;
+ --color-scale-orange-5: #bd561d;
+ --color-scale-orange-6: #9b4215;
+ --color-scale-orange-7: #762d0a;
+ --color-scale-orange-8: #5a1e02;
+ --color-scale-orange-9: #3d1300;
+ --color-scale-pink-0: #ffdaec;
+ --color-scale-pink-1: #ffbedd;
+ --color-scale-pink-2: #ff9bce;
+ --color-scale-pink-3: #f778ba;
+ --color-scale-pink-4: #db61a2;
+ --color-scale-pink-5: #bf4b8a;
+ --color-scale-pink-6: #9e3670;
+ --color-scale-pink-7: #7d2457;
+ --color-scale-pink-8: #5e103e;
+ --color-scale-pink-9: #42062a;
+ --color-scale-purple-0: #eddeff;
+ --color-scale-purple-1: #e2c5ff;
+ --color-scale-purple-2: #d2a8ff;
+ --color-scale-purple-3: #bc8cff;
+ --color-scale-purple-4: #a371f7;
+ --color-scale-purple-5: #8957e5;
+ --color-scale-purple-6: #6e40c9;
+ --color-scale-purple-7: #553098;
+ --color-scale-purple-8: #3c1e70;
+ --color-scale-purple-9: #271052;
+ --color-scale-red-0: #ffdcd7;
+ --color-scale-red-1: #ffc1ba;
+ --color-scale-red-2: #ffa198;
+ --color-scale-red-3: #ff7b72;
+ --color-scale-red-4: #f85149;
+ --color-scale-red-5: #da3633;
+ --color-scale-red-6: #b62324;
+ --color-scale-red-7: #8e1519;
+ --color-scale-red-8: #67060c;
+ --color-scale-red-9: #490202;
+ --color-scale-white: #f0f6fc;
+ --color-scale-yellow-0: #f8e3a1;
+ --color-scale-yellow-1: #f2cc60;
+ --color-scale-yellow-2: #e3b341;
+ --color-scale-yellow-3: #d29922;
+ --color-scale-yellow-4: #bb8009;
+ --color-scale-yellow-5: #9e6a03;
+ --color-scale-yellow-6: #845306;
+ --color-scale-yellow-7: #693e00;
+ --color-scale-yellow-8: #4b2900;
+ --color-scale-yellow-9: #341a00;
+ --color-search-hover-hl: #161b22;
+ --color-search-keyword-hl: rgba(187, 128, 9, 0.4);
+ --color-select-menu-backdrop-bg: rgba(1, 4, 9, 0.5);
+ --color-select-menu-backdrop-border: #484f58;
+ --color-select-menu-border-secondary: #30363d;
+ --color-select-menu-shadow: 0 0 18px rgba(1, 4, 9, 0.4);
+ --color-select-menu-tap-focus-bg: #0c2d6b;
+ --color-select-menu-tap-highlight: rgba(48, 54, 61, 0.5);
+ --color-shadow-extra-large: 0 12px 48px #010409;
+ --color-shadow-highlight: 0 0 transparent;
+ --color-shadow-inset: 0 0 transparent;
+ --color-shadow-large: 0 8px 24px #010409;
+ --color-shadow-medium: 0 3px 6px #010409;
+ --color-shadow-small: 0 0 transparent;
+ --color-sidenav-border-active: #f78166;
+ --color-sidenav-selected-bg: #21262d;
+ --color-social-count-bg: #21262d;
+ --color-state-focus-border: #388bfd;
+ --color-state-focus-shadow: 0 0 0 3px #0c2d6b;
+ --color-state-hover-primary-bg: #1f6feb;
+ --color-state-hover-primary-border: #388bfd;
+ --color-state-hover-primary-icon: #f0f6fc;
+ --color-state-hover-primary-text: #f0f6fc;
+ --color-state-hover-secondary-bg: #161b22;
+ --color-state-hover-secondary-border: #161b22;
+ --color-state-selected-primary-bg: #1f6feb;
+ --color-state-selected-primary-border: #388bfd;
+ --color-state-selected-primary-icon: #f0f6fc;
+ --color-state-selected-primary-text: #f0f6fc;
+ --color-text-danger: #f85149;
+ --color-text-disabled: #484f58;
+ --color-text-inverse: #0d1117;
+ --color-text-link: #58a6ff;
+ --color-text-placeholder: #484f58;
+ --color-text-primary: #c9d1d9;
+ --color-text-secondary: #8b949e;
+ --color-text-success: #56d364;
+ --color-text-tertiary: #8b949e;
+ --color-text-warning: #e3b341;
+ --color-text-white: #f0f6fc;
+ --color-timeline-badge-bg: #0d1117;
+ --color-timeline-merged-bg: #6e40c9;
+ --color-timeline-target-badge-border: #1f6feb;
+ --color-timeline-target-badge-shadow: #0d419d;
+ --color-timeline-text: #b1bac4;
+ --color-toast-bg: #010409;
+ --color-toast-border: #214981;
+ --color-toast-danger-border: #792e2e;
+ --color-toast-danger-icon: #ff7b72;
+ --color-toast-danger-icon-bg: #25171c;
+ --color-toast-danger-icon-border: #792e2e;
+ --color-toast-danger-text: #ff7b72;
+ --color-toast-icon: #79c0ff;
+ --color-toast-icon-bg: #121d2e;
+ --color-toast-icon-border: #214981;
+ --color-toast-loading-border: #30363d;
+ --color-toast-loading-icon: #f0f6fc;
+ --color-toast-loading-icon-bg: #30363d;
+ --color-toast-loading-icon-border: #30363d;
+ --color-toast-loading-text: #c9d1d9;
+ --color-toast-shadow: 0 8px 24px #010409;
+ --color-toast-success-border: #1c532c;
+ --color-toast-success-icon: #56d364;
+ --color-toast-success-icon-bg: #111f1c;
+ --color-toast-success-icon-border: #1c532c;
+ --color-toast-success-text: #56d364;
+ --color-toast-text: #79c0ff;
+ --color-toast-warning-border: #5e4411;
+ --color-toast-warning-icon: #e3b341;
+ --color-toast-warning-icon-bg: #1f1c16;
+ --color-toast-warning-icon-border: #5e4411;
+ --color-toast-warning-text: #e3b341;
+ --color-tooltip-bg: #21262d;
+ --color-tooltip-text: #f0f6fc;
+ --color-topic-tag-active-bg: rgba(56, 139, 253, 0.15);
+ --color-topic-tag-bg: rgba(56, 139, 253, 0.1);
+ --color-topic-tag-hover-bg: rgba(56, 139, 253, 0.2);
+ --color-topic-tag-text: #58a6ff;
+ --color-underlinenav-border: rgba(48, 54, 61, 0);
+ --color-underlinenav-border-active: #f78166;
+ --color-underlinenav-border-hover: #30363d;
+ --color-underlinenav-counter-text: #8b949e;
+ --color-underlinenav-icon: #6e7681;
+ --color-underlinenav-icon-active: #c9d1d9;
+ --color-underlinenav-icon-hover: #c9d1d9;
+ --color-underlinenav-text: #8b949e;
+ --color-underlinenav-text-active: #c9d1d9;
+ --color-underlinenav-text-hover: #c9d1d9;
+ --color-upload-enabled-border: #3b434b;
+ --color-upload-enabled-border-focused: #4487ee;
+ --color-upvote-icon-bg: #0c2d6b;
+ --color-verified-badge-bg: rgba(63, 185, 80, 0.1);
+ --color-verified-badge-border: rgba(63, 185, 80, 0.4);
+ --color-verified-badge-text: #3fb950;
+ --color-workflow-card-bg: #21262d;
+ --color-workflow-card-connector-line: #484f58;
+ --color-workflow-card-connector-node-bg: #484f58;
+ --color-workflow-card-header-shadow: transparent;
+ --color-workflow-card-progress-complete-bg: #8b949e;
+ --color-workflow-card-progress-incomplete-bg: #30363d;
+}
\ No newline at end of file
diff --git a/static/css/frameworks.css b/static/css/frameworks.css
deleted file mode 100644
index 8152672..0000000
--- a/static/css/frameworks.css
+++ /dev/null
@@ -1,20 +0,0 @@
-/*!
- * GitHub Light v0.4.1
- * Copyright (c) 2012 - 2017 GitHub, Inc.
- * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
- */.pl-c{color:#6a737d}.pl-c1,.pl-s .pl-v{color:#005cc5}.pl-e,.pl-en{color:#6f42c1}.pl-s .pl-s1,.pl-smi{color:#24292e}.pl-ent{color:#22863a}.pl-k{color:#d73a49}.pl-pds,.pl-s,.pl-s .pl-pse .pl-s1,.pl-sr,.pl-sr .pl-cce,.pl-sr .pl-sra,.pl-sr .pl-sre{color:#032f62}.pl-smw,.pl-v{color:#e36209}.pl-bu{color:#b31d28}.pl-ii{color:#fafbfc;background-color:#b31d28}.pl-c2{color:#fafbfc;background-color:#d73a49}.pl-c2:before{content:"^M"}.pl-sr .pl-cce{font-weight:700;color:#22863a}.pl-ml{color:#735c0f}.pl-mh,.pl-mh .pl-en,.pl-ms{font-weight:700;color:#005cc5}.pl-mi{font-style:italic;color:#24292e}.pl-mb{font-weight:700;color:#24292e}.pl-md{color:#b31d28;background-color:#ffeef0}.pl-mi1{color:#22863a;background-color:#f0fff4}.pl-mc{color:#e36209;background-color:#ffebda}.pl-mi2{color:#f6f8fa;background-color:#005cc5}.pl-mdr{font-weight:700;color:#6f42c1}.pl-ba{color:#586069}.pl-sg{color:#959da5}.pl-corl{text-decoration:underline;color:#032f62}.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:initial}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:initial}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:initial}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:initial}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}.CodeMirror-dialog{position:absolute;left:0;right:0;background:inherit;z-index:15;padding:.1em .8em;overflow:hidden;color:inherit}.CodeMirror-dialog-top{border-bottom:1px solid #eee;top:0}.CodeMirror-dialog-bottom{border-top:1px solid #eee;bottom:0}.CodeMirror-dialog input{border:none;outline:none;background:transparent;width:20em;color:inherit;font-family:monospace}.CodeMirror-dialog button{font-size:70%}.CodeMirror-merge{position:relative;border:1px solid #ddd;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{height:350px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:47%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:6%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;box-sizing:border-box;overflow:hidden;border-left:1px solid #ddd;border-right:1px solid #ddd;position:relative;background:#f8f8f8}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#555;line-height:1}.CodeMirror-merge-scrolllock:after{content:"\21db\00a0\00a0\21da"}.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after{content:"\21db\21da"}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{z-index:3}.CodeMirror-merge-copy,.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-l-inserted,.CodeMirror-merge-r-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-l-deleted,.CodeMirror-merge-r-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#ffffe0}.CodeMirror-merge-r-chunk-start{border-top:1px solid #ee8}.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #ee8}.CodeMirror-merge-r-connect{fill:#ffffe0;stroke:#ee8;stroke-width:1px}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt{display:none}
-
-/*!
- * GitHub Light v0.4.2
- * Copyright (c) 2012 - 2017 GitHub, Inc.
- * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
- */.cm-s-github-light.CodeMirror{background:#fff;color:#24292e}.cm-s-github-light .CodeMirror-gutters{background:#fff;border-right-width:0}.cm-s-github-light .CodeMirror-guttermarker{color:#fff}.cm-s-github-light .CodeMirror-guttermarker-subtle{color:#d0d0d0}.cm-s-github-light .CodeMirror-linenumber{color:#959da5;padding:0 16px}.cm-s-github-light .CodeMirror-cursor{border-left:1px solid #24292e}.cm-s-github-light .CodeMirror-line::-moz-selection,.cm-s-github-light .CodeMirror-line::selection,.cm-s-github-light .CodeMirror-line>span::-moz-selection,.cm-s-github-light .CodeMirror-line>span::selection,.cm-s-github-light .CodeMirror-line>span>span::-moz-selection,.cm-s-github-light .CodeMirror-line>span>span::selection,.cm-s-github-light div.CodeMirror-selected{background:#c8c8fa}.cm-s-github-light .CodeMirror-activeline-background{background:#fafbfc}.cm-s-github-light .CodeMirror-matchingbracket{text-decoration:underline;color:#24292e!important}.cm-s-github-light .CodeMirror-lines{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px;background:#fff;line-height:1.5}.cm-s-github-light .cm-comment{color:#6a737d}.cm-s-github-light .cm-constant{color:#005cc5}.cm-s-github-light .cm-entity{font-weight:400;font-style:normal;text-decoration:none;color:#6f42c1}.cm-s-github-light .cm-keyword{font-weight:400;font-style:normal;text-decoration:none;color:#d73a49}.cm-s-github-light .cm-storage{color:#d73a49}.cm-s-github-light .cm-string{font-weight:400;font-style:normal;text-decoration:none;color:#032f62}.cm-s-github-light .cm-support{font-weight:400;font-style:normal;text-decoration:none;color:#005cc5}.cm-s-github-light .cm-variable{font-weight:400;font-style:normal;text-decoration:none;color:#e36209}details-dialog{position:fixed;margin:10vh auto;top:0;left:50%;transform:translateX(-50%);z-index:999;max-height:80vh;max-width:90vw;width:448px}body.intent-mouse [role=button]:focus,body.intent-mouse button:focus,body.intent-mouse summary:focus{outline:none;box-shadow:none}.CodeMirror{height:calc(100vh - 1px)}.file-editor-textarea{width:100%;padding:5px 4px;font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;resize:vertical;border:0;border-radius:0;outline:none}.container-preview .tabnav-tabs{margin:-6px 0 -6px -11px}.container-preview .tabnav-tabs .tabnav-tab{padding:12px 15px;border-radius:0}.container-preview .tabnav-tabs>.selected:first-child{border-top-left-radius:3px}.container-preview .tabnav-tabs .selected{font-weight:600}.container-preview.template-editor .commit-create,.container-preview.template-editor .file-actions{display:block}.container-preview.template-editor .commit-preview,.container-preview.template-editor .error-preview-msg,.container-preview.template-editor .loading-preview-msg,.container-preview.template-editor .no-changes-preview-msg,.container-preview.template-editor .show-code{display:none!important}.container-preview.render-editor .commit-create,.container-preview.render-editor .file-actions{display:block}.container-preview.render-editor .commit-preview,.container-preview.render-editor .error-preview-msg,.container-preview.render-editor .loading-preview-msg,.container-preview.render-editor .no-changes-preview-msg,.container-preview.render-editor .show-code,.container-preview.render-editor .template-editor{display:none!important}.container-preview.show-code .commit-create,.container-preview.show-code .file-actions{display:block}.container-preview.show-code .commit-preview,.container-preview.show-code .error-preview-msg,.container-preview.show-code .loading-preview-msg,.container-preview.show-code .no-changes-preview-msg,.container-preview.show-code .render-editor,.container-preview.show-code .template-editor,.container-preview:not(.show-code) .commit-create,.container-preview:not(.show-code) .file-actions{display:none!important}.container-preview.loading-preview .loading-preview-msg{display:block}.container-preview.loading-preview .commit-preview,.container-preview.loading-preview .error-preview-msg,.container-preview.loading-preview .no-changes-preview-msg,.container-preview.loading-preview .render-editor,.container-preview.loading-preview .template-editor{display:none!important}.container-preview.show-preview .commit-preview{display:block}.container-preview.show-preview .error-preview-msg,.container-preview.show-preview .loading-preview-msg,.container-preview.show-preview .no-changes-preview-msg,.container-preview.show-preview .render-editor,.container-preview.show-preview .template-editor{display:none!important}.container-preview.no-changes-preview .no-changes-preview-msg{display:block}.container-preview.no-changes-preview .commit-preview,.container-preview.no-changes-preview .error-preview-msg,.container-preview.no-changes-preview .loading-preview-msg,.container-preview.no-changes-preview .render-editor,.container-preview.no-changes-preview .template-editor{display:none!important}.container-preview.error-preview .error-preview-msg{display:block}.container-preview.error-preview .commit-preview,.container-preview.error-preview .loading-preview-msg,.container-preview.error-preview .no-changes-preview-msg,.container-preview.error-preview .render-editor,.container-preview.error-preview .template-editor{display:none!important}.container-preview p.preview-msg{padding:30px;font-size:16px}.CodeMirror-merge-header{height:30px}.CodeMirror-merge-header .CodeMirror-merge-pane{height:30px;line-height:30px}.cm-s-github-light .merge-gutter{width:14px}.conflict-background+.CodeMirror-gutter-wrapper .CodeMirror-linenumber,.conflict-gutter-marker{background-color:#fffbdd}.conflict-gutter-marker:after,.conflict-gutter-marker:before{position:absolute;left:-1px;content:"";background-color:#d73a49}.conflict-gutter-marker-end:after,.conflict-gutter-marker-start:after{width:1px;height:10px}.conflict-gutter-marker-end:before,.conflict-gutter-marker-middle:before,.conflict-gutter-marker-start:before{width:10px;height:1px}.conflict-gutter-marker-start:after{bottom:0}.conflict-gutter-marker-end:after{top:0}.conflict-gutter-marker-start:before{top:7px}.conflict-gutter-marker-end:before{bottom:7px}.conflict-gutter-marker-line:after,.conflict-gutter-marker-middle:after{width:1px;height:18px}.conflict-gutter-marker-middle:before{top:9px}.form-group .edit-action{opacity:.6}.form-group .form-field-hover{background-color:none;border:1px solid rgba(149,157,165,0)}.form-group:hover{cursor:pointer}.form-group:hover .edit-action{opacity:.7}.form-group:hover .form-field-hover,.placeholder-box{border:1px solid #959da5}.template-previews{max-width:768px}.template-previews .Box .expand-group{display:none;height:0}.template-previews .Box .dismiss-preview-button{display:none}.template-previews .Box.expand-preview .expand-group{display:block;height:100%;transition:height 3s}.template-previews .Box.expand-preview .preview-button{display:none}.template-previews .Box.expand-preview .dismiss-preview-button{display:inline}.template-previews .discussion-sidebar-heading{font-size:14px;color:#24292e}.template-previews .discussion-sidebar-heading:hover{color:#0366d6}.edit-labels{display:none}.preview-section{display:block}.Box .section-focus .preview-section,.edit-section{display:none}.Box .section-focus .edit-section{display:block}.user-select-contain{-ms-user-select:element;-ms-user-select:contain;-webkit-user-select:contain;-moz-user-select:contain;user-select:contain}.zeroclipboard-link{padding:0;margin:0;color:#0366d6;cursor:pointer;background:none;border:0}.zeroclipboard-link .octicon,image-crop{display:block}image-crop.nesw{cursor:nesw-resize}image-crop.nwse{cursor:nwse-resize}image-crop.nesw .crop-box,image-crop.nwse .crop-box{cursor:inherit}image-crop[loaded] .crop-image{display:block}image-crop .crop-image,image-crop[loaded] [data-loading-slot]{display:none}image-crop .crop-wrapper{position:relative;font-size:0}image-crop .crop-container{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;position:absolute;overflow:hidden;z-index:1;top:0;width:100%;height:100%}image-crop .crop-box{position:absolute;border:1px dashed #fff;box-sizing:border-box;cursor:move}image-crop .crop-outline{position:absolute;top:0;bottom:0;left:0;right:0;outline:600px solid rgba(0,0,0,.3)}image-crop .handle{position:absolute}image-crop .handle:before{position:absolute;display:block;padding:4px;transform:translate(-50%,-50%);content:" ";background:#fff;border:1px solid #767676}image-crop .ne{top:0;right:0;cursor:nesw-resize}image-crop .nw{top:0;left:0;cursor:nwse-resize}image-crop .se{bottom:0;right:0;cursor:nwse-resize}image-crop .sw{bottom:0;left:0;cursor:nesw-resize}
-
-/*!
- * Primer-core
- * http://primer.github.io
- *
- * Released under MIT license. Copyright (c) 2019 GitHub Inc.
- */.octicon{display:inline-block;vertical-align:text-top;fill:currentColor}
-
-/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:initial}[hidden],template{display:none!important}a{background-color:initial}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:initial;height:0;overflow:visible}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}*{box-sizing:border-box}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:14px;line-height:1.5;color:#24292e;background-color:#fff}a{color:#0366d6;text-decoration:none}a:hover{text-decoration:underline}b,strong{font-weight:600}.rule,hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #dfe2e5}.rule:after,.rule:before,hr:after,hr:before{display:table;content:""}.rule:after,hr:after{clear:both}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}button{cursor:pointer;border-radius:0}[hidden][hidden]{display:none!important}details summary{cursor:pointer}details:not([open])>:not(summary){display:none!important}kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:1px solid #d1d5da;border-radius:3px;box-shadow:inset 0 -1px 0 #d1d5da}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0}h1{font-size:32px}h1,h2{font-weight:600}h2{font-size:24px}h3{font-size:20px}h3,h4{font-weight:600}h4{font-size:16px}h5{font-size:14px}h5,h6{font-weight:600}h6{font-size:12px}p{margin-top:0;margin-bottom:10px}small{font-size:90%}blockquote{margin:0}ol,ul{padding-left:0;margin-top:0;margin-bottom:0}ol ol,ul ol{list-style-type:lower-roman}ol ol ol,ol ul ol,ul ol ol,ul ul ol{list-style-type:lower-alpha}dd{margin-left:0}code,pre,tt{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px}pre{margin-top:0;margin-bottom:0}.octicon{vertical-align:text-bottom}.Box{background-color:#fff;border:1px solid #d1d5da;border-radius:3px}.Box--condensed{line-height:1.25}.Box--condensed .Box-body,.Box--condensed .Box-footer,.Box--condensed .Box-header{padding:8px 16px}.Box--condensed .Box-btn-octicon.btn-octicon{padding:8px 16px;margin:-8px -16px;line-height:1.25}.Box--condensed .Box-row{padding:8px 16px}.Box--spacious .Box-header{padding:24px;line-height:1.25}.Box--spacious .Box-title{font-size:20px}.Box--spacious .Box-body,.Box--spacious .Box-footer{padding:24px}.Box--spacious .Box-btn-octicon.btn-octicon{padding:24px;margin:-24px}.Box--spacious .Box-row{padding:24px}.Box-header{padding:16px;margin:-1px -1px 0;background-color:#f6f8fa;border:1px solid #d1d5da;border-top-left-radius:3px;border-top-right-radius:3px}.Box-title{font-size:14px;font-weight:600}.Box-body{padding:16px;border-bottom:1px solid #e1e4e8}.Box-body:last-of-type{margin-bottom:-1px;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.Box-row{padding:16px;margin-top:-1px;list-style-type:none;border-top:1px solid #e1e4e8}.Box-row:first-of-type{border-top-color:transparent;border-top-left-radius:2px;border-top-right-radius:2px}.Box-row:last-of-type{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.Box-row.Box-row--unread,.Box-row.unread{box-shadow:inset 2px 0 0 #0366d6}.Box-row.navigation-focus .Box-row--drag-button{color:#0366d6;cursor:grab;opacity:1}.Box-row.navigation-focus.is-dragging .Box-row--drag-button{cursor:grabbing}.Box-row.navigation-focus.sortable-chosen{background-color:#fafbfc}.Box-row.navigation-focus.sortable-ghost{background-color:#f6f8fa}.Box-row.navigation-focus.sortable-ghost .Box-row--drag-hide{opacity:0}.Box-row--focus-gray.navigation-focus{background-color:#f6f8fa}.Box-row--focus-blue.navigation-focus{background-color:#f1f8ff}.Box-row--hover-gray:hover{background-color:#f6f8fa}.Box-row--hover-blue:hover{background-color:#f1f8ff}@media (min-width:768px){.Box-row-link{color:#24292e;text-decoration:none}.Box-row-link:hover{color:#0366d6;text-decoration:none}}.Box-row--drag-button{opacity:0}.Box-footer{padding:16px;margin-top:-1px;border-top:1px solid #e1e4e8}.Box--scrollable{max-height:324px;overflow:scroll}.Box--blue{border-color:#c8e1ff}.Box--blue .Box-header{background-color:#f1f8ff;border-color:#c8e1ff}.Box--blue .Box-body,.Box--blue .Box-footer,.Box--blue .Box-row{border-color:#c8e1ff}.Box--danger,.Box--danger .Box-body:last-of-type,.Box--danger .Box-row:first-of-type{border-color:#d73a49}.Box-header--blue{background-color:#f1f8ff;border-color:#c8e1ff}.Box-row--yellow{background-color:#fffbdd}.Box-row--blue{background-color:#f1f8ff}.Box-row--gray{background-color:#f6f8fa}.Box-btn-octicon.btn-octicon{padding:16px;margin:-16px;line-height:1.5}.breadcrumb-item{display:inline-block;margin-left:-.35em;white-space:nowrap;list-style:none}.breadcrumb-item:after{padding-right:.5em;padding-left:.5em;color:#e1e4e8;content:"/"}.breadcrumb-item:first-child{margin-left:0}.breadcrumb-item-selected:after{content:none}.btn{position:relative;display:inline-block;padding:6px 12px;font-size:14px;font-weight:600;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-repeat:repeat-x;background-position:-1px -1px;background-size:110% 110%;border:1px solid rgba(27,31,35,.2);border-radius:.25em;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn i{font-style:normal;font-weight:500;opacity:.75}.btn .octicon{vertical-align:text-top}.btn .Counter{color:#586069;text-shadow:none;background-color:rgba(27,31,35,.1)}.btn:hover{text-decoration:none;background-repeat:repeat-x}.btn:focus{outline:0}.btn.disabled,.btn:disabled{cursor:default;background-position:0 0}.btn.selected,.btn:active{background-image:none}.btn{color:#24292e;background-color:#eff3f6;background-image:linear-gradient(-180deg,#fafbfc,#eff3f6 90%)}.btn.focus,.btn:focus{box-shadow:0 0 0 .2em rgba(3,102,214,.3)}.btn.hover,.btn:hover{background-color:#e6ebf1;background-image:linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%);background-position:-.5em;border-color:rgba(27,31,35,.35)}.btn.selected,.btn:active,[open]>.btn{background-color:#e9ecef;background-image:none;border-color:rgba(27,31,35,.35);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn.disabled,.btn:disabled{color:rgba(36,41,46,.4);background-color:#eff3f6;background-image:none;border-color:rgba(27,31,35,.2);box-shadow:none}.btn-primary{color:#fff;background-color:#28a745;background-image:linear-gradient(-180deg,#34d058,#28a745 90%)}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2em rgba(52,208,88,.4)}.btn-primary.hover,.btn-primary:hover{background-color:#269f42;background-image:linear-gradient(-180deg,#2fcb53,#269f42 90%);background-position:-.5em;border-color:rgba(27,31,35,.5)}.btn-primary.selected,.btn-primary:active,[open]>.btn-primary{background-color:#279f43;background-image:none;border-color:rgba(27,31,35,.5);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn-primary.disabled,.btn-primary:disabled{color:hsla(0,0%,100%,.75);background-color:#94d3a2;background-image:none;border-color:rgba(27,31,35,.2);box-shadow:none}.btn-primary .Counter{color:#29b249;background-color:#fff}.btn-blue{color:#fff;background-color:#0361cc;background-image:linear-gradient(-180deg,#0679fc,#0361cc 90%)}.btn-blue.focus,.btn-blue:focus{box-shadow:0 0 0 .2em rgba(6,121,252,.4)}.btn-blue.hover,.btn-blue:hover{background-color:#035cc2;background-image:linear-gradient(-180deg,#0374f4,#035cc2 90%);background-position:-.5em;border-color:rgba(27,31,35,.5)}.btn-blue.selected,.btn-blue:active,[open]>.btn-blue{background-color:#045cc1;background-image:none;border-color:rgba(27,31,35,.5);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn-blue.disabled,.btn-blue:disabled{color:hsla(0,0%,100%,.75);background-color:#81b0e5;background-image:none;border-color:rgba(27,31,35,.2);box-shadow:none}.btn-blue .Counter{color:#0366d6;background-color:#fff}.btn-danger{color:#cb2431;background-color:#fafbfc;background-image:linear-gradient(-180deg,#fafbfc,#eff3f6 90%)}.btn-danger:focus{box-shadow:0 0 0 .2em rgba(203,36,49,.4)}.btn-danger:hover{color:#fff;background-color:#cb2431;background-image:linear-gradient(-180deg,#de4450,#cb2431 90%);border-color:rgba(27,31,35,.5)}.btn-danger:hover .Counter{color:#fff}.btn-danger.selected,.btn-danger:active,[open]>.btn-danger{color:#fff;background-color:#b5202c;background-image:none;border-color:rgba(27,31,35,.5);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn-danger.disabled,.btn-danger:disabled{color:rgba(203,36,49,.4);background-color:#eff3f6;background-image:none;border-color:rgba(27,31,35,.2);box-shadow:none}.btn-outline{color:#0366d6;background-color:#fff;background-image:none}.btn-outline .Counter{background-color:rgba(27,31,35,.07)}.btn-outline.selected,.btn-outline:active,.btn-outline:hover,[open]>.btn-outline{color:#fff;background-color:#0366d6;background-image:none;border-color:#0366d6}.btn-outline.selected .Counter,.btn-outline:active .Counter,.btn-outline:hover .Counter,[open]>.btn-outline .Counter{color:#0366d6;background-color:#fff}.btn-outline:focus{border-color:#0366d6;box-shadow:0 0 0 .2em rgba(3,102,214,.4)}.btn-outline.disabled,.btn-outline:disabled{color:rgba(27,31,35,.3);background-color:#fff;border-color:rgba(27,31,35,.15);box-shadow:none}.btn-with-count{float:left;border-top-right-radius:0;border-bottom-right-radius:0}.btn-sm{padding:3px 10px;font-size:12px;line-height:20px}.btn-large{padding:.75em 1.25em;font-size:inherit;border-radius:6px}.hidden-text-expander{display:block}.hidden-text-expander.inline{position:relative;top:-1px;display:inline-block;margin-left:5px;line-height:0}.ellipsis-expander,.hidden-text-expander a{display:inline-block;height:12px;padding:0 5px 5px;font-size:12px;font-weight:600;line-height:6px;color:#444d56;text-decoration:none;vertical-align:middle;background:#dfe2e5;border:0;border-radius:1px}.ellipsis-expander:hover,.hidden-text-expander a:hover{text-decoration:none;background-color:#c6cbd1}.ellipsis-expander:active,.hidden-text-expander a:active{color:#fff;background-color:#2188ff}.social-count{float:left;padding:3px 10px;font-size:12px;font-weight:600;line-height:20px;color:#24292e;vertical-align:middle;background-color:#fff;border:1px solid rgba(27,31,35,.2);border-left:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.social-count:active,.social-count:hover{text-decoration:none}.social-count:hover{color:#0366d6;cursor:pointer}.btn-block{display:block;width:100%;text-align:center}.btn-link{display:inline-block;padding:0;font-size:inherit;color:#0366d6;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:initial;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn-link:hover{text-decoration:underline}.btn-link:disabled,.btn-link:disabled:hover{color:rgba(88,96,105,.5);cursor:default}.details-reset>summary{list-style:none}.details-reset>summary:before{display:none}.details-reset>summary::-webkit-details-marker{display:none}.BtnGroup{display:inline-block;vertical-align:middle}.BtnGroup:after,.BtnGroup:before{display:table;content:""}.BtnGroup:after{clear:both}.BtnGroup+.btn,.BtnGroup+.BtnGroup{margin-left:4px}.BtnGroup-item{position:relative;float:left;border-right-width:0;border-radius:0}.BtnGroup-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.BtnGroup-item:last-child{border-right-width:1px;border-top-right-radius:3px;border-bottom-right-radius:3px}.BtnGroup-item.selected,.BtnGroup-item:active,.BtnGroup-item:focus,.BtnGroup-item:hover{border-right-width:1px}.BtnGroup-item.selected+.BtnGroup-item,.BtnGroup-item.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:active+.BtnGroup-item,.BtnGroup-item:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-parent .BtnGroup-item{border-left-width:0}.BtnGroup-parent{float:left}.BtnGroup-parent:first-child .BtnGroup-item{border-top-left-radius:3px;border-bottom-left-radius:3px}.BtnGroup-parent:last-child .BtnGroup-item{border-right-width:1px;border-top-right-radius:3px;border-bottom-right-radius:3px}.BtnGroup-parent .BtnGroup-item{border-right-width:0;border-radius:0}.BtnGroup-parent.selected .BtnGroup-item,.BtnGroup-parent:active .BtnGroup-item,.BtnGroup-parent:focus .BtnGroup-item,.BtnGroup-parent:hover .BtnGroup-item{border-right-width:1px}.BtnGroup-parent.selected+.BtnGroup-item,.BtnGroup-parent.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-parent .BtnGroup-item{border-left-width:0}.BtnGroup-item:active,.BtnGroup-item:focus,.BtnGroup-parent:active,.BtnGroup-parent:focus{z-index:1}.TableObject{display:table}.TableObject-item{display:table-cell;width:1%;white-space:nowrap;vertical-align:middle}.TableObject-item--primary{width:99%}fieldset{padding:0;margin:0;border:0}label{font-weight:600}.form-control,.form-select{min-height:34px;padding:6px 8px;font-size:16px;line-height:20px;color:#24292e;vertical-align:middle;background-color:#fff;background-repeat:no-repeat;background-position:right 8px center;border:1px solid #d1d5da;border-radius:3px;outline:none;box-shadow:inset 0 1px 2px rgba(27,31,35,.075)}.form-control.focus,.form-control:focus,.form-select.focus,.form-select:focus{border-color:#2188ff;outline:none;box-shadow:inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)}@media (min-width:768px){.form-control,.form-select{font-size:14px}}.input-contrast{background-color:#fafbfc}.input-contrast:focus{background-color:#fff}.input-dark{color:#fff;background-color:hsla(0,0%,100%,.15);border-color:transparent}.input-dark:-ms-input-placeholder{color:inherit;opacity:.6}.input-dark::-ms-input-placeholder{color:inherit;opacity:.6}.input-dark::placeholder{color:inherit;opacity:.6}.input-dark.focus,.input-dark:focus{border-color:rgba(27,31,35,.3);box-shadow:0 0 0 .2em rgba(121,184,255,.4)}:-ms-input-placeholder{color:#6a737d}::-ms-input-placeholder{color:#6a737d}::placeholder{color:#6a737d}.input-sm{min-height:28px;padding-top:3px;padding-bottom:3px;font-size:12px;line-height:20px}.input-lg{padding:4px 10px;font-size:16px}.input-block{display:block;width:100%}.input-monospace{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}.input-hide-webkit-autofill::-webkit-contacts-auto-fill-button{position:absolute;right:0;display:none!important;pointer-events:none;visibility:hidden}.form-checkbox{padding-left:20px;margin:15px 0;vertical-align:middle}.form-checkbox label em.highlight{position:relative;left:-4px;padding:2px 4px;font-style:normal;background:#fffbdd;border-radius:3px}.form-checkbox input[type=checkbox],.form-checkbox input[type=radio]{float:left;margin:5px 0 0 -20px;vertical-align:middle}.form-checkbox .note{display:block;margin:0;font-size:12px;font-weight:400;color:#586069}.form-checkbox-details{display:none}.form-checkbox-details-trigger:checked~* .form-checkbox-details,.form-checkbox-details-trigger:checked~.form-checkbox-details{display:block}.hfields{margin:15px 0}.hfields:after,.hfields:before{display:table;content:""}.hfields:after{clear:both}.hfields .form-group{float:left;margin:0 30px 0 0}.hfields .form-group dt label{display:inline-block;margin:5px 0 0;color:#586069}.hfields .form-group dt img{position:relative;top:-2px}.hfields .btn{float:left;margin:28px 25px 0 -20px}.hfields .form-select{margin-top:5px}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none;appearance:none}.form-actions:after,.form-actions:before{display:table;content:""}.form-actions:after{clear:both}.form-actions .btn{float:right}.form-actions .btn+.btn{margin-right:5px}.form-warning{padding:8px 10px;margin:10px 0;font-size:14px;color:#735c0f;background:#fffbdd;border:1px solid #d9d0a5;border-radius:3px}.form-warning p{margin:0;line-height:1.5}.form-warning a{font-weight:600}.form-select{display:inline-block;max-width:100%;height:34px;padding-right:24px;background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC") no-repeat right 8px center;background-size:8px 10px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select::-ms-expand{opacity:0}.form-select[multiple]{height:auto}.select-sm{height:28px;min-height:28px;padding-top:3px;padding-bottom:3px;font-size:12px}.select-sm[multiple]{height:auto;min-height:0}.form-group{margin:15px 0}.form-group .form-control{width:440px;max-width:100%;margin-right:5px;background-color:#fafbfc}.form-group .form-control:focus{background-color:#fff}.form-group .form-control.shorter{width:130px}.form-group .form-control.short{width:250px}.form-group .form-control.long{width:100%}.form-group textarea.form-control{width:100%;height:200px;min-height:200px}.form-group textarea.form-control.short{height:50px;min-height:50px}.form-group dt{margin:0 0 6px}.form-group label{position:relative}.form-group.flattened dt{float:left;margin:0;line-height:32px}.form-group.flattened dd{line-height:32px}.form-group dd h4{margin:4px 0 0}.form-group dd h4.is-error{color:#cb2431}.form-group dd h4.is-success{color:#28a745}.form-group dd h4+.note{margin-top:0}.form-group.required dt label:after{padding-left:5px;color:#cb2431;content:"*"}.form-group .error,.form-group .indicator,.form-group .success{display:none;font-size:12px;font-weight:600}.form-group.loading{opacity:.5}.form-group.loading .indicator{display:inline}.form-group.loading .spinner{display:inline-block;vertical-align:middle}.form-group.successful .success{display:inline;color:#28a745}.form-group.errored .error,.form-group.errored .warning,.form-group.warn .error,.form-group.warn .warning{position:absolute;z-index:10;display:block;max-width:450px;padding:5px 8px;margin:4px 0 0;font-size:13px;font-weight:400;border-style:solid;border-width:1px;border-radius:3px}.form-group.errored .error:after,.form-group.errored .error:before,.form-group.errored .warning:after,.form-group.errored .warning:before,.form-group.warn .error:after,.form-group.warn .error:before,.form-group.warn .warning:after,.form-group.warn .warning:before{position:absolute;bottom:100%;left:10px;z-index:15;width:0;height:0;pointer-events:none;content:" ";border:solid transparent}.form-group.errored .error:after,.form-group.errored .warning:after,.form-group.warn .error:after,.form-group.warn .warning:after{border-width:5px}.form-group.errored .error:before,.form-group.errored .warning:before,.form-group.warn .error:before,.form-group.warn .warning:before{margin-left:-1px;border-width:6px}.form-group.warn .warning{color:#735c0f;background-color:#fffbdd;border-color:#d9d0a5}.form-group.warn .warning:after{border-bottom-color:#fffbdd}.form-group.warn .warning:before{border-bottom-color:#d9d0a5}.form-group.errored label{color:#cb2431}.form-group.errored .error{color:#86181d;background-color:#ffdce0;border-color:#cea0a5}.form-group.errored .error:after{border-bottom-color:#ffdce0}.form-group.errored .error:before{border-bottom-color:#cea0a5}.note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#586069}.note .spinner{margin-right:3px;vertical-align:middle}dl.form-group>dd .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-successful{padding-right:30px}dl.form-group>dd .form-control.is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-16px.gif)}dl.form-group>dd .form-control.is-autocheck-successful{background-image:url(/images/modules/ajax/success.png)}dl.form-group>dd .form-control.is-autocheck-errored{background-image:url(/images/modules/ajax/error.png)}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){dl.form-group>dd .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-successful{background-size:16px 16px}dl.form-group>dd .form-control.is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-32.gif)}dl.form-group>dd .form-control.is-autocheck-successful{background-image:url(/images/modules/ajax/success@2x.png)}dl.form-group>dd .form-control.is-autocheck-errored{background-image:url(/images/modules/ajax/error@2x.png)}}.status-indicator{display:inline-block;width:16px;height:16px;margin-left:5px}.status-indicator .octicon{display:none}.status-indicator-success:before{content:""}.status-indicator-success .octicon-check{display:inline-block;color:#28a745;fill:#28a745}.status-indicator-success .octicon-x{display:none}.status-indicator-failed:before{content:""}.status-indicator-failed .octicon-check{display:none}.status-indicator-failed .octicon-x{display:inline-block;color:#cb2431;fill:#d73a49}.status-indicator-loading{width:16px;background:url(/images/spinners/octocat-spinner-32-EAF2F5.gif) 0 0 no-repeat;background-size:16px}.inline-form{display:inline-block}.inline-form .btn-plain{background-color:initial;border:0}.drag-and-drop{padding:7px 10px;margin:0;font-size:13px;line-height:16px;color:#586069;background-color:#fafbfc;border:1px solid #c3c8cf;border-top:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.drag-and-drop .default,.drag-and-drop .error,.drag-and-drop .loading{display:none}.drag-and-drop .error{color:#cb2431}.drag-and-drop img{vertical-align:top}.is-bad-file .drag-and-drop .bad-file,.is-bad-permissions .drag-and-drop .bad-permissions,.is-default .drag-and-drop .default,.is-duplicate-filename .drag-and-drop .duplicate-filename,.is-empty .drag-and-drop .empty,.is-hidden-file .drag-and-drop .hidden-file,.is-repository-required .drag-and-drop .repository-required,.is-too-big .drag-and-drop .too-big,.is-uploading .drag-and-drop .loading{display:inline-block}.drag-and-drop-error-info{font-weight:400;color:#586069}.drag-and-drop-error-info a{color:#0366d6}.is-failed .drag-and-drop .failed-request{display:inline-block}.manual-file-chooser{position:absolute;width:240px;padding:5px;margin-left:-80px;cursor:pointer;opacity:.0001}.manual-file-chooser:hover+.manual-file-chooser-text{text-decoration:underline}.btn .manual-file-chooser{top:0;padding:0;line-height:34px}.upload-enabled textarea{display:block;border-bottom:1px dashed #dfe2e5;border-bottom-right-radius:0;border-bottom-left-radius:0}.upload-enabled.focused{border-radius:3px;box-shadow:inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em rgba(3,102,214,.3)}.upload-enabled.focused .form-control{box-shadow:none}.upload-enabled.focused .drag-and-drop{border-color:#4a9eff}.dragover .drag-and-drop,.dragover textarea{box-shadow:0 0 3px #c9ff00}.previewable-comment-form,.write-content{position:relative}.previewable-comment-form .tabnav{position:relative;padding:8px 8px 0}.previewable-comment-form .comment{border:1px solid #c3c8cf}.previewable-comment-form .comment-form-error{margin-bottom:8px}.previewable-comment-form .preview-content,.previewable-comment-form .write-content{display:none;margin:0 8px 8px}.previewable-comment-form.preview-selected .preview-content,.previewable-comment-form.write-selected .write-content{display:block}.previewable-comment-form textarea{display:block;width:100%;min-height:100px;max-height:500px;padding:8px;resize:vertical}.form-action-spacious{margin-top:10px}div.composer{margin-top:0;border:0}.composer .comment-form-textarea{height:200px;min-height:200px}.composer .tabnav{margin:0 0 10px}h2.account{margin:15px 0 0;font-size:18px;font-weight:400;color:#586069}p.explain{position:relative;font-size:12px;color:#586069}p.explain strong{color:#24292e}p.explain .octicon{margin-right:5px;color:#959da5}p.explain .minibutton{top:-4px;float:right}.form-group label{position:static}.input-group{display:table}.input-group .form-control{position:relative;width:100%}.input-group .form-control:focus{z-index:2}.input-group .form-control+.btn{margin-left:0}.input-group.inline{display:inline-table}.input-group-button,.input-group .form-control{display:table-cell}.input-group-button{width:1%;vertical-align:middle}.input-group-button:first-child .btn,.input-group .form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-button:first-child .btn{margin-right:-1px}.input-group-button:last-child .btn,.input-group .form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-button:last-child .btn{margin-left:-1px}.container-sm{max-width:544px}.container-md,.container-sm{margin-right:auto;margin-left:auto}.container-md{max-width:768px}.container-lg{max-width:1012px}.container-lg,.container-xl{margin-right:auto;margin-left:auto}.container-xl{max-width:1280px}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media (min-width:544px){.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}}@media (min-width:768px){.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}}@media (min-width:1012px){.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}}@media (min-width:1280px){.col-xl-1{width:8.33333%}.col-xl-2{width:16.66667%}.col-xl-3{width:25%}.col-xl-4{width:33.33333%}.col-xl-5{width:41.66667%}.col-xl-6{width:50%}.col-xl-7{width:58.33333%}.col-xl-8{width:66.66667%}.col-xl-9{width:75%}.col-xl-10{width:83.33333%}.col-xl-11{width:91.66667%}.col-xl-12{width:100%}}.gutter{margin-right:-16px;margin-left:-16px}.gutter>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-condensed{margin-right:-8px;margin-left:-8px}.gutter-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-spacious{margin-right:-24px;margin-left:-24px}.gutter-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}@media (min-width:544px){.gutter-sm{margin-right:-16px;margin-left:-16px}.gutter-sm>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-sm-condensed{margin-right:-8px;margin-left:-8px}.gutter-sm-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-sm-spacious{margin-right:-24px;margin-left:-24px}.gutter-sm-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:768px){.gutter-md{margin-right:-16px;margin-left:-16px}.gutter-md>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-md-condensed{margin-right:-8px;margin-left:-8px}.gutter-md-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-md-spacious{margin-right:-24px;margin-left:-24px}.gutter-md-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:1012px){.gutter-lg{margin-right:-16px;margin-left:-16px}.gutter-lg>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-lg-condensed{margin-right:-8px;margin-left:-8px}.gutter-lg-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-lg-spacious{margin-right:-24px;margin-left:-24px}.gutter-lg-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:1280px){.gutter-xl{margin-right:-16px;margin-left:-16px}.gutter-xl>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-xl-condensed{margin-right:-8px;margin-left:-8px}.gutter-xl-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-xl-spacious{margin-right:-24px;margin-left:-24px}.gutter-xl-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}.offset-1{margin-left:8.33333%!important}.offset-2{margin-left:16.66667%!important}.offset-3{margin-left:25%!important}.offset-4{margin-left:33.33333%!important}.offset-5{margin-left:41.66667%!important}.offset-6{margin-left:50%!important}.offset-7{margin-left:58.33333%!important}.offset-8{margin-left:66.66667%!important}.offset-9{margin-left:75%!important}.offset-10{margin-left:83.33333%!important}.offset-11{margin-left:91.66667%!important}@media (min-width:544px){.offset-sm-1{margin-left:8.33333%!important}.offset-sm-2{margin-left:16.66667%!important}.offset-sm-3{margin-left:25%!important}.offset-sm-4{margin-left:33.33333%!important}.offset-sm-5{margin-left:41.66667%!important}.offset-sm-6{margin-left:50%!important}.offset-sm-7{margin-left:58.33333%!important}.offset-sm-8{margin-left:66.66667%!important}.offset-sm-9{margin-left:75%!important}.offset-sm-10{margin-left:83.33333%!important}.offset-sm-11{margin-left:91.66667%!important}}@media (min-width:768px){.offset-md-1{margin-left:8.33333%!important}.offset-md-2{margin-left:16.66667%!important}.offset-md-3{margin-left:25%!important}.offset-md-4{margin-left:33.33333%!important}.offset-md-5{margin-left:41.66667%!important}.offset-md-6{margin-left:50%!important}.offset-md-7{margin-left:58.33333%!important}.offset-md-8{margin-left:66.66667%!important}.offset-md-9{margin-left:75%!important}.offset-md-10{margin-left:83.33333%!important}.offset-md-11{margin-left:91.66667%!important}}@media (min-width:1012px){.offset-lg-1{margin-left:8.33333%!important}.offset-lg-2{margin-left:16.66667%!important}.offset-lg-3{margin-left:25%!important}.offset-lg-4{margin-left:33.33333%!important}.offset-lg-5{margin-left:41.66667%!important}.offset-lg-6{margin-left:50%!important}.offset-lg-7{margin-left:58.33333%!important}.offset-lg-8{margin-left:66.66667%!important}.offset-lg-9{margin-left:75%!important}.offset-lg-10{margin-left:83.33333%!important}.offset-lg-11{margin-left:91.66667%!important}}@media (min-width:1280px){.offset-xl-1{margin-left:8.33333%!important}.offset-xl-2{margin-left:16.66667%!important}.offset-xl-3{margin-left:25%!important}.offset-xl-4{margin-left:33.33333%!important}.offset-xl-5{margin-left:41.66667%!important}.offset-xl-6{margin-left:50%!important}.offset-xl-7{margin-left:58.33333%!important}.offset-xl-8{margin-left:66.66667%!important}.offset-xl-9{margin-left:75%!important}.offset-xl-10{margin-left:83.33333%!important}.offset-xl-11{margin-left:91.66667%!important}}.menu{margin-bottom:15px;list-style:none;background-color:#fff;border:1px solid #d1d5da;border-radius:3px}.menu-item{position:relative;display:block;padding:8px 10px;border-bottom:1px solid #e1e4e8}.menu-item:first-child{border-top:0;border-top-right-radius:2px}.menu-item:first-child,.menu-item:first-child:before{border-top-left-radius:2px}.menu-item:last-child{border-bottom:0;border-bottom-right-radius:2px}.menu-item:last-child,.menu-item:last-child:before{border-bottom-left-radius:2px}.menu-item:hover{text-decoration:none;background-color:#f6f8fa}.menu-item.selected{font-weight:600;color:#24292e;cursor:default;background-color:#fff}.menu-item.selected:before{position:absolute;top:0;bottom:0;left:0;width:2px;content:"";background-color:#e36209}.menu-item .octicon{width:16px;margin-right:5px;color:#24292e;text-align:center}.menu-item .Counter{float:right;margin-left:5px}.menu-item .menu-warning{float:right;color:#86181d}.menu-item .avatar{float:left;margin-right:5px}.menu-item.alert .Counter{color:#cb2431}.menu-heading{display:block;padding:8px 10px;margin-top:0;margin-bottom:0;font-size:13px;font-weight:600;line-height:20px;color:#586069;background-color:#f3f5f8;border-bottom:1px solid #e1e4e8}.menu-heading:hover{text-decoration:none}.menu-heading:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.menu-heading:last-child{border-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.tabnav{margin-top:0;margin-bottom:15px;border-bottom:1px solid #d1d5da}.tabnav .Counter{margin-left:5px}.tabnav-tabs{margin-bottom:-1px}.tabnav-tab{display:inline-block;padding:8px 12px;font-size:14px;line-height:20px;color:#586069;text-decoration:none;background-color:initial;border:1px solid transparent;border-bottom:0}.tabnav-tab.selected,.tabnav-tab[aria-selected=true]{color:#24292e;background-color:#fff;border-color:#d1d5da;border-radius:3px 3px 0 0}.tabnav-tab:focus,.tabnav-tab:hover{color:#24292e;text-decoration:none}.tabnav-extra{display:inline-block;padding-top:10px;margin-left:10px;font-size:12px;color:#586069}.tabnav-extra>.octicon{margin-right:2px}a.tabnav-extra:hover{color:#0366d6;text-decoration:none}.tabnav-btn{margin-left:10px}.filter-list{list-style-type:none}.filter-list.small .filter-item{padding:4px 10px;margin:0 0 2px;font-size:12px}.filter-list.pjax-active .filter-item{color:#586069;background-color:initial}.filter-list.pjax-active .filter-item.pjax-active{color:#fff;background-color:#0366d6}.filter-item{position:relative;display:block;padding:8px 10px;margin-bottom:5px;overflow:hidden;font-size:14px;color:#586069;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;border-radius:3px}.filter-item:hover{text-decoration:none;background-color:#eaecef}.filter-item.selected{color:#fff;background-color:#0366d6}.filter-item .count{float:right;font-weight:600}.filter-item .bar{position:absolute;top:2px;right:0;bottom:2px;z-index:-1;display:inline-block;background-color:#eff3f6}.SideNav{background-color:#fafbfc}.SideNav-item{position:relative;display:block;width:100%;padding:16px;color:#586069;text-align:left;background-color:initial;border:0;border-top:1px solid #e1e4e8}.SideNav-item:first-child{border-top:0}.SideNav-item:last-child{box-shadow:0 1px 0 #e1e4e8}.SideNav-item:before{position:absolute;top:0;bottom:0;left:0;z-index:1;width:3px;pointer-events:none;content:""}.SideNav-item:focus,.SideNav-item:hover{color:#24292e;text-decoration:none;background-color:#f6f8fa;outline:none}.SideNav-item:focus:before,.SideNav-item:hover:before{background-color:#d1d5da}.SideNav-item:active{background-color:#fff}.SideNav-item[aria-current=page],.SideNav-item[aria-selected=true]{font-weight:500;color:#24292e;background-color:#fff}.SideNav-item[aria-current=page]:before,.SideNav-item[aria-selected=true]:before{background-color:#e36209}.SideNav-icon{width:16px;color:#6a737d}.SideNav-subItem{position:relative;display:block;width:100%;padding:4px 0;color:#0366d6;text-align:left;background-color:initial;border:0}.SideNav-subItem:focus,.SideNav-subItem:hover{color:#24292e;text-decoration:none;outline:none}.SideNav-subItem[aria-current=page],.SideNav-subItem[aria-selected=true]{font-weight:500;color:#24292e}.subnav{margin-bottom:20px}.subnav:after,.subnav:before{display:table;content:""}.subnav:after{clear:both}.subnav-bordered{padding-bottom:20px;border-bottom:1px solid #eaecef}.subnav-flush{margin-bottom:0}.subnav-item{position:relative;float:left;padding:6px 14px;font-weight:600;line-height:20px;color:#586069;border:1px solid #e1e4e8}.subnav-item+.subnav-item{margin-left:-1px}.subnav-item:focus,.subnav-item:hover{text-decoration:none;background-color:#f6f8fa}.subnav-item.selected,.subnav-item.selected:focus,.subnav-item.selected:hover{z-index:2;color:#fff;background-color:#0366d6;border-color:#0366d6}.subnav-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.subnav-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.subnav-search{position:relative;margin-left:10px}.subnav-search-input{width:320px;padding-left:30px;color:#586069}.subnav-search-input-wide{width:500px}.subnav-search-icon{position:absolute;top:9px;left:8px;display:block;color:#c6cbd1;text-align:center;pointer-events:none}.subnav-search-context .btn{color:#444d56;border-top-right-radius:0;border-bottom-right-radius:0}.subnav-search-context .btn.selected,.subnav-search-context .btn:active,.subnav-search-context .btn:focus,.subnav-search-context .btn:hover{z-index:2}.subnav-search-context+.subnav-search{margin-left:-1px}.subnav-search-context+.subnav-search .subnav-search-input{border-top-left-radius:0;border-bottom-left-radius:0}.subnav-search-context .select-menu-modal-holder{z-index:30}.subnav-search-context .select-menu-modal{width:220px}.subnav-search-context .select-menu-item-icon{color:inherit}.subnav-spacer-right{padding-right:10px}.UnderlineNav{display:flex;overflow-x:auto;overflow-y:hidden;border-bottom:1px solid #e1e4e8;justify-content:space-between}.UnderlineNav-body{display:flex}.UnderlineNav-item{padding:16px 8px;margin-right:16px;font-size:14px;line-height:1.5;color:#586069;text-align:center;border-bottom:2px solid transparent}.UnderlineNav-item:focus,.UnderlineNav-item:hover{color:#24292e;text-decoration:none;border-bottom-color:#d1d5da;transition:.2s ease}.UnderlineNav-item:focus .UnderlineNav-octicon,.UnderlineNav-item:hover .UnderlineNav-octicon{color:#6a737d}.UnderlineNav-item.selected{font-weight:600;color:#24292e;border-bottom-color:#e36209}.UnderlineNav-item.selected .UnderlineNav-octicon{color:#6a737d}.UnderlineNav--right{justify-content:flex-end}.UnderlineNav--right .UnderlineNav-item{margin-right:0;margin-left:16px}.UnderlineNav--right .UnderlineNav-actions{flex:1 1 auto}.UnderlineNav-actions{align-self:center}.UnderlineNav--full{display:block}.UnderlineNav-octicon{color:#959da5}.UnderlineNav-container{display:flex;justify-content:space-between}.pagination:after,.pagination:before{display:table;content:""}.pagination:after{clear:both}.pagination a,.pagination em,.pagination span{position:relative;float:left;padding:7px 12px;margin-left:-1px;font-size:13px;font-style:normal;font-weight:600;color:#0366d6;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#fff;border:1px solid #e1e4e8}.pagination a:first-child,.pagination em:first-child,.pagination span:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination a:last-child,.pagination em:last-child,.pagination span:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.pagination a:focus,.pagination a:hover,.pagination em:focus,.pagination em:hover,.pagination span:focus,.pagination span:hover{z-index:2;text-decoration:none;background-color:#eff3f6;border-color:#e1e4e8}.pagination .selected{z-index:3}.pagination .current,.pagination .current:hover{z-index:3;color:#fff;background-color:#0366d6;border-color:#0366d6}.pagination .disabled,.pagination .disabled:hover,.pagination .gap,.pagination .gap:hover{color:#d1d5da;cursor:default;background-color:#fafbfc}.paginate-container{margin-top:20px;margin-bottom:15px;text-align:center}.paginate-container .pagination{display:inline-block}.tooltipped{position:relative}.tooltipped:after{z-index:1000000;padding:.5em .75em;font:normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;-webkit-font-smoothing:subpixel-antialiased;color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;content:attr(aria-label);background:#1b1f23;border-radius:3px}.tooltipped:after,.tooltipped:before{position:absolute;display:none;pointer-events:none;opacity:0}.tooltipped:before{z-index:1000001;width:0;height:0;color:#1b1f23;content:"";border:6px solid transparent}@keyframes tooltip-appear{0%{opacity:0}to{opacity:1}}.tooltipped:active:after,.tooltipped:active:before,.tooltipped:focus:after,.tooltipped:focus:before,.tooltipped:hover:after,.tooltipped:hover:before{display:inline-block;text-decoration:none;animation-name:tooltip-appear;animation-duration:.1s;animation-fill-mode:forwards;animation-timing-function:ease-in;animation-delay:.4s}.tooltipped-no-delay:active:after,.tooltipped-no-delay:active:before,.tooltipped-no-delay:focus:after,.tooltipped-no-delay:focus:before,.tooltipped-no-delay:hover:after,.tooltipped-no-delay:hover:before{animation-delay:0s}.tooltipped-multiline:active:after,.tooltipped-multiline:focus:after,.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-s:after,.tooltipped-se:after,.tooltipped-sw:after{top:100%;right:50%;margin-top:6px}.tooltipped-s:before,.tooltipped-se:before,.tooltipped-sw:before{top:auto;right:50%;bottom:-7px;margin-right:-6px;border-bottom-color:#1b1f23}.tooltipped-se:after{right:auto;left:50%;margin-left:-16px}.tooltipped-sw:after{margin-right:-16px}.tooltipped-n:after,.tooltipped-ne:after,.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:6px}.tooltipped-n:before,.tooltipped-ne:before,.tooltipped-nw:before{top:-7px;right:50%;bottom:auto;margin-right:-6px;border-top-color:#1b1f23}.tooltipped-ne:after{right:auto;left:50%;margin-left:-16px}.tooltipped-nw:after{margin-right:-16px}.tooltipped-n:after,.tooltipped-s:after{transform:translateX(50%)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:6px;transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-7px;margin-top:-6px;border-left-color:#1b1f23}.tooltipped-e:after{bottom:50%;left:100%;margin-left:6px;transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-7px;bottom:50%;margin-top:-6px;border-right-color:#1b1f23}.tooltipped-align-right-1:after,.tooltipped-align-right-2:after{right:0;margin-right:0}.tooltipped-align-right-1:before{right:10px}.tooltipped-align-right-2:before{right:15px}.tooltipped-align-left-1:after,.tooltipped-align-left-2:after{left:0;margin-left:0}.tooltipped-align-left-1:before{left:5px}.tooltipped-align-left-2:before{left:10px}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-wrap:break-word;white-space:pre-line;border-collapse:initial}.tooltipped-multiline.tooltipped-n:after,.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;transform:translateX(-50%)}.tooltipped-multiline.tooltipped-e:after,.tooltipped-multiline.tooltipped-w:after{right:100%}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}.tooltipped-sticky:after,.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.css-truncate.css-truncate-target,.css-truncate .css-truncate-target{display:inline-block;max-width:125px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target,.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target,.css-truncate.expandable:hover.css-truncate-target,.css-truncate.expandable:hover .css-truncate-target{max-width:10000px!important}.anim-fade-in{animation-name:fade-in;animation-duration:1s;animation-timing-function:ease-in-out}.anim-fade-in.fast{animation-duration:.3s}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.anim-fade-out{animation-name:fade-out;animation-duration:1s;animation-timing-function:ease-out}.anim-fade-out.fast{animation-duration:.3s}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.anim-fade-up{opacity:0;animation-name:fade-up;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-out;animation-delay:1s}@keyframes fade-up{0%{opacity:.8;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}.anim-fade-down{animation-name:fade-down;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in}@keyframes fade-down{0%{opacity:1;transform:translateY(0)}to{opacity:.5;transform:translateY(100%)}}.anim-grow-x{width:0;animation-name:grow-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease;animation-delay:.5s}@keyframes grow-x{to{width:100%}}.anim-shrink-x{animation-name:shrink-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in-out;animation-delay:.5s}@keyframes shrink-x{to{width:0}}.anim-scale-in{animation-name:scale-in;animation-duration:.15s;animation-timing-function:cubic-bezier(.2,0,.13,1.5)}@keyframes scale-in{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.anim-pulse{animation-name:pulse;animation-duration:2s;animation-timing-function:linear;animation-iteration-count:infinite}@keyframes pulse{0%{opacity:.3}10%{opacity:1}to{opacity:.3}}.anim-pulse-in{animation-name:pulse-in;animation-duration:.5s}@keyframes pulse-in{0%{transform:scaleX(1)}50%{transform:scale3d(1.1,1.1,1.1)}to{transform:scaleX(1)}}.hover-grow{transition:transform .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.hover-grow:hover{transform:scale(1.025)}.border-x{border-right:1px solid #e1e4e8!important;border-left:1px solid #e1e4e8!important}.border-y{border-top:1px solid #e1e4e8!important;border-bottom:1px solid #e1e4e8!important}.border{border:1px solid #e1e4e8!important}.border-0{border:0!important}.border-top{border-top:1px solid #e1e4e8!important}.border-right{border-right:1px solid #e1e4e8!important}.border-bottom{border-bottom:1px solid #e1e4e8!important}.border-left{border-left:1px solid #e1e4e8!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:3px!important}.rounded-2{border-radius:6px!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:3px!important;border-top-right-radius:3px!important}.rounded-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-right-1{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.rounded-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.rounded-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-left-1{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.rounded-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}@media (min-width:544px){.border-sm{border:1px solid #e1e4e8!important}.border-sm-0{border:0!important}.border-sm-top{border-top:1px solid #e1e4e8!important}.border-sm-right{border-right:1px solid #e1e4e8!important}.border-sm-bottom{border-bottom:1px solid #e1e4e8!important}.border-sm-left{border-left:1px solid #e1e4e8!important}.border-sm-top-0{border-top:0!important}.border-sm-right-0{border-right:0!important}.border-sm-bottom-0{border-bottom:0!important}.border-sm-left-0{border-left:0!important}.rounded-sm-0{border-radius:0!important}.rounded-sm-1{border-radius:3px!important}.rounded-sm-2{border-radius:6px!important}.rounded-sm-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-sm-top-1{border-top-left-radius:3px!important;border-top-right-radius:3px!important}.rounded-sm-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-sm-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-sm-right-1{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.rounded-sm-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-sm-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-sm-bottom-1{border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.rounded-sm-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-sm-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-sm-left-1{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.rounded-sm-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}}@media (min-width:768px){.border-md{border:1px solid #e1e4e8!important}.border-md-0{border:0!important}.border-md-top{border-top:1px solid #e1e4e8!important}.border-md-right{border-right:1px solid #e1e4e8!important}.border-md-bottom{border-bottom:1px solid #e1e4e8!important}.border-md-left{border-left:1px solid #e1e4e8!important}.border-md-top-0{border-top:0!important}.border-md-right-0{border-right:0!important}.border-md-bottom-0{border-bottom:0!important}.border-md-left-0{border-left:0!important}.rounded-md-0{border-radius:0!important}.rounded-md-1{border-radius:3px!important}.rounded-md-2{border-radius:6px!important}.rounded-md-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-md-top-1{border-top-left-radius:3px!important;border-top-right-radius:3px!important}.rounded-md-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-md-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-md-right-1{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.rounded-md-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-md-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-md-bottom-1{border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.rounded-md-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-md-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-md-left-1{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.rounded-md-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}}@media (min-width:1012px){.border-lg{border:1px solid #e1e4e8!important}.border-lg-0{border:0!important}.border-lg-top{border-top:1px solid #e1e4e8!important}.border-lg-right{border-right:1px solid #e1e4e8!important}.border-lg-bottom{border-bottom:1px solid #e1e4e8!important}.border-lg-left{border-left:1px solid #e1e4e8!important}.border-lg-top-0{border-top:0!important}.border-lg-right-0{border-right:0!important}.border-lg-bottom-0{border-bottom:0!important}.border-lg-left-0{border-left:0!important}.rounded-lg-0{border-radius:0!important}.rounded-lg-1{border-radius:3px!important}.rounded-lg-2{border-radius:6px!important}.rounded-lg-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-lg-top-1{border-top-left-radius:3px!important;border-top-right-radius:3px!important}.rounded-lg-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-lg-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-lg-right-1{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.rounded-lg-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-lg-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-lg-bottom-1{border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.rounded-lg-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-lg-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-lg-left-1{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.rounded-lg-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}}@media (min-width:1280px){.border-xl{border:1px solid #e1e4e8!important}.border-xl-0{border:0!important}.border-xl-top{border-top:1px solid #e1e4e8!important}.border-xl-right{border-right:1px solid #e1e4e8!important}.border-xl-bottom{border-bottom:1px solid #e1e4e8!important}.border-xl-left{border-left:1px solid #e1e4e8!important}.border-xl-top-0{border-top:0!important}.border-xl-right-0{border-right:0!important}.border-xl-bottom-0{border-bottom:0!important}.border-xl-left-0{border-left:0!important}.rounded-xl-0{border-radius:0!important}.rounded-xl-1{border-radius:3px!important}.rounded-xl-2{border-radius:6px!important}.rounded-xl-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-xl-top-1{border-top-left-radius:3px!important;border-top-right-radius:3px!important}.rounded-xl-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-xl-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-xl-right-1{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.rounded-xl-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-xl-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-xl-bottom-1{border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.rounded-xl-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-xl-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-xl-left-1{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.rounded-xl-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}}.circle{border-radius:50%!important}.border-dashed{border-style:dashed!important}.border-blue{border-color:#0366d6!important}.border-blue-light{border-color:#c8e1ff!important}.border-green{border-color:#34d058!important}.border-green-light{border-color:#a2cbac!important}.border-red{border-color:#d73a49!important}.border-red-light{border-color:#cea0a5!important}.border-purple{border-color:#6f42c1!important}.border-yellow{border-color:#d9d0a5!important}.border-gray-light{border-color:#eaecef!important}.border-gray-dark{border-color:#d1d5da!important}.border-black-fade{border-color:rgba(27,31,35,.15)!important}.border-white-fade,.border-white-fade-15{border-color:hsla(0,0%,100%,.15)!important}.border-white-fade-30{border-color:hsla(0,0%,100%,.3)!important}.border-white-fade-50{border-color:hsla(0,0%,100%,.5)!important}.border-white-fade-70{border-color:hsla(0,0%,100%,.7)!important}.border-white-fade-85{border-color:hsla(0,0%,100%,.85)!important}.box-shadow{box-shadow:0 1px 1px rgba(27,31,35,.1)!important}.box-shadow-medium{box-shadow:0 1px 5px rgba(27,31,35,.15)!important}.box-shadow-large{box-shadow:0 1px 15px rgba(27,31,35,.15)!important}.box-shadow-extra-large{box-shadow:0 10px 50px rgba(27,31,35,.07)!important}.box-shadow-none{box-shadow:none!important}.bg-white{background-color:#fff!important}.bg-blue{background-color:#0366d6!important}.bg-blue-light{background-color:#f1f8ff!important}.bg-gray-dark{background-color:#24292e!important}.bg-gray{background-color:#f6f8fa!important}.bg-gray-light{background-color:#fafbfc!important}.bg-green{background-color:#28a745!important}.bg-green-light{background-color:#dcffe4!important}.bg-red{background-color:#d73a49!important}.bg-red-light{background-color:#ffdce0!important}.bg-yellow{background-color:#ffd33d!important}.bg-yellow-light{background-color:#fff5b1!important}.bg-yellow-dark{background-color:#dbab09!important}.bg-purple{background-color:#6f42c1!important}.bg-pink{background-color:#ea4aaa!important}.bg-purple-light{background-color:#f5f0ff!important}.color-gray-0{color:#fafbfc!important}.bg-gray-0{background-color:#fafbfc!important}.color-gray-1{color:#f6f8fa!important}.bg-gray-1{background-color:#f6f8fa!important}.color-gray-2{color:#e1e4e8!important}.bg-gray-2{background-color:#e1e4e8!important}.color-gray-3{color:#d1d5da!important}.bg-gray-3{background-color:#d1d5da!important}.color-gray-4{color:#959da5!important}.bg-gray-4{background-color:#959da5!important}.color-gray-5{color:#6a737d!important}.bg-gray-5{background-color:#6a737d!important}.color-gray-6{color:#586069!important}.bg-gray-6{background-color:#586069!important}.color-gray-7{color:#444d56!important}.bg-gray-7{background-color:#444d56!important}.color-gray-8{color:#2f363d!important}.bg-gray-8{background-color:#2f363d!important}.color-gray-9{color:#24292e!important}.bg-gray-9{background-color:#24292e!important}.color-blue-0{color:#f1f8ff!important}.bg-blue-0{background-color:#f1f8ff!important}.color-blue-1{color:#dbedff!important}.bg-blue-1{background-color:#dbedff!important}.color-blue-2{color:#c8e1ff!important}.bg-blue-2{background-color:#c8e1ff!important}.color-blue-3{color:#79b8ff!important}.bg-blue-3{background-color:#79b8ff!important}.color-blue-4{color:#2188ff!important}.bg-blue-4{background-color:#2188ff!important}.color-blue-5{color:#0366d6!important}.bg-blue-5{background-color:#0366d6!important}.color-blue-6{color:#005cc5!important}.bg-blue-6{background-color:#005cc5!important}.color-blue-7{color:#044289!important}.bg-blue-7{background-color:#044289!important}.color-blue-8{color:#032f62!important}.bg-blue-8{background-color:#032f62!important}.color-blue-9{color:#05264c!important}.bg-blue-9{background-color:#05264c!important}.color-green-0{color:#f0fff4!important}.bg-green-0{background-color:#f0fff4!important}.color-green-1{color:#dcffe4!important}.bg-green-1{background-color:#dcffe4!important}.color-green-2{color:#bef5cb!important}.bg-green-2{background-color:#bef5cb!important}.color-green-3{color:#85e89d!important}.bg-green-3{background-color:#85e89d!important}.color-green-4{color:#34d058!important}.bg-green-4{background-color:#34d058!important}.color-green-5{color:#28a745!important}.bg-green-5{background-color:#28a745!important}.color-green-6{color:#22863a!important}.bg-green-6{background-color:#22863a!important}.color-green-7{color:#176f2c!important}.bg-green-7{background-color:#176f2c!important}.color-green-8{color:#165c26!important}.bg-green-8{background-color:#165c26!important}.color-green-9{color:#144620!important}.bg-green-9{background-color:#144620!important}.color-yellow-0{color:#fffdef!important}.bg-yellow-0{background-color:#fffdef!important}.color-yellow-1{color:#fffbdd!important}.bg-yellow-1{background-color:#fffbdd!important}.color-yellow-2{color:#fff5b1!important}.bg-yellow-2{background-color:#fff5b1!important}.color-yellow-3{color:#ffea7f!important}.bg-yellow-3{background-color:#ffea7f!important}.color-yellow-4{color:#ffdf5d!important}.bg-yellow-4{background-color:#ffdf5d!important}.color-yellow-5{color:#ffd33d!important}.bg-yellow-5{background-color:#ffd33d!important}.color-yellow-6{color:#f9c513!important}.bg-yellow-6{background-color:#f9c513!important}.color-yellow-7{color:#dbab09!important}.bg-yellow-7{background-color:#dbab09!important}.color-yellow-8{color:#b08800!important}.bg-yellow-8{background-color:#b08800!important}.color-yellow-9{color:#735c0f!important}.bg-yellow-9{background-color:#735c0f!important}.color-orange-0{color:#fff8f2!important}.bg-orange-0{background-color:#fff8f2!important}.color-orange-1{color:#ffebda!important}.bg-orange-1{background-color:#ffebda!important}.color-orange-2{color:#ffd1ac!important}.bg-orange-2{background-color:#ffd1ac!important}.color-orange-3{color:#ffab70!important}.bg-orange-3{background-color:#ffab70!important}.color-orange-4{color:#fb8532!important}.bg-orange-4{background-color:#fb8532!important}.color-orange-5{color:#f66a0a!important}.bg-orange-5{background-color:#f66a0a!important}.color-orange-6{color:#e36209!important}.bg-orange-6{background-color:#e36209!important}.color-orange-7{color:#d15704!important}.bg-orange-7{background-color:#d15704!important}.color-orange-8{color:#c24e00!important}.bg-orange-8{background-color:#c24e00!important}.color-orange-9{color:#a04100!important}.bg-orange-9{background-color:#a04100!important}.color-red-0{color:#ffeef0!important}.bg-red-0{background-color:#ffeef0!important}.color-red-1{color:#ffdce0!important}.bg-red-1{background-color:#ffdce0!important}.color-red-2{color:#fdaeb7!important}.bg-red-2{background-color:#fdaeb7!important}.color-red-3{color:#f97583!important}.bg-red-3{background-color:#f97583!important}.color-red-4{color:#ea4a5a!important}.bg-red-4{background-color:#ea4a5a!important}.color-red-5{color:#d73a49!important}.bg-red-5{background-color:#d73a49!important}.color-red-6{color:#cb2431!important}.bg-red-6{background-color:#cb2431!important}.color-red-7{color:#b31d28!important}.bg-red-7{background-color:#b31d28!important}.color-red-8{color:#9e1c23!important}.bg-red-8{background-color:#9e1c23!important}.color-red-9{color:#86181d!important}.bg-red-9{background-color:#86181d!important}.color-purple-0{color:#f5f0ff!important}.bg-purple-0{background-color:#f5f0ff!important}.color-purple-1{color:#e6dcfd!important}.bg-purple-1{background-color:#e6dcfd!important}.color-purple-2{color:#d1bcf9!important}.bg-purple-2{background-color:#d1bcf9!important}.color-purple-3{color:#b392f0!important}.bg-purple-3{background-color:#b392f0!important}.color-purple-4{color:#8a63d2!important}.bg-purple-4{background-color:#8a63d2!important}.color-purple-5{color:#6f42c1!important}.bg-purple-5{background-color:#6f42c1!important}.color-purple-6{color:#5a32a3!important}.bg-purple-6{background-color:#5a32a3!important}.color-purple-7{color:#4c2889!important}.bg-purple-7{background-color:#4c2889!important}.color-purple-8{color:#3a1d6e!important}.bg-purple-8{background-color:#3a1d6e!important}.color-purple-9{color:#29134e!important}.bg-purple-9{background-color:#29134e!important}.color-pink-0{color:#ffeef8!important}.bg-pink-0{background-color:#ffeef8!important}.color-pink-1{color:#fedbf0!important}.bg-pink-1{background-color:#fedbf0!important}.color-pink-2{color:#f9b3dd!important}.bg-pink-2{background-color:#f9b3dd!important}.color-pink-3{color:#f692ce!important}.bg-pink-3{background-color:#f692ce!important}.color-pink-4{color:#ec6cb9!important}.bg-pink-4{background-color:#ec6cb9!important}.color-pink-5{color:#ea4aaa!important}.bg-pink-5{background-color:#ea4aaa!important}.color-pink-6{color:#d03592!important}.bg-pink-6{background-color:#d03592!important}.color-pink-7{color:#b93a86!important}.bg-pink-7{background-color:#b93a86!important}.color-pink-8{color:#99306f!important}.bg-pink-8{background-color:#99306f!important}.color-pink-9{color:#6d224f!important}.bg-pink-9{background-color:#6d224f!important}.bg-shade-gradient{background-image:linear-gradient(180deg,rgba(27,31,35,.065),rgba(27,31,35,0))!important;background-repeat:no-repeat!important;background-size:100% 200px!important}.text-blue{color:#0366d6!important}.text-red{color:#cb2431!important}.text-gray-light{color:#6a737d!important}.text-gray{color:#586069!important}.text-gray-dark{color:#24292e!important}.text-green{color:#28a745!important}.text-yellow{color:#b08800!important}.text-orange{color:#a04100!important}.text-orange-light{color:#e36209!important}.text-purple{color:#6f42c1!important}.text-pink{color:#ea4aaa!important}.text-white{color:#fff!important}.text-inherit{color:inherit!important}.link-gray{color:#586069!important}.link-gray:hover{color:#0366d6!important}.link-gray-dark{color:#24292e!important}.link-gray-dark:hover,.link-hover-blue:hover{color:#0366d6!important}.muted-link{color:#586069!important}.muted-link:hover{color:#0366d6!important;text-decoration:none}.details-overlay[open]>summary:before{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:transparent}.details-overlay-dark[open]>summary:before{z-index:99;background:rgba(27,31,35,.5)}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-justify-start{justify-content:flex-start!important}.flex-justify-end{justify-content:flex-end!important}.flex-justify-center{justify-content:center!important}.flex-justify-between{justify-content:space-between!important}.flex-justify-around{justify-content:space-around!important}.flex-items-start{align-items:flex-start!important}.flex-items-end{align-items:flex-end!important}.flex-items-center{align-items:center!important}.flex-items-baseline{align-items:baseline!important}.flex-items-stretch{align-items:stretch!important}.flex-content-start{align-content:flex-start!important}.flex-content-end{align-content:flex-end!important}.flex-content-center{align-content:center!important}.flex-content-between{align-content:space-between!important}.flex-content-around{align-content:space-around!important}.flex-content-stretch{align-content:stretch!important}.flex-auto{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-shrink-0{flex-shrink:0!important}.flex-self-auto{align-self:auto!important}.flex-self-start{align-self:flex-start!important}.flex-self-end{align-self:flex-end!important}.flex-self-center{align-self:center!important}.flex-self-baseline{align-self:baseline!important}.flex-self-stretch{align-self:stretch!important}.flex-item-equal{flex-grow:1;flex-basis:0}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-none{order:inherit!important}@media (min-width:544px){.flex-sm-row{flex-direction:row!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column{flex-direction:column!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-justify-start{justify-content:flex-start!important}.flex-sm-justify-end{justify-content:flex-end!important}.flex-sm-justify-center{justify-content:center!important}.flex-sm-justify-between{justify-content:space-between!important}.flex-sm-justify-around{justify-content:space-around!important}.flex-sm-items-start{align-items:flex-start!important}.flex-sm-items-end{align-items:flex-end!important}.flex-sm-items-center{align-items:center!important}.flex-sm-items-baseline{align-items:baseline!important}.flex-sm-items-stretch{align-items:stretch!important}.flex-sm-content-start{align-content:flex-start!important}.flex-sm-content-end{align-content:flex-end!important}.flex-sm-content-center{align-content:center!important}.flex-sm-content-between{align-content:space-between!important}.flex-sm-content-around{align-content:space-around!important}.flex-sm-content-stretch{align-content:stretch!important}.flex-sm-auto{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-self-auto{align-self:auto!important}.flex-sm-self-start{align-self:flex-start!important}.flex-sm-self-end{align-self:flex-end!important}.flex-sm-self-center{align-self:center!important}.flex-sm-self-baseline{align-self:baseline!important}.flex-sm-self-stretch{align-self:stretch!important}.flex-sm-item-equal{flex-grow:1;flex-basis:0}.flex-sm-order-1{order:1!important}.flex-sm-order-2{order:2!important}.flex-sm-order-none{order:inherit!important}}@media (min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column{flex-direction:column!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-justify-start{justify-content:flex-start!important}.flex-md-justify-end{justify-content:flex-end!important}.flex-md-justify-center{justify-content:center!important}.flex-md-justify-between{justify-content:space-between!important}.flex-md-justify-around{justify-content:space-around!important}.flex-md-items-start{align-items:flex-start!important}.flex-md-items-end{align-items:flex-end!important}.flex-md-items-center{align-items:center!important}.flex-md-items-baseline{align-items:baseline!important}.flex-md-items-stretch{align-items:stretch!important}.flex-md-content-start{align-content:flex-start!important}.flex-md-content-end{align-content:flex-end!important}.flex-md-content-center{align-content:center!important}.flex-md-content-between{align-content:space-between!important}.flex-md-content-around{align-content:space-around!important}.flex-md-content-stretch{align-content:stretch!important}.flex-md-auto{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-self-auto{align-self:auto!important}.flex-md-self-start{align-self:flex-start!important}.flex-md-self-end{align-self:flex-end!important}.flex-md-self-center{align-self:center!important}.flex-md-self-baseline{align-self:baseline!important}.flex-md-self-stretch{align-self:stretch!important}.flex-md-item-equal{flex-grow:1;flex-basis:0}.flex-md-order-1{order:1!important}.flex-md-order-2{order:2!important}.flex-md-order-none{order:inherit!important}}@media (min-width:1012px){.flex-lg-row{flex-direction:row!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column{flex-direction:column!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-justify-start{justify-content:flex-start!important}.flex-lg-justify-end{justify-content:flex-end!important}.flex-lg-justify-center{justify-content:center!important}.flex-lg-justify-between{justify-content:space-between!important}.flex-lg-justify-around{justify-content:space-around!important}.flex-lg-items-start{align-items:flex-start!important}.flex-lg-items-end{align-items:flex-end!important}.flex-lg-items-center{align-items:center!important}.flex-lg-items-baseline{align-items:baseline!important}.flex-lg-items-stretch{align-items:stretch!important}.flex-lg-content-start{align-content:flex-start!important}.flex-lg-content-end{align-content:flex-end!important}.flex-lg-content-center{align-content:center!important}.flex-lg-content-between{align-content:space-between!important}.flex-lg-content-around{align-content:space-around!important}.flex-lg-content-stretch{align-content:stretch!important}.flex-lg-auto{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-self-auto{align-self:auto!important}.flex-lg-self-start{align-self:flex-start!important}.flex-lg-self-end{align-self:flex-end!important}.flex-lg-self-center{align-self:center!important}.flex-lg-self-baseline{align-self:baseline!important}.flex-lg-self-stretch{align-self:stretch!important}.flex-lg-item-equal{flex-grow:1;flex-basis:0}.flex-lg-order-1{order:1!important}.flex-lg-order-2{order:2!important}.flex-lg-order-none{order:inherit!important}}@media (min-width:1280px){.flex-xl-row{flex-direction:row!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column{flex-direction:column!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-justify-start{justify-content:flex-start!important}.flex-xl-justify-end{justify-content:flex-end!important}.flex-xl-justify-center{justify-content:center!important}.flex-xl-justify-between{justify-content:space-between!important}.flex-xl-justify-around{justify-content:space-around!important}.flex-xl-items-start{align-items:flex-start!important}.flex-xl-items-end{align-items:flex-end!important}.flex-xl-items-center{align-items:center!important}.flex-xl-items-baseline{align-items:baseline!important}.flex-xl-items-stretch{align-items:stretch!important}.flex-xl-content-start{align-content:flex-start!important}.flex-xl-content-end{align-content:flex-end!important}.flex-xl-content-center{align-content:center!important}.flex-xl-content-between{align-content:space-between!important}.flex-xl-content-around{align-content:space-around!important}.flex-xl-content-stretch{align-content:stretch!important}.flex-xl-auto{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-self-auto{align-self:auto!important}.flex-xl-self-start{align-self:flex-start!important}.flex-xl-self-end{align-self:flex-end!important}.flex-xl-self-center{align-self:center!important}.flex-xl-self-baseline{align-self:baseline!important}.flex-xl-self-stretch{align-self:stretch!important}.flex-xl-item-equal{flex-grow:1;flex-basis:0}.flex-xl-order-1{order:1!important}.flex-xl-order-2{order:2!important}.flex-xl-order-none{order:inherit!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}@media (min-width:544px){.position-sm-static{position:static!important}.position-sm-relative{position:relative!important}.position-sm-absolute{position:absolute!important}.position-sm-fixed{position:fixed!important}}@media (min-width:768px){.position-md-static{position:static!important}.position-md-relative{position:relative!important}.position-md-absolute{position:absolute!important}.position-md-fixed{position:fixed!important}}@media (min-width:1012px){.position-lg-static{position:static!important}.position-lg-relative{position:relative!important}.position-lg-absolute{position:absolute!important}.position-lg-fixed{position:fixed!important}}@media (min-width:1280px){.position-xl-static{position:static!important}.position-xl-relative{position:relative!important}.position-xl-absolute{position:absolute!important}.position-xl-fixed{position:fixed!important}}.top-0{top:0!important}.right-0{right:0!important}.bottom-0{bottom:0!important}.left-0{left:0!important}.v-align-middle{vertical-align:middle!important}.v-align-top{vertical-align:top!important}.v-align-bottom{vertical-align:bottom!important}.v-align-text-top{vertical-align:text-top!important}.v-align-text-bottom{vertical-align:text-bottom!important}.v-align-baseline{vertical-align:initial!important}.overflow-visible{overflow:visible!important}.overflow-x-visible{overflow-x:visible!important}.overflow-y-visible{overflow-y:visible!important}.overflow-hidden{overflow:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-auto{overflow:auto!important}.overflow-x-auto{overflow-x:auto!important}.overflow-y-auto{overflow-y:auto!important}.overflow-scroll{overflow:scroll!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-scroll{overflow-y:scroll!important}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:544px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:1012px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1280px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.width-fit{max-width:100%!important}.width-full{width:100%!important}.height-fit{max-height:100%!important}.height-full{height:100%!important}.min-width-0{min-width:0!important}.width-auto{width:auto!important}.direction-rtl{direction:rtl!important}.direction-ltr{direction:ltr!important}@media (min-width:544px){.width-sm-auto{width:auto!important}.direction-sm-rtl{direction:rtl!important}.direction-sm-ltr{direction:ltr!important}}@media (min-width:768px){.width-md-auto{width:auto!important}.direction-md-rtl{direction:rtl!important}.direction-md-ltr{direction:ltr!important}}@media (min-width:1012px){.width-lg-auto{width:auto!important}.direction-lg-rtl{direction:rtl!important}.direction-lg-ltr{direction:ltr!important}}@media (min-width:1280px){.width-xl-auto{width:auto!important}.direction-xl-rtl{direction:rtl!important}.direction-xl-ltr{direction:ltr!important}}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.mx-0{margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.mt-n1{margin-top:-4px!important}.mr-n1{margin-right:-4px!important}.mb-n1{margin-bottom:-4px!important}.ml-n1{margin-left:-4px!important}.mx-1{margin-right:4px!important;margin-left:4px!important}.my-1{margin-top:4px!important;margin-bottom:4px!important}.m-2{margin:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.mt-n2{margin-top:-8px!important}.mr-n2{margin-right:-8px!important}.mb-n2{margin-bottom:-8px!important}.ml-n2{margin-left:-8px!important}.mx-2{margin-right:8px!important;margin-left:8px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.m-3{margin:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.mt-n3{margin-top:-16px!important}.mr-n3{margin-right:-16px!important}.mb-n3{margin-bottom:-16px!important}.ml-n3{margin-left:-16px!important}.mx-3{margin-right:16px!important;margin-left:16px!important}.my-3{margin-top:16px!important;margin-bottom:16px!important}.m-4{margin:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.mt-n4{margin-top:-24px!important}.mr-n4{margin-right:-24px!important}.mb-n4{margin-bottom:-24px!important}.ml-n4{margin-left:-24px!important}.mx-4{margin-right:24px!important;margin-left:24px!important}.my-4{margin-top:24px!important;margin-bottom:24px!important}.m-5{margin:32px!important}.mt-5{margin-top:32px!important}.mr-5{margin-right:32px!important}.mb-5{margin-bottom:32px!important}.ml-5{margin-left:32px!important}.mt-n5{margin-top:-32px!important}.mr-n5{margin-right:-32px!important}.mb-n5{margin-bottom:-32px!important}.ml-n5{margin-left:-32px!important}.mx-5{margin-right:32px!important;margin-left:32px!important}.my-5{margin-top:32px!important;margin-bottom:32px!important}.m-6{margin:40px!important}.mt-6{margin-top:40px!important}.mr-6{margin-right:40px!important}.mb-6{margin-bottom:40px!important}.ml-6{margin-left:40px!important}.mt-n6{margin-top:-40px!important}.mr-n6{margin-right:-40px!important}.mb-n6{margin-bottom:-40px!important}.ml-n6{margin-left:-40px!important}.mx-6{margin-right:40px!important;margin-left:40px!important}.my-6{margin-top:40px!important;margin-bottom:40px!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}@media (min-width:544px){.m-sm-0{margin:0!important}.mt-sm-0{margin-top:0!important}.mr-sm-0{margin-right:0!important}.mb-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.mx-sm-0{margin-right:0!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.m-sm-1{margin:4px!important}.mt-sm-1{margin-top:4px!important}.mr-sm-1{margin-right:4px!important}.mb-sm-1{margin-bottom:4px!important}.ml-sm-1{margin-left:4px!important}.mt-sm-n1{margin-top:-4px!important}.mr-sm-n1{margin-right:-4px!important}.mb-sm-n1{margin-bottom:-4px!important}.ml-sm-n1{margin-left:-4px!important}.mx-sm-1{margin-right:4px!important;margin-left:4px!important}.my-sm-1{margin-top:4px!important;margin-bottom:4px!important}.m-sm-2{margin:8px!important}.mt-sm-2{margin-top:8px!important}.mr-sm-2{margin-right:8px!important}.mb-sm-2{margin-bottom:8px!important}.ml-sm-2{margin-left:8px!important}.mt-sm-n2{margin-top:-8px!important}.mr-sm-n2{margin-right:-8px!important}.mb-sm-n2{margin-bottom:-8px!important}.ml-sm-n2{margin-left:-8px!important}.mx-sm-2{margin-right:8px!important;margin-left:8px!important}.my-sm-2{margin-top:8px!important;margin-bottom:8px!important}.m-sm-3{margin:16px!important}.mt-sm-3{margin-top:16px!important}.mr-sm-3{margin-right:16px!important}.mb-sm-3{margin-bottom:16px!important}.ml-sm-3{margin-left:16px!important}.mt-sm-n3{margin-top:-16px!important}.mr-sm-n3{margin-right:-16px!important}.mb-sm-n3{margin-bottom:-16px!important}.ml-sm-n3{margin-left:-16px!important}.mx-sm-3{margin-right:16px!important;margin-left:16px!important}.my-sm-3{margin-top:16px!important;margin-bottom:16px!important}.m-sm-4{margin:24px!important}.mt-sm-4{margin-top:24px!important}.mr-sm-4{margin-right:24px!important}.mb-sm-4{margin-bottom:24px!important}.ml-sm-4{margin-left:24px!important}.mt-sm-n4{margin-top:-24px!important}.mr-sm-n4{margin-right:-24px!important}.mb-sm-n4{margin-bottom:-24px!important}.ml-sm-n4{margin-left:-24px!important}.mx-sm-4{margin-right:24px!important;margin-left:24px!important}.my-sm-4{margin-top:24px!important;margin-bottom:24px!important}.m-sm-5{margin:32px!important}.mt-sm-5{margin-top:32px!important}.mr-sm-5{margin-right:32px!important}.mb-sm-5{margin-bottom:32px!important}.ml-sm-5{margin-left:32px!important}.mt-sm-n5{margin-top:-32px!important}.mr-sm-n5{margin-right:-32px!important}.mb-sm-n5{margin-bottom:-32px!important}.ml-sm-n5{margin-left:-32px!important}.mx-sm-5{margin-right:32px!important;margin-left:32px!important}.my-sm-5{margin-top:32px!important;margin-bottom:32px!important}.m-sm-6{margin:40px!important}.mt-sm-6{margin-top:40px!important}.mr-sm-6{margin-right:40px!important}.mb-sm-6{margin-bottom:40px!important}.ml-sm-6{margin-left:40px!important}.mt-sm-n6{margin-top:-40px!important}.mr-sm-n6{margin-right:-40px!important}.mb-sm-n6{margin-bottom:-40px!important}.ml-sm-n6{margin-left:-40px!important}.mx-sm-6{margin-right:40px!important;margin-left:40px!important}.my-sm-6{margin-top:40px!important;margin-bottom:40px!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0{margin-top:0!important}.mr-md-0{margin-right:0!important}.mb-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.mx-md-0{margin-right:0!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.m-md-1{margin:4px!important}.mt-md-1{margin-top:4px!important}.mr-md-1{margin-right:4px!important}.mb-md-1{margin-bottom:4px!important}.ml-md-1{margin-left:4px!important}.mt-md-n1{margin-top:-4px!important}.mr-md-n1{margin-right:-4px!important}.mb-md-n1{margin-bottom:-4px!important}.ml-md-n1{margin-left:-4px!important}.mx-md-1{margin-right:4px!important;margin-left:4px!important}.my-md-1{margin-top:4px!important;margin-bottom:4px!important}.m-md-2{margin:8px!important}.mt-md-2{margin-top:8px!important}.mr-md-2{margin-right:8px!important}.mb-md-2{margin-bottom:8px!important}.ml-md-2{margin-left:8px!important}.mt-md-n2{margin-top:-8px!important}.mr-md-n2{margin-right:-8px!important}.mb-md-n2{margin-bottom:-8px!important}.ml-md-n2{margin-left:-8px!important}.mx-md-2{margin-right:8px!important;margin-left:8px!important}.my-md-2{margin-top:8px!important;margin-bottom:8px!important}.m-md-3{margin:16px!important}.mt-md-3{margin-top:16px!important}.mr-md-3{margin-right:16px!important}.mb-md-3{margin-bottom:16px!important}.ml-md-3{margin-left:16px!important}.mt-md-n3{margin-top:-16px!important}.mr-md-n3{margin-right:-16px!important}.mb-md-n3{margin-bottom:-16px!important}.ml-md-n3{margin-left:-16px!important}.mx-md-3{margin-right:16px!important;margin-left:16px!important}.my-md-3{margin-top:16px!important;margin-bottom:16px!important}.m-md-4{margin:24px!important}.mt-md-4{margin-top:24px!important}.mr-md-4{margin-right:24px!important}.mb-md-4{margin-bottom:24px!important}.ml-md-4{margin-left:24px!important}.mt-md-n4{margin-top:-24px!important}.mr-md-n4{margin-right:-24px!important}.mb-md-n4{margin-bottom:-24px!important}.ml-md-n4{margin-left:-24px!important}.mx-md-4{margin-right:24px!important;margin-left:24px!important}.my-md-4{margin-top:24px!important;margin-bottom:24px!important}.m-md-5{margin:32px!important}.mt-md-5{margin-top:32px!important}.mr-md-5{margin-right:32px!important}.mb-md-5{margin-bottom:32px!important}.ml-md-5{margin-left:32px!important}.mt-md-n5{margin-top:-32px!important}.mr-md-n5{margin-right:-32px!important}.mb-md-n5{margin-bottom:-32px!important}.ml-md-n5{margin-left:-32px!important}.mx-md-5{margin-right:32px!important;margin-left:32px!important}.my-md-5{margin-top:32px!important;margin-bottom:32px!important}.m-md-6{margin:40px!important}.mt-md-6{margin-top:40px!important}.mr-md-6{margin-right:40px!important}.mb-md-6{margin-bottom:40px!important}.ml-md-6{margin-left:40px!important}.mt-md-n6{margin-top:-40px!important}.mr-md-n6{margin-right:-40px!important}.mb-md-n6{margin-bottom:-40px!important}.ml-md-n6{margin-left:-40px!important}.mx-md-6{margin-right:40px!important;margin-left:40px!important}.my-md-6{margin-top:40px!important;margin-bottom:40px!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:1012px){.m-lg-0{margin:0!important}.mt-lg-0{margin-top:0!important}.mr-lg-0{margin-right:0!important}.mb-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.mx-lg-0{margin-right:0!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.m-lg-1{margin:4px!important}.mt-lg-1{margin-top:4px!important}.mr-lg-1{margin-right:4px!important}.mb-lg-1{margin-bottom:4px!important}.ml-lg-1{margin-left:4px!important}.mt-lg-n1{margin-top:-4px!important}.mr-lg-n1{margin-right:-4px!important}.mb-lg-n1{margin-bottom:-4px!important}.ml-lg-n1{margin-left:-4px!important}.mx-lg-1{margin-right:4px!important;margin-left:4px!important}.my-lg-1{margin-top:4px!important;margin-bottom:4px!important}.m-lg-2{margin:8px!important}.mt-lg-2{margin-top:8px!important}.mr-lg-2{margin-right:8px!important}.mb-lg-2{margin-bottom:8px!important}.ml-lg-2{margin-left:8px!important}.mt-lg-n2{margin-top:-8px!important}.mr-lg-n2{margin-right:-8px!important}.mb-lg-n2{margin-bottom:-8px!important}.ml-lg-n2{margin-left:-8px!important}.mx-lg-2{margin-right:8px!important;margin-left:8px!important}.my-lg-2{margin-top:8px!important;margin-bottom:8px!important}.m-lg-3{margin:16px!important}.mt-lg-3{margin-top:16px!important}.mr-lg-3{margin-right:16px!important}.mb-lg-3{margin-bottom:16px!important}.ml-lg-3{margin-left:16px!important}.mt-lg-n3{margin-top:-16px!important}.mr-lg-n3{margin-right:-16px!important}.mb-lg-n3{margin-bottom:-16px!important}.ml-lg-n3{margin-left:-16px!important}.mx-lg-3{margin-right:16px!important;margin-left:16px!important}.my-lg-3{margin-top:16px!important;margin-bottom:16px!important}.m-lg-4{margin:24px!important}.mt-lg-4{margin-top:24px!important}.mr-lg-4{margin-right:24px!important}.mb-lg-4{margin-bottom:24px!important}.ml-lg-4{margin-left:24px!important}.mt-lg-n4{margin-top:-24px!important}.mr-lg-n4{margin-right:-24px!important}.mb-lg-n4{margin-bottom:-24px!important}.ml-lg-n4{margin-left:-24px!important}.mx-lg-4{margin-right:24px!important;margin-left:24px!important}.my-lg-4{margin-top:24px!important;margin-bottom:24px!important}.m-lg-5{margin:32px!important}.mt-lg-5{margin-top:32px!important}.mr-lg-5{margin-right:32px!important}.mb-lg-5{margin-bottom:32px!important}.ml-lg-5{margin-left:32px!important}.mt-lg-n5{margin-top:-32px!important}.mr-lg-n5{margin-right:-32px!important}.mb-lg-n5{margin-bottom:-32px!important}.ml-lg-n5{margin-left:-32px!important}.mx-lg-5{margin-right:32px!important;margin-left:32px!important}.my-lg-5{margin-top:32px!important;margin-bottom:32px!important}.m-lg-6{margin:40px!important}.mt-lg-6{margin-top:40px!important}.mr-lg-6{margin-right:40px!important}.mb-lg-6{margin-bottom:40px!important}.ml-lg-6{margin-left:40px!important}.mt-lg-n6{margin-top:-40px!important}.mr-lg-n6{margin-right:-40px!important}.mb-lg-n6{margin-bottom:-40px!important}.ml-lg-n6{margin-left:-40px!important}.mx-lg-6{margin-right:40px!important;margin-left:40px!important}.my-lg-6{margin-top:40px!important;margin-bottom:40px!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:1280px){.m-xl-0{margin:0!important}.mt-xl-0{margin-top:0!important}.mr-xl-0{margin-right:0!important}.mb-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.mx-xl-0{margin-right:0!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.m-xl-1{margin:4px!important}.mt-xl-1{margin-top:4px!important}.mr-xl-1{margin-right:4px!important}.mb-xl-1{margin-bottom:4px!important}.ml-xl-1{margin-left:4px!important}.mt-xl-n1{margin-top:-4px!important}.mr-xl-n1{margin-right:-4px!important}.mb-xl-n1{margin-bottom:-4px!important}.ml-xl-n1{margin-left:-4px!important}.mx-xl-1{margin-right:4px!important;margin-left:4px!important}.my-xl-1{margin-top:4px!important;margin-bottom:4px!important}.m-xl-2{margin:8px!important}.mt-xl-2{margin-top:8px!important}.mr-xl-2{margin-right:8px!important}.mb-xl-2{margin-bottom:8px!important}.ml-xl-2{margin-left:8px!important}.mt-xl-n2{margin-top:-8px!important}.mr-xl-n2{margin-right:-8px!important}.mb-xl-n2{margin-bottom:-8px!important}.ml-xl-n2{margin-left:-8px!important}.mx-xl-2{margin-right:8px!important;margin-left:8px!important}.my-xl-2{margin-top:8px!important;margin-bottom:8px!important}.m-xl-3{margin:16px!important}.mt-xl-3{margin-top:16px!important}.mr-xl-3{margin-right:16px!important}.mb-xl-3{margin-bottom:16px!important}.ml-xl-3{margin-left:16px!important}.mt-xl-n3{margin-top:-16px!important}.mr-xl-n3{margin-right:-16px!important}.mb-xl-n3{margin-bottom:-16px!important}.ml-xl-n3{margin-left:-16px!important}.mx-xl-3{margin-right:16px!important;margin-left:16px!important}.my-xl-3{margin-top:16px!important;margin-bottom:16px!important}.m-xl-4{margin:24px!important}.mt-xl-4{margin-top:24px!important}.mr-xl-4{margin-right:24px!important}.mb-xl-4{margin-bottom:24px!important}.ml-xl-4{margin-left:24px!important}.mt-xl-n4{margin-top:-24px!important}.mr-xl-n4{margin-right:-24px!important}.mb-xl-n4{margin-bottom:-24px!important}.ml-xl-n4{margin-left:-24px!important}.mx-xl-4{margin-right:24px!important;margin-left:24px!important}.my-xl-4{margin-top:24px!important;margin-bottom:24px!important}.m-xl-5{margin:32px!important}.mt-xl-5{margin-top:32px!important}.mr-xl-5{margin-right:32px!important}.mb-xl-5{margin-bottom:32px!important}.ml-xl-5{margin-left:32px!important}.mt-xl-n5{margin-top:-32px!important}.mr-xl-n5{margin-right:-32px!important}.mb-xl-n5{margin-bottom:-32px!important}.ml-xl-n5{margin-left:-32px!important}.mx-xl-5{margin-right:32px!important;margin-left:32px!important}.my-xl-5{margin-top:32px!important;margin-bottom:32px!important}.m-xl-6{margin:40px!important}.mt-xl-6{margin-top:40px!important}.mr-xl-6{margin-right:40px!important}.mb-xl-6{margin-bottom:40px!important}.ml-xl-6{margin-left:40px!important}.mt-xl-n6{margin-top:-40px!important}.mr-xl-n6{margin-right:-40px!important}.mb-xl-n6{margin-bottom:-40px!important}.ml-xl-n6{margin-left:-40px!important}.mx-xl-6{margin-right:40px!important;margin-left:40px!important}.my-xl-6{margin-top:40px!important;margin-bottom:40px!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.px-0{padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1,.px-1{padding-left:4px!important}.px-1{padding-right:4px!important}.py-1{padding-top:4px!important;padding-bottom:4px!important}.p-2{padding:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2,.px-2{padding-left:8px!important}.px-2{padding-right:8px!important}.py-2{padding-top:8px!important;padding-bottom:8px!important}.p-3{padding:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3,.px-3{padding-left:16px!important}.px-3{padding-right:16px!important}.py-3{padding-top:16px!important;padding-bottom:16px!important}.p-4{padding:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4,.px-4{padding-left:24px!important}.px-4{padding-right:24px!important}.py-4{padding-top:24px!important;padding-bottom:24px!important}.p-5{padding:32px!important}.pt-5{padding-top:32px!important}.pr-5{padding-right:32px!important}.pb-5{padding-bottom:32px!important}.pl-5,.px-5{padding-left:32px!important}.px-5{padding-right:32px!important}.py-5{padding-top:32px!important;padding-bottom:32px!important}.p-6{padding:40px!important}.pt-6{padding-top:40px!important}.pr-6{padding-right:40px!important}.pb-6{padding-bottom:40px!important}.pl-6,.px-6{padding-left:40px!important}.px-6{padding-right:40px!important}.py-6{padding-top:40px!important;padding-bottom:40px!important}@media (min-width:544px){.p-sm-0{padding:0!important}.pt-sm-0{padding-top:0!important}.pr-sm-0{padding-right:0!important}.pb-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.px-sm-0{padding-right:0!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.p-sm-1{padding:4px!important}.pt-sm-1{padding-top:4px!important}.pr-sm-1{padding-right:4px!important}.pb-sm-1{padding-bottom:4px!important}.pl-sm-1,.px-sm-1{padding-left:4px!important}.px-sm-1{padding-right:4px!important}.py-sm-1{padding-top:4px!important;padding-bottom:4px!important}.p-sm-2{padding:8px!important}.pt-sm-2{padding-top:8px!important}.pr-sm-2{padding-right:8px!important}.pb-sm-2{padding-bottom:8px!important}.pl-sm-2,.px-sm-2{padding-left:8px!important}.px-sm-2{padding-right:8px!important}.py-sm-2{padding-top:8px!important;padding-bottom:8px!important}.p-sm-3{padding:16px!important}.pt-sm-3{padding-top:16px!important}.pr-sm-3{padding-right:16px!important}.pb-sm-3{padding-bottom:16px!important}.pl-sm-3,.px-sm-3{padding-left:16px!important}.px-sm-3{padding-right:16px!important}.py-sm-3{padding-top:16px!important;padding-bottom:16px!important}.p-sm-4{padding:24px!important}.pt-sm-4{padding-top:24px!important}.pr-sm-4{padding-right:24px!important}.pb-sm-4{padding-bottom:24px!important}.pl-sm-4,.px-sm-4{padding-left:24px!important}.px-sm-4{padding-right:24px!important}.py-sm-4{padding-top:24px!important;padding-bottom:24px!important}.p-sm-5{padding:32px!important}.pt-sm-5{padding-top:32px!important}.pr-sm-5{padding-right:32px!important}.pb-sm-5{padding-bottom:32px!important}.pl-sm-5,.px-sm-5{padding-left:32px!important}.px-sm-5{padding-right:32px!important}.py-sm-5{padding-top:32px!important;padding-bottom:32px!important}.p-sm-6{padding:40px!important}.pt-sm-6{padding-top:40px!important}.pr-sm-6{padding-right:40px!important}.pb-sm-6{padding-bottom:40px!important}.pl-sm-6,.px-sm-6{padding-left:40px!important}.px-sm-6{padding-right:40px!important}.py-sm-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:768px){.p-md-0{padding:0!important}.pt-md-0{padding-top:0!important}.pr-md-0{padding-right:0!important}.pb-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.px-md-0{padding-right:0!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.p-md-1{padding:4px!important}.pt-md-1{padding-top:4px!important}.pr-md-1{padding-right:4px!important}.pb-md-1{padding-bottom:4px!important}.pl-md-1,.px-md-1{padding-left:4px!important}.px-md-1{padding-right:4px!important}.py-md-1{padding-top:4px!important;padding-bottom:4px!important}.p-md-2{padding:8px!important}.pt-md-2{padding-top:8px!important}.pr-md-2{padding-right:8px!important}.pb-md-2{padding-bottom:8px!important}.pl-md-2,.px-md-2{padding-left:8px!important}.px-md-2{padding-right:8px!important}.py-md-2{padding-top:8px!important;padding-bottom:8px!important}.p-md-3{padding:16px!important}.pt-md-3{padding-top:16px!important}.pr-md-3{padding-right:16px!important}.pb-md-3{padding-bottom:16px!important}.pl-md-3,.px-md-3{padding-left:16px!important}.px-md-3{padding-right:16px!important}.py-md-3{padding-top:16px!important;padding-bottom:16px!important}.p-md-4{padding:24px!important}.pt-md-4{padding-top:24px!important}.pr-md-4{padding-right:24px!important}.pb-md-4{padding-bottom:24px!important}.pl-md-4,.px-md-4{padding-left:24px!important}.px-md-4{padding-right:24px!important}.py-md-4{padding-top:24px!important;padding-bottom:24px!important}.p-md-5{padding:32px!important}.pt-md-5{padding-top:32px!important}.pr-md-5{padding-right:32px!important}.pb-md-5{padding-bottom:32px!important}.pl-md-5,.px-md-5{padding-left:32px!important}.px-md-5{padding-right:32px!important}.py-md-5{padding-top:32px!important;padding-bottom:32px!important}.p-md-6{padding:40px!important}.pt-md-6{padding-top:40px!important}.pr-md-6{padding-right:40px!important}.pb-md-6{padding-bottom:40px!important}.pl-md-6,.px-md-6{padding-left:40px!important}.px-md-6{padding-right:40px!important}.py-md-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:1012px){.p-lg-0{padding:0!important}.pt-lg-0{padding-top:0!important}.pr-lg-0{padding-right:0!important}.pb-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.px-lg-0{padding-right:0!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.p-lg-1{padding:4px!important}.pt-lg-1{padding-top:4px!important}.pr-lg-1{padding-right:4px!important}.pb-lg-1{padding-bottom:4px!important}.pl-lg-1,.px-lg-1{padding-left:4px!important}.px-lg-1{padding-right:4px!important}.py-lg-1{padding-top:4px!important;padding-bottom:4px!important}.p-lg-2{padding:8px!important}.pt-lg-2{padding-top:8px!important}.pr-lg-2{padding-right:8px!important}.pb-lg-2{padding-bottom:8px!important}.pl-lg-2,.px-lg-2{padding-left:8px!important}.px-lg-2{padding-right:8px!important}.py-lg-2{padding-top:8px!important;padding-bottom:8px!important}.p-lg-3{padding:16px!important}.pt-lg-3{padding-top:16px!important}.pr-lg-3{padding-right:16px!important}.pb-lg-3{padding-bottom:16px!important}.pl-lg-3,.px-lg-3{padding-left:16px!important}.px-lg-3{padding-right:16px!important}.py-lg-3{padding-top:16px!important;padding-bottom:16px!important}.p-lg-4{padding:24px!important}.pt-lg-4{padding-top:24px!important}.pr-lg-4{padding-right:24px!important}.pb-lg-4{padding-bottom:24px!important}.pl-lg-4,.px-lg-4{padding-left:24px!important}.px-lg-4{padding-right:24px!important}.py-lg-4{padding-top:24px!important;padding-bottom:24px!important}.p-lg-5{padding:32px!important}.pt-lg-5{padding-top:32px!important}.pr-lg-5{padding-right:32px!important}.pb-lg-5{padding-bottom:32px!important}.pl-lg-5,.px-lg-5{padding-left:32px!important}.px-lg-5{padding-right:32px!important}.py-lg-5{padding-top:32px!important;padding-bottom:32px!important}.p-lg-6{padding:40px!important}.pt-lg-6{padding-top:40px!important}.pr-lg-6{padding-right:40px!important}.pb-lg-6{padding-bottom:40px!important}.pl-lg-6,.px-lg-6{padding-left:40px!important}.px-lg-6{padding-right:40px!important}.py-lg-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:1280px){.p-xl-0{padding:0!important}.pt-xl-0{padding-top:0!important}.pr-xl-0{padding-right:0!important}.pb-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.px-xl-0{padding-right:0!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.p-xl-1{padding:4px!important}.pt-xl-1{padding-top:4px!important}.pr-xl-1{padding-right:4px!important}.pb-xl-1{padding-bottom:4px!important}.pl-xl-1,.px-xl-1{padding-left:4px!important}.px-xl-1{padding-right:4px!important}.py-xl-1{padding-top:4px!important;padding-bottom:4px!important}.p-xl-2{padding:8px!important}.pt-xl-2{padding-top:8px!important}.pr-xl-2{padding-right:8px!important}.pb-xl-2{padding-bottom:8px!important}.pl-xl-2,.px-xl-2{padding-left:8px!important}.px-xl-2{padding-right:8px!important}.py-xl-2{padding-top:8px!important;padding-bottom:8px!important}.p-xl-3{padding:16px!important}.pt-xl-3{padding-top:16px!important}.pr-xl-3{padding-right:16px!important}.pb-xl-3{padding-bottom:16px!important}.pl-xl-3,.px-xl-3{padding-left:16px!important}.px-xl-3{padding-right:16px!important}.py-xl-3{padding-top:16px!important;padding-bottom:16px!important}.p-xl-4{padding:24px!important}.pt-xl-4{padding-top:24px!important}.pr-xl-4{padding-right:24px!important}.pb-xl-4{padding-bottom:24px!important}.pl-xl-4,.px-xl-4{padding-left:24px!important}.px-xl-4{padding-right:24px!important}.py-xl-4{padding-top:24px!important;padding-bottom:24px!important}.p-xl-5{padding:32px!important}.pt-xl-5{padding-top:32px!important}.pr-xl-5{padding-right:32px!important}.pb-xl-5{padding-bottom:32px!important}.pl-xl-5,.px-xl-5{padding-left:32px!important}.px-xl-5{padding-right:32px!important}.py-xl-5{padding-top:32px!important;padding-bottom:32px!important}.p-xl-6{padding:40px!important}.pt-xl-6{padding-top:40px!important}.pr-xl-6{padding-right:40px!important}.pb-xl-6{padding-bottom:40px!important}.pl-xl-6,.px-xl-6{padding-left:40px!important}.px-xl-6{padding-right:40px!important}.py-xl-6{padding-top:40px!important;padding-bottom:40px!important}}.p-responsive{padding-right:16px!important;padding-left:16px!important}@media (min-width:544px){.p-responsive{padding-right:40px!important;padding-left:40px!important}}@media (min-width:1012px){.p-responsive{padding-right:16px!important;padding-left:16px!important}}.h1{font-size:26px!important}@media (min-width:768px){.h1{font-size:32px!important}}.h2{font-size:22px!important}@media (min-width:768px){.h2{font-size:24px!important}}.h3{font-size:18px!important}@media (min-width:768px){.h3{font-size:20px!important}}.h4{font-size:16px!important}.h5{font-size:14px!important}.h6{font-size:12px!important}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600!important}.f1{font-size:26px!important}@media (min-width:768px){.f1{font-size:32px!important}}.f2{font-size:22px!important}@media (min-width:768px){.f2{font-size:24px!important}}.f3{font-size:18px!important}@media (min-width:768px){.f3{font-size:20px!important}}.f4{font-size:16px!important}@media (min-width:768px){.f4{font-size:16px!important}}.f5{font-size:14px!important}.f6{font-size:12px!important}.f00-light{font-size:40px!important;font-weight:300!important}@media (min-width:768px){.f00-light{font-size:48px!important}}.f0-light{font-size:32px!important;font-weight:300!important}@media (min-width:768px){.f0-light{font-size:40px!important}}.f1-light{font-size:26px!important;font-weight:300!important}@media (min-width:768px){.f1-light{font-size:32px!important}}.f2-light{font-size:22px!important;font-weight:300!important}@media (min-width:768px){.f2-light{font-size:24px!important}}.f3-light{font-size:18px!important;font-weight:300!important}@media (min-width:768px){.f3-light{font-size:20px!important}}.text-small{font-size:12px!important}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#586069}.lh-condensed-ultra{line-height:1!important}.lh-condensed{line-height:1.25!important}.lh-default{line-height:1.5!important}.lh-0{line-height:0!important}.text-right{text-align:right!important}.text-left{text-align:left!important}.text-center{text-align:center!important}@media (min-width:544px){.text-sm-right{text-align:right!important}.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-right{text-align:right!important}.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:1012px){.text-lg-right{text-align:right!important}.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1280px){.text-xl-right{text-align:right!important}.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}}.text-normal{font-weight:400!important}.text-bold{font-weight:600!important}.text-italic{font-style:italic!important}.text-uppercase{text-transform:uppercase!important}.text-underline{text-decoration:underline!important}.no-underline{text-decoration:none!important}.no-wrap{white-space:nowrap!important}.ws-normal{white-space:normal!important}.break-word{word-break:break-word!important;word-wrap:break-word!important;overflow-wrap:break-word!important}.wb-break-all{word-break:break-all!important}.text-emphasized{font-weight:600;color:#24292e}.list-style-none{list-style:none!important}.text-shadow-dark{text-shadow:0 1px 1px rgba(27,31,35,.25),0 1px 25px rgba(27,31,35,.75)}.text-shadow-light{text-shadow:0 1px 0 hsla(0,0%,100%,.5)}.text-mono{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.d-block{display:block!important}.d-flex{display:flex!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.d-table{display:table!important}.d-table-cell{display:table-cell!important}@media (min-width:544px){.d-sm-block{display:block!important}.d-sm-flex{display:flex!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.d-sm-table{display:table!important}.d-sm-table-cell{display:table-cell!important}}@media (min-width:768px){.d-md-block{display:block!important}.d-md-flex{display:flex!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.d-md-table{display:table!important}.d-md-table-cell{display:table-cell!important}}@media (min-width:1012px){.d-lg-block{display:block!important}.d-lg-flex{display:flex!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.d-lg-table{display:table!important}.d-lg-table-cell{display:table-cell!important}}@media (min-width:1280px){.d-xl-block{display:block!important}.d-xl-flex{display:flex!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.d-xl-table{display:table!important}.d-xl-table-cell{display:table-cell!important}}.v-hidden{visibility:hidden!important}.v-visible{visibility:visible!important}@media (max-width:543px){.hide-sm{display:none!important}}@media (min-width:544px) and (max-width:767px){.hide-md{display:none!important}}@media (min-width:768px) and (max-width:1011px){.hide-lg{display:none!important}}@media (min-width:1012px){.hide-xl{display:none!important}}.table-fixed{table-layout:fixed!important}.sr-only{padding:0;clip:rect(0,0,0,0);word-wrap:normal;border:0}.show-on-focus,.sr-only{position:absolute;width:1px;height:1px;overflow:hidden}.show-on-focus{margin:0;clip:rect(1px,1px,1px,1px)}.show-on-focus:focus{z-index:20;width:auto;height:auto;clip:auto}.auth-form{width:340px;margin:0 auto}.auth-form .form-group.errored .error,.auth-form .form-group.errored .warning,.auth-form .form-group.warn .error,.auth-form .form-group.warn .warning{max-width:274px}.auth-form-header{padding:10px 20px;margin:0;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.3);background-color:#829aa8;border:1px solid #768995;border-radius:3px 3px 0 0}.auth-form-header h1{font-size:16px}.auth-form-header h1 a{color:#fff}.auth-form-header .octicon{position:absolute;top:10px;right:20px;color:rgba(0,0,0,.4);text-shadow:0 1px 0 hsla(0,0%,100%,.1)}.auth-form-message{max-height:140px;padding:20px 20px 10px;overflow-y:scroll;border:1px solid #d8dee2;border-radius:3px}.auth-form-message ol,.auth-form-message ul{padding-left:inherit;margin-bottom:inherit}.auth-form-body{padding:20px;font-size:14px;background-color:#fff;border:1px solid #d8dee2;border-top:0;border-radius:0 0 3px 3px}.auth-form-body .input-block{margin-top:5px;margin-bottom:15px}.auth-form-body p{margin-bottom:0}.auth-form-body ol,.auth-form-body ul{padding-left:inherit;margin-bottom:inherit}.two-factor-help{position:relative;padding:10px 10px 10px 36px;margin:60px 0 auto auto;border:1px solid #eaeaea;border-radius:3px}.two-factor-help h4{margin-top:0;margin-bottom:5px}.two-factor-help .octicon-device-mobile{position:absolute;top:10px;left:10px}.two-factor-help .octicon-key{position:absolute;left:10px}.u2f-send-code-spinner{position:relative;bottom:2px;display:none;vertical-align:bottom}.loading .u2f-send-code-spinner{display:inline}.u2f-login-spinner{top:2px}.u2f-auth-header:not(:last-child){padding-bottom:10px;margin-bottom:20px;border-bottom:1px solid #eaeaea}.auth-form-body .u2f-auth-form-body{padding:0}.u2f-auth-form-body{padding:30px 30px 20px;text-align:center}.u2f-auth-form-body button{margin-top:20px}.sudo-u2f-auth-form-body .u2f-enabled,.u2f-auth-form-body .u2f-enabled{display:block}.sudo-u2f-auth-form-body .u2f-disabled,.sudo-u2f-auth-form-body.unavailable .u2f-enabled,.u2f-auth-form-body .u2f-disabled,.u2f-auth-form-body.unavailable .u2f-enabled{display:none}.sudo-u2f-auth-form-body.unavailable .u2f-disabled,.u2f-auth-form-body.unavailable .u2f-disabled{display:block}.u2f-auth-icon{color:#aaa}.flash.sms-error,.flash.sms-success{display:none;margin:0 0 10px}.is-sent .sms-success{display:block}.is-not-sent .sms-success,.is-sent .sms-error{display:none}.is-not-sent .sms-error{display:block}.session-authentication{background-color:#f9f9f9}.session-authentication .header-logged-out{background-color:initial;border-bottom:0}.session-authentication .header-logo{color:#333}.session-authentication .flash{padding:15px 20px;margin:0 auto 10px;font-size:13px;border-style:solid;border-width:1px;border-radius:5px}.session-authentication .flash .container{width:auto}.session-authentication .flash .flash-close{height:40px}.session-authentication .flash.flash-banner{width:100%;border-top:0;border-right:0;border-left:0;border-radius:0}.session-authentication .auth-form label{display:block;margin-bottom:7px;text-align:left}.session-authentication .auth-form .btn{margin-top:20px}.session-authentication .auth-form .u2f-message{margin-bottom:0}.session-authentication .label-link{float:right;font-size:12px}.session-authentication .auth-form-header{margin-bottom:15px;color:#333;text-align:center;text-shadow:none;background-color:initial;border:0}.session-authentication .auth-form-header h1{font-size:24px;font-weight:300;letter-spacing:-.5px}.session-authentication .auth-form-body{border-top:1px solid #d8dee2;border-radius:5px}.session-authentication .auth-form-body.u2f-auth-form-body{padding:20px}.session-authentication .create-account-callout{padding:15px 20px;text-align:center;border:1px solid #d8dee2;border-radius:5px}.session-authentication .two-factor-help{padding:0 0 0 20px;margin-top:20px;border:0}.session-authentication .two-factor-help .octicon-device-mobile{top:3px;left:0}.session-authentication .two-factor-help .octicon-key{top:0;left:0}.session-authentication.enterprise .header-logged-out{padding:48px 0 28px;background-color:initial}.session-authentication.hosted .header-logged-out{padding:40px 0 20px;background-color:initial}.Header-old{z-index:32;padding-top:12px;padding-bottom:12px;color:hsla(0,0%,100%,.7);background-color:#24292e}.server-stats+.Header-old{box-shadow:inset 0 1px 0 hsla(0,0%,100%,.075)}.Header-old .dropdown-menu{width:300px}.Header-old .notification-indicator:hover:after{content:none}@media (min-width:1012px){.Header-old .notification-indicator:hover:after{content:attr(aria-label)}}.page-responsive .HeaderMenu{display:none;clear:both}@media (min-width:1012px){.page-responsive .HeaderMenu{display:block;clear:none}}.open .HeaderMenu{display:block}.HeaderMenu--logged-out .dropdown-menu{border:0;box-shadow:0 3px 12px rgba(27,31,35,.15),0 0 1px rgba(27,31,35,.2)}.HeaderMenu--logged-out .dropdown-menu:after,.HeaderMenu--logged-out .dropdown-menu:before{display:none}.HeaderMenu--logged-out .header-search{width:240px}.HeaderMenu--logged-out .jump-to-suggestions{top:100%}.HeaderMenu--logged-out .HeaderMenu-details[open]>summary:before{position:absolute;bottom:-8px;display:block}.HeaderMenu--logged-out .header-search-input{padding-top:8px;padding-bottom:8px;font-size:14px;-webkit-appearance:none}.HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.HeaderMenu--logged-out .header-search-input::placeholder{color:hsla(0,0%,100%,.75)!important}.edge-item-fix{list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}@media (min-width:1012px){.page-responsive .Header.Details .Header-item.Details-content--hidden{display:flex!important}}.page-responsive .HeaderMenu--logged-out{z-index:100;width:300px;overflow:auto;background-color:#fff;box-shadow:0 10px 50px rgba(27,31,35,.15)}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out{width:auto;overflow:visible;background-color:initial;box-shadow:none}}.page-responsive .HeaderMenu--logged-out .dropdown-menu{position:static;width:auto;border:0 solid transparent;box-shadow:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .dropdown-menu{position:absolute;width:300px;border:0;box-shadow:0 3px 12px rgba(27,31,35,.15),0 0 1px rgba(27,31,35,.2)}.page-responsive .HeaderMenu--logged-out .dropdown-menu:after,.page-responsive .HeaderMenu--logged-out .dropdown-menu:before{content:""}}.page-responsive .HeaderMenu--logged-out .dropdown-menu-s{transform:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .dropdown-menu-s{transform:translateX(50%)}}.page-responsive .HeaderMenu--logged-out .header-search{width:auto;border-top:0}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search{width:240px}}.page-responsive .HeaderMenu--logged-out .header-search-wrapper{border:1px solid #eaecef}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-wrapper{border:0}}.page-responsive .HeaderMenu--logged-out .header-search-input{padding-top:8px;padding-bottom:8px;color:#24292e;-webkit-appearance:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-input{color:inherit}}.page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:#586069!important}.page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:#586069!important}.page-responsive .HeaderMenu--logged-out .header-search-input::placeholder{color:#586069!important}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::placeholder{color:hsla(0,0%,100%,.75)!important}}.page-responsive .HeaderMenu-link{color:#444d56;background:transparent}.page-responsive .HeaderMenu-link:hover{color:#24292e}@media (min-width:1012px){.page-responsive .HeaderMenu-link{color:#fff;transition:.4s}.page-responsive .HeaderMenu-link:hover{color:hsla(0,0%,100%,.75)}}.page-responsive .HeaderMenu-link .icon-chevon-down-mktg{top:24px;right:0;width:14px;stroke:#24292e;transition:stroke .4s}@media (min-width:1012px){.page-responsive .HeaderMenu-link .icon-chevon-down-mktg{top:-2px;width:12px;stroke:hsla(0,0%,100%,.5);background:transparent}}.page-responsive .HeaderMenu-details[open]>summary:before{display:none}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open]>summary:before{position:absolute;bottom:-8px;display:block}}.page-responsive .HeaderMenu-details[open] .HeaderMenu-link{color:#24292e}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .HeaderMenu-link{color:hsla(0,0%,100%,.75)}}.page-responsive .HeaderMenu-details[open] .dropdown-menu{animation:none}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .dropdown-menu{animation:dropdown-display .4s cubic-bezier(.73,.005,.22,1)}}.page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:#24292e}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:#fff}}.HeaderMenu-link{color:#fff;background:transparent;transition:.4s}.HeaderMenu-link:hover{color:hsla(0,0%,100%,.75)}.HeaderMenu-link .icon-chevon-down-mktg{top:-2px;right:0;width:12px;stroke:hsla(0,0%,100%,.5);transition:stroke .4s}.HeaderMenu-details[open] .HeaderMenu-link{color:hsla(0,0%,100%,.75)}.HeaderMenu-details[open] .dropdown-menu{animation:dropdown-display .4s cubic-bezier(.73,.005,.22,1)}.HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:#fff}.HeaderMenu-summary::-webkit-details-marker{display:none}@keyframes dropdown-display{0%{opacity:0;transform:scale(.98) translateY(-.6em)}to{opacity:1;transform:scale(1) translateY(0)}}.header-logo-invertocat{margin:-1px 15px -1px -2px;color:#fff;white-space:nowrap}.header-logo-invertocat .octicon-mark-github{float:left}.header-logo-invertocat:hover{color:#fff;text-decoration:none}.notification-indicator{color:hsla(0,0%,100%,.7)}.notification-indicator .mail-status{position:absolute;top:-6px;left:6px;z-index:2;display:none;width:14px;height:14px;color:#fff;background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border:2px solid #24292e;border-radius:50%}.notification-indicator .mail-status.unread{display:inline-block}.notification-indicator:hover .mail-status{text-decoration:none;background-color:#0366d6}.header-nav-current-user{padding-bottom:0;font-size:inherit}.header-nav-current-user .css-truncate-target{max-width:100%}.header-nav-current-user .user-profile-link{color:#24292e}.feature-preview-indicator{position:absolute;top:0;left:13px;z-index:2;width:14px;height:14px;color:#fff;background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border:2px solid #24292e;border-radius:50%}.feature-preview-details .feature-preview-indicator{top:9px;right:10px;left:inherit;width:10px;height:10px;border:0}.unsupported-browser{color:#211e14;background-image:linear-gradient(#feefae,#fae692);border-bottom:1px solid #b3a569}.mobile-banner button.switch-to-mobile{display:block;width:100%;padding:30px 0 45px;font-size:60px;font-weight:600;color:#eaeaea;text-align:center;background-color:#444;border:0}.header-search-wrapper{display:table;width:100%;max-width:100%;padding:0;font-size:inherit;font-weight:400;color:#fff;vertical-align:middle;background-color:hsla(0,0%,100%,.125);border:0;box-shadow:none}.header-search-wrapper.header-search-wrapper-jump-to .header-search-scope{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.header-search-wrapper .truncate-repo-scope{max-width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.header-search-wrapper.focus{background-color:hsla(0,0%,100%,.175);box-shadow:none}.header-search-wrapper.focus .header-search-scope{color:#fff;background-color:hsla(0,0%,100%,.075);border-right-color:#282e34}.header-search-input{display:table-cell;width:100%;padding-top:0;padding-bottom:0;font-size:inherit;color:inherit;background:none;border:0;box-shadow:none}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.header-search-input::placeholder{color:hsla(0,0%,100%,.75)}.header-search-input:focus{border:0;box-shadow:none}.header-search-input:focus~.header-search-key-slash{display:none!important}.header-search-input::-ms-clear{display:none}.header-search-scope{display:none;padding-right:8px;padding-left:8px;font-size:inherit;line-height:28px;color:hsla(0,0%,100%,.7);white-space:nowrap;vertical-align:middle;border-right:1px solid #282e34;border-top-left-radius:3px;border-bottom-left-radius:3px}.header-search-scope:empty+.header-search-input{width:100%}.header-search-scope:hover{color:#fff;background-color:hsla(0,0%,100%,.12)}.scoped-search .header-search-wrapper{display:flex}.jump-to-field-active{color:#24292e!important;background-color:#fafbfc}.jump-to-field-active:-ms-input-placeholder{color:#586069!important}.jump-to-field-active::-ms-input-placeholder{color:#586069!important}.jump-to-field-active::placeholder{color:#586069!important}.jump-to-field-active~.header-search-key-slash{display:none}.jump-to-field-active.jump-to-dropdown-visible{border-bottom-right-radius:0;border-bottom-left-radius:0}.jump-to-suggestions{top:100%;left:0;z-index:35;width:100%;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;box-shadow:0 4px 10px rgba(0,0,0,.1)}.jump-to-suggestions-path{min-width:0;min-height:44px;color:#1b1f23}.jump-to-suggestions-path .jump-to-octicon{width:28px;color:#6a737d}.jump-to-suggestions-path .jump-to-suggestion-name{max-width:none}.jump-to-suggestions-path mark{font-weight:600;background-color:initial}.jump-to-suggestions-results-container .navigation-item{border-bottom:1px solid #e1e4e8}.jump-to-suggestions-results-container .navigation-item:last-child{border-bottom:0}.jump-to-suggestions-results-container .d-on-nav-focus{display:none}.jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,.jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon{color:#fff}.jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,.jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path{color:#fff;background:#0366d6}.jump-to-suggestions-results-container .navigation-focus mark,.jump-to-suggestions-results-container [aria-selected=true] mark{color:#fff}.jump-to-suggestions-results-container .navigation-focus .d-on-nav-focus,.jump-to-suggestions-results-container [aria-selected=true] .d-on-nav-focus{display:block}.header-search{min-width:300px;transition:.2s ease-in-out;transition-property:min-width,padding-bottom,padding-top}@media (min-width:768px){.header-search:focus-within{min-width:470px}}.HeaderMenu--logged-out .header-search{min-width:auto}.Header{z-index:32;padding:16px;font-size:14px;line-height:1.5;color:hsla(0,0%,100%,.7);background-color:#24292e}.Header,.Header-item{display:flex;align-items:center;flex-wrap:nowrap}.Header-item{margin-right:16px;align-self:stretch}.Header-item--full{flex:auto}.Header-link{font-weight:600;color:#fff;white-space:nowrap}.Header-link:focus,.Header-link:hover{color:hsla(0,0%,100%,.7);text-decoration:none}
\ No newline at end of file
diff --git a/static/css/github-style.css b/static/css/github-style.css
new file mode 100644
index 0000000..f641562
--- /dev/null
+++ b/static/css/github-style.css
@@ -0,0 +1,109 @@
+body {
+ margin: 0;
+ background-color: var(--body-background-color);
+}
+
+.Header {
+ display: flex;
+ align-items: center;
+ flex-wrap: nowrap;
+ padding-left: 32px!important;
+ padding-right: 32px!important;
+ z-index: 32;
+ padding: 16px;
+ font-size: 14px;
+ line-height: 1.5;
+ color: var(--color-header-text);
+ background-color: var(--color-header-bg);
+}
+
+.Header-link {
+ align-items: center;
+ display: flex;
+ font-weight: 600;
+ color: var(--color-header-logo);
+ white-space: nowrap;
+}
+
+.Header-item {
+ margin-right: 16px;
+}
+
+.Header-item--full {
+ width: 100%;
+}
+
+.octicon {
+ fill: currentColor;
+}
+
+.Header-search {
+ max-width: 272px;
+ transition: .2s ease-in-out;
+ transition-property: max-width, padding-bottom, padding-top;
+}
+
+.Header-search:focus-within {
+ max-width: 544px;
+ transition: .2s ease-in-out;
+ transition-property: max-width, padding-bottom, padding-top;
+}
+
+.Header-search-label {
+ display: flex;
+ width: 100%;
+ max-width: 100%;
+ padding: 0;
+ font-size: 14px;
+ font-weight: 400;
+ color: var(--color-text-white);
+ vertical-align: middle;
+ background-color: var(--color-header-search-bg);
+ border: 1px solid var(--color-header-search-border);
+ border-radius: 6px;
+ box-shadow: none;
+}
+
+.Header-search-label:focus-within {
+ background-color: hsla(0, 0%, 100%, .175);
+ border-color: var(--color-state-focus-border);
+ outline: none;
+}
+
+.Header-search-input {
+ min-height: 28px;
+ width: 100%;
+ padding: 5px 12px;
+ padding-top: 0;
+ padding-bottom: 0;
+ font-size: 14px;
+ background: none;
+ border: 0;
+ box-shadow: none;
+ border-radius: 6px;
+ color: #fff;
+}
+
+.Header-search-input:focus {
+ border: 0;
+ box-shadow: none;
+ background-color: var(--color-bg-secondary);
+ color: var(--color-text-primary);
+ border-color: var(--color-state-focus-border);
+ outline: none;
+}
+
+::placeholder {
+ color: #c2c3c4;
+ opacity: 1;
+}
+
+.switch-theme {
+ top: -2px;
+ left: -2px;
+ width: 28px;
+ height: 28px;
+ border-radius: 50%;
+ background-color: var(--color-profile-color-modes-toggle-thumb-bg);
+ cursor: pointer;
+}
\ No newline at end of file
diff --git a/static/css/github.css b/static/css/github.css
deleted file mode 100644
index 63df183..0000000
--- a/static/css/github.css
+++ /dev/null
@@ -1,13 +0,0 @@
-/*!
- * Primer-product
- * http://primer.github.io
- *
- * Released under MIT license. Copyright (c) 2019 GitHub Inc.
- */.flash{position:relative;padding:16px;color:#032f62;background-color:#dbedff;border:1px solid rgba(27,31,35,.15);border-radius:3px}.flash p:last-child{margin-bottom:0}.flash-messages{margin-bottom:24px}.flash-close{float:right;padding:16px;margin:-16px;color:inherit;text-align:center;cursor:pointer;background:none;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;opacity:.6}.flash-close:hover{opacity:1}.flash-action{float:right;margin-top:-3px;margin-left:24px}.flash-warn{color:#735c0f;background-color:#fffbdd}.flash-error,.flash-warn{border-color:rgba(27,31,35,.15)}.flash-error{color:#86181d;background-color:#ffdce0}.flash-success{color:#165c26;background-color:#dcffe4;border-color:rgba(27,31,35,.15)}.flash-full{margin-top:-1px;border-width:1px 0;border-radius:0}.flash-banner{position:fixed;top:0;z-index:90;width:100%;border-top:0;border-right:0;border-left:0;border-radius:0}.warning{padding:.5em;margin-bottom:.8em;font-weight:600;background-color:#fffbdd}.avatar{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px}.avatar-small{border-radius:2px}.avatar-link{float:left;line-height:1}.avatar-group-item{display:inline-block;margin-bottom:3px}.avatar-parent-child{position:relative}.avatar-child{position:absolute;right:-15%;bottom:-9%;background-color:#fff;border-radius:2px;box-shadow:-2px -2px 0 hsla(0,0%,100%,.8)}.AvatarStack{position:relative;min-width:26px;height:20px}.AvatarStack .AvatarStack-body{position:absolute}.AvatarStack.AvatarStack--two{min-width:36px}.AvatarStack.AvatarStack--three-plus{min-width:46px}.AvatarStack-body{display:flex;background:#fff}.AvatarStack-body .avatar{position:relative;z-index:2;display:flex;width:20px;height:20px;box-sizing:initial;margin-right:-11px;background-color:#fff;border-right:1px solid #fff;border-radius:2px;transition:margin .1s ease-in-out}.AvatarStack-body .avatar:first-child{z-index:3}.AvatarStack-body .avatar:last-child{z-index:1;border-right:0}.AvatarStack-body .avatar img{border-radius:2px}.AvatarStack-body .avatar:nth-child(n+4){display:none;opacity:0}.AvatarStack-body:hover .avatar{margin-right:3px}.AvatarStack-body:hover .avatar:nth-child(n+4){display:flex;opacity:1}.AvatarStack-body:hover .avatar-more{display:none!important}.avatar.avatar-more{z-index:1;margin-right:0;background:#f6f8fa}.avatar.avatar-more:after,.avatar.avatar-more:before{position:absolute;display:block;height:20px;content:"";border-radius:2px;outline:1px solid #fff}.avatar.avatar-more:before{width:17px;background:#e1e4e8}.avatar.avatar-more:after{width:14px;background:#d1d5da}.AvatarStack--right .AvatarStack-body{right:0;flex-direction:row-reverse}.AvatarStack--right .AvatarStack-body:hover .avatar{margin-right:0;margin-left:3px}.AvatarStack--right .avatar.avatar-more{background:#d1d5da}.AvatarStack--right .avatar.avatar-more:before{width:5px}.AvatarStack--right .avatar.avatar-more:after{width:2px;background:#f6f8fa}.AvatarStack--right .avatar{margin-right:0;margin-left:-11px;border-right:0;border-left:1px solid #fff}.CircleBadge{display:flex;align-items:center;justify-content:center;background-color:#fff;border-radius:50%;box-shadow:0 1px 5px rgba(27,31,35,.15)}.CircleBadge-icon{max-width:60%!important;height:auto!important;max-height:55%!important}.CircleBadge--small{width:56px;height:56px}.CircleBadge--medium{width:96px;height:96px}.CircleBadge--large{width:128px;height:128px}.DashedConnection{position:relative}.DashedConnection:before{position:absolute;top:50%;left:0;width:100%;content:"";border-bottom:2px dashed #e1e4e8}.blankslate,.DashedConnection .CircleBadge{position:relative}.blankslate{padding:32px;text-align:center}.blankslate code{padding:2px 5px 3px;font-size:14px;background:#fff;border:1px solid #eaecef;border-radius:3px}.blankslate img{width:56px;height:56px}.blankslate-icon{margin-right:4px;margin-bottom:8px;margin-left:4px;color:#a3aab1}.blankslate-capped{border-radius:0 0 3px 3px}.blankslate-spacious{padding:80px 40px}.blankslate-narrow{max-width:485px;margin:0 auto}.blankslate-large img{width:80px;height:80px}.blankslate-large h3{margin:16px 0;font-size:24px}.blankslate-large p{font-size:16px}.blankslate-clean-background{border:0}.branch-name{display:inline-block;padding:2px 6px;font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:rgba(27,31,35,.6);background-color:#eaf5ff;border-radius:3px}.branch-name .octicon{margin:1px -2px 0 0;color:#a8bbd0}a.branch-name{color:#0366d6}.dropdown{position:relative}.dropdown-caret{display:inline-block;width:0;height:0;vertical-align:middle;content:"";border-top-style:solid;border-top-width:4px;border-right:4px solid transparent;border-bottom:0 solid transparent;border-left:4px solid transparent}.dropdown-menu{position:absolute;top:100%;left:0;z-index:100;width:160px;padding-top:4px;padding-bottom:4px;margin-top:2px;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(27,31,35,.15);border-radius:4px;box-shadow:0 1px 15px rgba(27,31,35,.15)}.dropdown-menu:after,.dropdown-menu:before{position:absolute;display:inline-block;content:""}.dropdown-menu:before{border:8px solid transparent;border-bottom-color:rgba(27,31,35,.15)}.dropdown-menu:after{border:7px solid transparent;border-bottom-color:#fff}.dropdown-menu>ul{list-style:none}.dropdown-menu-no-overflow{width:auto}.dropdown-menu-no-overflow .dropdown-item{padding:4px 16px;overflow:visible;text-overflow:inherit}.dropdown-item{display:block;padding:4px 8px 4px 16px;overflow:hidden;color:#24292e;text-overflow:ellipsis;white-space:nowrap}.dropdown-item:focus,.dropdown-item:hover{color:#fff;text-decoration:none;background-color:#0366d6;outline:none}.dropdown-item:focus>.octicon,.dropdown-item:hover>.octicon{color:inherit;opacity:1}.dropdown-item.btn-link,.dropdown-signout{width:100%;text-align:left}.dropdown-signout{background:none;border:0}.dropdown-divider{display:block;height:0;margin:8px 0;border-top:1px solid #e1e4e8}.dropdown-header{padding:4px 16px;font-size:12px;color:#586069}.dropdown-item[aria-checked=false] .octicon-check{display:none}.dropdown-menu-w{top:0;right:100%;left:auto;width:auto;margin-top:0;margin-right:8px}.dropdown-menu-w:before{top:10px;right:-16px;left:auto;border-color:transparent transparent transparent rgba(27,31,35,.15)}.dropdown-menu-w:after{top:11px;right:-14px;left:auto;border-color:transparent transparent transparent #fff}.dropdown-menu-e{top:0;left:100%;width:auto;margin-top:0;margin-left:8px}.dropdown-menu-e:before{top:8px;left:-16px;border-color:transparent rgba(27,31,35,.15) transparent transparent}.dropdown-menu-e:after{top:11px;left:-14px;border-color:transparent #fff transparent transparent}.dropdown-menu-ne{top:auto;bottom:100%;left:0;margin-bottom:3px}.dropdown-menu-ne:after,.dropdown-menu-ne:before{top:auto;right:auto}.dropdown-menu-ne:before{bottom:-8px;left:9px;border-top:8px solid rgba(27,31,35,.15);border-right:8px solid transparent;border-bottom:0;border-left:8px solid transparent}.dropdown-menu-ne:after{bottom:-7px;left:10px;border-top:7px solid #fff;border-right:7px solid transparent;border-bottom:0;border-left:7px solid transparent}.dropdown-menu-s{right:50%;left:auto;transform:translateX(50%)}.dropdown-menu-s:before{top:-16px;right:50%;transform:translateX(50%)}.dropdown-menu-s:after{top:-14px;right:50%;transform:translateX(50%)}.dropdown-menu-sw{right:0;left:auto}.dropdown-menu-sw:before{top:-16px;right:9px;left:auto}.dropdown-menu-sw:after{top:-14px;right:10px;left:auto}.dropdown-menu-se:before{top:-16px;left:9px}.dropdown-menu-se:after{top:-14px;left:10px}.dropdown-menu-dark{color:#fff;background:#2f363d;border-color:#444d56;box-shadow:0 1px 15px rgba(27,31,35,.15)}.dropdown-menu-dark:before{border-bottom-color:#444d56}.dropdown-menu-dark:after{border-bottom-color:#2f363d}.dropdown-menu-dark .dropdown-header{color:#d1d5da}.dropdown-menu-dark .dropdown-divider{border-top-color:#444d56}.dropdown-menu-dark .dropdown-item{color:inherit}.dropdown-menu-dark.dropdown-menu-w:before{border-color:transparent transparent transparent #444d56}.dropdown-menu-dark.dropdown-menu-w:after{border-color:transparent transparent transparent #2f363d}.dropdown-menu-dark.dropdown-menu-e:before{border-color:transparent #444d56 transparent transparent}.dropdown-menu-dark.dropdown-menu-e:after{border-color:transparent #2f363d transparent transparent}.dropdown-menu-dark.dropdown-menu-ne:before{border-color:#444d56 transparent transparent}.dropdown-menu-dark.dropdown-menu-ne:after{border-color:#2f363d transparent transparent}.Header{z-index:32;padding:16px;font-size:14px;line-height:1.5;color:hsla(0,0%,100%,.7);background-color:#24292e}.Header,.Header-item{display:flex;align-items:center;flex-wrap:nowrap}.Header-item{margin-right:16px;align-self:stretch}.Header-item--full{flex:auto}.Header-link{font-weight:600;color:#fff;white-space:nowrap}.Header-link:focus,.Header-link:hover{color:hsla(0,0%,100%,.7);text-decoration:none}.labels{position:relative}.label,.Label{display:inline-block;padding:3px 4px;font-size:12px;font-weight:600;line-height:1;color:#fff;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(27,31,35,.12)}.label:hover,.Label:hover{text-decoration:none}.Label--gray{color:#586069;background-color:#eaecef}.Label--outline{margin-top:-1px;margin-bottom:-1px;font-weight:400;color:#586069;background-color:initial;border:1px solid rgba(27,31,35,.15);box-shadow:none}.Label--outline-green{color:#28a745;border:1px solid #34d058}.Label--gray-darker{background-color:#6a737d}.Label--orange{background-color:#d15704}.state,.State{display:inline-block;padding:4px 8px;font-weight:600;line-height:20px;color:#fff;text-align:center;white-space:nowrap;background-color:#6a737d;border-radius:3px}.State--green{background-color:#2cbe4e}.State--purple{background-color:#6f42c1}.State--red{background-color:#cb2431}.State--small{padding:.125em 4px;font-size:12px}.State--small .octicon{width:1em}.Counter{display:inline-block;padding:2px 5px;font-size:12px;font-weight:600;line-height:1;color:#586069;background-color:rgba(27,31,35,.08);border-radius:20px}.Counter:empty{visibility:hidden}.Counter--gray-light{color:#24292e;background-color:rgba(27,31,35,.15)}.Counter--gray{color:#fff;background-color:#6a737d}.markdown-body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:1px solid #d1d5da;border-radius:3px;box-shadow:inset 0 -1px 0 #d1d5da}.markdown-body:after,.markdown-body:before{display:table;content:""}.markdown-body:after{clear:both}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#cb2431}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body blockquote,.markdown-body details,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 code,.markdown-body h1 tt,.markdown-body h2 code,.markdown-body h2 tt,.markdown-body h3 code,.markdown-body h3 tt,.markdown-body h4 code,.markdown-body h4 tt,.markdown-body h5 code,.markdown-body h5 tt,.markdown-body h6 code,.markdown-body h6 tt{font-size:inherit}.markdown-body h1{font-size:2em}.markdown-body h1,.markdown-body h2{padding-bottom:.3em;border-bottom:1px solid #eaecef}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:#6a737d}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol.no-list,.markdown-body ul.no-list{padding:0;list-style-type:none}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li{word-wrap:break-all}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:initial}.markdown-body img{max-width:100%;box-sizing:initial;background-color:#fff}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:initial}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #dfe2e5}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#24292e}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;background-color:rgba(27,31,35,.05);border-radius:3px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f6f8fa;border-radius:3px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:initial;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#f6f8fa;border-top:0}.Popover{position:absolute;z-index:100}.Popover-message{position:relative;width:232px;margin-right:auto;margin-left:auto}.Popover-message:after,.Popover-message:before{position:absolute;left:50%;display:inline-block;content:""}.Popover-message:before{top:-16px;margin-left:-9px;border:8px solid transparent;border-bottom-color:rgba(27,31,35,.15)}.Popover-message:after{top:-14px;margin-left:-8px;border:7px solid transparent;border-bottom-color:#fff}.Popover-message--bottom-left:after,.Popover-message--bottom-left:before,.Popover-message--bottom-right:after,.Popover-message--bottom-right:before,.Popover-message--bottom:after,.Popover-message--bottom:before{top:auto;border-bottom-color:transparent}.Popover-message--bottom-left:before,.Popover-message--bottom-right:before,.Popover-message--bottom:before{bottom:-16px;border-top-color:rgba(27,31,35,.15)}.Popover-message--bottom-left:after,.Popover-message--bottom-right:after,.Popover-message--bottom:after{bottom:-14px;border-top-color:#fff}.Popover-message--bottom-right,.Popover-message--top-right{right:-9px;margin-right:0}.Popover-message--bottom-right:after,.Popover-message--bottom-right:before,.Popover-message--top-right:after,.Popover-message--top-right:before{left:auto;margin-left:0}.Popover-message--bottom-right:before,.Popover-message--top-right:before{right:20px}.Popover-message--bottom-right:after,.Popover-message--top-right:after{right:21px}.Popover-message--bottom-left,.Popover-message--top-left{left:-9px;margin-left:0}.Popover-message--bottom-left:after,.Popover-message--bottom-left:before,.Popover-message--top-left:after,.Popover-message--top-left:before{left:24px;margin-left:0}.Popover-message--bottom-left:after,.Popover-message--top-left:after{left:25px}.Popover-message--left-bottom:after,.Popover-message--left-bottom:before,.Popover-message--left-top:after,.Popover-message--left-top:before,.Popover-message--left:after,.Popover-message--left:before,.Popover-message--right-bottom:after,.Popover-message--right-bottom:before,.Popover-message--right-top:after,.Popover-message--right-top:before,.Popover-message--right:after,.Popover-message--right:before{top:50%;left:auto;margin-left:0;border-bottom-color:transparent}.Popover-message--left-bottom:before,.Popover-message--left-top:before,.Popover-message--left:before,.Popover-message--right-bottom:before,.Popover-message--right-top:before,.Popover-message--right:before{margin-top:-9px}.Popover-message--left-bottom:after,.Popover-message--left-top:after,.Popover-message--left:after,.Popover-message--right-bottom:after,.Popover-message--right-top:after,.Popover-message--right:after{margin-top:-8px}.Popover-message--right-bottom:before,.Popover-message--right-top:before,.Popover-message--right:before{right:-16px;border-left-color:rgba(27,31,35,.15)}.Popover-message--right-bottom:after,.Popover-message--right-top:after,.Popover-message--right:after{right:-14px;border-left-color:#fff}.Popover-message--left-bottom:before,.Popover-message--left-top:before,.Popover-message--left:before{left:-16px;border-right-color:rgba(27,31,35,.15)}.Popover-message--left-bottom:after,.Popover-message--left-top:after,.Popover-message--left:after{left:-14px;border-right-color:#fff}.Popover-message--left-top:after,.Popover-message--left-top:before,.Popover-message--right-top:after,.Popover-message--right-top:before{top:24px}.Popover-message--left-bottom:after,.Popover-message--left-bottom:before,.Popover-message--right-bottom:after,.Popover-message--right-bottom:before{top:auto}.Popover-message--left-bottom:before,.Popover-message--right-bottom:before{bottom:16px}.Popover-message--left-bottom:after,.Popover-message--right-bottom:after{bottom:17px}@media (min-width:544px){.Popover-message--large{min-width:320px}}.Progress{display:flex;height:8px;overflow:hidden;background-color:#e1e4e8;border-radius:3px}.Progress--large{height:10px}.Progress--small{height:5px}.SelectMenu{position:fixed;top:0;right:0;bottom:0;left:0;z-index:99;display:flex;padding:16px;pointer-events:none;flex-direction:column}@media (min-width:544px){.SelectMenu{position:absolute;top:auto;right:auto;bottom:auto;left:auto;padding:0}}.SelectMenu:before{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;content:"";background-color:rgba(27,31,35,.5)}@media (min-width:544px){.SelectMenu:before{display:none}}.SelectMenu-modal{position:relative;z-index:99;display:flex;max-height:66%;margin:auto 0;overflow:hidden;pointer-events:auto;flex-direction:column;background-color:#f6f8fa;border-radius:6px;box-shadow:0 0 18px rgba(0,0,0,.4);animation:SelectMenu-modal-animation .12s cubic-bezier(0,.1,.1,1) backwards}@keyframes SelectMenu-modal-animation{0%{opacity:0;transform:scale(.9)}}@keyframes SelectMenu-modal-animation--sm{0%{opacity:0;transform:translateY(-16px)}}@media (min-width:544px){.SelectMenu-modal{width:300px;height:auto;max-height:350px;margin:4px 0 16px;font-size:12px;border:1px solid #d1d5da;border-radius:3px;box-shadow:0 1px 5px rgba(27,31,35,.15);animation-name:SelectMenu-modal-animation--sm}}.SelectMenu-header{display:flex;flex:none;padding:16px}@media (min-width:544px){.SelectMenu-header{padding-top:8px;padding-bottom:8px}}.SelectMenu-title{flex:auto;font-size:14px;font-weight:600}@media (min-width:544px){.SelectMenu-title{font-size:inherit}}.SelectMenu-closeButton{padding:16px;margin:-16px;color:#6a737d;background-color:initial;border:0}@media (min-width:544px){.SelectMenu-closeButton{display:none}}.SelectMenu-filter{padding:16px;margin:0;border-top:1px solid #e1e4e8}@media (min-width:544px){.SelectMenu-filter{padding:8px}}.SelectMenu-input{display:block;width:100%}@media (min-width:544px){.SelectMenu-input{font-size:14px}}.SelectMenu-list{position:relative;padding:0;margin:0;flex:auto;overflow-x:hidden;overflow-y:auto;background-color:#fff;border-top:1px solid #e1e4e8;-webkit-overflow-scrolling:touch}.SelectMenu-item{display:flex;align-items:center;width:100%;padding:16px;overflow:hidden;color:#586069;text-align:left;cursor:pointer;background-color:#fff;border:0}.SelectMenu-item+.SelectMenu-item{border-top:1px solid #eaecef}@media (min-width:544px){.SelectMenu-item{padding-top:8px;padding-bottom:8px}}.SelectMenu-icon{width:16px;margin-right:8px;visibility:hidden;transition:transform .12s cubic-bezier(.5,.1,1,.5),visibility 0s linear .12s;transform:scale(0)}.SelectMenu-tabs{display:flex;flex-shrink:0;margin-bottom:-1px;overflow-x:auto;overflow-y:hidden;border-top:1px solid #e1e4e8;-webkit-overflow-scrolling:touch}.SelectMenu-tabs::-webkit-scrollbar{display:none}@media (min-width:544px){.SelectMenu-tabs{padding:0 8px;border-top:0}}.SelectMenu-tab{flex:1;padding:8px 16px;font-size:12px;font-weight:500;color:#6a737d;text-align:center;background-color:initial;border:0;box-shadow:inset 0 -1px 0 #e1e4e8}@media (min-width:544px){.SelectMenu-tab{flex:none;padding:4px 16px;border:solid transparent;border-width:1px 1px 0;border-top-left-radius:3px;border-top-right-radius:3px}}.SelectMenu-tab[aria-selected=true]{z-index:1;color:#24292e;background-color:#fff;box-shadow:0 0 0 1px #e1e4e8}@media (min-width:544px){.SelectMenu-tab[aria-selected=true]{border-color:#e1e4e8;box-shadow:none}}.SelectMenu-blankslate,.SelectMenu-loading,.SelectMenu-message{padding:24px 16px;text-align:center;background-color:#fff}.SelectMenu-divider{padding:4px 16px;margin:0;font-size:12px;font-weight:600;color:#6a737d;background-color:#f6f8fa;border-top:1px solid #e1e4e8;border-bottom:1px solid #e1e4e8}.SelectMenu-divider:first-child{border-top:0}.SelectMenu-divider:last-child{border-bottom:0}.SelectMenu-footer{padding:8px 16px;font-size:12px;color:#6a737d;text-align:center;border-top:1px solid #e1e4e8}@media (min-width:544px){.SelectMenu-footer{padding:4px 8px}}.SelectMenu--hasFilter .SelectMenu-modal{height:80%;max-height:none;margin-top:0}@media (min-width:544px){.SelectMenu--hasFilter .SelectMenu-modal{height:auto;max-height:350px;margin-top:4px}}.SelectMenu--hasFilter .SelectMenu-item:last-child{box-shadow:0 1px 0 #eaecef}.SelectMenu-item:focus,.SelectMenu-tab:focus{outline:none}.SelectMenu-item:hover{text-decoration:none}.SelectMenu-item[aria-checked=true]{font-weight:500;color:#24292e}.SelectMenu-item[aria-checked=true] .SelectMenu-icon{visibility:visible;transition:transform .12s cubic-bezier(0,0,.2,1),visibility 0s linear;transform:scale(1)}@media (hover:hover){.SelectMenu-item:hover,body:not(.intent-mouse) .SelectMenu-item:focus{color:#fff;background-color:#0366d6}.SelectMenu-item:active{color:#fff;background-color:#2188ff}body:not(.intent-mouse) .SelectMenu-tab:focus{background-color:#dbedff}.SelectMenu-tab:not([aria-checked=true]):hover{color:#24292e;background-color:#e1e4e8}.SelectMenu-tab:not([aria-checked=true]):active{color:#24292e;background-color:#f6f8fa}}@media (hover:none){.SelectMenu-item:active,.SelectMenu-item:focus{background-color:#fafbfc}.SelectMenu-item{-webkit-tap-highlight-color:rgba(209,213,218,.5)}}.Subhead{display:flex;padding-bottom:8px;margin-bottom:16px;border-bottom:1px solid #e1e4e8;flex-flow:row wrap}.Subhead--spacious{margin-top:40px}.Subhead-heading{font-size:24px;font-weight:400;flex:1 1 auto}.Subhead-heading--danger{font-weight:600;color:#cb2431}.Subhead-description{font-size:14px;color:#586069;flex:1 100%}.Subhead-actions{align-self:center;justify-content:flex-end}.Toast{display:flex;margin:8px;color:#1b1f23;background-color:#fff;border-radius:3px;box-shadow:inset 0 0 0 1px #d1d5da,0 1px 5px rgba(27,31,35,.15)}@media (min-width:544px){.Toast{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:450px;margin:16px}}.Toast-icon{display:flex;align-items:center;justify-content:center;width:48px;flex-shrink:0;color:#fff;background-color:#0366d6;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.Toast-content{padding:16px}.Toast-dismissButton{max-height:54px;padding:16px;background-color:initial;border:0}.Toast-dismissButton:focus,.Toast-dismissButton:hover{color:#586069;outline:none}.Toast-dismissButton:active{color:#959da5}.Toast--error .Toast-icon{background-color:#d73a49}.Toast--warning .Toast-icon{color:#24292e;background-color:#f9c513}.Toast--success .Toast-icon{background-color:#28a745}.Toast--animateIn{animation:Toast--animateIn .18s cubic-bezier(.22,.61,.36,1) backwards}@keyframes Toast--animateIn{0%{opacity:0;transform:translateY(100%)}}.Toast--animateOut{animation:Toast--animateOut .18s cubic-bezier(.55,.06,.68,.19) forwards}@keyframes Toast--animateOut{to{pointer-events:none;opacity:0;transform:translateY(100%)}}.container{width:980px;margin-right:auto;margin-left:auto}.container:after,.container:before{display:table;content:""}.container:after{clear:both}.progress-bar{display:block;height:15px;overflow:hidden;background-color:#eaecef;border-radius:3px}.progress-bar .progress{display:block;height:100%;background-color:#2cbe4e}.reverse-progress-container{position:relative;height:3px;background-color:#e1e4e8;background-image:linear-gradient(90deg,#28a745,#005cc5,#3a1d6e,#cb2431,#f66a0a);background-size:100% 3px}.reverse-progress-bar{position:absolute;right:0;height:100%;background-color:#e1e4e8}.progress-bar-small{height:10px}.progress-bar-inline .progress-bar{width:100%;border:1px solid #e1e4e8;border-top:0;border-radius:0}.table-list{display:table;width:100%;color:#6a737d;table-layout:fixed;border-bottom:1px solid #e1e4e8}.table-list ol{list-style-type:decimal}.table-list-bordered{border-bottom-color:#eaecef}.table-list-bordered .table-list-cell:first-child{border-left:1px solid #eaecef}.table-list-bordered .table-list-cell:last-child{border-right:1px solid #eaecef}.table-list-item{position:relative;display:table-row;list-style:none}.table-list-item.unread .table-list-cell:first-child{box-shadow:inset 2px 0 0 #0366d6}.table-list-cell{position:relative;display:table-cell;padding:8px 10px;font-size:12px;vertical-align:top;border-top:1px solid #eaecef}.table-list-cell.flush-left{padding-left:0}.table-list-cell.flush-right{padding-right:0}.table-list-cell-checkbox{width:30px;padding-right:0;padding-left:0;text-align:center}.table-list-header{position:relative;margin-top:20px;background-color:#f6f8fa;border:1px solid #e1e4e8;border-radius:3px 3px 0 0}.table-list-header:before{display:table;content:""}.table-list-header:after{display:table;clear:both;content:""}.table-list-header .btn-link{position:relative;display:inline-block;padding-top:13px;padding-bottom:13px;font-weight:400}.table-list-heading{margin-left:10px}.table-list-header-select-all{float:left;width:30px;padding:12px 10px;margin-right:5px;margin-left:-1px;text-align:center}.table-list-header-meta{display:inline-block;padding-top:13px;padding-bottom:13px;color:#586069}.table-list-header-toggle h4{padding:12px 0}.table-list-filters:first-child .table-list-header-toggle:first-child{padding-left:16px}.table-list-header-toggle.states .selected{font-weight:600}.table-list-header-toggle .btn-link{color:#586069}.table-list-header-toggle .btn-link .octicon{margin-right:4px}.table-list-header-toggle .btn-link:hover{color:#24292e;text-decoration:none}.table-list-header-toggle .btn-link.selected,.table-list-header-toggle .btn-link.selected:hover{color:#24292e}.table-list-header-toggle .btn-link+.btn-link{margin-left:10px}.table-list-header-toggle .btn-link.disabled,.table-list-header-toggle .btn-link:disabled{pointer-events:none;opacity:.5}.table-list-header-toggle .select-menu{position:relative}.table-list-header-toggle .select-menu-item.selected,.table-list-header-toggle .select-menu-item[aria-checked=true]{font-weight:600}.table-list-header-toggle .select-menu-button{padding-right:15px;padding-left:15px}.table-list-header-toggle .select-menu-button.selected,.table-list-header-toggle .select-menu-button.selected:hover,.table-list-header-toggle .select-menu-button:hover{color:#24292e}.table-list-header-toggle .select-menu-modal-holder{right:10px}.table-list-header-toggle .select-menu-modal-holder .select-menu-modal{margin-top:-1px}.table-list-header-next{margin-top:20px;margin-bottom:-1px}.table-list-header-next .table-list-header-select-all{padding-left:14px}.table-list-header-next .select-all-dropdown{padding-top:10px;padding-bottom:10px}.bulk-actions-header{position:-webkit-sticky;position:sticky;top:0;z-index:32;height:50px}.table-list-triage,.triage-mode .table-list-filters{display:none}.triage-mode .table-list-triage{display:block}.ajax-pagination-form .ajax-pagination-btn{width:100%;padding:6px;margin-top:20px;font-weight:600;color:#0366d6;background:#fff;border:1px solid #e1e4e8;border-radius:3px}.ajax-pagination-form .ajax-pagination-btn:focus,.ajax-pagination-form .ajax-pagination-btn:hover{background-color:#f6f8fa}.ajax-pagination-form.loading .ajax-pagination-btn{text-indent:-3000px;background-color:#f6f8fa;background-image:url(/images/spinners/octocat-spinner-16px-EAF2F5.gif);background-repeat:no-repeat;background-position:50%;border-color:#d1d5da}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.ajax-pagination-form.loading .ajax-pagination-btn{background-image:url(/images/spinners/octocat-spinner-32-EAF2F5.gif);background-size:16px auto}}.autocomplete-results{position:absolute;z-index:99;width:100%;max-height:20em;overflow-y:auto;font-size:13px;list-style:none;background:#fff;border-radius:3px;box-shadow:0 0 5px rgba(27,31,35,.3)}.autocomplete-item{display:block;padding:5px;overflow:hidden;font-weight:600;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}.autocomplete-item.navigation-focus,.autocomplete-item.selected,.autocomplete-item:hover,.autocomplete-item[aria-selected=true]{color:#fff;text-decoration:none;background-color:#0366d6}.autocomplete-item.navigation-focus .ldap-group-dn,.autocomplete-item.navigation-focus .organization-member,.autocomplete-item.selected .ldap-group-dn,.autocomplete-item.selected .organization-member,.autocomplete-item:hover .ldap-group-dn,.autocomplete-item:hover .organization-member,.autocomplete-item[aria-selected=true] .ldap-group-dn,.autocomplete-item[aria-selected=true] .organization-member{color:#f6f8fa}.autocomplete-item .secondary-label{font-weight:400}.autocomplete-item .organization-member{float:right;padding-top:1px;color:#6a737d}.is-auto-complete-loading .form-control{padding-right:30px;background-image:url(/images/spinners/octocat-spinner-32.gif);background-size:16px}.suggester-container{position:absolute;top:0;left:0;z-index:30;transform:translateZ(0)}@media (max-width:544px){.page-responsive .suggester-container{right:8px!important;left:8px!important}.page-responsive .suggester li{padding:8px 16px}}.suggester{position:relative;top:0;left:0;min-width:180px;margin-top:24px;cursor:pointer;background:#fff;border:1px solid #dfe2e5;border-radius:3px;box-shadow:0 0 5px rgba(27,31,35,.1)}.suggester ul{padding:0;margin:0;list-style:none}.suggester li{display:block;padding:4px 8px;font-weight:600;border-bottom:1px solid #dfe2e5}.suggester li small{font-weight:400;color:#586069}.suggester li:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.suggester li:first-child a{border-top-left-radius:3px;border-top-right-radius:3px}.suggester li.navigation-focus,.suggester li:hover,.suggester li[aria-selected=true]{color:#fff;text-decoration:none;background:#0366d6}.suggester li.navigation-focus small,.suggester li:hover small,.suggester li[aria-selected=true] small{color:#fff}.Box--overlay{width:448px;margin-right:auto;margin-left:auto;background-color:#fff;background-clip:padding-box;border-color:#444d56;box-shadow:0 0 18px rgba(0,0,0,.4)}.Box--overlay .Box-header{margin:0;border-width:0 0 1px;border-top-left-radius:2px;border-top-right-radius:2px}.Box-overlay--narrow{width:320px}.Box-overlay--wide{width:640px}.Overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:99;overflow-y:auto}.Box-body.scrollable-overlay{max-height:400px;overflow-y:scroll}.Box-body .help{padding-top:8px;margin:0;color:#586069;text-align:center}.boxed-group{position:relative;margin-bottom:30px;border-radius:3px}.boxed-group .Counter{color:#fff;background-color:rgba(47,54,61,.5)}.boxed-group.flush .boxed-group-inner{padding:0}.boxed-group.condensed .boxed-group-inner{padding:0;font-size:12px}.boxed-group .heading,.boxed-group>h3{display:block;padding:9px 10px 10px;margin:0;font-size:14px;line-height:17px;background-color:#f6f8fa;border:1px solid rgba(27,31,35,.15);border-bottom:0;border-radius:3px 3px 0 0}.boxed-group .heading a,.boxed-group>h3 a{color:inherit}.boxed-group .heading a.boxed-group-breadcrumb,.boxed-group>h3 a.boxed-group-breadcrumb{font-weight:400;color:#586069;text-decoration:none}.boxed-group .heading .avatar,.boxed-group>h3 .avatar{margin-top:-4px}.boxed-group .tabnav.heading{padding:0}.boxed-group .tabnav.heading .tabnav-tab.selected{border-top:0}.boxed-group .tabnav.heading li:first-child .selected{border-left-color:#fff;border-top-left-radius:3px}.boxed-group .tabnav-tab{border-top:0;border-radius:0}.boxed-group code.heading{font-size:12px}.boxed-group.dangerzone>h3{color:#fff;background-color:#d73a49;border:1px solid #9e1c23}.boxed-group.dangerzone .boxed-group-inner{border-top:0}.boxed-group.condensed>h3{padding:6px 6px 7px;font-size:12px}.boxed-group.condensed>h3 .octicon{padding:0 6px 0 2px}.dashboard-sidebar .boxed-group{margin-bottom:20px}.boxed-group .bleed-flush{width:100%;padding:0 10px;margin-left:-10px}.boxed-group .compact{margin-top:10px;margin-bottom:10px}.boxed-group-inner{padding:10px;color:#586069;background:#fff;border:1px solid #d1d5da;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.boxed-group-inner .markdown-body{padding:20px 10px 10px;font-size:13px}.boxed-group-inner.markdown-body{padding-top:10px;padding-bottom:10px}.boxed-group-inner.seamless{padding:0}.boxed-group-inner .tabnav{padding-right:10px;padding-left:10px;margin-right:-10px;margin-left:-10px}.boxed-group-inner .help,.boxed-group-inner .tabnav-tab.selected{border-top:1px solid #dfe2e5}.boxed-group-inner .help{padding:1em 10px 1em 35px;margin:1em -10px -10px;clear:both;color:#586069}.boxed-group-inner .help .octicon{margin-right:5px;margin-left:-25px}.boxed-group-inner .boxed-group-list+.help{margin-top:0}.boxed-action{float:right;margin-left:10px}.boxed-group-action{position:relative;z-index:2;float:right;margin:5px 10px 0 0}.boxed-group-action.flush{margin-top:0;margin-right:0}.field-with-errors{display:inline}.compact-options{margin:-6px 0 13px}.compact-options>li{display:inline-block;margin:0 12px 0 0;font-weight:600;list-style-type:none}.compact-options>li label{float:left}.compact-options>li .spinner{display:block;float:left;width:16px;height:16px;margin-left:5px}.boxed-group-list{margin:0;list-style:none}.boxed-group-list:first-child>li:first-child{border-top:0}.boxed-group-list>li{display:block;padding:5px 10px;margin-right:-10px;margin-left:-10px;line-height:23px;border-bottom:1px solid #e1e4e8}.boxed-group-list>li:first-child{border-top:1px solid #dfe2e5}.boxed-group-list>li:last-of-type{border-bottom:0}.boxed-group-list>li.selected{background:#dcffe4}.boxed-group-list>li.approved .btn-sm,.boxed-group-list>li.rejected .btn-sm{display:none}.boxed-group-list>li.rejected a{text-decoration:line-through}.boxed-group-list>li .avatar{margin-top:-2px;margin-right:4px}.boxed-group-list>li .octicon{width:24px;margin-right:4px}.boxed-group-list>li .btn-sm{float:right;margin:-1px 0 0 10px}.boxed-group-list>li .BtnGroup{float:right}.boxed-group-list>li .BtnGroup .btn-sm{float:left}.boxed-group.flush .boxed-group-list li{width:auto;padding-right:0;padding-left:0;margin-left:0}.boxed-group-list.standalone{margin-top:-1px}.boxed-group-list.standalone>li:first-child{border-top:0}.boxed-group-standalone{margin-top:-10px;margin-bottom:-10px}.boxed-group-standalone>li:last-child{border-radius:0 0 2px 2px}.boxed-group-table{width:100%;text-align:left}.boxed-group-table tr:last-child td{border-bottom:0}.boxed-group-table th{padding:9px;background-color:#fafbfc;border-bottom:1px solid #eaecef}.boxed-group-table td{padding:9px;vertical-align:top;border-bottom:1px solid #eaecef}.ajax-error-message{position:fixed;top:-200px;left:50%;z-index:9999;display:none;width:974px;margin:0 3px 0 -487px;transition:top .5s ease-in-out}.ajax-error-message.visible{top:0;display:block}.ajax-error-message>.octicon-alert{vertical-align:text-top}.boxed-group-warning{padding:10px 15px;margin:-10px -10px 10px;color:rgba(27,31,35,.85);background-color:#fffbdd;border-color:rgba(27,31,35,.15);border-style:solid;border-width:1px 0}.boxed-group-warning .btn-sm{margin:-5px 0}.boxed-group-warning:first-child{border-top:0}.breadcrumb{font-size:16px;color:#586069}.breadcrumb .separator{white-space:pre-wrap}.breadcrumb .separator:after,.breadcrumb .separator:before{content:" "}.breadcrumb strong.final-path{color:#24292e}.starring-container.on .starred,.starring-container .unstarred{display:block}.starring-container.on .unstarred,.starring-container .starred{display:none}.starring-container.loading{opacity:.5}.user-following-container .follow,.user-following-container.on .unfollow{display:inline-block}.user-following-container.on .follow,.user-following-container .unfollow{display:none}.user-following-container.loading{opacity:.5}.members .user-following-container{float:right}.close-button{padding:0;background:transparent;border:0;outline:none}.btn-invisible{color:#0366d6;background-color:#fff;background-image:none;border:0}.btn-invisible.selected,.btn-invisible.zeroclipboard-is-active,.btn-invisible.zeroclipboard-is-hover,.btn-invisible:active,.btn-invisible:focus,.btn-invisible:hover{color:#0366d6;background:none;outline:none;box-shadow:none}.btn-octicon{display:inline-block;padding:5px;margin-left:5px;line-height:1;color:#586069;vertical-align:middle;background:transparent;border:0}.btn-octicon:hover{color:#0366d6}.btn-octicon.disabled{color:#959da5;cursor:default}.btn-octicon.disabled:hover{color:#959da5}.btn-octicon-danger:hover{color:#cb2431}.btn-states .btn-state-alternate,.btn-states:hover .btn-state-default{display:none}.btn-states:hover .btn-state-alternate,.commit-ref{display:inline-block}.commit-ref{position:relative;padding:0 5px;font:.75em/2 SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:#274466;white-space:nowrap;background-color:#eff7ff;border-radius:3px}.commit-ref .user{color:#044289}a.commit-ref:hover{text-decoration:none;background-color:#dbedff}.icon-sponsor,.icon-sponsoring{transition:transform .15s cubic-bezier(.2,0,.13,2);transform:scale(1)}.btn:focus .icon-sponsor,.btn:focus .icon-sponsoring,.btn:hover .icon-sponsor,.btn:hover .icon-sponsoring,.Label:focus .icon-sponsor,.Label:focus .icon-sponsoring,.Label:hover .icon-sponsor,.Label:hover .icon-sponsoring{transform:scale(1.1)}.icon-sponsor{overflow:visible!important;color:transparent}.icon-sponsor path{stroke:#ea4aaa;stroke-width:1.25px;transform:translate(.5px,.5px) scale(.925)}.capped-cards{list-style:none}.capped-cards .capped-card{float:left;width:450px}.capped-card{margin:10px;list-style:none;border:1px solid #dfe2e5;border-radius:2px}.capped-card:after,.capped-card:before{display:table;content:""}.capped-card:after{clear:both}.capped-card:nth-child(odd){margin-left:0}.capped-card:nth-child(2n){margin-right:0}.capped-card h3{padding:10px}.capped-card>p,.capped-card h3{margin:0;line-height:100%;border-bottom:1px solid #eaecef}.capped-card>p{display:block;padding:0 10px 10px;font-size:15px;color:#586069}.capped-card-content{display:block;background:#f6f8fa}.capped-card-content:before{display:table;content:""}.capped-card-content:after{display:table;clear:both;content:""}.details-collapse .collapse{position:relative;display:none;height:0;overflow:hidden;transition:height .35s ease-in-out}.details-collapse.open .collapse{display:block;height:auto;overflow:visible}.comment .email-format{line-height:1.5}.previewable-edit .previewable-comment-form{display:none}.previewable-edit .previewable-comment-form:before{display:table;content:""}.previewable-edit .previewable-comment-form:after{display:table;clear:both;content:""}.previewable-edit .previewable-comment-form .tabnav-tabs{display:inline-block}.previewable-edit .previewable-comment-form .form-actions{float:right;margin-right:10px;margin-bottom:10px}.previewable-edit.is-comment-editing .timeline-comment-header{display:none}.is-comment-editing .previewable-comment-form{display:block}.is-comment-editing .edit-comment-hide,.is-comment-editing .timeline-comment-actions{display:none}.is-comment-loading .previewable-comment-form{opacity:.5}.comment-show-stale{display:none}.is-comment-stale .comment-show-stale{display:block}.comment-body{width:100%;padding:15px;overflow:visible;font-size:14px}.comment-body .highlight{overflow:visible!important;background-color:initial}.comment-form-textarea{width:100%;max-width:100%;height:100px;min-height:100px;margin:0;line-height:1.6}.comment-form-textarea.dragover{border:1px solid #0366d6}.hide-reaction-suggestion:active:after,.hide-reaction-suggestion:active:before,.hide-reaction-suggestion:hover:after,.hide-reaction-suggestion:hover:before{display:none}.reaction-suggestion[data-reaction-suggestion-message]:hover:after,.reaction-suggestion[data-reaction-suggestion-message]:hover:before{display:inline-block}.reaction-suggestion[data-reaction-suggestion-message]:after,.reaction-suggestion[data-reaction-suggestion-message]:before{display:inline-block;text-decoration:none;animation-name:tooltip-appear;animation-duration:.1s;animation-fill-mode:forwards;animation-timing-function:ease-in;animation-delay:0s}.reaction-suggestion[data-reaction-suggestion-message]:after{content:attr(data-reaction-suggestion-message)}.discussion-topic-header{position:relative;padding:10px;word-wrap:break-word}.comment-form-error{padding:16px 8px;margin:8px;color:#86181d;background-color:#ffdce0;border:1px solid rgba(27,31,35,.15);border-radius:3px}.email-format{line-height:1.5em!important}.email-format div{white-space:pre-wrap}.email-format .email-hidden-reply{display:none;white-space:pre-wrap}.email-format .email-hidden-reply.expanded{display:block}.email-format .email-quoted-reply,.email-format .email-signature-reply{padding:0 15px;margin:15px 0;color:#586069;border-left:4px solid #dfe2e5}.email-format .email-hidden-toggle a{display:inline-block;height:12px;padding:0 9px;font-size:12px;font-weight:600;line-height:6px;color:#444d56;text-decoration:none;vertical-align:middle;background:#dfe2e5;border-radius:1px}.email-format .email-hidden-toggle a:hover{background-color:#c6cbd1}.email-format .email-hidden-toggle a:active{color:#fff;background-color:#0366d6}.comment-email-format div{white-space:normal}.comment-email-format .email-hidden-reply{display:none;white-space:normal}.comment-email-format .email-hidden-reply.expanded{display:block}.comment-email-format blockquote,.comment-email-format p{margin:0}.blankslate.conversation-limited{padding:20px 0 10px;margin:15px}.locked-conversation .preview-tab,.locked-conversation .write-tab{color:#c6cbd1}.preview-tab:focus,.write-tab:focus{outline:1px dotted #1b1f23}.manual-file-chooser-transparent{min-height:0;opacity:.01}.manual-file-chooser-transparent:focus{opacity:1!important}.commit-form{position:relative;padding:15px;border:1px solid #dfe2e5;border-radius:3px}.commit-form:before{border-right-color:#dfe2e5}.commit-form .input-block{margin-top:10px;margin-bottom:10px}.commit-form-avatar{float:left;border-radius:3px}.commit-form-actions:before{display:table;content:""}.commit-form-actions:after{display:table;clear:both;content:""}.commit-form-actions .BtnGroup{margin-right:5px}.merge-commit-message{resize:vertical}.commit-sha{padding:.2em .4em;font-size:90%;font-weight:400;background-color:#f6f8fa;border:1px solid #eaecef;border-radius:.2em}.commit-partial-notice{margin-top:20px;margin-bottom:20px}.commit-paginate-container{float:right;margin:-5px 0 0;text-align:inherit}.commit .commit-title,.commit .commit-title a{color:#444d56}.commit .commit-title.blank,.commit .commit-title.blank a{color:rgba(27,31,35,.3)}.commit .commit-title .issue-link{font-weight:600;color:#0366d6}.commit .sha,.commit .sha-block{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px}.commit.open .commit-desc{display:block}.commit-link{font-weight:400;color:#0366d6}.commit-email-flash{display:inline}.commit-desc{display:none}.commit-desc pre{max-width:700px;margin-top:10px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:11px;line-height:1.45;color:#444d56;white-space:pre-wrap}.commit-desc+.commit-branches{padding-top:8px;margin-top:2px;border-top:1px solid rgba(27,31,35,.15)}.commit-author-section{color:#24292e}.commit-author-section span.user-mention{font-weight:400}.commit-tease{position:relative;padding:10px;margin-bottom:-1px;font-size:13px;line-height:20px;color:#586069;background-color:#f1f8ff;border:1px solid #c8e1ff}.commit-tease .loader{float:left;margin:2px 5px 0 2px}.commit-tease .avatar{margin-top:-1px}.commit-tease.open .commit-desc{display:block}.branch-infobar+.commit-tease{border-top-left-radius:0;border-top-right-radius:0}.commit-tease-comments{margin-right:15px}.commit-tease-sha{display:inline-block;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:90%;color:#444d56}.commits-listing{position:relative;padding-bottom:20px;margin-bottom:15px}.commits-listing:before{position:absolute;top:0;bottom:0;left:14px;z-index:-1;display:block;width:2px;content:"";background-color:#eff1f3}.commits-listing .discussion-item-icon{margin-right:5px;margin-left:-1px}.commits-listing-padded{padding-left:39px}.commit-group{margin-top:10px;list-style-type:none}.commit-group-title{margin-top:15px;margin-left:-31px;color:#586069}.commit-group-title .octicon-git-commit{margin-right:17px;color:#c6cbd1;background:#fff}.commits-list-item.navigation-focus,.commits-list-item[aria-selected=true]{background:#f6fbff}.commits-list-item .commit-title{margin:0;font-size:15px;font-weight:600;color:#24292e}.commits-list-item .commit-meta{margin-top:1px;font-weight:400;color:#586069}.commits-list-item .status .octicon{height:14px;line-height:14px}.commits-list-item .commit-author{color:#586069}.commits-list-item .octicon-arrow-right{margin:0 3px}.commits-list-item .btn-outline{margin-top:2px}.commits-list-item .commit-desc pre{margin-top:5px;margin-bottom:10px;color:#586069}.commits-list-item .commit-desc pre a{word-break:break-word}.commit-indicator{margin-left:4px}.commit-links-cell{width:335px;text-align:right}.commit-links-group{margin-right:5px}.commits-list-item+.commits-list-item{border-top:1px solid #e1e4e8}.full-commit{padding:8px 8px 0;margin:10px 0;font-size:14px;background:#eaf5ff;border:1px solid rgba(27,31,35,.15);border-radius:3px}.full-commit:first-child{margin-top:0}.full-commit .btn-outline,.full-commit .btn-outline:disabled{background-color:initial;border-color:rgba(27,31,35,.15)}.full-commit .btn-outline:not(:disabled):hover{color:#005cc5;border-color:#005cc5}.full-commit p.commit-title{margin:0 0 8px;font-size:18px;font-weight:600;color:#05264c}.full-commit .branches-list{display:inline;margin-right:10px;margin-left:2px;vertical-align:middle;list-style:none}.full-commit .branches-list li{display:inline-block;padding-left:3px;font-weight:600;color:#444d56}.full-commit .branches-list li:before{padding-right:6px;font-weight:400;content:"+"}.full-commit .branches-list li:first-child{padding-left:0}.full-commit .branches-list li:first-child:before{padding-right:0;content:""}.full-commit .branches-list li.loading,.full-commit .branches-list li.pull-request{font-weight:400;color:#6a737d}.full-commit .branches-list li.pull-request:before{margin-left:-8px;content:""}.full-commit .branches-list li.pull-request-error{margin-bottom:-1px}.full-commit .branches-list li a{color:inherit}.full-commit .commit-meta{padding:8px;margin-right:-8px;margin-left:-8px;background:#fff;border-top:1px solid rgba(27,31,35,.15);border-bottom-right-radius:3px;border-bottom-left-radius:3px}.full-commit .sha-block{margin-left:16px;font-size:12px;line-height:24px;color:#586069}.full-commit .sha-block>.sha{color:#444d56}.full-commit .sha-block>a{color:#444d56;text-decoration:none;border-bottom:1px dotted #c6cbd1}.full-commit .sha-block>a:hover{border-bottom:1px solid #444d56}.full-commit .commit-desc{display:block;margin:-5px 0 10px}.full-commit .commit-desc pre{max-width:100%;overflow:visible;font-size:13px;word-wrap:break-word}.branches-tag-list{display:inline;margin-right:10px;margin-left:2px;vertical-align:middle;list-style:none}.branches-tag-list .more-commit-details,.branches-tag-list.open .hidden-text-expander{display:none}.branches-tag-list.open .more-commit-details{display:inline-block}.branches-tag-list li{display:inline-block;padding-left:3px}.branches-tag-list li:first-child{padding-left:0;font-weight:600;color:#444d56}.branches-tag-list li.loading{font-weight:400;color:#6a737d}.branches-tag-list li.abbrev-tags{cursor:pointer}.branches-tag-list li .ellipsis-expander,.branches-tag-list li a{color:inherit}.branches-tag-list li .ellipsis-expander{background-color:#d3e2f4}.branches-tag-list li .ellipsis-expander:hover{background-color:#d6e2f1}.commit-branches{min-height:18px;margin-top:-6px;margin-bottom:8px;font-size:12px;color:#6a737d}.commit-branches,.commit-branches .octicon{vertical-align:middle}.commit-loader .loader-error{display:none;margin:0;font-size:12px;font-weight:600;color:#cb2431}.commit-loader.is-error .loader-loading{display:none}.commit-loader.is-error .loader-error{display:block}.commit-comments-heading{max-width:780px;margin-bottom:15px}.commit-comment-count{display:inline-block;margin-right:15px;margin-bottom:0}.commit-build-statuses{position:relative;display:inline-block;text-align:left}.commit-build-statuses .octicon-primitive-dot{width:10px}.commit-build-statuses .dropdown-menu{min-width:400px;max-width:500px;padding-top:0;padding-bottom:0}.commit-build-statuses .dropdown-menu .merge-status-list{max-height:170px;border-bottom:0}.commit-build-statuses .dropdown-menu-e,.commit-build-statuses .dropdown-menu-w{top:-11px}.commit-build-statuses .merge-status-item:last-child{border-radius:0 0 2px 2px}.dropdown-signed-commit .dropdown-menu{width:260px;margin-top:8px;font-size:13px;line-height:1.4;white-space:normal}.dropdown-signed-commit .dropdown-menu:after{border-bottom-color:#f6f8fa}.dropdown-signed-commit .dropdown-menu-w{top:-28px;margin-top:0}.dropdown-signed-commit .dropdown-menu-w:after{border-bottom-color:transparent;border-left-color:#f6f8fa}.signed-commit-header{padding:12px;line-height:1.3;white-space:normal;border-collapse:initial;background-color:#f6f8fa;border-bottom:1px solid #e1e4e8;border-top-left-radius:3px;border-top-right-radius:3px}.signed-commit-header .octicon-verified{color:#28a745}.signed-commit-header .octicon-unverified{color:#959da5}.signed-commit-signer{padding-right:12px;padding-left:12px;margin-top:12px;border-collapse:initial}.signed-commit-footer{padding:12px;font-size:12px;line-height:1.5}.signed-commit-cert-info{margin-bottom:6px}.signed-commit-cert-info td{vertical-align:top}.signed-commit-cert-info td:first-child{width:44px;padding-right:12px}.signed-commit-badge{display:inline-block;padding:1px 4px;font-size:10px;color:#586069;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none;border:1px solid #e1e4e8;border-radius:2px}.signed-commit-badge:hover{text-decoration:none;border-color:#c6cbd1}.signed-commit-badge.verified{color:#22863a}.signed-commit-badge.verified:hover{border-color:#28a745}.signed-commit-badge-small{margin-top:-2px;margin-right:3px}.signed-commit-badge-medium{padding:3px 8px;font-size:12px;border-radius:3px}.signed-commit-badge-large{padding:6px 12px;margin-top:2px;margin-right:9px;font-size:13px;line-height:20px;border-radius:3px}.signed-commit-verified-label{color:#1e7e34;white-space:nowrap}.signed-commit-signer-name{font-size:14px;text-align:left}.signed-commit-signer-name .signer{display:block;font-weight:600;color:#24292e}.table-of-contents{margin:15px 0}.table-of-contents li{padding:7px 0;list-style-type:none}.table-of-contents li+li{border-top:1px solid #eaecef}.table-of-contents li>.octicon{margin-right:3px}.table-of-contents .toc-diff-stats{padding-left:20px;line-height:26px}.table-of-contents .toc-diff-stats .octicon{float:left;margin-top:3px;margin-left:-20px;color:#c6cbd1}.table-of-contents .toc-diff-stats .btn-link{font-weight:600}.table-of-contents .toc-diff-stats+.content{padding-top:5px}.table-of-contents .octicon-diff-removed{color:#cb2431}.table-of-contents .octicon-diff-renamed{color:#6a737d}.table-of-contents .octicon-diff-modified{color:#dbab09}.table-of-contents .octicon-diff-added{color:#28a745}.toc-select .select-menu-modal{width:420px}.toc-select .select-menu-item .css-truncate{max-width:290px}.toc-select .select-menu-item-heading,.toc-select .select-menu-item-text{color:#24292e}.toc-select .select-menu-item-icon.octicon-diff-removed{color:#cb2431}.toc-select .select-menu-item-icon.octicon-diff-renamed{color:#6a737d}.toc-select .select-menu-item-icon.octicon-diff-modified{color:#dbab09}.toc-select .select-menu-item-icon.octicon-diff-added{color:#28a745}.toc-select .navigation-focus .diffstat,.toc-select .navigation-focus .octicon-diff-added,.toc-select .navigation-focus .octicon-diff-modified,.toc-select .navigation-focus .octicon-diff-removed,.toc-select .navigation-focus .octicon-diff-renamed,.toc-select .navigation-focus .select-menu-item-heading,.toc-select .navigation-focus .select-menu-item-text,.toc-select .navigation-focus .text-gray-light,.toc-select .navigation-focus .text-green,.toc-select .navigation-focus .text-red,.toc-select[aria-selected=true] .diffstat,.toc-select[aria-selected=true] .octicon-diff-added,.toc-select[aria-selected=true] .octicon-diff-modified,.toc-select[aria-selected=true] .octicon-diff-removed,.toc-select[aria-selected=true] .octicon-diff-renamed,.toc-select[aria-selected=true] .select-menu-item-heading,.toc-select[aria-selected=true] .select-menu-item-text,.toc-select[aria-selected=true] .text-gray-light,.toc-select[aria-selected=true] .text-green,.toc-select[aria-selected=true] .text-red,.toc-select [role^=menuitem]:focus .diffstat,.toc-select [role^=menuitem]:focus .octicon-diff-added,.toc-select [role^=menuitem]:focus .octicon-diff-modified,.toc-select [role^=menuitem]:focus .octicon-diff-removed,.toc-select [role^=menuitem]:focus .octicon-diff-renamed,.toc-select [role^=menuitem]:focus .select-menu-item-heading,.toc-select [role^=menuitem]:focus .select-menu-item-text,.toc-select [role^=menuitem]:focus .text-gray-light,.toc-select [role^=menuitem]:focus .text-green,.toc-select [role^=menuitem]:focus .text-red,.toc-select [role^=menuitem]:hover .diffstat,.toc-select [role^=menuitem]:hover .octicon-diff-added,.toc-select [role^=menuitem]:hover .octicon-diff-modified,.toc-select [role^=menuitem]:hover .octicon-diff-removed,.toc-select [role^=menuitem]:hover .octicon-diff-renamed,.toc-select [role^=menuitem]:hover .select-menu-item-heading,.toc-select [role^=menuitem]:hover .select-menu-item-text,.toc-select [role^=menuitem]:hover .text-gray-light,.toc-select [role^=menuitem]:hover .text-green,.toc-select [role^=menuitem]:hover .text-red{color:#fff!important}.select-menu-item+.semantic-toc-file,.semantic-toc-symbol:not(.last-visible){overflow:visible!important}.select-menu-item+.semantic-toc-file:after,.semantic-toc-symbol:not(.last-visible):after{position:absolute;left:0;width:100%;height:16px;pointer-events:none;content:" ";background-color:#f6f8fa;border-color:#e1e4e8;border-style:solid;border-width:1px 0}.semantic-toc-symbol:not(.last-visible){margin-bottom:16px}.semantic-toc-symbol:not(.last-visible):after{bottom:-18px}.select-menu-item+.semantic-toc-file{margin-top:16px}.select-menu-item+.semantic-toc-file:after{top:-18px}.filterable-active .select-menu-item-nested{padding-left:16px!important;margin-left:0}.filterable-active .semantic-toc-symbol{margin-bottom:0}.filterable-active .semantic-toc-file{margin-top:0}.filterable-active .semantic-toc-file:after,.filterable-active .semantic-toc-symbol:after{display:none}.conversation-list-heading{height:0;margin:35px 0 10px;font-size:16px;font-weight:400;color:#6a737d;text-align:center;border-bottom:1px solid #dfe2e5}.conversation-list-heading .inner{position:relative;top:-10px;display:inline-block;padding:0 5px;background:#fff}.simple-conversation-list{margin:15px 0;font-size:13px;color:#6a737d}.simple-conversation-list>li{padding:11px 0 8px;margin:0;list-style-type:none;border-top:1px solid #f6f8fa}.simple-conversation-list>li:first-child{border-top:0}.simple-conversation-list>li .title{font-weight:600}.simple-conversation-list>li .num{color:#6a737d}.simple-conversation-list>li .state{padding-top:2px;padding-bottom:2px;margin-top:-3px;margin-right:3px}.simple-conversation-list>li .meta{float:right;margin-left:10px}.simple-conversation-list.varied-states>li .state{float:left;width:80px;margin-left:-90px}.copyable-terminal{position:relative;padding:10px 55px 10px 10px;background-color:#f6f8fa;border-radius:3px}.copyable-terminal-content{overflow:auto}.copyable-terminal-button{position:absolute;top:5px;right:5px}.copyable-terminal-button .zeroclipboard-button{float:right}.copyable-terminal-button .zeroclipboard-button .octicon{padding-left:1px;margin:0 auto}remote-input[loading] .form-control{padding-right:30px;background-image:url(/images/spinners/octocat-spinner-32.gif);background-size:16px}remote-input,tab-container,text-expander{display:block}.Details--on .Details-content--shown,.Details-element:not([open])>summary .Details-content--open,.Details-element[open]>summary .Details-content--closed,.Details:not(.Details--on) .Details-content--hidden{display:none!important}.details-overlay[open]>.dropdown-item:hover{color:inherit;background:#fff}details-menu{display:block}.blob-wrapper{overflow-x:auto;overflow-y:hidden}.page-blob.height-full .blob-wrapper{overflow-y:auto}.page-edit-blob.height-full .CodeMirror{height:300px}.page-edit-blob.height-full .CodeMirror,.page-edit-blob.height-full .CodeMirror-scroll{display:flex;flex-direction:column;flex:1 1 auto}.blob-wrapper-embedded{max-height:240px;overflow-y:auto}.diff-table{width:100%;border-collapse:initial}.diff-table .line-comments{padding:10px;vertical-align:top;border-top:1px solid #e1e4e8}.diff-table .line-comments:first-child+.empty-cell{border-left-width:1px}.diff-table tr:not(:last-child) .line-comments{border-top:1px solid #e1e4e8;border-bottom:1px solid #e1e4e8}.blob-num{width:1%;min-width:50px;padding-right:10px;padding-left:10px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;line-height:20px;color:rgba(27,31,35,.3);text-align:right;white-space:nowrap;vertical-align:top;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blob-num:hover{color:rgba(27,31,35,.6)}.blob-num:before{content:attr(data-line-number)}.blob-num.non-expandable{cursor:default}.blob-num.non-expandable:hover{color:rgba(27,31,35,.3)}.blob-code{position:relative;padding-right:10px;padding-left:10px;line-height:20px;vertical-align:top}.blob-code-inner{overflow:visible;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;color:#24292e;word-wrap:normal;white-space:pre}.blob-code-inner .x-first{border-top-left-radius:.2em;border-bottom-left-radius:.2em}.blob-code-inner .x-last{border-top-right-radius:.2em;border-bottom-right-radius:.2em}.blob-code-inner.highlighted,.blob-code-inner .highlighted{background-color:#fffbdd}.blob-code-marker:before{padding-right:8px;content:attr(data-code-marker)}.blob-code-marker-cell{width:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blob-code-marker-cell:before{display:block;width:0;height:0;content:attr(data-code-marker)}.blob-code-marker-addition:before{content:"+ "}.blob-code-marker-deletion:before{content:"- "}.blob-code-marker-context:before{content:" "}.soft-wrap .diff-table{table-layout:fixed}.soft-wrap .blob-code{padding-left:18px;text-indent:-7px}.soft-wrap .blob-code-inner{word-wrap:break-word;white-space:pre-wrap}.soft-wrap .no-nl-marker{display:none}.soft-wrap .add-line-comment{margin-left:-28px}.blob-code-hunk,.blob-num-expandable,.blob-num-hunk{color:rgba(27,31,35,.7);vertical-align:middle}.blob-num-expandable,.blob-num-hunk{background-color:#dbedff}.blob-code-hunk{padding-top:4px;padding-bottom:4px;background-color:#f1f8ff;border-width:1px 0}.blob-expanded .blob-code,.blob-expanded .blob-num{background-color:#fafbfc}.blob-expanded+tr:not(.blob-expanded) .blob-code,.blob-expanded+tr:not(.blob-expanded) .blob-num,.blob-expanded .blob-num-hunk,tr:not(.blob-expanded)+.blob-expanded .blob-code,tr:not(.blob-expanded)+.blob-expanded .blob-num{border-top:1px solid #eaecef}.blob-num-expandable{padding:0;font-size:12px;text-align:center}.blob-num-expandable .diff-expander{display:block;width:auto;height:auto;padding:4px 11px 4px 10px;margin-right:-1px;color:#586069;cursor:pointer}.blob-num-expandable .diff-expander .octicon{vertical-align:top}.blob-num-expandable .directional-expander{display:block;width:auto;height:auto;margin-right:-1px;color:#586069;cursor:pointer}.blob-num-expandable .single-expander{padding-top:4px;padding-bottom:4px}.blob-num-expandable .diff-expander:hover,.blob-num-expandable .directional-expander:hover{color:#fff;text-shadow:none;background-color:#0366d6;border-color:#0366d6}.blob-code-addition{background-color:#e6ffed}.blob-code-addition .x{color:#24292e;background-color:#acf2bd}.blob-num-addition{background-color:#cdffd8;border-color:#bef5cb}.blob-code-deletion{background-color:#ffeef0}.blob-code-deletion .x{color:#24292e;background-color:#fdb8c0}.blob-num-deletion{background-color:#ffdce0;border-color:#fdaeb7}.is-selecting,.is-selecting .blob-num{cursor:ns-resize!important}.is-selecting .add-line-comment,.is-selecting a{pointer-events:none;cursor:ns-resize!important}.is-selecting .is-hovered .add-line-comment{opacity:0}.is-selecting.file-diff-split,.is-selecting.file-diff-split .blob-num{cursor:nwse-resize!important}.is-selecting.file-diff-split .add-line-comment,.is-selecting.file-diff-split .empty-cell,.is-selecting.file-diff-split a{pointer-events:none;cursor:nwse-resize!important}.selected-line{position:relative}.selected-line:after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;box-sizing:border-box;pointer-events:none;content:"";background:rgba(255,223,93,.2);mix-blend-mode:multiply}.selected-line.selected-line-top:after{border-top:1px solid #ffd33d}.selected-line.selected-line-bottom:after{border-bottom:1px solid #ffd33d}.selected-line.selected-line-left:after,.selected-line:first-child:after{border-left:1px solid #ffd33d}.selected-line.selected-line-right:after,.selected-line:last-child:after{border-right:1px solid #ffd33d}.is-commenting .selected-line.blob-code:before{position:absolute;top:0;left:-1px;display:block;width:4px;height:100%;content:"";background:#0366d6}.add-line-comment{position:relative;z-index:5;float:left;width:22px;height:22px;margin:-2px -10px -2px -20px;line-height:21px;color:#fff;text-align:center;text-indent:0;cursor:pointer;background-color:#0366d6;background-image:linear-gradient(#0372ef,#0366d6);border-radius:3px;box-shadow:0 1px 4px rgba(27,31,35,.15);opacity:0;transition:transform .1s ease-in-out;transform:scale(.8)}.add-line-comment:hover{transform:scale(1)}.add-line-comment:focus,.is-hovered .add-line-comment{opacity:1}.add-line-comment .octicon{vertical-align:text-top;pointer-events:none}.add-line-comment.octicon-check{background:#333;opacity:1}.inline-comment-form{border:1px solid #dfe2e5;border-radius:3px}.inline-review-comment{margin-top:0!important;margin-bottom:10px!important}.inline-review-comment .gc:first-child+tr .blob-code,.inline-review-comment .gc:first-child+tr .blob-num{padding-top:5px}.inline-review-comment tr:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.inline-review-comment tr:last-child .blob-code,.inline-review-comment tr:last-child .blob-num{padding-bottom:8px}.inline-review-comment tr:last-child .blob-code:first-child,.inline-review-comment tr:last-child .blob-num:first-child{border-bottom-left-radius:2px}.inline-review-comment tr:last-child .blob-code:last-child,.inline-review-comment tr:last-child .blob-num:last-child{border-bottom-right-radius:2px}.timeline-inline-comments{width:100%;table-layout:fixed}.show-inline-notes .inline-comments,.timeline-inline-comments .inline-comments{display:table-row}.inline-comments,.inline-comments.is-collapsed{display:none}.inline-comments .line-comments.is-collapsed{visibility:hidden}.inline-comments .line-comments+.blob-num{border-left-width:1px}.inline-comments .timeline-comment{margin-bottom:10px}.comment-holder,.inline-comments .inline-comment-form,.inline-comments .inline-comment-form-container{max-width:780px}.empty-cell+.line-comments,.line-comments+.line-comments{border-left:1px solid #eaecef}.inline-comment-form-container .inline-comment-form,.inline-comment-form-container.open .inline-comment-form-actions{display:none}.inline-comment-form-container .inline-comment-form-actions,.inline-comment-form-container.open .inline-comment-form{display:block}body.full-width .container,body.full-width .container-lg,body.split-diff .container,body.split-diff .container-lg{width:100%;max-width:none;padding-right:20px;padding-left:20px}body.full-width .repository-content,body.split-diff .repository-content{width:100%}body.full-width .new-pr-form,body.split-diff .new-pr-form{max-width:980px}.file-diff-split{table-layout:fixed}.file-diff-split .blob-code+.blob-num{border-left:1px solid #f6f8fa}.file-diff-split .blob-code-inner{word-wrap:break-word;white-space:pre-wrap}.file-diff-split .empty-cell{cursor:default;background-color:#fafbfc;border-right-color:#eaecef}@media (max-width:1280px){.file-diff-split .write-selected .comment-form-head{margin-bottom:48px!important}.file-diff-split markdown-toolbar{position:absolute;right:8px;bottom:-40px}}.submodule-diff-stats .octicon-diff-removed{color:#cb2431}.submodule-diff-stats .octicon-diff-renamed{color:#677a85}.submodule-diff-stats .octicon-diff-modified{color:#d0b44c}.submodule-diff-stats .octicon-diff-added{color:#28a745}.BlobToolbar{left:-17px}.BlobToolbar-dropdown{margin-left:-2px}.code-navigation-banner{background:linear-gradient(180deg,rgba(242,248,254,0),rgba(242,248,254,.47))}.code-navigation-banner .code-navigation-banner-illo{background-image:url(/images/modules/blob/code-navigation-banner-illo.svg);background-repeat:no-repeat;background-position:50%}.pl-token.active,.pl-token:hover{cursor:pointer;background:#ffea7f}.diffstat{font-size:12px;font-weight:600;color:#586069;white-space:nowrap;cursor:default}.block-diff-added,.block-diff-deleted,.block-diff-neutral{display:inline-block;width:8px;height:8px;margin-left:1px}.block-diff-deleted,.text-red .block-diff-neutral{background-color:#cb2431}.block-diff-added,.block-diff-neutral{background-color:#2cbe4e}.block-diff-neutral{background-color:#d1d5da}.discussion-timeline{position:relative;float:left}.discussion-timeline:before{position:absolute;top:0;bottom:0;left:72px;z-index:-1;display:block;width:2px;content:"";background-color:#e1e4e8}.discussion-timeline.team-discussion-timeline:before{bottom:24px;left:20px;z-index:auto;background-color:#e1e4e8}.discussion-timeline.team-discussion-timeline .blankslate{background:#fff}.discussion-sidebar-item{padding-top:16px;font-size:12px;color:#586069}.discussion-sidebar-item .btn .octicon{margin-right:0}.discussion-sidebar-item .muted-icon{color:#959da5}.discussion-sidebar-item .muted-icon:hover{color:#0366d6;text-decoration:none;cursor:pointer}.discussion-sidebar-item+.discussion-sidebar-item{margin-top:16px;border-top:1px solid #e1e4e8}.discussion-sidebar-item .select-menu{position:relative}.discussion-sidebar-item .select-menu-modal-holder{top:25px;right:-1px;left:auto}.discussion-sidebar-heading{margin-bottom:8px;font-size:12px;color:#586069}.discussion-sidebar-toggle{padding:4px 0;margin:-4px 0 4px}.discussion-sidebar-toggle .octicon{float:right;color:#959da5}.discussion-sidebar-toggle:hover{color:#0366d6;text-decoration:none;cursor:pointer}.discussion-sidebar-toggle:hover .octicon{color:inherit}button.discussion-sidebar-toggle{display:block;width:100%;font-weight:600;text-align:left;background:none;border:0}.sidebar-progress-bar .progress-bar{height:8px;margin-bottom:2px;border-radius:2px}.sidebar-assignee .css-truncate-target{max-width:110px}.sidebar-assignee .assignee{font-weight:600;color:#586069;vertical-align:middle}.sidebar-assignee .assignee:hover{color:#0366d6;text-decoration:none}.sidebar-assignee .reviewers-status-icon{width:14px}.sidebar-assignee .octicon{margin-top:2px}.sidebar-notifications{position:relative}.sidebar-notifications .thread-subscription-status{padding:0;margin:0;border:0}.sidebar-notifications .thread-subscription-status .thread-subscribe-form{display:block}.sidebar-notifications .thread-subscription-status .octicon-radio-tower{display:none}.sidebar-notifications .thread-subscription-status .reason{padding:0;margin:4px 0 0}.sidebar-notifications .thread-subscription-status .btn-sm{display:block;width:100%}.participation .participant-avatar{float:left;margin:4px 0 0 4px}.participation a{color:#586069}.participation a:hover{color:#0366d6;text-decoration:none}.participation-avatars{margin-left:-4px}.participation-avatars:before{display:table;content:""}.participation-avatars:after{display:table;clear:both;content:""}.participation-more{float:left;margin:8px 0 0}.inline-comment-form .form-actions,.timeline-new-comment .form-actions{padding:0 8px 8px}.inline-comment-form:before{display:table;content:""}.inline-comment-form:after{display:table;clear:both;content:""}.inline-comment-form .tabnav-tabs{display:inline-block}.inline-comment-form .form-actions{float:right}.gh-header-actions{float:right;margin-top:4px}.gh-header-actions .btn-sm{float:left;margin-left:4px}.gh-header-actions .btn-sm .octicon{margin-right:0}.gh-header{background-color:#fff}.gh-header .gh-header-sticky{height:1px}.gh-header .gh-header-sticky .meta{font-size:12px}.gh-header .gh-header-sticky .gh-header-shadow,.gh-header .gh-header-sticky .sticky-content{display:none}.gh-header .gh-header-sticky.is-stuck{z-index:110;height:60px}.gh-header .gh-header-sticky.is-stuck .sticky-content{display:block}.gh-header .gh-header-sticky.is-stuck .css-truncate-target{max-width:150px}.gh-header .gh-header-sticky.is-stuck+.gh-header-shadow{position:fixed;top:0;right:0;left:0;z-index:109;display:block;height:60px;content:"";background-color:#fff;border-bottom:1px solid rgba(0,0,0,.15)}.gh-header .gh-header-edit{display:none}.gh-header .gh-header-meta .base-ref{display:inline-block}.gh-header .gh-header-meta .commit-ref-dropdown,.gh-header.open .gh-header-show{display:none}.gh-header.open .gh-header-edit{display:block}.gh-header.open .gh-header-meta .base-ref{display:none}.gh-header.open .gh-header-meta .commit-ref-dropdown{display:inline-block;margin-top:-4px;vertical-align:top}.gh-header-title{margin-right:150px;margin-bottom:0;font-weight:400;line-height:1.125;word-wrap:break-word}.gh-header-no-access .gh-header-title{margin-right:0}.gh-header-number{font-weight:300;color:#6a737d}.gh-header-meta{padding-bottom:16px;margin-top:8px;font-size:14px;color:#586069;border-bottom:1px solid #e1e4e8}.gh-header.issue .gh-header-meta{margin-bottom:16px}.gh-header.pull .gh-header-meta{padding-bottom:0;border-bottom:0}.gh-header-meta .TableObject-item--primary{word-wrap:break-word;white-space:normal}.gh-header-meta .TableObject-item--primary .commit-ref .css-truncate-target,.gh-header-meta .TableObject-item--primary .commit-ref:hover .css-truncate-target{max-width:780px!important}.gh-header-meta .State{margin-right:8px}.gh-header-meta .avatar{float:left;margin-top:-4px;margin-right:4px}.tabnav-pr{margin:16px 0;border-color:#e1e4e8}.tabnav-pr .tabnav-tab{position:relative;padding:8px 16px;font-size:14px;color:#586069}.tabnav-pr .tabnav-tab.selected{color:#24292e;border-color:#e1e4e8}.timeline-comment-wrapper{position:relative;padding-left:56px;margin-top:16px;margin-bottom:16px;border-top:2px solid #fff;border-bottom:2px solid #fff}.timeline-comment-avatar{float:left;margin-left:-56px;border-radius:3px}.timeline-comment-avatar .avatar{width:40px;height:40px}.timeline-comment-avatar .avatar-child{width:20px;height:20px}.timeline-comment{position:relative;color:#24292e;background-color:#fff;border:1px solid #d1d5da;border-radius:3px}.timeline-comment.will-transition-once{transition:border-color .65s ease-in-out}.timeline-comment.will-transition-once .timeline-comment-header{transition:background-color .65s ease,border-bottom-color .65s ease-in-out}.timeline-comment.will-transition-once .timeline-comment-label{transition:border-color .65s ease-in-out}.timeline-comment.will-transition-once:after,.timeline-comment.will-transition-once:before{transition:border-right-color .65s ease-in-out}.timeline-comment.current-user{border-color:#c0d3eb}.timeline-comment.current-user .timeline-comment-header{background-color:#f1f8ff;border-bottom-color:#c0d3eb}.timeline-comment.current-user .timeline-comment-label{border-color:#c0d3eb}.timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav{color:#c0d3eb;background-color:#f1f8ff;border-bottom-color:#c0d3eb}.timeline-comment.is-internal,.timeline-comment.unread-item{border-color:#e5d999}.timeline-comment.is-internal .timeline-comment-header,.timeline-comment.unread-item .timeline-comment-header{background-color:#fffdef;border-bottom-color:#e5d999}.timeline-comment.is-internal .timeline-comment-label,.timeline-comment.unread-item .timeline-comment-label{border-color:#e5d999}.timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav,.timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav{color:#e5d999;background-color:#fffdef;border-bottom-color:#e5d999}.timeline-comment:empty{display:none}.timeline-comment .comment+.comment{border-top:1px solid #e1e4e8}.timeline-comment .comment+.comment:after,.timeline-comment .comment+.comment:before{display:none}.timeline-comment .comment+.comment .timeline-comment-header{border-top-left-radius:0;border-top-right-radius:0}.timeline-comment--caret:after,.timeline-comment--caret:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#f6f8fa}.timeline-comment--caret:before{border-width:8px;border-right-color:#d1d5da}.is-pending .timeline-comment--caret:after,.is-pending .timeline-comment--caret:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.is-pending .timeline-comment--caret:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#fffdef}.is-pending .timeline-comment--caret:before{border-width:8px;border-right-color:#d9d0a5}.timeline-comment--caret.current-user:after,.timeline-comment--caret.current-user:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret.current-user:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#f1f8ff}.timeline-comment--caret.current-user:before{border-width:8px;border-right-color:#c0d3eb}.timeline-comment--caret.is-internal:after,.timeline-comment--caret.is-internal:before,.timeline-comment--caret.unread-item:after,.timeline-comment--caret.unread-item:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret.is-internal:after,.timeline-comment--caret.unread-item:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#fffdef}.timeline-comment--caret.is-internal:before,.timeline-comment--caret.unread-item:before{border-width:8px;border-right-color:#e5d999}.timeline-comment--caret.timeline-comment--caret-nw:after,.timeline-comment--caret.timeline-comment--caret-nw:before{transform:rotate(90deg)}.timeline-comment--caret.timeline-comment--caret-nw:before{top:-16px;left:8px}.timeline-comment--caret.timeline-comment--caret-nw:after{top:-15px;left:7px}.page-responsive .timeline-comment--caret:after,.page-responsive .timeline-comment--caret:before{display:none}@media (min-width:768px){.page-responsive .timeline-comment--caret:after,.page-responsive .timeline-comment--caret:before{display:block}}:target .timeline-comment--caret:before{filter:drop-shadow(-.28em 0 0 #c8e1ff);border-right-color:#2188ff}:target .timeline-comment{border-color:#2188ff;box-shadow:0 0 0 .2em #c8e1ff}.review-comment:target{border:1px solid #2188ff;border-radius:3px;box-shadow:0 0 0 .2em #c8e1ff}.timeline-comment-header{display:flex;align-items:center;padding-right:16px;padding-left:16px;color:#586069;flex-direction:row-reverse;background-color:#f6f8fa;border-bottom:1px solid #d1d5da;border-top-left-radius:3px;border-top-right-radius:3px}.timeline-comment-header:only-child{border-bottom:0;border-radius:3px}.timeline-comment-header .author{color:#586069}.timeline-comment-header code{word-break:break-all}.comment-type-icon{color:inherit}.timeline-comment-label{float:right;padding:2px 4px;margin-left:8px;font-size:12px;cursor:default;border:1px solid rgba(27,31,35,.15);border-radius:3px}.timeline-comment-label-spammy{color:#cb2431;border-color:#d73a49}.timeline-comment-header-text{width:1%;padding-top:8px;padding-bottom:8px;margin-bottom:1px;flex:1 1 auto}.timeline-comment-header-text code a{color:#586069}.timeline-comment-actions{float:right;margin-left:8px}.timeline-comment-actions .show-more-popover.dropdown-menu-sw{right:-6px;margin-top:-5px}.timeline-comment-action{display:inline-block;padding:8px 4px;color:#6a737d}.timeline-comment-action:focus,.timeline-comment-action:hover{color:#0366d6;text-decoration:none;opacity:1}.timeline-comment-action .octicon-check{height:16px}.timeline-comment-action.disabled{color:#d1d5da;cursor:default}.timeline-comment-action.disabled:hover{color:#d1d5da}.compare-tab-comments .timeline-comment-actions{display:none}.timeline-new-comment{max-width:780px;margin-bottom:0}.timeline-new-comment .comment-form-head{margin-bottom:8px}.timeline-new-comment .previewable-comment-form .comment-body{padding:4px 4px 16px;border-bottom:1px solid #e1e4e8}.discussion-item-icon{float:left;width:32px;height:32px;margin-top:-5px;margin-left:-39px;line-height:28px;color:#24292e;text-align:center;background-color:#e1e4e8;border:2px solid #fff;border-radius:50%}.discussion-item-header{color:#586069;word-wrap:break-word}.discussion-item-header .discussion-item-private{vertical-align:-1px}.discussion-item-header:last-child{padding-bottom:0}.discussion-item-header .commit-ref{font-size:85%;vertical-align:initial}.discussion-item-header .btn-outline{float:right;padding:4px 8px;margin-top:-4px;margin-left:8px}.commit-message .issue-link{font-weight:600;color:#24292e}.commit-message .issue-link:hover{color:#0366d6}.discussion-item-private{color:rgba(27,31,35,.7)}.previewable-comment-form .comment-form-head.tabnav{padding:8px 8px 0;background:#f6f8fa;border-radius:3px 3px 0 0}.page-responsive .previewable-comment-form .comment-form-head.tabnav,.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting{background:#fff}@media (min-width:1012px){.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting{background:transparent}}@media (min-width:768px){.page-responsive .previewable-comment-form .comment-form-head.tabnav{background:#f6f8fa}}.previewable-comment-form .comment{border:0}.previewable-comment-form .comment-body{padding:4px 4px 16px;background-color:initial;border-bottom:1px solid #e1e4e8}.previewable-comment-form .timeline-comment .timeline-comment-actions{display:none}.new-discussion-timeline .composer .timeline-comment{margin-bottom:8px}.new-discussion-timeline .composer .timeline-comment:after{border-right-color:#fff}.new-discussion-timeline .composer .comment-form-head.tabnav{padding-top:0;background-color:#fff}.composer.composer-responsive{padding-left:0}.composer.composer-responsive .discussion-topic-header{padding:0}.composer.composer-responsive .timeline-comment{border:0}.composer.composer-responsive .timeline-comment:after,.composer.composer-responsive .timeline-comment:before{display:none}.composer.composer-responsive .previewable-comment-form .write-content{margin:0}@media (min-width:768px){.composer.composer-responsive{padding-left:60px}.composer.composer-responsive .timeline-comment{border:1px solid #d1d5da}.composer.composer-responsive .timeline-comment:after,.composer.composer-responsive .timeline-comment:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.composer.composer-responsive .timeline-comment:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#f6f8fa}.composer.composer-responsive .timeline-comment:before{border-width:8px;border-right-color:#d1d5da}}.discussion-timeline-actions{background-color:#fff;border-top:2px solid #e1e4e8}.discussion-timeline-actions .merge-pr{padding-top:0;border-top:0}.discussion-timeline-actions .thread-subscription-status{margin-top:16px}.discussion-timeline-actions .thread-subscription-status .octicon-radio-tower{display:none}.pagination-loader-container{background-color:#fff;background-image:url(/images/modules/pulls/progressive-disclosure-line@2x.png);background-repeat:repeat-x;background-position:0;background-size:32px}.progressive-timeline-loader-container{padding-left:64px}.deployment-meta{font-size:12px;color:#586069}.deployment-meta .octicon{color:#959da5}.deployment-status-label{display:inline-block;padding:1px 4px;margin-top:-2px;margin-right:4px;font-size:12px;color:#6a737d;vertical-align:middle;background:none;border:1px solid #e1e4e8;border-radius:2px}.deployment-status-label.is-error,.deployment-status-label.is-failure{color:#cb2431;text-align:center}.deployment-status-label.is-active{color:#28a745}.deployment-status-label.is-in_progress,.deployment-status-label.is-pending,.deployment-status-label.is-queued{color:#b08800}:target .timeline-comment-group .timeline-comment{border-color:#2188ff;box-shadow:0 0 0 .2em #c8e1ff}.is-pending .form-actions{margin-right:8px;margin-bottom:4px}.is-pending .comment-form-head.tabnav,.is-pending .file,.is-pending .file-header,.is-pending .tabnav-tab.selected{border-color:#d9d0a5}.is-pending .comment-form-head.tabnav,.is-pending .file-header{background-color:#fffdef}.discussion-item-review-comment{border-bottom:1px solid #e1e4e8}.discussion-item-review-comment:last-child{border-bottom:0}.discussion-item-icon-gray{background-color:#e1e4e8!important}g-emoji{font-family:Apple Color Emoji,Segoe UI,Segoe UI Emoji,Segoe UI Symbol;font-size:1.2em;font-style:normal!important;font-weight:400;line-height:20px;vertical-align:middle}g-emoji img{width:1em;height:1em}body.emoji-size-boost g-emoji{margin-right:3px}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){body.emoji-size-boost g-emoji{margin-right:0;font-size:1.4em}}.emoji-icon{width:20px;background-repeat:no-repeat;background-size:20px 20px}.emoji-icon,.emoji-result{display:inline-block;height:20px;vertical-align:middle}.emoji-result{font-size:18px;font-weight:400}.footer-octicon{color:#c6cbd1}.footer-octicon:hover{color:#959da5}.gollum-editor .comment-form-head.tabnav{border:1px solid #dfe2e5}.gollum-editor .gollum-editor-body{height:390px;resize:vertical}.active .gollum-editor-function-buttons{display:block!important}include-fragment,poll-include-fragment{display:block}.kb-konami-dialog{min-width:720px;background:none;border:0;outline:none;box-shadow:none}.kb-konami-dialog .Box-btn-octicon{display:flex;justify-content:center;padding:4px 8px;color:#fff;border:1px solid #fff;border-radius:3px;opacity:.6}.kb-konami-dialog .Box-btn-octicon:before{display:block;margin-right:4px;font-size:11px;letter-spacing:1px;content:"ESC"}.kb-konami-dialog .octocat-spinner{display:none}.konami{padding:32px 0;overflow:hidden;background:none}.konami,.konami .key{position:relative;text-align:center}.konami .key{display:inline-block;width:36px;height:36px;box-sizing:border-box;padding:3px 8px;margin:2px 0 6px;color:#fff;background:rgba(36,41,46,.13);border:1px dashed hsla(0,0%,100%,.38);border-bottom:4px solid #b8b6b6;border-radius:4px;box-shadow:0 1px 1px rgba(27,31,35,.1)}.konami-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:100;background:none}.konami-overlay .dot{position:absolute;z-index:100;color:#0e0}.konami .key+.key{margin-left:12px}.konami .key.complete{color:#fff;background:none;border:solid #fff;border-width:1px 1px 4px}.konami .key.active{top:-4px;box-sizing:border-box;padding:4px 8px;color:#24292e;background:#40e37a;border:0;border-bottom:4px solid #00a63e;border-radius:4px;animation-name:konami-color;animation-duration:1s;animation-iteration-count:infinite}.konami .key.down.active{position:relative;top:2px;height:34px;box-sizing:border-box;margin-bottom:6px;line-height:24px;color:#fff;background:#5155e0;border:0;border-bottom:2px solid #3135d6;border-radius:4px}@keyframes konami-color{0%{background:#c1fa9c;border-bottom:2px solid #a2f76b}50%{background:#40e37a;border-bottom:2px solid #00cc4c}to{background:#40c4d7;border-bottom:2px solid #1eb4c9}}.konami .enter-link{color:#24292e;letter-spacing:1px;background:#40e37a;border:0;transition:all .12s linear;animation:konami-appear 5s;animation-name:konami-enter-link;animation-duration:1s;animation-iteration-count:infinite}.konami .enter-link:hover{color:#fff;background:none;border:1px solid #40e37a;animation-name:none}@keyframes konami-enter-link{0%{background:#c1fa9c}50%{background:#40e37a}to{background:#40c4d7}}.secret-edit-mode{color:1px solid #40e37a;border:1px solid #40e37a}.IssueLabel{height:20px;padding:.15em 4px;font-size:12px;font-weight:600;line-height:15px;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(27,31,35,.12)}.IssueLabel .g-emoji{position:relative;top:-.05em;display:inline-block;font-size:1em;line-height:1}.IssueLabel:hover{text-decoration:none}.IssueLabel--big{padding:4px 8px;font-size:14px;font-weight:600;border-radius:3px;transition:opacity .2s linear}.IssueLabel--big .g-emoji{display:inline-block;margin-top:-1px}.IssueLabel--big:hover{opacity:.85}.list-group-item{position:relative;display:block;padding:8px 10px 10px 40px;margin-bottom:-1px;border:1px solid #e1e4e8}.list-group-item:after,.list-group-item:before{display:table;content:""}.list-group-item:after{clear:both}.list-group-item a:hover{text-decoration:none}.list-group-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.list-group-item.closed{background-color:#fafbfc}.list-group-item.selectable{padding-left:60px}.list-group-item.selected{background-color:#fffdef}.list-group-item.navigation-focus,.list-group-item[aria-selected=true]{background-color:#f1f8ff}.list-group-item .list-group-item-summary a{color:#586069}.list-group-item .list-group-item-summary a.quiet{color:#6a737d}.list-group-item .status{position:relative;top:2px;float:right;margin-right:-9px}.list-group-item .type-icon{position:relative;top:1px;width:16px;text-align:center;vertical-align:middle}.list-group-item .assignee{float:right}.list-group-item .assignee img{display:block;border-radius:2px}.list-group-item .labels{top:-2px;display:inline-block;margin-bottom:-2px;margin-left:4px}.list-group-item-name{margin:0 60px 2px 0;font-size:15px;line-height:1.3;word-wrap:break-word}.list-group-item-name .type-icon{float:left;margin-top:1px;margin-left:-24px}.list-group-item-link{color:#24292e}.draft.octicon{color:#6a737d}.closed.octicon,.reverted.octicon{color:#cb2431}.open.octicon{color:#28a745}.merged.octicon{color:#6f42c1}.list-group-item-summary{margin-top:2px}.list-group-item-summary p{margin:0 0 5px}.standalone .list-group-item-summary p{margin-bottom:0}.animated-ellipsis-container{display:inline-block;width:12px;height:12px;overflow:hidden;transform:translateZ(0)}.animated-ellipsis-container>.animated-ellipsis{display:inline-block;overflow:hidden;vertical-align:bottom;animation:ellipsis 1s infinite}.large-loading-area{padding:100px 0;text-align:center}.team-mention,.user-mention{font-weight:600;color:#24292e;white-space:nowrap}.pagehead{position:relative;padding-top:24px;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid #e1e4e8}.pagehead.admin{background:url(/images/modules/pagehead/background-yellowhatch-v3.png) 0 0 repeat-x}.pagehead ul.pagehead-actions{position:relative;z-index:31;float:right;margin:0}.pagehead .path-divider{margin:0 .25em}.pagehead h1{margin-top:0;margin-bottom:0;font-size:20px;font-weight:400;line-height:28px}.pagehead h1 .avatar{margin-top:-2px;margin-right:9px;margin-bottom:-2px}.pagehead .account-switcher{margin-top:-3px;margin-bottom:-3px}.pagehead .underline-nav{height:69px;margin-top:-20px;margin-bottom:-20px}.pagehead-heading{color:inherit}.pagehead-actions>li{float:left;margin:0 10px 0 0;font-size:11px;color:#24292e;list-style-type:none}.pagehead-actions>li:last-child{margin-right:0}.pagehead-actions .octicon-mute{color:#cb2431}.pagehead-actions .select-menu{position:relative}.pagehead-actions .select-menu:before{display:table;content:""}.pagehead-actions .select-menu:after{display:table;clear:both;content:""}.pagehead-actions .select-menu-modal-holder{top:100%}.pagehead-tabs-item{float:left;padding:8px 15px 11px;color:#586069;white-space:nowrap;border:1px solid transparent;border-top:3px solid transparent;border-radius:3px 3px 0 0}.pagehead-tabs-item .octicon{color:rgba(27,31,35,.3)}.pagehead-tabs-item .Counter{color:#444d56}.pagehead-tabs-item:hover{color:#24292e;text-decoration:none}.pagehead-tabs-item.selected{font-weight:600;color:#24292e;background-color:#fff;border-color:#e36209 #e1e4e8 transparent}.pagehead-tabs-item.selected>.octicon{color:inherit}.repohead.experiment-repo-nav{padding-bottom:0;background-color:#fafbfc}.repohead .repohead-details-container{margin-bottom:20px}.repohead.fork h1,.repohead.mirror h1{height:auto;margin-top:-5px;margin-bottom:15px}.repohead h1{position:relative;float:left;max-width:635px;padding-left:18px;font-size:18px;line-height:26px;color:#586069}.repohead h1.private .octicon{color:rgba(27,31,35,.5)}.repohead h1 .octicon{position:absolute;top:0;left:0;margin-top:5px;color:#959da5}.repohead .octicon-mirror{left:-3px}.repohead .octicon-lock{top:10px}.repohead .fork-flag,.repohead .mirror-flag{display:block;font-size:11px;line-height:10px;white-space:nowrap}.reponav{position:relative;top:1px;margin-top:-5px}.reponav:after,.reponav:before{display:table;content:""}.reponav:after{clear:both}.reponav-dropdown{position:relative;float:left}.reponav-item{float:left;padding:7px 15px 8px;color:#586069;white-space:nowrap;border:1px solid transparent;border-top:3px solid transparent;border-radius:3px 3px 0 0}.reponav-item .octicon{color:rgba(27,31,35,.3)}.reponav-item .Counter{color:#444d56}.reponav-item:focus,.reponav-item:hover{color:#24292e;text-decoration:none}.reponav-item.selected{color:#24292e;background-color:#fff;border-color:#e36209 #e1e4e8 transparent}.reponav-item.selected>.octicon{color:inherit}.reponav-wrapper{position:relative;z-index:2;overflow-y:hidden;background-color:#24292e}.reponav-wrapper .reponav{top:0;padding-right:8px;padding-left:8px;margin-top:0;-webkit-overflow-scrolling:touch;overflow-x:auto;color:hsla(0,0%,100%,.75)}.reponav-wrapper .reponav-item{display:inline-block;float:none;padding:4px 8px 16px;color:hsla(0,0%,100%,.75);border:0}.reponav-wrapper .reponav-item .Counter{color:inherit;background-color:hsla(0,0%,100%,.15)}.reponav-wrapper .reponav-item.selected{font-weight:600;color:#fff;background-color:initial;border:0}.steps{display:table;width:100%;padding:0;margin:30px auto 0;overflow:hidden;list-style:none;border:1px solid #dfe2e5;border-radius:3px;box-shadow:0 1px 3px rgba(27,31,35,.05)}.steps li{display:table-cell;width:33.3%;padding:10px 15px;color:#c6cbd1;cursor:default;background-color:#fafbfc;border-left:1px solid #dfe2e5}.steps li.current{color:#24292e;background-color:#fff}.steps li.current .octicon{color:#0366d6}.steps li .octicon{float:left;margin-right:15px;margin-bottom:5px}.steps li .step{display:block}.steps li:first-child{border-left:0}.steps .complete{color:#586069}.steps .complete .octicon{color:#28a745}.prose-diff .anchor{display:none}.prose-diff .show-rich-diff{color:#0366d6;text-decoration:none;cursor:pointer}.prose-diff .show-rich-diff:hover{text-decoration:underline}.prose-diff.collapsed .rich-diff-level-zero.expandable{cursor:pointer}.prose-diff.collapsed .rich-diff-level-zero.expandable .vicinity{display:block}.prose-diff.collapsed .rich-diff-level-zero.expandable .unchanged:not(.vicinity){display:none}.prose-diff.collapsed .rich-diff-level-zero.expandable .octicon{display:block;margin:20px auto;color:#d1d5da}.prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon{color:#24292e}.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:before{font-size:18px;color:#d1d5da;content:"Sorry, no visible changes to display."}.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover:before{color:#24292e}.prose-diff.collapsed .rich-diff-level-zero.expandable>.removed,.prose-diff.collapsed .rich-diff-level-zero.expandable>del{display:none;text-decoration:none}.prose-diff .markdown-body{padding:30px 30px 30px 15px}.prose-diff .markdown-body>ins{box-shadow:inset 4px 0 0 #2cbe4e}.prose-diff .markdown-body>del{text-decoration:none;box-shadow:inset 4px 0 0 #cb2431}.prose-diff .markdown-body>del,.prose-diff .markdown-body>ins{display:block;border-radius:0}.prose-diff .markdown-body>del>.rich-diff-level-one,.prose-diff .markdown-body>del>.rich-diff-level-zero,.prose-diff .markdown-body>ins>.rich-diff-level-one,.prose-diff .markdown-body>ins>.rich-diff-level-zero{margin-left:15px}.prose-diff .markdown-body>del:first-child *,.prose-diff .markdown-body>ins:first-child *{margin-top:0}.prose-diff .rich-diff-level-zero.added{box-shadow:inset 4px 0 0 #2cbe4e}.prose-diff .rich-diff-level-zero.removed{box-shadow:inset 4px 0 0 #cb2431}.prose-diff .rich-diff-level-zero.changed{box-shadow:inset 4px 0 0 #f9c513}.prose-diff .rich-diff-level-zero.unchanged,.prose-diff .rich-diff-level-zero.vicinity{margin-left:15px}.prose-diff .rich-diff-level-zero.added,.prose-diff .rich-diff-level-zero.changed,.prose-diff .rich-diff-level-zero.removed{display:block;border-radius:0}.prose-diff .rich-diff-level-zero.added>.rich-diff-level-one,.prose-diff .rich-diff-level-zero.changed>.rich-diff-level-one,.prose-diff .rich-diff-level-zero.removed>.rich-diff-level-one{margin-left:15px}.prose-diff .rich-diff-level-zero.added:first-child *,.prose-diff .rich-diff-level-zero.changed:first-child *,.prose-diff .rich-diff-level-zero.removed:first-child *{margin-top:0}.prose-diff :not(.changed)>:not(.github-user-ins):not(.github-user-del)>.removed,.prose-diff :not(.changed)>:not(.github-user-ins):not(.github-user-del)>del{text-decoration:none}.prose-diff .changed .removed,.prose-diff .changed .removed>div,.prose-diff .changed .removed code,.prose-diff .changed .removed pre,.prose-diff .changed del,.prose-diff .changed del>div,.prose-diff .changed del code,.prose-diff .changed del pre{color:#cb2431;text-decoration:line-through;background:#ffdce0}.prose-diff .changed .added,.prose-diff .changed ins,.prose-diff .changed ins code,.prose-diff .changed ins pre{background:#e6ffed;border-bottom:1px solid #2cbe4e}.prose-diff>.markdown-body .github-user-ins{text-decoration:underline}.prose-diff>.markdown-body .github-user-del{text-decoration:line-through}.prose-diff>.markdown-body li ul.added{background:#e6ffed}.prose-diff>.markdown-body li ul.removed{color:#cb2431;background:#ffeef0}.prose-diff>.markdown-body li ul.removed:not(.github-user-ins){text-decoration:line-through}.prose-diff>.markdown-body li.added.moved-down .octicon,.prose-diff>.markdown-body li.added.moved-up .octicon{margin-right:5px;margin-left:5px;color:#d1d5da}.prose-diff>.markdown-body li.added.moved{background:#fffdef}.prose-diff>.markdown-body li.removed.moved{display:none}.prose-diff>.markdown-body pre{padding:10px 20px}.prose-diff>.markdown-body td.changed,.prose-diff>.markdown-body th.changed{background:#fffdef;border-left-color:#dfe2e5}.prose-diff>.markdown-body :not(li.moved).removed{color:#cb2431;text-decoration:line-through;background:#ffeef0}.prose-diff>.markdown-body :not(.github-user-ins):not(li.moved).removed{text-decoration:line-through}.prose-diff>.markdown-body :not(li.moved).added,.prose-diff>.markdown-body li:not(.moved).added{background:#e6ffed}.prose-diff>.markdown-body :not(.github-user-del):not(li.moved).added li:not(.moved):not(.github-user-del).added{text-decoration:none}.prose-diff>.markdown-body li:not(.moved).removed{color:#cb2431;background:#ffeef0}.prose-diff>.markdown-body li:not(.moved):not(.github-user-ins).removed{text-decoration:line-through}.prose-diff>.markdown-body .added,.prose-diff>.markdown-body ins,.prose-diff>.markdown-body ins+.added{border-top:0;border-bottom:0}.prose-diff>.markdown-body .added:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins+.added:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins:not(.github-user-del):not(.github-user-ins){text-decoration:none}.prose-diff>.markdown-body img.added,.prose-diff>.markdown-body img.removed{border-style:solid;border-width:1px}.prose-diff>.markdown-body ins>div:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins code:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins pre:not(.github-user-del):not(.github-user-ins){text-decoration:none}.prose-diff>.markdown-body ul>del,.prose-diff>.markdown-body ul>ins{display:block;padding:0}.prose-diff>.markdown-body .added>li,.prose-diff>.markdown-body .removed>li{margin-top:0;margin-bottom:0}a.added_href,a.changed_href,b.changed_tag,code.changed_tag,em.changed_tag,i.changed_tag,span.changed_tag,span.removed_href,strong.changed_tag{border-bottom:1px dotted #6a737d;border-radius:0}.diff-view .file-type-prose .rich-diff{display:none}.diff-view .display-rich-diff .rich-diff{display:block}.diff-view .display-rich-diff .file-diff{display:none}.protip{margin-top:20px;text-align:center}.protip code{padding:2px;background-color:#f6f8fa;border-radius:3px}.radio-group:after,.radio-group:before{display:table;content:""}.radio-group:after{clear:both}.radio-label{float:left;padding:8px 10px 8px 35px;margin-left:-1px;color:#24292e;cursor:pointer;border:1px solid #d1d5da}:checked+.radio-label{position:relative;z-index:1;border-color:#0366d6}.radio-label .octicon{padding-right:5px}.radio-label:first-of-type{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.radio-label:last-of-type{padding-right:16px;border-top-right-radius:3px;border-bottom-right-radius:3px}.radio-input{z-index:3;float:left;margin:14px -35px 0 14px}.add-reaction-btn{opacity:0;transition:opacity .1s ease-in-out}.page-responsive .add-reaction-btn{opacity:1}@media (min-width:768px){.page-responsive .add-reaction-btn{opacity:0}}.add-reaction-plus-icon{margin-right:-1px}.reaction-popover-container[open] .add-reaction-btn{opacity:1}.add-reactions-options-item{margin-top:-1px;margin-right:-1px;line-height:29px;border:1px solid transparent}.add-reactions-options-item .emoji{display:inline-block;transition:transform .15s cubic-bezier(.2,0,.13,2)}.add-reactions-options-item:focus .emoji,.add-reactions-options-item:hover .emoji{text-decoration:none!important;transform:scale(1.2)!important}.add-reactions-options-item:active{background-color:#dbedff}.comment-reactions{display:none}.comment-reactions:before{display:table;content:""}.comment-reactions:after{display:table;clear:both;content:""}.comment-reactions .reaction-popover-container{z-index:100}.page-responsive .comment-reactions{display:block}@media (min-width:768px){.page-responsive .comment-reactions{display:none}.page-responsive .comment-reactions.has-reactions{display:block}}.comment-reactions.has-reactions{display:block;border-top:1px solid #e1e4e8}.comment-reactions.has-reactions:hover .add-reaction-btn{opacity:1}.comment-reactions .user-has-reacted{background-color:#f1f8ff}.comment-reactions .add-reaction-btn{border-right:0}.reaction-summary-item{float:left;padding:9px 15px 7px;line-height:18px;border-right:1px solid #e1e4e8}.reaction-summary-item:focus,.reaction-summary-item:hover{text-decoration:none}.comment-reactions-options .reaction-summary-item:first-child{border-bottom-left-radius:2px}.render-container{padding:30px;line-height:0;text-align:center;background:#dfe2e5}.render-container .render-viewer{display:none;width:100%;height:100%;border:0}.render-container .octospinner,.render-container .render-fullscreen,.render-container .render-viewer-error,.render-container .render-viewer-fatal,.render-container .render-viewer-invalid{display:none}.render-container.is-render-automatic .octospinner,.render-container.is-render-requested.is-render-failed .render-viewer-error,.render-container.is-render-requested .octospinner{display:inline-block}.render-container.is-render-requested.is-render-failed .octospinner,.render-container.is-render-requested.is-render-failed .render-viewer,.render-container.is-render-requested.is-render-failed .render-viewer-fatal,.render-container.is-render-requested.is-render-failed .render-viewer-invalid{display:none}.render-container.is-render-requested.is-render-failed-fatal .render-viewer-fatal{display:inline-block}.render-container.is-render-requested.is-render-failed-fatal .octospinner,.render-container.is-render-requested.is-render-failed-fatal .render-viewer,.render-container.is-render-requested.is-render-failed-fatal .render-viewer-error,.render-container.is-render-requested.is-render-failed-fatal .render-viewer-invalid{display:none}.render-container.is-render-requested.is-render-failed-invalid .render-viewer-invalid{display:inline-block}.render-container.is-render-requested.is-render-failed-invalid .octospinner,.render-container.is-render-requested.is-render-failed-invalid .render-viewer,.render-container.is-render-requested.is-render-failed-invalid .render-viewer-error,.render-container.is-render-requested.is-render-failed-invalid .render-viewer-fatal{display:none}.render-container.is-render-ready.is-render-requested:not(.is-render-failed){height:500px;padding:0;background:none}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer{display:block}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-fullscreen{display:flex}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .octospinner,.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-error,.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-fatal{display:none}.render-notice{padding:20px 15px;font-size:14px;color:#444d56;background-color:#f6f8fa;border-color:rgba(27,31,35,.15)}.select-menu-button:after{display:inline-block;width:0;height:0;vertical-align:-2px;content:"";border:4px solid transparent;border-top-color:currentcolor}.select-menu-button.icon-only{padding-left:7px}.select-menu-button.primary:after{border-top-color:#fff}.select-menu-button.primary:after:active{background-color:#28a745}.select-menu-button-large:after{margin-left:.25em;border-width:.33em}.select-menu .spinner{float:left;margin:4px 0 0 -24px}.select-menu.active .select-menu-modal-holder{display:block}.select-menu.select-menu-modal-right{position:relative}.select-menu.select-menu-modal-right .select-menu-modal-holder{right:0}.select-menu .select-menu-clear-item{display:block}.select-menu .select-menu-clear-item .octicon{color:inherit}.select-menu .select-menu-clear-item+.select-menu-no-results{display:none!important}.select-menu.is-loading .select-menu-loading-overlay{display:block}.select-menu.is-loading .select-menu-modal{min-height:200px}.select-menu.has-error .select-menu-error{display:block}.select-menu-error{display:none}.select-menu-loading-overlay{position:absolute;top:0;z-index:5;display:none;width:100%;height:100%;background-color:hsla(0,0%,100%,.8);border:1px solid transparent;border-radius:5px}.select-menu-loading-overlay .octicon-octoface{position:absolute;top:50%;left:50%;margin:-16px 0 0 -16px}.select-menu-modal-holder{position:absolute;z-index:30;display:none}.select-menu-modal{position:relative;width:300px;margin-top:4px;margin-bottom:20px;overflow:hidden;font-size:12px;color:#586069;background-color:#fff;background-clip:padding-box;border:1px solid rgba(27,31,35,.15);border-radius:3px;box-shadow:0 3px 12px rgba(27,31,35,.15)}.select-menu-modal-narrow{width:200px}.select-menu-divider,.select-menu-header{padding:8px 10px;line-height:16px;background:#f6f8fa;border-bottom:1px solid #e1e4e8}.select-menu-divider,.select-menu-header .select-menu-title{font-weight:600;color:#24292e}.select-menu-divider{margin-top:-1px;border-top:1px solid #e1e4e8}.select-menu-header .close-button,.select-menu-header .octicon{display:block;float:right;color:#c6cbd1;cursor:pointer}.select-menu-header .close-button:hover,.select-menu-header .octicon:hover{color:#444d56}.select-menu-header:focus{outline:none}.select-menu-filters{background-color:#f6f8fa}.select-menu-text-filter{padding:10px 10px 0}.select-menu-text-filter:first-child:last-child{padding-bottom:10px;border-bottom:1px solid #dfe2e5}.select-menu-text-filter input{display:block;width:100%;max-width:100%;padding:5px;border:1px solid #dfe2e5;border-radius:3px}.select-menu-text-filter input:-ms-input-placeholder{color:#a3aab1}.select-menu-text-filter input::-ms-input-placeholder{color:#a3aab1}.select-menu-text-filter input::placeholder{color:#a3aab1}.select-menu-tabs{padding:10px 10px 0;border-bottom:1px solid #dfe2e5}.select-menu-tabs ul{position:relative;bottom:-1px}.select-menu-tabs .select-menu-tab{display:inline-block}.select-menu-tabs .select-menu-tab-nav,.select-menu-tabs a{display:inline-block;padding:4px 8px 2px;font-size:11px;font-weight:600;color:#6a737d;text-decoration:none;cursor:pointer;background:transparent;border:1px solid transparent;border-radius:3px 3px 0 0}.select-menu-tabs .select-menu-tab-nav:hover,.select-menu-tabs a:hover{color:#24292e}.select-menu-tabs .select-menu-tab-nav.selected,.select-menu-tabs .select-menu-tab-nav[aria-selected=true],.select-menu-tabs a.selected,.select-menu-tabs a[aria-selected=true]{color:#24292e;background-color:#fff;border-color:#dfe2e5 #dfe2e5 #fff}.select-menu-list{position:relative;max-height:400px;overflow:auto}.select-menu-list.is-showing-new-item-form .select-menu-new-item-form{display:block}.select-menu-list.is-showing-new-item-form .select-menu-clear-item,.select-menu-list.is-showing-new-item-form .select-menu-no-results{display:none}.select-menu-blankslate{padding:16px;text-align:center}.select-menu-blankslate svg{display:block;margin-right:auto;margin-bottom:9px;margin-left:auto;fill:#879099}.select-menu-blankslate h3{font-size:14px;color:#24292e}.select-menu-blankslate p{width:195px;margin-right:auto;margin-bottom:0;margin-left:auto}.select-menu-item{display:block;padding:8px 8px 8px 30px;overflow:hidden;color:inherit;cursor:pointer;border-bottom:1px solid #eaecef}.select-menu-item .select-menu-item-text .octicon-x{display:none;float:right;margin:1px 10px 0 0;opacity:.6}.select-menu-item:hover{text-decoration:none}.select-menu-item.disabled,.select-menu-item.disabled.selected,.select-menu-item[aria-disabled=true],.select-menu-item[disabled]{color:#6a737d;cursor:default}.select-menu-item.disabled .description,.select-menu-item.disabled.selected .description,.select-menu-item[aria-disabled=true] .description,.select-menu-item[disabled] .description{color:#6a737d}.select-menu-item.disabled.opaque,.select-menu-item.disabled.selected.opaque,.select-menu-item[aria-disabled=true].opaque,.select-menu-item[disabled].opaque{opacity:.7}.select-menu-item.disabled .select-menu-item-gravatar,.select-menu-item.disabled.selected .select-menu-item-gravatar,.select-menu-item[aria-disabled=true] .select-menu-item-gravatar,.select-menu-item[disabled] .select-menu-item-gravatar{opacity:.5}.select-menu-item .octicon{vertical-align:middle}.select-menu-item .octicon-check,.select-menu-item .octicon-circle-slash,.select-menu-item input[type=radio]:not(:checked)+.octicon-check,.select-menu-item input[type=radio]:not(:checked)+.octicon-circle-slash{visibility:hidden}.select-menu-item.selected .octicon-circle-slash.select-menu-item-icon{color:#6a737d!important}.select-menu-item .octicon-circle-slash{color:#6a737d}.select-menu-item.excluded{background-color:#f6f8fa}.select-menu-item input[type=radio]{display:none}.select-menu-item:focus{outline:none}.select-menu-item.navigation-focus,.select-menu-item.navigation-focus .description-inline,.select-menu-item.navigation-focus.select-menu-action,.select-menu-item.navigation-focus.selected,.select-menu-item.navigation-focus[aria-checked=true],.select-menu-item:focus,.select-menu-item:focus .description-inline,.select-menu-item:focus.select-menu-action,.select-menu-item:focus.selected,.select-menu-item:hover,.select-menu-item:hover .description-inline,.select-menu-item:hover.select-menu-action,.select-menu-item:hover.selected,.select-menu-item[aria-checked=true]:focus,.select-menu-item[aria-checked=true]:hover,.select-menu-item[aria-selected=true] .description-inline,.select-menu-item[aria-selected=true].select-menu-action,.select-menu-item[aria-selected=true]:focus,.select-menu-item[aria-selected=true]:hover{color:#fff;background-color:#0366d6}.select-menu-item.navigation-focus .description,.select-menu-item.navigation-focus .description-inline .description,.select-menu-item.navigation-focus .description-inline .description-warning,.select-menu-item.navigation-focus .description-inline>.octicon,.select-menu-item.navigation-focus .description-warning,.select-menu-item.navigation-focus.select-menu-action .description,.select-menu-item.navigation-focus.select-menu-action .description-warning,.select-menu-item.navigation-focus.select-menu-action>.octicon,.select-menu-item.navigation-focus.selected .description,.select-menu-item.navigation-focus.selected .description-warning,.select-menu-item.navigation-focus.selected>.octicon,.select-menu-item.navigation-focus>.octicon,.select-menu-item.navigation-focus[aria-checked=true] .description,.select-menu-item.navigation-focus[aria-checked=true] .description-warning,.select-menu-item.navigation-focus[aria-checked=true]>.octicon,.select-menu-item:focus .description,.select-menu-item:focus .description-inline .description,.select-menu-item:focus .description-inline .description-warning,.select-menu-item:focus .description-inline>.octicon,.select-menu-item:focus .description-warning,.select-menu-item:focus.select-menu-action .description,.select-menu-item:focus.select-menu-action .description-warning,.select-menu-item:focus.select-menu-action>.octicon,.select-menu-item:focus.selected .description,.select-menu-item:focus.selected .description-warning,.select-menu-item:focus.selected>.octicon,.select-menu-item:focus>.octicon,.select-menu-item:hover .description,.select-menu-item:hover .description-inline .description,.select-menu-item:hover .description-inline .description-warning,.select-menu-item:hover .description-inline>.octicon,.select-menu-item:hover .description-warning,.select-menu-item:hover.select-menu-action .description,.select-menu-item:hover.select-menu-action .description-warning,.select-menu-item:hover.select-menu-action>.octicon,.select-menu-item:hover.selected .description,.select-menu-item:hover.selected .description-warning,.select-menu-item:hover.selected>.octicon,.select-menu-item:hover>.octicon,.select-menu-item[aria-checked=true]:focus .description,.select-menu-item[aria-checked=true]:focus .description-warning,.select-menu-item[aria-checked=true]:focus>.octicon,.select-menu-item[aria-checked=true]:hover .description,.select-menu-item[aria-checked=true]:hover .description-warning,.select-menu-item[aria-checked=true]:hover>.octicon,.select-menu-item[aria-selected=true] .description-inline .description,.select-menu-item[aria-selected=true] .description-inline .description-warning,.select-menu-item[aria-selected=true] .description-inline>.octicon,.select-menu-item[aria-selected=true].select-menu-action .description,.select-menu-item[aria-selected=true].select-menu-action .description-warning,.select-menu-item[aria-selected=true].select-menu-action>.octicon,.select-menu-item[aria-selected=true]:focus .description,.select-menu-item[aria-selected=true]:focus .description-warning,.select-menu-item[aria-selected=true]:focus>.octicon,.select-menu-item[aria-selected=true]:hover .description,.select-menu-item[aria-selected=true]:hover .description-warning,.select-menu-item[aria-selected=true]:hover>.octicon{color:#fff}.select-menu-item.navigation-focus.disabled,.select-menu-item:hover.disabled,.select-menu-item[aria-disabled=true]:hover,.select-menu-item[aria-selected=true].disabled,.select-menu-item[disabled]:hover{color:hsla(0,0%,100%,.5)}.select-menu-item.navigation-focus.disabled .description,.select-menu-item:hover.disabled .description,.select-menu-item[aria-disabled=true]:hover .description,.select-menu-item[aria-selected=true].disabled .description,.select-menu-item[disabled]:hover .description{color:hsla(0,0%,100%,.6)}.select-menu-item>.octicon-dash,.select-menu-item[aria-checked=mixed]>.octicon-check{display:none}.select-menu-item[aria-checked=mixed]>.octicon-dash{display:block}.select-menu-item input:checked+.octicon-check{color:inherit;visibility:visible}.select-menu-item.selected,details-menu .select-menu-item[aria-checked=true],details-menu .select-menu-item[aria-selected=true]{color:#24292e}.select-menu-item.selected .description,details-menu .select-menu-item[aria-checked=true] .description,details-menu .select-menu-item[aria-selected=true] .description{color:#586069}.select-menu-item.selected>.octicon,details-menu .select-menu-item[aria-checked=true]>.octicon,details-menu .select-menu-item[aria-selected=true]>.octicon{color:#24292e}.select-menu-item.selected .octicon-check,.select-menu-item.selected .octicon-circle-slash,details-menu .select-menu-item[aria-checked=true] .octicon-check,details-menu .select-menu-item[aria-checked=true] .octicon-circle-slash,details-menu .select-menu-item[aria-selected=true] .octicon-check,details-menu .select-menu-item[aria-selected=true] .octicon-circle-slash{color:inherit;visibility:visible}.select-menu-item.selected .select-menu-item-text .octicon-x,details-menu .select-menu-item[aria-checked=true] .select-menu-item-text .octicon-x,details-menu .select-menu-item[aria-selected=true] .select-menu-item-text .octicon-x{display:block;color:inherit}.select-menu.label-select-menu .select-menu-item:active{background-color:initial!important}.select-menu-item a{color:inherit;text-decoration:none}.select-menu-item .hidden-select-button-text{display:none}.select-menu-item .css-truncate-target{max-width:100%}.select-menu-item-parent{pointer-events:none}.select-menu-item-parent:hover{cursor:default}.select-menu-item-parent.navigation-focus,.select-menu-item-parent.navigation-focus.selected,.select-menu-item-parent[aria-selected=true],.select-menu-item-parent[aria-selected=true].selected{color:#24292e;background-color:#f1f8ff}.select-menu-item-parent.navigation-focus .octicon-check,.select-menu-item-parent.navigation-focus.selected .octicon-check,.select-menu-item-parent[aria-selected=true] .octicon-check,.select-menu-item-parent[aria-selected=true].selected .octicon-check{color:#24292e}.select-menu-item-icon{float:left;margin-left:-20px}form.select-menu-item>div:first-child{display:none!important}.select-menu-item.last-visible,.select-menu-list:last-child .select-menu-item:last-child{border-bottom:0;border-radius:0 0 3px 3px}.select-menu-action{font-weight:400;color:#444d56}.select-menu-action>.octicon{color:inherit}.select-menu-action:hover{color:#0366d6}.select-menu-no-results{display:none;padding:9px;color:#586069;cursor:auto}.select-menu-list.filterable-empty .select-menu-no-results,.select-menu-no-results:only-child{display:block}.select-menu-button-gravatar,.select-menu-item-gravatar{width:20px;overflow:hidden;line-height:0}.select-menu-button-gravatar img,.select-menu-item-gravatar img{display:inline-block;width:20px;height:20px;border-radius:3px}.select-menu-item-gravatar{float:left;width:20px;height:20px;margin-right:8px;border-radius:2px}.select-menu-button-gravatar{float:left;margin-right:5px}.select-menu-item-text{display:block;text-align:left}.select-menu-item-text .description{display:block;max-width:265px;font-size:12px;color:#586069}.select-menu-item-text .description-inline{font-size:10px;color:#586069}.select-menu-item-text .description-warning{color:#cb2431}.select-menu-item-text mark{font-weight:600;color:inherit;background-color:inherit}.select-menu-item-heading{display:block;margin-top:0;margin-bottom:0;font-size:14px;font-weight:600}.select-menu-item-heading .description{display:inline;font-weight:400}.select-menu-new-item-form{display:none}.select-menu-new-item-form .octicon{color:#0366d6}.TimelineItem{position:relative;display:flex;padding:16px 0;margin-left:16px}.TimelineItem:before{position:absolute;top:0;bottom:0;left:0;display:block;width:2px;content:"";background-color:#e1e4e8}.TimelineItem-badge{position:relative;z-index:1;display:flex;width:32px;height:32px;margin-right:8px;margin-left:-15px;color:#444d56;align-items:center;background-color:#e1e4e8;border:2px solid #fff;border-radius:50%;justify-content:center;flex-shrink:0}.TimelineItem-body{min-width:0;max-width:100%;margin-top:4px;color:#444d56;flex:auto}.TimelineItem-avatar{position:absolute;left:-72px;z-index:1}.TimelineItem-break{position:relative;z-index:1;height:24px;margin:0 0 -16px -56px;background-color:#fff;border:0;border-top:4px solid #e1e4e8}.TimelineItem--condensed{padding-top:4px;padding-bottom:0}.TimelineItem--condensed:last-child{padding-bottom:16px}.TimelineItem--condensed .TimelineItem-badge{height:16px;margin-top:8px;margin-bottom:8px;color:#959da5;background-color:#fff;border:0}.authors-2 .AvatarStack{min-width:36px!important}.authors-3 .AvatarStack{min-width:46px!important}.navigation-focus .AvatarStack-body,[aria-selected=true] .AvatarStack-body{background:#f6fbff}.commit-tease .AvatarStack-body{background:#f1f8ff}.blame-commit .AvatarStack{margin-top:3px}.content-attachment{border-left:.25em solid #dfe2e5}.max--md{height:188px}[open] .max--md{height:auto}.max--md .content-attachment-content--gradient,.max--md .Details-content--closed{position:absolute;right:-1px;bottom:0;left:0;z-index:1;display:block;content:""}.max--md .content-attachment-content--gradient{height:88px;background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff calc(100% - 28px))}.content-attachment-details[open] .max--md .content-attachment-content--gradient{background:none}[hidden]{display:none!important}body{word-wrap:break-word}.page-content{padding-top:20px}.container-sm{max-width:544px}.min-height-full{min-height:100vh!important}.marketing .pagehead h1{font-size:30px}.marketing .pagehead p{margin-top:4px;margin-bottom:0;font-size:14px;color:#586069}.marketing .pagehead ul.actions{margin-top:10px}.marketing h2 .secure{float:right;padding:1px 0;font-size:11px;font-weight:600;color:#28a745;text-transform:uppercase}.marketing .questions p{font-size:14px}.marketing-section{position:relative;padding-top:80px;padding-bottom:80px;font-size:16px;line-height:1.5;text-align:center;border-bottom:1px solid #e5e5e5}.marketing-section:before{display:table;content:""}.marketing-section:after{display:table;clear:both;content:""}.marketing-section h3{font-size:21px;font-weight:400}.marketing-hero-octicon{position:relative;width:100px;height:100px;margin:0 auto 15px;text-align:center;border:1px solid #e5e5e5;border-radius:50px}.marketing-hero-octicon .octicon{margin-top:22px;color:#0366d6}.marketing-hero-octicon .octicon-checklist{position:relative;right:-3px}.hanging-icon-list li{padding-left:25px;margin:10px 0;font-size:14px;list-style-type:none}.hanging-icon-list .octicon{float:left;margin-top:3px;margin-left:-25px;color:#586069}.hanging-icon-list .octicon-check{color:#28a745}.hanging-icon-list .octicon-x{color:#cb2431}.btn-blurple{color:#fff;background-color:#3b41af;background-image:linear-gradient(-180deg,#6570e2,#3b41af 90%)}.btn-blurple.focus,.btn-blurple:focus{box-shadow:0 0 0 .2em rgba(101,112,226,.4)}.btn-blurple.hover,.btn-blurple:hover{background-color:#383ea7;background-image:linear-gradient(-180deg,#5c68e0,#383ea7 90%);background-position:-.5em;border-color:rgba(27,31,35,.5)}.btn-blurple.selected,.btn-blurple:active,[open]>.btn-blurple{background-color:#3a43bb;background-image:none;border-color:rgba(27,31,35,.5);box-shadow:inset 0 .15em .3em rgba(27,31,35,.15)}.btn-blurple.disabled,.btn-blurple:disabled{color:hsla(0,0%,100%,.75);background-color:#9da0d7;background-image:none;border-color:rgba(27,31,35,.2);box-shadow:none}.btn-blurple .Counter{color:#4350dc;background-color:#fff}.integrations-hero-octicon.marketing-hero-octicon{width:75px;height:75px;border-width:5px}.integrations-hero-octicon.marketing-hero-octicon .octicon{margin-top:15px}.marketing-blue-octicon{color:#34acbf;border-color:#34acbf}.marketing-blue-octicon .octicon{color:#34acbf}.marketing-turquoise-octicon{color:#75bbb6;border-color:#75bbb6}.marketing-turquoise-octicon .octicon{color:#75bbb6}.marketing-purple-octicon{color:#b086b7;border-color:#b086b7}.marketing-purple-octicon .octicon{color:#b086b7}.marketing-graphic{position:relative}.intgrs-dir .marketing-graphic{padding-right:0;margin:0}.intgrs-dir .footer{margin-top:40px}.intgrs-dir-section h2{margin-top:0;margin-bottom:20px;font-size:26px;font-weight:300}.intgrs-dir-intro{padding:40px 0;margin:0;text-align:left;background-image:linear-gradient(-110deg,#48227d,#2f569c);border-bottom:0}.pagehead+.intgrs-dir-intro{margin-top:-20px}.intgrs-dir-intro .directory-header-back{margin-top:10px;font-size:18px;color:#fff}.intgrs-dir-intro .directory-header-back:hover{color:#d7def1;text-decoration:none}.intgrs-dir-intro .directory-header-back .octicon{vertical-align:middle}.intgrs-dir-intro .directory-header-back .header-link{color:#96dad9}.intgrs-dir-intro .directory-tag-line{margin-bottom:0;font-size:28px;font-weight:400;color:#fff}.intgrs-dir-intro .lead{margin-top:10px;margin-bottom:6px;font-size:18px;font-weight:400;color:#d7def1}.intgrs-lstng-search{display:inline-block;width:33%;margin-left:20px}.intgrs-lstng-search .subnav-search-input{width:100%}.intgrs-lstng-categories-container{display:inline-block;float:left;width:20%}.intgrs-lstng-categories-container .intgrs-lstng-categories{top:0}.intgrs-lstng-categories-container .filter-item{padding:6px 10px;margin-right:-10px;margin-left:-10px}.intgrs-lstng-container{display:inline-block;width:80%;text-align:left}.intgrs-lstng-item{position:relative;display:inline-flex;width:30.8%;font-size:14px;border:1px solid #ededed;border-radius:4px;transition:border-color .15s ease 0s,transform .15s ease 0s,box-shadow .15s ease 0s,color .15s ease 0s}.intgrs-lstng-item:hover{border-color:#51a7e8;box-shadow:0 0 5px rgba(81,167,232,.5);transform:scale(1.05)}.intgrs-lstng-item .intgrs-lstng-logo{display:block;margin:0 auto 10px}.intgrs-lstng-item .draft-tag{position:absolute;top:-1px;left:10px}.intgrs-lstng-item-link{display:block;width:100%;height:181px;padding-top:20px}.intgrs-lstng-item-link:hover{text-decoration:none}.intgrs-lstng-item-link:hover .intgrs-lstng-item-header{color:#0366d6}.intgrs-lstng-item-header{margin:15px 10px 0;font-size:14px;font-weight:600;color:#333}.intgrs-lstng-item-description{position:relative;height:2.8em;padding:0 10px;margin-top:5px;overflow:hidden;font-size:13px;color:#586069}.intgrs-lstng-item-description:after{position:absolute;right:0;bottom:0;padding:0 15px 0 20px;color:transparent;content:"\00a0";background-image:linear-gradient(90deg,hsla(0,0%,100%,0),#fff 80%)}.intgr-admin-link{position:relative;display:inline-block;height:25px;padding-left:23px;font-size:13px;vertical-align:middle;border:1px solid #ededed;border-radius:3px}.intgr-admin-link.draft-tag{padding-left:25px;border:0}.intgr-admin-link.draft-tag .octicon,.intgr-admin-link.draft-tag:hover .octicon{color:#fff}.intgr-admin-link.draft-tag:hover{text-decoration:none;background-color:#000}.intgr-admin-link:hover .octicon{color:#0366d6}.intgr-admin-link .octicon{position:absolute;top:3px;left:5px;color:#586069}.intgr-feat-header{position:relative;width:85%;padding:0 65px 10px;color:#d7def1}.intgr-feat-header .intgr-admin-link{border-color:rgba(215,222,241,.6)}.intgr-feat-header .intgr-admin-link .octicon{color:#d7def1}.intgr-feat-header .intgr-admin-link:hover .octicon{color:#fff}.intgr-feat-header .marketing-hero-octicon{position:absolute;top:0;left:5px;width:50px;height:50px;border-width:3px}.intgr-feat-header .marketing-hero-octicon .octicon{margin-top:11px}.intgr-feat-header h2{margin:0;font-size:25px;line-height:50px;color:#fff}.intgr-feat-header p{max-width:580px;margin:0;font-size:18px}.integrations-breadcrumb{display:inline-block;font-weight:400;color:#8296cc}.integrations-breadcrumb-link{line-height:0;color:#d7def1}.integrations-breadcrumb-link:hover{color:#fff;text-decoration:none}.integrations-auth-wrapper{width:511px;margin:60px auto}.integrations-auth-header{font-size:20px;text-align:center}.integrations-permissions-group dt{font-size:18px;font-weight:400}.integrations-permissions-group .integrations-permission{position:relative;padding-left:22px;margin-bottom:10px;list-style-type:none}.integrations-permissions-group .integrations-permission .octicon{position:absolute;top:1px;left:0;margin-right:10px}.integrations-install-target .select-menu{vertical-align:middle}.integrations-install-target input[type=radio]{margin-right:10px}.integrations-install-target .flash{background-color:initial}.integrations-install-target .flash-error{background-color:initial;border:0}.integrations-install-target .octicon-lock,.integrations-install-target .octicon-repo{margin-right:3px}.integrations-install-target .octicon-lock{color:rgba(27,31,35,.7)}.integrations-install-target .private{background-color:#fff9ea}.integrations-install-target .navigation-focus.private,.integrations-install-target [aria-selected=true].private{background-color:#4078c0}.integrations-install-target .navigation-focus .octicon-lock,.integrations-install-target [aria-selected=true].octicon-lock{color:inherit}.integrations-setup-note{margin:10px 0}.listgroup-item{line-height:inherit}.listgroup-item.disabled{background-color:#fafbfc}.listgroup-item.disabled .listgroup-item-title{color:#333}.integration-key-management-wrapper .flash-error,.integration-key-management-wrapper .integration-key-downloading,.integration-key-management-wrapper .integration-key-list{display:none}.integration-key-management-wrapper .blankslate{margin-bottom:30px}.integration-key-management-wrapper .action .deletable{display:none}.integration-key-management-wrapper .action .undeletable,.integration-key-management-wrapper.multi-keys .action .deletable{display:block}.integration-key-management-wrapper.multi-keys .action .undeletable{display:none}.integration-key-management-wrapper.error .flash-error{display:block}.integration-key-management-wrapper.error .integration-key{opacity:.5}.integration-key-management-wrapper.error .action .deletable{display:none}.integration-key-management-wrapper.error .action .undeletable{display:block}.integration-key-management-wrapper.downloading .blankslate{display:none}.integration-key-management-wrapper.downloading .integration-key-downloading,.integration-key-management-wrapper.downloading .integration-key-list{display:block}.integration-key-management-wrapper.has-keys .blankslate{display:none}.integration-key-management-wrapper.has-keys .integration-key-list{display:block}.link-small{color:#767676;transition:color .5s ease}.listgroup-item:hover .link-small{color:#0366d6}.manifest-errors{border-left:3px solid #d73a49;border-radius:0 3px 3px 0}.content-references-domain-error{max-width:unset!important}.not-found-octocat-wrapper{width:71px;height:71px;border-radius:45px}.not-found-octocat-wrapper:after{position:absolute;top:58px;left:45px;z-index:-2;display:block;width:4px;height:4px;vertical-align:initial;content:"";background:#fff;border-radius:4px;box-shadow:0 4px 0 #fff,0 8px 0 #fff,0 12px 0 #fff,0 16px 0 #fff,0 20px 0 #fff;animation-name:pull-string;animation-duration:.75s;animation-fill-mode:forwards;animation-delay:.5s}@keyframes lightbulb{0%,8%,14%{opacity:.1}0%,10%,25%{opacity:.25}5%,30%,50%,70%{opacity:.5}16%,60%,80%{opacity:.75}90%{opacity:.8}94%{opacity:.5}to{opacity:1;stddeviation:0}}.not-found-lightbulb-ani{z-index:999;opacity:.25;animation-name:lightbulb;animation-duration:2.5s;animation-fill-mode:forwards;animation-delay:1.3s}@keyframes pull-string{50%{transform:translate3d(0,12px,0)}75%{opacity:1;transform:none}to{opacity:0}}.billing-plans tbody td{width:25%;vertical-align:middle}.billing-plans .current{background-color:#f2ffed}.billing-plans .name{font-size:14px;font-weight:600;color:#333}.billing-plans .coupon{font-size:12px}.billing-plans .coupon td{color:#fff;background-color:#28a745}.billing-plans .coupon .text-right{white-space:nowrap}.billing-plans .coupon.expiring td{background-color:#df6e00}.billing-plans .coupon.expiring .coupon-label:after{border-bottom-color:#df6e00}.billing-plans tbody>.selected{background-color:#fdffce}.coupon-label{position:relative;padding:9px;margin:-9px}.coupon-label:after{position:absolute;bottom:100%;left:15px;width:0;height:0;pointer-events:none;content:" ";border:5px solid transparent;border-bottom-color:#28a745}.boxed-group-table .toggle-currency{font-size:11px;font-weight:400}.has-removed-contents{display:none}.currency-notice{margin-bottom:10px}.org-login{margin-top:-30px;margin-bottom:30px}.org-login img{width:450px;padding:1px;margin:10px -25px;border:1px solid #ccc}.plan-notice{padding:10px;margin-bottom:0;border-top:1px solid #eee}.alert-label{color:#fff}.alert-label--critical{background-color:#444d56}.graph-canvas .alert-label--critical{fill:#444d56}.alert-label--high{background-color:#cb2431}.graph-canvas .alert-label--high{fill:#cb2431}.alert-label--moderate{background-color:#e36209}.graph-canvas .alert-label--moderate{fill:#e36209}.alert-label--low{background-color:#dbab09}.graph-canvas .alert-label--low{fill:#dbab09}.advisory-form{background-color:#f6f8fa;border-top:1px solid #e1e4e8}.advisory-form .form-actions,.advisory-form .form-control,.advisory-form .previewable-comment-form{background-color:#fff}.member-list-item .member-link,.member-list-item .member-username{display:inline}.actor-and-action{font-weight:600}.vertical-separator{margin-right:8px;margin-left:5px;border-left:1px solid grey}.audit-log-search .audit-search-form{margin-bottom:10px}.audit-log-search .audit-results-actions{margin:15px 0}.audit-log-search .audit-search-clear{margin-bottom:0}.credit-card{position:relative;width:250px;height:150px;padding:20px;margin-top:5px;background-color:#f5f5f5;border-radius:10px}.credit-card.normal .strap{height:20px;margin:-5px -20px 15px;background-color:#555}.credit-card.normal .signature{display:inline-block;width:150px;height:30px;font-family:Brush Script MT,cursive;font-size:17px;line-height:33px;color:#767676;text-indent:10px;letter-spacing:-1px;white-space:nowrap;background-color:#fff}.credit-card .cvv{position:relative;top:-10px;left:-7px;display:inline-block;padding:2px 5px;font-family:monospace;font-size:10px;line-height:1;text-align:center;border:2px solid #d73a49;border-top-left-radius:20px 10px;border-top-right-radius:20px 10px;border-bottom-right-radius:20px 10px;border-bottom-left-radius:20px 10px}.credit-card .cvv span{position:absolute;right:100%;margin-right:5px;color:#586069}.credit-card .text{display:block;font-family:monospace;font-size:7px;font-weight:600;line-height:1.1;text-transform:uppercase}.billing-addon-items table input{width:5em}.billing-addon-items td{vertical-align:middle;border-bottom:0}.billing-addon-items td.fixed{width:150px}.billing-addon-items td.black{color:#24292e}.billing-addon-items tr{border-bottom:1px solid #eee}.billing-addon-items tr:last-child{border-bottom-width:0}.billing-addon-items tr:nth-child(2n){background-color:#fafbfc}.billing-addon-items tr.total-row{color:#cb2431;background-color:#fff}.billing-addon-items .new-addon-items{margin-left:5px}.billing-addon-items .addon-cost{color:#6a737d}.billing-addon-items .discounted-original-price{color:#666}.billing-addon-items .form-submit,.billing-addon-items .payment-method{margin-left:8px}.billing-addon-items .payment-summary{margin-right:8px;margin-left:8px}.billing-credit-card .javascript-disabled-overlay{position:absolute;top:0;left:0;z-index:1;display:none;width:100%;height:100%;background-color:#fff;opacity:.5}.billing-credit-card.disabled .javascript-disabled-overlay,.billing-credit-card.unsupported .javascript-disabled-overlay{display:block}.billing-extra-box,.billing-vat-box{padding-left:10px;margin:10px 0;border-left:3px solid #eee}.billing-section .action-button{float:right;margin-bottom:5px;margin-left:10px}.billing-section .section-label{position:absolute;width:85px;font-weight:400;color:#586069;text-align:right}.billing-section .section-content{margin-left:100px;color:#333}.billing-section:last-child{border-bottom:0}.billing-section .usage-bar{max-width:304px}.usage-bar{width:100%;margin:5px 0 0;background:#eee;border-radius:20px}.usage-bar.exceeded .progress{background-color:#d73a49!important}.usage-bar .progress{position:relative;max-width:100%;height:5px;background-color:#34d058;border-radius:20px;transition:width .3s}.usage-bar .progress.no-highlight{background:#959da5}.usage-bar .progress--orange{background-color:#f66a0a}.usage-bar .progress--purple{background-color:#8a63d2}.live-update-seats-usage{margin:10px 0 5px}.lfs-data-pack-field{margin:-6px 0}.packs-table .desc{width:1%;white-space:nowrap}.lfs-data-icon{color:#586069;text-align:center}.lfs-data-icon.dark{color:#333}.lfs-data-icon.octicon-database{margin-right:3px;margin-left:2px}.setup-wrapper .paypal-container{margin-bottom:30px}.setup-wrapper .paypal-logged-in .paypal-container{margin-bottom:10px}.payment-methods{position:relative}.payment-methods .selected-payment-method{display:none}.payment-methods .selected-payment-method:before{display:table;content:""}.payment-methods .selected-payment-method:after{display:table;clear:both;content:""}.payment-methods .selected-payment-method.active{display:block}.payment-methods .form-group dd .form-control.short.input-vat{width:300px}.payment-methods .pay-with-header{margin:5px 0}.payment-methods .pay-with-paypal .loading-paypal-spinner,.payment-methods .pay-with-paypal .paypal-down-flash,.payment-methods .pay-with-paypal .paypal-form-actions,.payment-methods .pay-with-paypal .paypal-signed-in,.payment-methods .pay-with-paypal .setup-creditcard-form,.payment-methods .pay-with-paypal .terms{display:none}.payment-methods.paypal-down .paypal-down-flash,.payment-methods.paypal-loading .loading-paypal-spinner{display:block}.payment-methods.paypal-logged-in .paypal-sign-in{display:none}.payment-methods.paypal-logged-in .paypal-form-actions,.payment-methods.paypal-logged-in .paypal-signed-in,.payment-methods.paypal-logged-in .setup-creditcard-form,.payment-methods.paypal-logged-in .terms{display:block}.payment-methods.has-paypal-account .paypal-sign-in{display:none}.payment-methods.has-paypal-account .paypal-signed-in{display:block}.paypal-label{margin:15px 0 10px;font-weight:600}.paypal-container{display:inline-block;margin-bottom:15px;vertical-align:top;background-color:#f9f9f9;border-radius:4px}.braintree-paypal-loggedin{padding:11px 16px!important;background-position:12px 50%!important;border:1px solid #ddd!important;border-radius:4px}.bt-pp-name{margin-left:20px!important}.bt-pp-email{margin-left:15px!important}.bt-pp-cancel{font-size:0!important;line-height:1!important;color:#a00!important;text-decoration:none!important}.payment-history .amount,.payment-history .date,.payment-history .id,.payment-history .receipt,.payment-history .status{white-space:nowrap}.payment-history .break-all{word-break:break-all}.payment-history .receipt{text-align:center}.payment-history .currency,.payment-history .status{color:#586069}.payment-history .status-icon{width:14px;text-align:center}.payment-history .succeeded .status{color:#28a745}.payment-history .failed,.payment-history .refunded{background:#f6f8fa}.payment-history .failed td,.payment-history .refunded td{opacity:.5}.payment-history .failed .receipt,.payment-history .failed .status,.payment-history .refunded .receipt,.payment-history .refunded .status{opacity:1}.payment-history .refunded .status{color:#6a737d}.payment-history .failed .status{color:#cb2431}.paypal-icon{margin:0 2px 0 1px;vertical-align:middle}.inline-form-action{display:inline}.boxed-group .boxed-group-content{margin:10px}.currency-container .local-currency,.currency-container .local-currency-block{display:none}.currency-container.open .local-currency{display:inline}.currency-container.open .local-currency-block{display:block}.currency-container.open .default-currency{display:none}.strong-label{display:inline-block;margin-bottom:5px;font-weight:600}.discounted-original-price{font-weight:400;color:#586069;text-decoration:line-through}.billing-manager-input{width:500px}.billing-manager-banner{padding:30px 20px;margin-bottom:30px;overflow:hidden;background:#f9f9f9;border-bottom:1px solid #eee}.billing-manager-banner .container{position:relative}.billing-manager-banner-text{margin-left:210px;font-size:14px;color:#555}.billing-manager-banner-text .btn{margin-top:8px;margin-right:8px}.billing-manager-banner-title{font-size:12px;font-weight:600;color:#586069}.billing-manager-icon{position:absolute;top:-35px;left:0;width:180px;height:180px;font-size:180px;color:#e0e0e0}.golden-ticket-banner{margin-top:30px;margin-bottom:15px;text-align:center;border-top:1px solid #e6d445}.golden-ticket{height:60px;margin-top:-30px}.golden-ticket-button{float:left;width:50%;padding:30px 20px;font-size:18px;font-weight:400}.golden-ticket-button .octicon{margin-right:10px;vertical-align:middle}.golden-ticket-button:first-child{border-radius:3px 0 0 3px}.golden-ticket-button:last-child{border-left:0;border-radius:0 3px 3px 0}.golden-ticket-confirm .setup-header{text-align:center;border:0}.seats-change-arrow{margin:0 10px}.plan-choice{position:relative;display:block;padding:15px 15px 15px 40px;font-weight:400;background-color:#fafbfc;border:1px solid #e0e0e0}.plan-choice.open,.plan-choice.selected{background-color:#fff}.plan-choice--experiment{cursor:pointer;transition:transform .3s,box-shadow .3s,border-color .3s}.plan-choice--experiment.open,.plan-choice--experiment.selected{border-color:#d1d5da;box-shadow:0 1px 15px rgba(27,31,35,.15);transform:scale(1.025)}.plan-choice--experiment.open .plan-choice-icon,.plan-choice--experiment.selected .plan-choice-icon{background-color:#28a745;box-shadow:0 1px 1px rgba(27,31,35,.1)}.plan-choice--experiment.open .plan-choice-icon .octicon,.plan-choice--experiment.selected .plan-choice-icon .octicon{transform:scale(1)}.plan-choice--experiment.plan-choice--blue.open,.plan-choice--experiment.plan-choice--blue.selected{border-color:#2188ff}.plan-choice--experiment.plan-choice--blue.open .plan-choice-icon,.plan-choice--experiment.plan-choice--blue.selected .plan-choice-icon{background-color:#0366d6}.plan-choice--experiment.plan-choice--green.open,.plan-choice--experiment.plan-choice--green.selected{border-color:#34d058}.plan-choice--experiment.plan-choice--green.open .plan-choice-icon,.plan-choice--experiment.plan-choice--green.selected .plan-choice-icon{background-color:#28a745}.plan-choice--experiment.plan-choice--purple.open,.plan-choice--experiment.plan-choice--purple.selected{border-color:#8a63d2}.plan-choice--experiment.plan-choice--purple.open .plan-choice-icon,.plan-choice--experiment.plan-choice--purple.selected .plan-choice-icon{background-color:#6f42c1}.plan-choice-icon{transition:box-shadow .3s}.plan-choice-icon .octicon{transition:transform .2s;transform:scale(.5)}.plan-choice-radio{position:absolute;top:18px;left:15px}.plan-choice-exp{margin-top:5px;font-size:12px;color:#6a737d}.seat-field{width:50px;margin-right:5px}.billing-form-title{font-size:16px}.billing-line-items{margin-top:10px}.billing-line-item{padding:10px 0;font-size:12px;list-style:none;border-top:1px solid #e0e0e0}.billing-line-item:before{display:table;content:""}.billing-line-item:after{display:table;clear:both;content:""}.billing-line-item-last{font-weight:600;border-top-width:3px}.line-item-value{float:right}.condensed-payment-methods .vat-field{width:100%}.condensed-payment-methods .state-field{width:30%}.condensed-payment-methods .postcode-field{width:28%}.condensed-payment-methods .country-field{width:42%}.condensed-payment-methods .is-international .country-field{width:72%}.condensed-payment-methods .is-international.no-postcodes .country-field{width:100%}.zuora-billing-section.PaymentMethod--creditcard:not(.has-removed-contents)~.SignUpContinueActions{display:none}.zuora-billing-section.PaymentMethod--creditcard-added~.SignUpContinueActions,.zuora-billing-section.PaymentMethod--paypal~.SignUpContinueActions{display:block}.new-org-billing-form .z_hppm_iframe{width:100%!important}.billing-frequentActions-list{margin-top:10px}.billing-box-header{padding-bottom:15px}.billing-tooltip-underline{cursor:help;border-bottom:1px dotted}.billing-box-accordion[open] .octicon{height:auto;transform:rotate(90deg)}.billing-box-accordion:hover .billing-box-accordion-state .octicon{color:#6a737d}.billing-box-accordion-state .octicon{color:#586069;transition:transform .09s ease-out}.billing-box-progress{padding-top:1px;margin-bottom:6px}.billing-box-progressBars{height:4px}.billing-box-progressBars span:nth-child(2){border-left-color:#fff}.Details-element:focus{outline:none}.blame-commit{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blame-commit[data-heat="1"]{border-right:2px solid #f66a0a}.blame-commit[data-heat="2"]{border-right:2px solid rgba(246,106,10,.9)}.blame-commit[data-heat="3"]{border-right:2px solid rgba(246,106,10,.8)}.blame-commit[data-heat="4"]{border-right:2px solid rgba(246,106,10,.7)}.blame-commit[data-heat="5"]{border-right:2px solid rgba(246,106,10,.6)}.blame-commit[data-heat="6"]{border-right:2px solid rgba(246,106,10,.5)}.blame-commit[data-heat="7"]{border-right:2px solid rgba(246,106,10,.4)}.blame-commit[data-heat="8"]{border-right:2px solid rgba(246,106,10,.3)}.blame-commit[data-heat="9"]{border-right:2px solid rgba(246,106,10,.2)}.blame-commit[data-heat="10"]{border-right:2px solid rgba(246,106,10,.1)}.heat[data-heat="1"]{background:#f66a0a}.heat[data-heat="2"]{background:rgba(246,106,10,.9)}.heat[data-heat="3"]{background:rgba(246,106,10,.8)}.heat[data-heat="4"]{background:rgba(246,106,10,.7)}.heat[data-heat="5"]{background:rgba(246,106,10,.6)}.heat[data-heat="6"]{background:rgba(246,106,10,.5)}.heat[data-heat="7"]{background:rgba(246,106,10,.4)}.heat[data-heat="8"]{background:rgba(246,106,10,.3)}.heat[data-heat="9"]{background:rgba(246,106,10,.2)}.heat[data-heat="10"]{background:rgba(246,106,10,.1)}.blame-commit-date{font-size:11px;line-height:25px;flex-shrink:0}.blame-commit-date[data-heat="1"]{color:#c24e00}.blame-commit-date[data-heat="2"]{color:#ac571f}.blame-commit-date[data-heat="3"]{color:#a35b2c}.blame-commit-date[data-heat="4"]{color:#9a5f38}.blame-commit-date[data-heat="5"]{color:#926245}.blame-commit-date[data-heat="6"]{color:#896651}.blame-commit-date[data-heat="7"]{color:#806a5e}.blame-commit-date[data-heat="8"]{color:#776d6a}.blame-commit-date[data-heat="9"]{color:#6e7177}.blame-commit-date[data-heat="10"]{color:#6a737d}.line-age-legend .heat{width:2px;height:10px;margin:2px 1px 0}.blame-breadcrumb .css-truncate-target{max-width:680px}.blame-commit-info{width:450px;height:26px}.blame-commit-content{flex-grow:2;overflow:hidden}.blame-commit-message{text-overflow:ellipsis}.blame-commit-message .message.blank{color:rgba(27,31,35,.3)}.blob-reblame{min-width:24px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.reblame-link{padding-top:2px;color:#d1d5da}.blame-hunk g-emoji{font-size:14px!important}.blame-hunk:hover .reblame-link{color:#6a737d}.blame-container .blame-blob-num,.blame-container .blob-code-inner{padding-top:3px;padding-bottom:3px}.blame-container .blob-code-inner{flex-grow:1}.editor-abort{display:inline;font-size:14px}.blob-interaction-bar{position:relative;background-color:#f2f2f2;border-bottom:1px solid #e5e5e5}.blob-interaction-bar:before{display:table;content:""}.blob-interaction-bar:after{display:table;clear:both;content:""}.blob-interaction-bar .octicon-search{position:absolute;top:10px;left:10px;font-size:12px;color:#586069}.blob-filter{width:100%;padding:4px 20px 5px 30px;font-size:12px;border:0;border-radius:0;outline:none}.blob-filter:focus{outline:none}.html-blob{margin-bottom:15px}.TagsearchPopover{width:inherit;max-width:600px}.TagsearchPopover-content{max-height:300px}.TagsearchPopover-list .TagsearchPopover-list-item:hover{background-color:#f6f8fa}.TagsearchPopover-list .TagsearchPopover-list-item .TagsearchPopover-item:hover{text-decoration:none}.TagsearchPopover-list .blob-code-inner{white-space:pre-wrap}.linejump .linejump-input{width:340px;background-color:#fafbfc}.linejump .btn,.linejump .linejump-input{padding:10px 15px;font-size:16px}.CopyBlock{line-height:20px;cursor:pointer}.CopyBlock .octicon-clippy{display:none}.CopyBlock:active,.CopyBlock:focus,.CopyBlock:hover{background-color:#fff;outline:none}.CopyBlock:active .octicon-clippy,.CopyBlock:focus .octicon-clippy,.CopyBlock:hover .octicon-clippy{display:inline-block}.commit-form-avatar{margin-left:-64px}.file-commit-form{padding-left:64px}.file-commit-form--full{position:absolute;bottom:0;left:0;z-index:10;width:100%;padding-top:16px;padding-left:0;margin-top:16px;margin-bottom:16px;background:#fff}@media (min-width:1012px){.file-commit-form--full{top:0;right:0;bottom:auto;left:auto;width:auto;margin-top:0;margin-bottom:0}}.file-commit-form--full .commit-form{padding:0;margin-bottom:24px;border:0}.file-commit-form--full .commit-form:before{display:none}.file-commit-form-dropdown{position:fixed;top:0;left:0;width:100%;height:100%}.file-commit-form-dropdown:after{display:none}@media (min-width:1012px){.file-commit-form-dropdown{position:absolute;top:auto;left:auto;width:420px;height:auto}.file-commit-form-dropdown:after{display:inline-block}}.commit-form:after,.commit-form:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.commit-form:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#fff}.commit-form:before{border-width:8px;border-right-color:#ddd}.quick-pull-new-branch-icon{top:9px;left:10px}.code-formatting-menu{width:260px}.CodeMirror-hints{position:absolute;z-index:10;max-height:20em;margin:0;overflow-y:auto;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;list-style:none;background-color:#fff;border:1px solid #d1d5da;border-radius:3px;box-shadow:0 1px 5px rgba(27,31,35,.15)}.CodeMirror-hint{padding:2px 8px;margin:0;color:#24292e;white-space:pre;cursor:pointer}.CodeMirror-hint .CodeMirror-hint:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.CodeMirror-hint .CodeMirror-hint:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.CodeMirror-hint-active{color:#fff;background-color:#0366d6}.CodeMirror-lint-tooltip{position:fixed;z-index:100;min-width:300px;max-width:600px;opacity:0;transition:opacity .4s}.CodeMirror-lint-mark-error{position:relative;cursor:help}.CodeMirror-lint-mark-error:before{position:absolute;top:90%;width:100%;height:.25em;content:"";background:linear-gradient(135deg,transparent,transparent 45%,#d73a49,transparent 55%,transparent),linear-gradient(45deg,transparent,transparent 45%,#d73a49,transparent 55%,transparent);background-repeat:repeat-x,repeat-x;background-size:.5em .5em}.CodeMirror-lint-mark-warning{position:relative;cursor:help}.CodeMirror-lint-mark-warning:before{position:absolute;top:90%;width:100%;height:.25em;content:"";background:linear-gradient(135deg,transparent,transparent 45%,#f66a0a,transparent 55%,transparent),linear-gradient(45deg,transparent,transparent 45%,#f66a0a,transparent 55%,transparent);background-repeat:repeat-x,repeat-x;background-size:.5em .5em}.CodeMirror-lint-mark-info{position:relative;cursor:help}.CodeMirror-lint-mark-info:before{position:absolute;top:90%;width:100%;height:.25em;content:"";background:linear-gradient(135deg,transparent,transparent 45%,#79b8ff,transparent 55%,transparent),linear-gradient(45deg,transparent,transparent 45%,#79b8ff,transparent 55%,transparent);background-repeat:repeat-x,repeat-x;background-size:.5em .5em}.CodeMirror-hint-active .CodeMirror-hint-description{color:#fff!important}.merge-pr{padding-top:10px;margin:20px 0 0;border-top:1px solid #d1d5da}.merge-pr.open .merge-branch-form{display:block}.merge-pr.open .branch-action{display:none}.status-heading{margin-bottom:1px}.merge-status-list{max-height:0;padding:0;margin:15px -15px -16px -55px;overflow-y:auto;border:solid #e1e4e8;border-width:1px 0 0;transition:max-height .25s ease-in-out}.statuses-toggle-opened{display:none}.merge-status-item{position:relative;padding:10px 15px;background-color:#fafbfc;border-bottom:1px solid #e1e4e8}.merge-status-item:last-child:not(.review-item){border-bottom:0}.merge-status-item .css-truncate-target{max-width:100%}.merge-status-item .dismiss-review-form{display:none}.merge-status-item.open .review-status-item{display:none!important}.merge-status-item.open .dismiss-review-form{display:block}.status-meta{color:#586069}.status-meta-file-name{padding:.2em .4em;margin:0;font-size:85%;background-color:rgba(27,31,35,.05);border-radius:3px}.status-actions{margin-left:auto}.branch-action-item-icon{float:left;margin-left:-40px}.merge-status-icon{min-width:30px;margin-right:12px}.merge-pr-more-commits{margin-top:10px;margin-bottom:10px;margin-left:55px;font-size:12px;color:#586069}.branch-action{padding-left:55px;margin-top:16px;margin-bottom:16px}.branch-action .merge-branch-heading{margin-bottom:4px}.branch-action-icon{float:left;width:39px;height:39px;padding:4px;margin-left:-55px;color:#fff;text-align:center;border-radius:3px}.branch-action-body{position:relative;background-color:#fff;border:1px solid #d1d5da;border-radius:3px}.branch-action-body:after,.branch-action-body:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.branch-action-body:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:#fff}.branch-action-body:before{border-width:8px;border-right-color:#d1d5da}.branch-action-body .spinner{display:block;float:left;width:32px;height:32px;margin-right:15px;background:url(/images/spinners/octocat-spinner-32.gif) no-repeat}.branch-action-body .merge-branch-form,.branch-action-body .merge-message{padding:15px;background-color:#fafbfc;border-top:1px solid #e1e4e8;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.post-merge-message{padding:15px}.branch-action-item{padding:15px 15px 15px 55px;font-size:13px;line-height:1.4}.branch-action-item+.branch-action-item,.branch-action-item+.mergeability-details{border-top:1px solid #e1e4e8}.branch-action-item.open>.merge-status-list,.branch-action-item.open>.merge-status-list-wrapper>.merge-status-list{max-height:231px;margin-bottom:-15px}.branch-action-item.open .statuses-toggle-opened{display:inline}.branch-action-item.open .statuses-toggle-closed{display:none}.branch-action-btn{margin-left:15px}.branch-action-item-simple{padding-left:15px}.branch-action-item-simple .merge-status-list{margin-left:-15px}.branch-action-item-simple .merge-status-item{padding-left:12px}.branch-action-state-clean .branch-action-icon{background-color:#2cbe4e}.branch-action-state-clean .branch-action-body{border-color:#34d058}.branch-action-state-clean .branch-action-body:before{border-right-color:#34d058}.branch-action-state-unknown .branch-action-icon,.branch-action-state-unstable .branch-action-icon{background-color:#dbab09}.branch-action-state-unknown .branch-action-body,.branch-action-state-unstable .branch-action-body{border-color:#e2cc7a}.branch-action-state-unknown .branch-action-body:before,.branch-action-state-unstable .branch-action-body:before{border-right-color:#e2cc7a}.branch-action-state-merged .branch-action-icon{background-color:#6f42c1}.branch-action-state-merged .branch-action-body{border-color:#d5c8ed}.branch-action-state-merged .branch-action-body:before{border-right-color:#d5c8ed}.branch-action-state-closed-dirty .branch-action-icon,.branch-action-state-dirty .branch-action-icon,.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-icon{background-color:#6a737d}.branch-action-state-closed-dirty .branch-action-body,.branch-action-state-dirty .branch-action-body,.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body{border-color:#d1d5da}.branch-action-state-closed-dirty .branch-action-body:before,.branch-action-state-dirty .branch-action-body:before,.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body:before{border-right-color:#d1d5da}.branch-action-state-error .branch-action-icon,.is-merging .branch-action-state-error-if-merging .branch-action-icon{background-color:#d73a49}.branch-action-state-error .branch-action-body,.is-merging .branch-action-state-error-if-merging .branch-action-body{border-color:#f97583}.branch-action-state-error .branch-action-body:before,.is-merging .branch-action-state-error-if-merging .branch-action-body:before{border-right-color:#f97583}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.branch-action-body .spinner{background-image:url(/images/spinners/octocat-spinner-64.gif);background-size:32px 32px}}.merge-branch-form{margin:15px 0}.merge-branch-form .commit-form{border-color:#85e89d}.merge-branch-form .commit-form:before{border-right-color:#e1e4e8}.merge-branch-form.danger .commit-form,.merge-branch-form.error .commit-form{border-color:#f97583}.merge-branch-form.danger .commit-form:before,.merge-branch-form.error .commit-form:before{border-right-color:#f97583}.merge-button-matrix-merge-form .merge-branch-form{display:block}.completeness-indicator{width:30px;height:30px;text-align:center}.completeness-indicator .octicon{display:block;margin-top:7px;margin-right:auto;margin-left:auto}.completeness-indicator .octicon-alert{margin-top:6px}.completeness-indicator-success{color:#fff;background-color:#2cbe4e;border-radius:50%}.completeness-indicator-error{color:#fff;background-color:#cb2431;border-radius:50%}.completeness-indicator-problem{color:#fff;background-color:#6a737d;border-radius:50%}.pull-merging .pull-merging-error{display:none}.pull-merging.is-error .pull-merging-error{display:block}.pull-merging.is-error .merge-pr{display:none}.RecentBranches{background-color:#fffbdd;border:1px solid rgba(27,31,35,.15);border-radius:3px}.RecentBranches-item{line-height:28px;color:#735c0f}.RecentBranches-item+.RecentBranches-item{border-top:1px solid rgba(27,31,35,.05)}.RecentBranches-item-link{color:#735c0f}.RecentBranches-item-link.css-truncate-target{max-width:400px}.range-editor{position:relative;padding:5px 15px 5px 40px;margin-top:15px;margin-bottom:15px;background-color:#fafbfc;border:1px solid #e1e4e8;border-radius:3px}.range-editor .dots{font-size:16px}.range-editor .select-menu{position:relative;display:inline-block}.range-editor .select-menu.fork-suggester{display:none}.range-editor .branch-name{line-height:22px}.range-editor .branch .css-truncate-target,.range-editor .fork-suggester .css-truncate-target{max-width:180px}.range-editor .pre-mergability{display:inline-block;padding:5px;line-height:26px;vertical-align:middle}.range-editor .pre-mergability .octicon{vertical-align:text-bottom}.range-editor.is-cross-repo .select-menu.fork-suggester{display:inline-block}.range-editor-icon{float:left;margin-top:10px;margin-left:-25px;color:#586069}.gh-header-new-pr{margin-bottom:15px}.gh-header-new-pr .gh-header-meta{padding-bottom:0;margin-top:5px;border-bottom:0}.gh-header-new-pr .branch-name{display:inline}.compare-pr-header,.is-pr-composer-expanded .compare-show-header{display:none}.is-pr-composer-expanded .compare-pr-header{display:block}.range-cross-repo-pair{display:inline-block;padding:5px;white-space:nowrap}ul.comparison-list{width:350px;margin:25px auto 15px;font-size:14px;text-align:left;background:#fff;border:1px solid #dfe2e5;border-radius:3px}ul.comparison-list>li{padding:7px 10px;list-style-type:none;border-top:1px solid #eaecef}ul.comparison-list>li a{font-weight:600}ul.comparison-list>li em{float:right;font-style:normal;color:#586069}ul.comparison-list>li .octicon{position:relative;top:1px;color:#a3aab1}ul.comparison-list>li .css-truncate-target{max-width:200px}ul.comparison-list>li.title{font-size:12px;font-weight:600;color:#6a737d;text-transform:uppercase;background:#fafbfc;border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.branches .clear-search{display:none}.branches .loading-overlay{position:absolute;top:0;z-index:20;display:none;width:100%;height:100%;padding-top:50px;text-align:center;background-color:hsla(0,0%,100%,.7)}.branches.is-search-mode .clear-search,.branches .loading-overlay .spinner{display:inline-block}.branch-a-b-count .count-half{position:relative;float:left;width:90px;padding-bottom:6px;text-align:right}.branch-a-b-count .count-half:last-child{text-align:left;border-left:1px solid #959da5}.branch-a-b-count .count-value{position:relative;top:-1px;display:block;padding:0 3px;font-size:10px}.branch-a-b-count .bar{position:absolute;min-width:3px;height:4px}.branch-a-b-count .meter{position:absolute;height:4px;background-color:#c6cbd1}.branch-a-b-count .meter.zero{background-color:initial}.branch-a-b-count .bar-behind,.branch-a-b-count .bar-behind .meter{right:0;border-radius:3px 0 0 3px}.branch-a-b-count .bar-ahead{left:0;border-radius:0 3px 3px 0}.branch-a-b-count .bar-ahead .meter{border-radius:0 3px 3px 0}.branch-a-b-count .bar-ahead.even,.branch-a-b-count .bar-behind.even{min-width:2px;background:#eaecef}.custom-messages .add-message{flex:1}.custom-messages .add-message .Subhead-heading{flex:0 0 auto}.custom-messages .add-message p{flex:1;line-height:21px}.custom-messages .tabnav{height:23px;padding:0;border:0}.custom-messages .write-content{margin-right:0;margin-left:0}.custom-messages .timeline-comment{background-color:inherit;border:0}.custom-messages .comment-form-textarea{min-height:200px}.custom-messages .flash{margin-bottom:10px;overflow-y:hidden}.admin-options-block .admin-option-button{margin-top:8px}.admin-options-block .policy-enforcement{display:inline;margin-left:8px;color:#586069}.admin-options-block .policy-enforcement label{font-size:13px}.admin-options-block .disabled,.admin-options-block .disabled .note{color:#6a737d}.overflow-scroll-y{overflow-x:hidden!important;overflow-y:scroll!important}.business-menu-item:not([aria-current=page])+.business-sub-menu{display:none}.business-menu-icon{width:16px;margin-right:8px}body.full-width-p-0 .new-discussion-timeline{padding:0!important}body.full-width-p-0 .footer .mt-6{margin-top:0!important;border-top:0!important}body.full-width-p-0 .tabnav-pr .tabnav-extra{margin-right:24px}body.full-width-p-0 .tabnav-pr .tabnav-tabs{margin-left:16px}.pr-toolbar .checks-summary-conclusion{width:32px;height:32px;line-height:32px;border-radius:50%}.actions-full-screen .Header,.actions-full-screen .Header-old,.actions-full-screen .pagehead{display:none}.checks-index-item:first-child:before{position:absolute;top:0;left:0;z-index:1;width:100%;height:5px;content:" ";background-image:linear-gradient(180deg,rgba(47,54,61,.1) 0,hsla(0,0%,100%,0))}.checks-index-item:hover{background-color:#fff!important}.checks-index-item.selected{background-color:#0366d6!important;border-top-color:#0366d6!important}.checks-index-item.selected .selected-color-white{color:#fff!important}.checks-index-item .css-truncate-target{max-width:185px}.checks-index-item-icon{width:16px}.selected .checks-index-label{font-weight:600;color:#fff}.checks-summary-meta .octicon{width:16px}.checks-results-items .octicon-fold{display:none}.checks-results-items .Details--on .octicon-fold{display:inline-block}.checks-results-items .Details--on .octicon-unfold{display:none}.check-annotation{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.check-annotation:after{position:absolute;top:-1px;bottom:-1px;left:0;display:block;width:4px;content:" "}.check-annotation .annotation-actions{top:4px;right:8px}.check-annotation .annotation-octicon{width:16px}.check-annotation.Details--on .Details-content--hidden{display:block!important}.annotation-title{word-break:break-all}.check-annotation-failure:after{background-color:#d73a49}.check-annotation-failure .annotation-title{color:#d73a49}.check-annotation-warning:after{background-color:#ffd33d}.check-annotation-warning .octicon-alert{color:#dbab09}.check-annotation-warning .annotation-title{color:#b08800}.check-annotation-notice:after{background-color:#6a737d}.check-annotation-notice .annotation-title{color:#6a737d}.neutral-check{color:#959da5}.CheckRun{background-color:#24292e}.CheckStep-header{color:#959da5}.CheckRun-search{width:280px}.CheckRun-search .btn{color:#fff;background-color:#24292e;background-image:none}.CheckRun-search .btn:hover{background-color:#2f363d}.CheckRun-search .btn[disabled]{color:#586069;background-image:none}.CheckRun-search .btn[disabled]:hover{background-color:#24292e}.CheckRun-header{border-bottom:1px solid #444d56}.CheckRun-log-title{color:hsla(0,0%,100%,.85)}.CheckRun-search-input{padding-right:60px;color:#f6f8fa;background-color:hsla(0,0%,100%,.125)}.CheckRun-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.CheckRun-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.CheckRun-search-input::placeholder{color:hsla(0,0%,100%,.75)}.CheckRun-search-input:focus{color:#24292e;background-color:#fafbfc}.CheckStep-timestamp{color:#d1d5da}.CheckStep-line{color:#f6f8fa}.CheckStep-line .CheckStep-line-number{width:48px;overflow:hidden;color:#959da5;text-align:right;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.CheckStep-line .CheckStep-line-timestamp{display:none;color:#959da5}.CheckStep-line .CheckStep-line-content{overflow-x:auto;white-space:pre-wrap}.CheckStep-line:hover{background-color:#2f363d}.CheckStep-line.selected{background-color:#586069}.CheckStep-line .dt-fm{color:#24292e!important;background:#ffdf5d;outline:1px solid #ffdf5d}.CheckStep-line .dt-fm.select{color:#fff!important;background:#2188ff;outline:1px solid #79b8ff}.CheckRun-show-timestamps .CheckStep-line-timestamp{display:inline}.CheckStep .log-line-command{font-weight:600;color:#79b8ff}.CheckStep .log-line-debug{font-weight:600;color:#b392f0}.CheckStep .log-line-error{font-weight:600;color:#f97583}.CheckStep .log-line-info,.CheckStep .log-line-verbose{font-weight:600;color:#959da5}.CheckStep .log-line-warning{font-weight:600;color:#ffab70}.CheckStep .log-line-section{font-weight:600;color:#85e89d}.CheckStep .ansifg-b{color:#24292e}.CheckStep .ansifg-r{color:#f97583}.CheckStep .ansifg-g{color:#85e89d}.CheckStep .ansifg-y{color:#ffea7f}.CheckStep .ansifg-bl{color:#79b8ff}.CheckStep .ansifg-m{color:#b392f0}.CheckStep .ansifg-c{color:#73e3ff}.CheckStep .ansifg-w{color:#e1e4e8}.CheckStep .ansifg-gr{color:#959da5}.CheckStep .ansibg-b{background-color:#24292e}.CheckStep .ansibg-r{background-color:#f97583}.CheckStep .ansibg-g{background-color:#85e89d}.CheckStep .ansibg-y{background-color:#ffea7f}.CheckStep .ansibg-bl{background-color:#24292e}.CheckStep .ansibg-m{background-color:#b392f0}.CheckStep .ansibg-c{background-color:#73e3ff}.CheckStep .ansibg-w{background-color:#e1e4e8}.CheckStep .ansibg-gr{background-color:#959da5}.CheckStep .bright{filter:brightness(1.5)}.CheckStep-icon{display:inline-block;width:24px}.AnnotationsPopover{right:0;bottom:0;z-index:29}.AnnotationsPopover .checks-results-items{max-height:50vh;overflow:scroll}.code-frequency .addition{fill:#2cbe4e;fill-opacity:1}.code-frequency .deletion{fill:#cb2431;fill-opacity:1}.cadd{color:#28a745}.cadd,.cdel{font-weight:600}.cdel{color:#cb2431}.code-list .file-box{border:1px solid #e1e4e8;border-radius:3px}.code-list .title{min-height:24px;margin:-3px 0 10px 38px;font-weight:600;line-height:1.2}.code-list .repo-specific .full-path,.code-list .repo-specific .title{margin-left:0}.code-list .match-count,.code-list .updated-at{margin:0;font-weight:400}.code-list .language{float:right;margin-left:10px;font-size:12px;color:rgba(51,51,51,.75)}.code-list .avatar{float:left}.code-list .code-list-item+.code-list-item{border-top:1px solid #eee}.code-list .blob-num{padding:0}.code-list .blob-num:before{content:normal}.code-list .blob-num a{padding:0 10px;color:inherit}.code-list .blob-num a:hover{color:#0366d6}.code-list .blob-code{white-space:pre-wrap}.code-list .divider .blob-code,.code-list .divider .blob-num{padding-top:0;padding-bottom:0;cursor:default;background-color:#f8fafd}.code-list .divider .blob-num{height:18px;padding:0 10px;line-height:15px;background-color:#f0f5fa}.code-list .full-path{margin:0 0 0 40px}.code-list .full-path .octicon-repo{color:#586069}.code-list .full-path .octicon-lock{color:#e9dba4}.code-list .full-path a{color:#6a737d}.code-list-item-private .file-box{border:1px solid #fadda5}.code-list-item-private .blob-num{background-color:#fffdef;border-right:1px solid #fadda5}.code-list-item-private .blob-num a{color:rgba(27,31,35,.7)}.code-list-item-private .divider .blob-code,.code-list-item-private .divider .blob-num{color:rgba(27,31,35,.7);background-color:#fffdef}.codesearch-head.pagehead h1{width:250px;line-height:33px}.search-autocomplete-dropdown{min-width:240px}.search-autocomplete-dropdown .autocomplete-category-heading:after{position:absolute;width:100%;height:1px;margin-top:8px;content:"";background-color:#e1e4e8}.search-autocomplete-dropdown .autocomplete-keyword-only{background:#f6f8fa}.search-autocomplete-dropdown .autocomplete-text{color:#24292e}.search-autocomplete-dropdown .navigation-item{cursor:pointer}.search-autocomplete-dropdown .navigation-item.navigation-focus,.search-autocomplete-dropdown .navigation-item[aria-selected=true]{color:#fff;background-color:#0366d6;border-radius:3px}.search-autocomplete-dropdown .navigation-item.navigation-focus .autocomplete-text,.search-autocomplete-dropdown .navigation-item[aria-selected=true] .autocomplete-text{color:#fff}@media (min-width:768px){.advanced-search-form .flattened dt{width:230px}.advanced-search-form .flattened dt label{font-weight:400}.advanced-search-form .flattened dd,.advanced-search-form .form-checkbox{margin-left:250px}}.codesearch-results .code-list .title a{word-wrap:break-word}.codesearch-results .repo-list-item{border-bottom:0}.codesearch-results .repo-list-item+.repo-list-item{border-top:1px solid #e1e4e8}.search-form-fluid .TableObject-item--primary{position:relative;padding-right:8px}.search-form-fluid .completed-query{position:absolute;top:7px;right:8px;left:8px;z-index:1;margin:0;overflow:hidden;white-space:nowrap}.search-form-fluid .completed-query span{opacity:0}.search-form-fluid .search-page-label{position:relative;display:block;font-weight:400;cursor:text}.search-form-fluid .search-page-label.focus .completed-query{opacity:.6}.search-form-fluid .search-page-input{position:relative;z-index:2;min-height:0;padding:0;margin:0;background:none;border:0;box-shadow:none}.search-form-fluid .search-page-input:focus{box-shadow:none}.topics-row-container{height:30px;overflow:hidden}@media (max-width:544px){.codesearch-pagination-container .gap,.codesearch-pagination-container a:not(.next_page):not(.previous_page){display:none}.codesearch-pagination-container .next_page,.codesearch-pagination-container .previous_page{width:100%}.codesearch-pagination-container .current{color:#586069;background:#fff;border-color:#e1e4e8}.codesearch-pagination-container .current:after{content:" of " attr(data-total-pages)}}.commit-activity-graphs .dots{display:none}.commit-activity-master{margin-top:20px}.is-graph-loading .commit-activity-master{display:none}rect{shape-rendering:crispedges}rect.max{fill:#f9c513}g.bar{fill:#28a745}g.mini{fill:#fb8532}g.active rect{fill:#b31d28}.dot text,circle.focus{fill:#444d56}.dot text{stroke:none}.CommunityTemplate-markdown{height:800px;overflow-y:scroll;font-size:14px}.CommunityTemplate-highlight{padding:2px 4px;margin:0;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;font-style:normal;font-weight:600;color:#24292e;cursor:pointer;background-color:#ffd33d;border-radius:3px}.CommunityTemplate-highlight--focus{color:#fff;background-color:#0366d6}.community-checklist .progress-bar{background:linear-gradient(90deg,#ffd33d,#c5e300,#28a745);background-color:initial}.community-checklist .progress{float:right;background-color:#f6f8fa}.community-checklist .checklist-dot{color:#dbab09}body.full-width-p0 .container,body.full-width-p0 .container-lg{width:100%;max-width:none;padding-right:16px;padding-left:16px}body.full-width-p0 .container-lg.new-discussion-timeline{padding-right:0!important;padding-left:0!important}.compare-cutoff,.diff-cutoff{padding:8px 0;margin:5px 0;font-weight:600;color:#4c4a42;text-align:center;background-color:#fff9ea;border:1px solid #dfd8c2;border-radius:3px}span.no-nl-marker{position:relative;color:#cb2431;vertical-align:middle}.symlink .no-nl-marker{display:none}.existing-pull{margin:10px 0}.existing-pull .list-group-item:before{display:table;content:""}.existing-pull .list-group-item:after{display:table;clear:both;content:""}.existing-pull .existing-pull-contents{float:left;width:680px}.existing-pull .existing-pull-button{float:right;margin-top:3px}.existing-pull .existing-pull-number{font-weight:400;color:#aaa}.existing-pull .css-truncate{max-width:700px}.existing-pull .css-truncate p{display:inline}.compare-pr-placeholder{padding:15px;margin:15px 0;font-size:14px;color:#4c4a42;background-color:#fff9ea;border:1px solid #dfd8c2;border-radius:3px}.compare-pr-placeholder p{margin:7px 0;color:#6d6c60}.compare-pr-placeholder .btn{margin-right:10px;margin-bottom:-2px}.compare-pr-placeholder .help-link{padding:3px;margin-top:5px;margin-right:-3px;color:#9c997d;text-decoration:none}.compare-pr .contributing,.compare-pr .new-pr-form,.compare-pr.open .compare-pr-placeholder{display:none}.compare-pr.open .contributing,.compare-pr.open .new-pr-form{display:block}.select-menu-item{text-align:left;background-color:#fff;border-top:0;border-right:0;border-left:0}.contributions-setting-menu{z-index:80;width:330px}.calendar-graph.days-selected rect.day{opacity:.5}.calendar-graph.days-selected rect.day.active{opacity:1}.calendar-graph .dots{width:64px;height:64px;margin:20px auto 0}.calendar-graph text.month{font-size:10px;fill:#767676}.calendar-graph text.wday{font-size:9px;fill:#767676}.graph-before-activity-overview{border-top-left-radius:3px;border-top-right-radius:3px}.activity-overview-box{border-top-left-radius:0;border-top-right-radius:0}.contrib-footer{padding:0 10px 12px;font-size:11px}.contrib-legend{float:right}.contrib-legend .legend{position:relative;bottom:-1px;display:inline-block;margin:0 5px;list-style:none}.contrib-legend .legend li{display:inline-block;width:10px;height:10px}.contrib-square{font-size:22px;line-height:.9;color:#cce888}.contribution-activity h2{margin:30px 0 15px;font-size:18px;font-weight:400}.contribution-activity .select-menu-button{position:relative;top:-4px}.contribution-activity.loading .contribution-activity-listing,.contribution-activity.loading .contribution-activity-show-more{display:none}.contribution-activity.loading .contribution-activity-spinner{display:block}.contribution-activity-spinner{display:none;width:64px;height:64px;margin:20px auto 0}.contribution-activity-spinner.next{margin:0 auto}ul.simple-conversation-list a.meta{color:#586069}li.contribution{padding:10px 0;list-style:none}li.contribution h3{display:inline-block;margin:0;font-size:14px}li.contribution .cmeta{display:block;font-size:12px}li.contribution .d{color:#c00}li.contribution .a{color:#8cac29}li.contribution .num{color:#586069}.activity-overview-axis,.activity-overview-point{stroke:#6cb267}.halloween-activity-overview .activity-overview-axis,.halloween-activity-overview .activity-overview-point{stroke:#fe9600}.activity-overview-label{fill:#586069}.activity-overview-percentage{font-size:10px;fill:#959da5}.tint-box{position:relative;margin-bottom:10px;background:#f6f8fa;border-radius:6px}.tint-box.transparent{background:#fff}.tint-box .activity{padding-top:100px;margin-top:0}.contrib-person path{fill:#fb8532}.contrib-person .midlabel{fill:#959da5}.coupons .setup-plans td img{margin-top:-2px;vertical-align:middle}.coupons .coupon-form-body{width:270px;padding:20px;margin:100px auto 60px;font-size:14px;text-align:center;background-color:#fff;background-image:linear-gradient(#fefefe,#fafafa);border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.075),inset 1px 0 #fff}.coupons .coupon-form-body .input-block{margin-bottom:15px}.coupons .coupon-form-body .btn{display:block;width:100%}.coupon-icon{width:80px;height:80px;margin:0 auto 15px;color:#0366d6;border:1px solid #dedede;border-radius:40px}.coupon-icon .octicon{margin-top:15px;margin-right:2px}.coupons-list-options .select-menu{display:inline-block;margin-right:8px}.coupons-list-options .pagination{float:right;margin:0}.user-repos .mini-repo-list-item{padding-right:6px}.user-repos .mini-repo-list-item .repo-and-owner{max-width:100%}.user-repos .mini-repo-list-item .owner{max-width:145px}.repo-private-icon{fill:#dbab09}.dashboard-rollup-items>.dashboard-rollup-item{border-top:1px solid #e1e4e8}@keyframes broadCastMaskFade{0%{opacity:0}30%{opacity:1}70%{opacity:1}to{opacity:0}}.github-jobs-logo:hover{text-decoration:none}.github-jobs-logo strong{display:inline-block;width:62px;height:12px;text-indent:-9999px;vertical-align:middle;background:url(/images/modules/jobs/logo.png) 0 0 no-repeat;background-size:62px auto}.dashboard h1{margin-bottom:.5em;font-size:160%}.dashboard h1 a{font-size:70%;font-weight:400}.dashboard .notice{padding:15px;margin-top:0;margin-bottom:0;text-align:center}.news-full,.page-profile .news{float:none;width:auto}.dashboard-break-word{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word}.news .error-message,.news .is-error .loading-message{display:none}.news .is-error .error-message{display:block}.news .bio g-emoji,.news .repo-description g-emoji{display:inline-block}.dashboard-underlined-link:hover,.dashboard-underlined-link:hover *{text-decoration:underline}.dashboard-notice{position:relative;padding:15px 15px 15px 55px;margin-bottom:20px;font-size:14px;background-color:#fafbfc;border:1px solid #d1d5da;border-radius:3px}.dashboard-notice .dismiss{position:absolute;top:10px;right:10px;width:16px;height:16px;color:#959da5;cursor:pointer}.dashboard-notice .dismiss:hover{color:#586069}.dashboard-notice .notice-icon{position:absolute;top:15px;left:15px}.dashboard-notice .octicon-organization{color:#0366d6}.dashboard-notice h2{margin-top:9px;margin-bottom:16px;font-size:18px;font-weight:400;color:#24292e}.dashboard-notice p.no-title{padding-right:5px}.dashboard-notice .inset-figure{float:right;margin-bottom:15px;margin-left:20px}.dashboard-notice ul{margin-left:18px}.dashboard-notice li{padding-bottom:15px}.dashboard-notice .coupon{padding:10px;margin:15px 0;font-size:20px;font-weight:600;text-align:center;background:#fff;border:1px dashed #dbedff}.dashboards-overview-lead{width:700px}.dashboards-overview-cards .boxed-group{width:100%;margin:10px 0}.dashboards-overview-cards .boxed-group .graph-canvas path{stroke-opacity:.5}.dashboards-overview-cards .is-no-activity .blankslate{display:block}.dashboards-overview-cards .is-no-activity .dashboards-overview-graph{display:none}.dashboards-overview-cards .blankslate{display:none;padding-top:47px;background-color:#fff;border:0;box-shadow:none}.dashboards-overview-cards .octicon-arrow-down,.dashboards-overview-cards .octicon-arrow-up{display:none}.dashboards-overview-cards .is-decrease .octicon-arrow-down,.dashboards-overview-cards .is-increase .octicon-arrow-up{display:inline-block}.dashboards-overview-cards .octicon-arrow-down{color:#cb2431}.dashboards-overview-cards .octicon-arrow-up{color:#1db34f}.dashboards-overview-cards .graph-canvas .dots{padding:43px 0}.dashboards-overview-cards .summary-stats{height:78px}.dashboards-overview-cards .summary-stats .metric-0{color:#1db34f}.dashboards-overview-cards .summary-stats .metric-1{color:#0366d6}.dashboards-overview-cards .summary-stats .totals-num{margin:0 7px}.dashboards-overview-cards .summary-stats .single{width:100%}.dashboards-overview-cards .dashboards-overview-graph{height:160px}.dashboards-overview-cards .dashboards-overview-graph path{fill:none;stroke-width:2}.dashboards-overview-cards .dashboards-overview-graph path.metric-0{stroke:#1db34f}.dashboards-overview-cards .dashboards-overview-graph path.metric-1{stroke:#1d7fb3}.dashboards-overview-cards .dashboards-overview-graph .y line{stroke:#1db34f}.dashboards-overview-cards .dashboards-overview-graph .y.unique line{stroke:#1d7fb3}.dashboards-overview-cards .dashboards-overview-graph .overlay{fill-opacity:0}.dashboards-overview-cards .metric-0 circle{fill:#1db34f;stroke:#fff;stroke-width:2}.dashboards-overview-cards .dots.metric-1 circle{fill:#1d7fb3;stroke:#fff;stroke-width:2}dl.form.developer-select-account{margin-top:0}.developer-wrapper .setup-info-module .features-list{margin-left:16px}.developer-wrapper .setup-info-module .features-list .octicon{margin-left:-17px}.developer-thanks h2{font-size:38px;font-weight:400}.developer-thanks .hook{margin-top:2px;margin-bottom:30px;font-size:18px;font-weight:300;color:#666}.developer-thanks-image{position:relative;bottom:-45px;float:left;width:400px}.developer-thanks-section{margin:130px 0 0 470px}.developer-next-steps{font-size:18px;font-weight:300;list-style:none}.developer-next-steps li{margin-top:10px}.developer-next-steps li:first-child{margin-top:0}.developer-next-steps .octicon{margin-right:10px;color:#28a745;vertical-align:middle}.deployments-timeline{border-bottom:2px solid #e6ebf1}.deployments-timeline-item{border-left:2px solid #e6ebf1}.deployments-timeline-icon{left:-1px}.deployments-timeline-icon.is-error,.deployments-timeline-icon.is-failure{color:#cb2431}.deployments-timeline-icon.is-active{color:#28a745}.deployments-timeline-icon.is-inactive{color:#6a737d}.deployments-timeline-icon.is-in_progress,.deployments-timeline-icon.is-pending,.deployments-timeline-icon.is-queued{color:#b08800}.donut-chart>.action_required,.donut-chart>.cancelled,.donut-chart>.error,.donut-chart>.failure,.donut-chart>.timed_out{fill:#cb2431}.donut-chart>.expected,.donut-chart>.in_progress,.donut-chart>.pending,.donut-chart>.queued{fill:#dbab09}.donut-chart>.success{fill:#2cbe4e}.donut-chart>.neutral,.donut-chart>.skipped{fill:#959da5}.survey-question-form .other-text-form,.survey-question-form .other-text-form-block{display:none;margin-top:0}.survey-question-form.is-other-selected .other-text-form{display:inline-block}.survey-question-form.is-other-selected .other-text-form-block{display:block}.early-acccess-setup-form .form-group{margin-top:0;margin-bottom:30px}.early-acccess-setup-form select{display:block;width:200px}.early-access-setup-list{padding:0 15px 15px;margin:0;font-size:14px}.early-access-setup-list .early-access-setup-list-item{margin-top:10px;margin-left:20px}.early-access-setup-list .early-access-setup-list-item:first-child{margin-top:0}.ghe-license-status{padding:40px 0;font-size:16px;text-align:center}.ghe-license-status .octocat{width:225px;margin-bottom:20px}.ghe-license-status h1{margin-bottom:10px}.ghe-license-status p{margin-bottom:5px;color:#586069}.ghe-license-expiry-icon{margin:5px 10px 0 0;color:#ddb38a}.explore-content{margin-top:-15px}.explore-content .blankslate{margin-top:15px}.explore-pjax-container{position:relative}.newsletter-frequency-choice{font-weight:400;cursor:pointer;border:1px solid #eee;border-radius:4px}.newsletter-frequency-choice .notice{position:absolute;right:0;bottom:1em;left:0;z-index:-1;font-weight:600;color:#28a745;text-align:center;opacity:0}.newsletter-frequency-choice .notice.visible{bottom:-2em;opacity:1;transition:opacity .15s ease-in-out}.newsletter-frequency-choice h3{padding:10px;margin:0;font-weight:400;text-align:center;background-color:#fafbfc;border-bottom:1px solid #eee}.newsletter-frequency-choice h3 input{position:relative;top:-2px;margin:0 3px 0 -19px}.newsletter-frequency-choice p{margin:15px}.newsletter-frequency-choice:hover{border-color:#0366d6}.newsletter-frequency-choice:hover h3{color:#fff;background-color:#0366d6;border-color:#0366d6}.newsletter-frequency-choice.selected{border-color:#28a745;box-shadow:0 0 5px rgba(0,0,0,.2)}.newsletter-frequency-choice.selected h3{color:#fff;background-color:#28a745;border-color:#28a745}@media (min-width:1012px){.col-lg-9 .Collection{max-width:744px}}@media (min-width:1012px){.Spotlight{margin-top:200px}}.Spotlight-text{z-index:1}.Spotlight-blur{z-index:0;opacity:.9}@media (min-width:1012px){.Spotlight-blur{opacity:1;-webkit-mask-image:linear-gradient(0deg,#000,#000 75%,transparent);mask-image:linear-gradient(0deg,#000,#000 75%,transparent)}}@media (min-width:1280px){.Spotlight-blur--toright{-webkit-mask-image:linear-gradient(90deg,#000,#000 75%,transparent);mask-image:linear-gradient(90deg,#000,#000 75%,transparent)}}@media (min-width:1280px){.Spotlight-blur--toleft{-webkit-mask-image:linear-gradient(270deg,#000,#000 75%,transparent);mask-image:linear-gradient(270deg,#000,#000 75%,transparent)}}.exploregrid{display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:stretch;list-style:none}.exploregrid-item-wrap{display:flex;flex-direction:column}.exploregrid-item{flex:1;position:relative;display:block;height:100%;padding-top:24px;padding-bottom:64px;font-size:14px;color:#555;border:1px solid rgba(0,0,0,.075);border-bottom-color:rgba(0,0,0,.125);border-radius:4px;box-shadow:0 1px 2px rgba(0,0,0,.05),0 5px 10px rgba(0,0,0,.05);transition:border-color .1s ease-in-out,box-shadow .1s ease-in-out}.exploregrid-item:hover{text-decoration:none;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.15);box-shadow:0 1px 3px rgba(0,0,0,.05),0 8px 15px rgba(0,0,0,.1)}.exploregrid-item:hover .exploregrid-item-title{color:#0366d6}.exploregrid-item:hover .exploregrid-item-header{opacity:1}.exploregrid-item-mini{float:left;width:100%;height:auto;margin:0 0 15px}.exploregrid-item-mini .exploregrid-item-header{height:10px}.exploregrid-item-mini .exploregrid-item-title{font-size:16px}.exploregrid-item-header{position:absolute;top:0;left:0;width:100%;height:18px;background-color:#f5f5f5;border:1px solid rgba(0,0,0,.1);border-top-left-radius:4px;border-top-right-radius:4px;opacity:.8;transition:opacity .1s ease-in-out}.exploregrid-item-title{margin-top:0;margin-bottom:5px;font-size:20px;font-weight:400;line-height:1.2;color:#24292e}.feature-preview-dialog{width:90vw;max-width:1000px;min-height:580px;max-height:700px}.file{position:relative;margin-top:16px;margin-bottom:16px;border:1px solid #ddd;border-radius:3px}.file .data.empty{padding:5px 10px;color:#586069}.file:not(.open) .file-header.file-header--expandable{border-bottom:0}.file .data.suppressed,.file.open .image{display:none}.file.open .data.suppressed{display:block}.file .image{position:relative;padding:30px;text-align:center;background-color:#ddd}.file .image table{margin:0 auto}.file .image td{padding:0 5px;color:#888;text-align:center;vertical-align:top}.file .image td img{max-width:100%}.file .image .border-wrap{position:relative;background-color:#fff;border:1px solid #6a737d}.file .image .border-wrap,.file .image a{display:inline-block;line-height:0}.file .image canvas,.file .image img{max-width:600px;background:url(/images/modules/commit/trans_bg.gif) 100% 100% #eee;border:1px solid #fff}.file .image .view canvas,.file .image .view img{position:relative;top:0;right:0;max-width:inherit;background:url(/images/modules/commit/trans_bg.gif) 100% 100% #eee}.file .image .view>span{vertical-align:middle}.file .empty{background:none}.file-sidebar-container .file{border-top-right-radius:0;border-bottom-right-radius:0}.file-header{padding:5px 10px;background-color:#fafbfc;border-bottom:1px solid #e1e4e8;border-top-left-radius:2px;border-top-right-radius:2px}.file-header:after,.file-header:before{display:table;content:""}.file-header:after{clear:both}.file-actions{float:right;padding-top:2px;font-size:13px}.file-actions select{margin-left:5px}.file-info{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;line-height:32px}.file-info .octicon{vertical-align:text-bottom}.sticky-file-header{position:-webkit-sticky;position:sticky;top:60px;z-index:6}.sticky-file-header.has-open-dropdown{z-index:10}.file-info-divider{display:inline-block;width:1px;height:18px;margin-right:3px;margin-left:3px;vertical-align:middle;background-color:#ddd}.file-mode{text-transform:capitalize}.file-blankslate{border:0;border-radius:0 0 2px 2px}.diff-progressive-loader{min-height:150px}.load-diff-button,.load-diff-retry{z-index:1;min-height:32px}.diff-placeholder-svg{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden-diff-reason{z-index:2}.graphs h2.ghead:after{display:block;height:0;clear:both;visibility:hidden;content:"."}.graphs.wheader h2{padding:1px}.graphs .area{fill:#28a745;fill-opacity:.5}.graphs .path{fill:none;stroke:#28a745;stroke-opacity:1;stroke-width:2px}.graphs .dot{fill:#28a745;stroke:#1e7e34;stroke-width:2px}.graphs .dot.padded{stroke:#fff;stroke-width:1px}.graphs .dot.padded circle:hover{fill:#0366d6}.graphs .d3-tip{fill:#24292e}.graphs .d3-tip text{font-size:11px;fill:#fff}.graphs .dir{float:right;padding-top:5px;font-size:12px;font-weight:400;line-height:100%;color:#6a737d}.graphs .selection .overlay{visibility:none}.graphs .selection .selection{fill:#24292e;fill-opacity:.1;stroke:#24292e;stroke-dasharray:3 3;stroke-opacity:.4;stroke-width:1px;shape-rendering:crispedges}.graph-filter h3{display:inline-block;font-size:24px;font-weight:300}.graph-filter .info{margin-bottom:20px;color:#586069}.graph-canvas .activity{width:400px;padding:10px;margin:100px auto 0;color:#2f363d;text-align:center;border-radius:3px}.graph-canvas .dots{margin:0 auto}.graph-canvas>.activity{display:none}.graph-canvas .axis{font-size:10px}.graph-canvas .axis line{stroke:rgba(27,31,35,.1);shape-rendering:crispedges}.graph-canvas .axis path{display:none}.graph-canvas .axis .zero line{stroke:#0366d6;stroke-dasharray:3 3;stroke-width:1.5}.graph-canvas .graph-empty,.graph-canvas .graph-error,.graph-canvas .graph-loading,.graph-canvas .graph-no-usable-data{display:none}.graph-canvas.is-graph-empty .graph-empty,.graph-canvas.is-graph-empty>.activity,.graph-canvas.is-graph-load-error .graph-error,.graph-canvas.is-graph-loading .graph-loading,.graph-canvas.is-graph-loading>.activity,.graph-canvas.is-graph-without-usable-data .graph-no-usable-data,.graph-canvas.is-graph-without-usable-data>.activity{display:block}.svg-tip{position:absolute;z-index:99999;padding:10px;font-size:12px;color:#959da5;text-align:center;background:rgba(0,0,0,.8);border-radius:3px}.svg-tip strong{color:#dfe2e5}.svg-tip.is-visible{display:block}.svg-tip:after{position:absolute;bottom:-10px;left:50%;width:5px;height:5px;box-sizing:border-box;margin:0 0 0 -5px;content:" ";border:5px solid transparent;border-top-color:rgba(0,0,0,.8)}.svg-tip.comparison{padding:0;text-align:left;pointer-events:none}.svg-tip.comparison .title{display:block;padding:10px;margin:0;font-weight:600;line-height:1;pointer-events:none}.svg-tip.comparison ul{margin:0;white-space:nowrap;list-style:none}.svg-tip.comparison li{display:inline-block;padding:10px}.svg-tip.comparison .metric-0{border-top:3px solid #28a745;border-right:1px solid #24292e}.svg-tip.comparison .metric-1{border-top:3px solid #2188ff}.svg-tip-one-line{white-space:nowrap}.LoadingDependencies{position:absolute;left:0;width:100%;animation:fadeOut;animation-duration:.6s;animation-fill-mode:forwards;animation-timing-function:ease-in}.LoadingDependencies--loading{position:relative}.LoadingDependencies--loading .octicon{opacity:0;animation:dropBox;animation-duration:1.25s;animation-fill-mode:forwards;animation-timing-function:linear;animation-delay:1s;animation-iteration-count:infinite}.LoadingDependencies--loading .octicon:nth-child(2){position:absolute;left:calc(50% - 27px);animation-delay:1.61s}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes dropBox{0%{opacity:1;transform:translateY(-110%)}7%{opacity:1;transform:translateY(20%);transform:translateX(0)}80%{opacity:1}to{opacity:0;transform:translateX(-250%)}}.topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:#f1f8ff;border-radius:3px}.topic-tag-link:hover{text-decoration:none;background-color:#def}.topic-tag-outline{background:#fff;box-shadow:inset 0 0 0 1px #c8e1ff}.delete-topic-button,.delete-topic-link{display:inline-block;width:26px;color:#6a737d;background-color:#f1f8ff;border:0;border-left:1px solid #b4d9ff;border-top-right-radius:3px;border-bottom-right-radius:3px}.delete-topic-button:hover,.delete-topic-link:hover{background-color:#def}.delete-topic-link{padding-right:8px;padding-left:8px;margin-left:8px;line-height:1.75}.delete-topic-link:hover{text-decoration:none}.invalid-topic .delete-topic-button{color:#86181d;background-color:#ffdce0;border-left-color:#cea0a5}.invalid-topic .delete-topic-button:hover{background-color:#ffc8ce}.topic-tag-action{display:inline-flex;align-items:center;padding-left:.8em;margin:.4em .4em 0 0;background-color:#f1f8ff;border-radius:3px}.topic-tag-action.invalid-topic{color:#86181d;background-color:#ffdce0;border-color:#cea0a5}.topic-tag-action .add-topic-button,.topic-tag-action .remove-topic-button{display:inline-block;width:26px;font-size:15px;color:#6a737d;background-color:#f1f8ff;border:0;border-left:1px solid #b4d9ff}.topic-tag-action .add-topic-button:hover,.topic-tag-action .remove-topic-button:hover{color:#fff}.topic-tag-action .add-topic-button:hover{background-color:#28a745}.topic-tag-action .remove-topic-button{border-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.topic-tag-action .remove-topic-button:hover{background-color:#d73a49}.topic-input-container .tag-input{width:908px;cursor:text}.topic-input-container .tag-input.org-repo-tag-input{width:100%}.topic-input-container .tag-input .tag-input-inner{min-height:26px;background-image:none}.topic-input-container .topic-tag{margin-top:2px}.repository-topics-container .list-topics-container{display:inline-flex;flex-wrap:wrap;align-items:baseline}.topic .css-truncate-target{max-width:75%}.topic-list .topic-list-item+.topic-list-item{border-top:1px solid #e1e4e8}.topic-box .starred{color:#ffd33d;border:0}.topic-box .unstarred{color:#d1d5da;border:0}.team-breadcrumb .team-breadcrumb-item{display:inline-block}.team-breadcrumb .team-breadcrumb-item:after{padding-right:.5em;padding-left:.5em;color:#e1e4e8;content:"/"}.team-breadcrumb .team-breadcrumb-item-selected:after{content:none}.team-discussions-container{min-height:100vh}.team-left-column{max-width:100%}@media (min-width:768px){.team-left-column{max-width:350px}}.team-left-column .team-avatar{width:80px;height:80px}@media (min-width:768px){.team-left-column .team-avatar{width:140px;height:140px}}.team-discussions{max-width:768px}.team-discussions .previewable-comment-form .comment{border:0}.discussion-post{opacity:1;transition:opacity .4s}.discussion-post .timeline-comment:after,.discussion-post .timeline-comment:before{display:none}.discussion-post .post-author{margin-top:-6px}.discussion-post .post-author-timestamp{margin-top:-3px}.discussion-post.fade-out{opacity:0}.discussion-post .timeline-inline-comments{background:#fafbfc}.discussion-post .team-discussion-timeline:before{bottom:20px}.discussion-post .reply-comment:first-child{border-top:1px solid #e1e4e8}.discussion-post .reply-comment:first-child .review-comment{padding-top:16px}.discussion-post .reply-comment .review-comment{padding:8px 16px}.discussion-post .reply-comment .review-comment.is-comment-editing{padding:0;background:#fafbfc}.discussion-post .comment .comment-reactions{margin-left:16px;border-top:0}.discussion-post .comment .reaction-summary-item{margin-bottom:16px}.discussion-post .reaction-summary-item:not(.add-reaction-btn){padding:0 8px;font-size:12px;line-height:26px;border:1px solid #d2dff0;border-radius:3px}.discussion-post .reaction-summary-item:not(.add-reaction-btn) .emoji{font-size:16px;vertical-align:sub}.discussion-post .reaction-summary-item:not(.add-reaction-btn)+.reaction-summary-item{margin-left:8px}.discussion-post .reply-comments-holder{position:relative}.discussion-post .reply-comments-holder:before{position:absolute;top:51px;bottom:0;left:29px;width:2px;content:"";background-color:#e1e4e8}.discussion-post .add-reaction-btn{padding:4px 10px}.discussion-post .pin-btn:disabled{pointer-events:none}.discussion-post .pinned{color:#f66a0a;opacity:1}.discussion-post .loading-spinner{display:none;float:left;margin-top:12px}.discussion-post .loading .loading-spinner{display:block}.discussion-post~.blankslate{display:none}.team-discussion-new-post .review-thread-reply-button:disabled{cursor:inherit;background-color:#f6f8fa;border:0;box-shadow:none}.team-project-suggestion-number{font-weight:300;color:#a3aab1}.team-discussion-nav-disabled{pointer-events:none}.team-group-mapping-search-results .select-menu-loading{display:inherit}.team-group-mapping-search-results.is-error .select-menu-loading,.team-group-mapping-search-results .select-menu-error{display:none}.team-group-mapping-search-results.is-error .select-menu-error{display:inherit}.hooks-listing .boxed-group-action.select-menu{z-index:auto}.hooks-listing .boxed-group-inner{padding:0 10px;margin-bottom:10px}.hook-item a:hover{text-decoration:none}.hook-item .item-status{float:left;width:16px;margin-right:8px;text-align:center}.hook-item .description{color:#6a737d}.hook-item .description .css-truncate-target{max-width:160px}.hook-item .icon-for-failure,.hook-item .icon-for-inactive,.hook-item .icon-for-mute,.hook-item .icon-for-pending,.hook-item .icon-for-success{display:none}.hook-item.success .icon-for-success{display:inline-block;color:#28a745}.hook-item.failure .icon-for-failure{display:inline-block;color:#cb2431}.hook-item.inactive .icon-for-inactive,.hook-item.mute .icon-for-mute,.hook-item.pending .icon-for-pending{display:inline-block;color:#6a737d}.hook-item .icon-for-disabled,.hook-item .icon-for-enabled{display:none}.hook-item.enabled .icon-for-enabled{display:inline-block;color:#28a745}.hook-item.disabled .icon-for-disabled{display:inline-block;color:#ccc}.hook-item .hook-error-message{margin-left:24px;color:#cb2431}.hook-url.css-truncate-target{max-width:360px}.hook-events-field .hook-event-selector{display:none}.hook-events-field.is-custom .hook-event-selector{display:block}.hook-event-selector{margin-left:10px}.hook-event{display:inline-block;width:310px;padding:5px 0 5px 30px;margin:0}.hook-event-choice,.hook-event p{font-weight:400}.hooks-oap-warning{margin-top:0}.hooks-oap-warning ul{margin:10px 0}.hooks-oap-warning ul li{margin-left:16px}.hook-secret .hook-secret-standin{display:block}.hook-secret .hook-secret-field,.hook-secret.open .hook-secret-standin{display:none}.hook-secret.open .hook-secret-field{display:block}.hook-deliveries-list .spinner{display:inline-block;margin:0;vertical-align:top}.hook-deliveries-list .hook-delivery-item:hover{background-color:initial}.hook-deliveries-list .item-status{display:inline-block;width:16px;margin-right:5px;text-align:center}.hook-deliveries-list .item-status .icon-for-failure,.hook-deliveries-list .item-status .icon-for-pending,.hook-deliveries-list .item-status .icon-for-success{display:none}.hook-deliveries-list .item-status.success{color:#28a745;visibility:visible}.hook-deliveries-list .item-status.success .icon-for-success{display:inline-block}.hook-deliveries-list .item-status.failure{color:#cb2431}.hook-deliveries-list .item-status.failure .icon-for-failure{display:inline-block}.hook-deliveries-list .item-status.pending{color:#6a737d}.hook-deliveries-list .item-status.pending .icon-for-pending{display:inline-block}.boxed-group-list li.hook-delivery-item{padding:10px}.hook-delivery-time{float:right;margin-right:10px;font-size:10px;color:#6a737d}.hook-delivery-guid{display:inline-block;padding:2px 6px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;color:rgba(0,0,0,.5);background-color:rgba(209,227,237,.5);border-radius:3px}.hook-delivery-guid .octicon{margin:1px -2px 0 0;color:#b0c4ce}.hook-delivery-actions{padding-top:1px}.boxed-group-list>li.hook-delivery-item .btn-sm{margin:0}.boxed-group span.animated-ellipsis,.boxed-group span.animated-ellipsis-container{padding:0}.boxed-group .animated-ellipsis-container{line-height:1.3}.hook-delivery-container hr{margin:10px 0}.hook-delivery-container pre{padding:7px 12px;margin:10px 0;overflow:auto;font-size:13px;line-height:1.5;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px}.hook-delivery-container .tabnav{margin:10px 0}.hook-delivery-container h4.remote-call-header{margin:20px 0 10px;border-bottom:1px solid #959da5}.hook-delivery-response-status{display:inline-block;padding:4px 6px 3px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:10px;line-height:1.1;color:#fff;background-color:#d73a49;border-radius:3px}.hook-delivery-response-status[data-response-status^="2"]{background-color:#28a745}.redelivery-dialog .pending-message{display:block}.redelivery-dialog .failure-message{display:none}.redelivery-dialog.failed{color:#9c2400;background-image:linear-gradient(#f8d8d8,#efd0d0);border-color:#da9797}.redelivery-dialog.failed .pending-message{display:none}.redelivery-dialog.failed .failure-message{display:block}.test-hook-message .error-message,.test-hook-message .success-message{display:none;margin-top:10px}.test-hook-message.error .error-message,.test-hook-message.success .success-message{display:block}.item-name{float:left;font-weight:600}.hovercard-icon{width:16px}.integration-meta-head{font-size:16px;color:#586069}.integrations-select-repos{max-height:138px;overflow-y:scroll;border-radius:3px}.integrations-select-repos .mini-repo-list-item{padding:8px 64px 8px 30px}.integrations-select-repos .mini-repo-list-item:hover .owner,.integrations-select-repos .mini-repo-list-item:hover .repo{text-decoration:none}.integrations-select-repos .mini-repo-list-item .css-truncate-target{max-width:345px}.integrations-select-repos::-webkit-scrollbar{width:10px}.integrations-select-repos::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:6px;box-shadow:0 0 1px hsla(0,0%,100%,.5)}.integrations-select-repos::-webkit-scrollbar-track-piece{background:transparent}.integrations-repository-picker{width:440px}.target-avatar{position:relative;top:-2px}.issue-list .title{min-height:24px;padding:0;margin:0 80px 10px 0;font-size:18px;font-weight:400;line-height:24px;word-wrap:break-word}.issue-list .title .octicon{position:absolute;top:-4px;left:0;color:#888}.issue-list .title .closed.octicon{color:#cb2431}.issue-list .title .open.octicon{color:#28a745}.issue-list .title .merged.octicon{color:#6f42c1}.issue-list .description{margin:0 0 10px;overflow:hidden;line-height:20px}.issue-list-item+.issue-list-item{border-top:1px solid #e1e4e8}.search-feedback-form,.search-result-feedback{visibility:hidden;opacity:0;transition:all .15s ease-in-out}.search-feedback-form.show,.search-result-feedback.show{visibility:visible;opacity:1}.pinned-issue-item .pinned-issue-handle{cursor:grab}.pinned-issue-item.is-dragging,.pinned-issue-item.is-dragging .pinned-issue-handle{cursor:grabbing}.pinned-issue-item.is-dragging{background-color:#f1f8ff}.pinned-issue-item.sortable-ghost{background-color:#f1f8ff;opacity:0}.issues-reset-query-wrapper{margin-bottom:20px}.label-link:hover{text-decoration:none}.issues-reset-query{font-weight:600;color:#586069}.issues-reset-query:hover{color:#0366d6;text-decoration:none}.issues-reset-query:hover .issues-reset-query-icon{background-color:#0366d6}.issues-reset-query-icon{width:18px;height:18px;padding:1px;margin-right:3px;color:#fff;text-align:center;background-color:#6a737d;border-radius:3px}.table-list-milestones .table-list-cell{padding:15px 20px}.table-list-milestones .stat{display:inline-block;font-size:14px;font-weight:600;line-height:1.2;color:#555;white-space:nowrap}.table-list-milestones .stat a{color:inherit}.table-list-milestones .stat+.stat{margin-left:15px}.table-list-milestones .stat-label{font-weight:400;color:#586069}.milestone-title{width:500px}.milestone-title-link{margin-top:0;margin-bottom:5px;font-size:24px;font-weight:400;line-height:1.2}.milestone-title-link a{color:#333}.milestone-title-link a:hover{color:#0366d6}.milestone-progress{width:420px}.milestone-progress .progress-bar{margin-top:7px;margin-bottom:12px}.milestone-meta{font-size:14px}.milestone-meta-item{display:inline-block;margin-right:10px}.milestone-meta-item .octicon{width:16px;text-align:center}.milestone-description-html{display:none}.milestone-description{margin-top:5px}.milestone-description .expand-more{color:#0366d6;cursor:pointer}.milestone-description .expand-more:hover{text-decoration:underline}.milestone-description.open .milestone-description-plaintext{display:none}.milestone-description.open .milestone-description-html{display:block}.issue-reorder-warning{z-index:110}.task-progress{color:#586069;text-decoration:none;vertical-align:top}.task-progress .octicon{margin-right:5px;color:#999;vertical-align:bottom}.task-progress .progress-bar{display:inline-block;width:80px;height:5px;vertical-align:2px;background-color:#eee}.task-progress .progress-bar .progress{background-color:#ccc}.task-progress-counts{display:inline-block;margin-right:6px;margin-left:-2px;font-size:12px}a.task-progress:hover{color:#0366d6}a.task-progress:hover .octicon{color:inherit}a.task-progress:hover .progress-bar .progress{background-color:#0366d6}.issue-meta-section .octicon{color:#ccc;vertical-align:bottom}.issue-milestone{max-width:240px}.issue-milestone .css-truncate-target{max-width:100px}.milestone-link .octicon{font-size:14px}.milestone-link:hover .octicon{color:inherit}.new-pr-form{margin-top:15px;margin-bottom:20px}.new-pr-form:after,.new-pr-form:before{display:table;content:""}.new-pr-form:after{clear:both}.new-pr-form .discussion-timeline:before{display:none}.label-select-menu .description{margin-left:19px}.label-select-menu .color{display:inline-block;width:14px;height:14px;margin-top:-1px;margin-right:2px;vertical-align:middle;border-radius:3px}.label-select-menu .selected .select-menu-item-icon,.label-select-menu [aria-checked=mixed] .select-menu-item-icon,.label-select-menu [aria-checked=true] .select-menu-item-icon{color:inherit!important}.label-select-menu .selected .octicon-circle-slash,.label-select-menu [aria-checked=mixed] .octicon-circle-slash,.label-select-menu [aria-checked=true] .octicon-circle-slash{color:#6a737d}.label-select-menu .selected:active,.label-select-menu [aria-checked=mixed]:active,.label-select-menu [aria-checked=true]:active{background-color:initial!important}.label-select-menu .select-menu-item{position:relative}.label-select-menu .select-menu-item.navigation-focus,.label-select-menu .select-menu-item:focus,.label-select-menu .select-menu-item:hover,.label-select-menu .select-menu-item[aria-selected=true]{color:inherit;background-color:#f4f4f4}.label-select-menu .select-menu-item.navigation-focus .select-menu-item-icon,.label-select-menu .select-menu-item:focus .select-menu-item-icon,.label-select-menu .select-menu-item:hover .select-menu-item-icon,.label-select-menu .select-menu-item[aria-selected=true] .select-menu-item-icon{color:transparent}.label-select-menu>form{position:relative}.subnav .btn+.issues-search{padding-right:10px;border-right:1px solid #eee}.reaction-sort-item{float:left;width:39px;padding:5px;margin-top:5px;text-align:center;pointer-events:all;border:1px solid transparent;border-radius:3px;opacity:.7}.reaction-sort-item:focus,.reaction-sort-item:hover{text-decoration:none;background-color:#0366d6;opacity:1}.reaction-sort-item[aria-checked=true]{background-color:#f1f8ff;border-color:#0366d6;opacity:1}body.emoji-size-boost .reaction-sort-item g-emoji{margin-left:-3px}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){body.emoji-size-boost .reaction-sort-item g-emoji{margin-left:0}}.issue-keyword{border-bottom:1px dotted #959da5}.issue-keyword:hover{border-bottom:0}.new-label-color-dimensions{width:24px;height:24px}.select-menu-item.navigation-focus>.octicon.label-options-icon,.select-menu-item[aria-selected=true]>.octicon.label-options-icon{color:#24292e}.new-label-color-input:invalid{color:#cb2431}.related-issue-item.navigation-focus,.similar-issue-item.navigation-focus{background-color:#f6f8fa;border-radius:3px}.repository-lang-stats{position:relative}.repository-lang-stats ol.repository-lang-stats-numbers li{display:table-cell;width:1%;padding:10px 5px;text-align:center;white-space:nowrap;border-bottom:0}.repository-lang-stats ol.repository-lang-stats-numbers li span.percent{float:none}.repository-lang-stats ol.repository-lang-stats-numbers li>a,.repository-lang-stats ol.repository-lang-stats-numbers li>span{font-weight:600;color:#6a737d;text-decoration:none}.repository-lang-stats ol.repository-lang-stats-numbers li .lang{color:#24292e}.repository-lang-stats ol.repository-lang-stats-numbers li .language-color{display:inline-block;width:10px;height:10px;border-radius:50%}.repository-lang-stats ol.repository-lang-stats-numbers li a:hover{background:transparent}.repository-lang-stats-graph{width:100%;overflow:hidden;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid #ddd;border-top:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.repository-lang-stats-graph .language-color{line-height:8px;text-indent:-9999px}.repository-lang-stats-graph .language-color:first-child{border-bottom-left-radius:2px}.repository-lang-stats-graph .language-color:last-child{border-bottom-right-radius:2px}.repository-lang-stats-graph .language-color:not(:first-child){border-left:1px solid #fff}.facebox-loading,.octocat-spinner{min-height:64px;background-image:url(/images/spinners/octocat-spinner-64.gif);background-repeat:no-repeat;background-position:50%}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.facebox-loading,.octocat-spinner{background-image:url(/images/spinners/octocat-spinner-128.gif);background-size:64px 64px}}.map-container .activity{top:120px;left:340px;z-index:99999}.map-container .is-graph-loading .activity{display:block}.map{height:350px}.map-background{pointer-events:all;fill:#0366d6}.map-background-zoom{cursor:grab}.map-land{fill:none;stroke:#256aae;stroke-width:2}.map-country,.map-land{shape-rendering:crispedges}.map-country{fill:#d7c7ad;cursor:pointer}.map-country.hk{stroke:#a5967e}.map-country:hover{fill:#c8b28e}.map-country.active{fill:#f6e5ca}.map-borders{stroke:#a5967e}.map-borders,.map-graticule{fill:none;shape-rendering:crispedges}.map-graticule{pointer-events:none;stroke:#fff;stroke-opacity:.2}.map-graticule :nth-child(2n){stroke-dasharray:2,2}.map-legend .map-legend-circle{fill-opacity:0;stroke:#fff;stroke-width:1.5}.map-legend .map-legend-text{font-size:10px;fill:#fff;text-anchor:end}.map-legend .map-legend-link{stroke:#fff;stroke-width:1.5}.map-point{pointer-events:none;fill:#f66a0a}.map-point:hover{fill:#e36209}.map-country-info{top:8px;right:8px;pointer-events:none;opacity:0}.MarketplaceJumbotron{background-color:#2f363d;background-image:url(/images/modules/marketplace/bg-hero.svg);background-repeat:repeat-y;background-position:top;background-size:150% auto}@media (min-width:768px){.MarketplaceJumbotron{background-repeat:no-repeat;background-size:cover}}.CircleBadge--feature{position:relative;top:0;transition:top .15s ease-in,box-shadow .12s ease-in}.MarketplaceFeature{min-width:250px}.MarketplaceFeature-text{opacity:.7;transition:opacity .12s ease-in}.MarketplaceFeature-link:hover .CircleBadge--feature{top:-3px;box-shadow:0 3px 8px 0 rgba(0,0,0,.2)}.MarketplaceFeature-link:hover .MarketplaceFeature-text{opacity:1}.MarketplaceFeature-link:active .CircleBadge--feature{top:0;box-shadow:0}.MarketplaceSideNav{-webkit-overflow-scrolling:touch;background-color:#f6f8fa}@media (min-width:768px){.MarketplaceSideNav{background-color:#fff;border-right:1px solid #e1e4e8}}.ScreenshotCarousel{border:1px solid #e1e4e8;border-radius:3px}.ScreenshotCarousel-screenshot{display:none;padding:16px}.ScreenshotCarousel-screenshot.active{display:block}.ScreenshotCarousel-nav{display:flex;overflow-x:auto;align-items:top;box-shadow:inset 0 1px 0 #e1e4e8}.ScreenshotCarousel-navitem{width:20%;min-width:120px;padding:16px;cursor:pointer;border-right:1px solid #e1e4e8}.ScreenshotCarousel-navitem:last-child{border-right:0}.ScreenshotCarousel-navitem.selected{background-color:#f6f8fa;box-shadow:inset 0 0 4px rgba(36,41,46,.15)}.marketplace-listing-screenshot-container{width:175px;min-height:175px;background-repeat:no-repeat;background-position:50%;background-size:cover}.marketplace-listing-screenshot-container .marketplace-listing-screenshot{min-width:100%;min-height:100%;opacity:0}.marketplace-listing-screenshot-zoom{display:none;cursor:move}.marketplace-listing-details-sidebar{order:2}@media (min-width:768px){.marketplace-listing-details-sidebar{order:1}}.marketplace-listing-details-description{order:1}@media (min-width:768px){.marketplace-listing-details-description{order:2}}.marketplace-listing-screenshot-link{height:100px;cursor:move}.marketplace-listing-screenshot-link:focus .marketplace-listing-screenshot-zoom,.marketplace-listing-screenshot-link:hover .marketplace-listing-screenshot-zoom{top:0;left:0;display:block;width:100%;height:100%;padding-top:28px;background-color:hsla(0,0%,100%,.75)}.marketplace-integratable-logo{width:40px;height:40px}.marketplace-listing-save-error,.marketplace-listing-save-notice{display:none;opacity:0;transition:opacity .15s linear}.marketplace-listing-save-error.visible,.marketplace-listing-save-notice.visible{display:inline-block;opacity:1}.marketplace-listing-screenshot-delete-form{position:absolute;bottom:-24px;width:100%;text-align:center}.marketplace-plan-dollar-field-container .price-note{display:none}.marketplace-plan-dollar-field-container.is-errored .price-note{display:block}.marketplace-plan-dollar-field-container.is-errored .form-control{border-color:#d73a49}.marketplace-plan-emphasis{color:#24292e}.selected .marketplace-plan-emphasis{color:#fff}.marketplace-plan-unit-name-preview:before{content:"per "}.marketplace-plan-per-time{clear:right}.marketplace-billing-modal{width:540px;max-height:90vh}.marketplace-listing-markdown,.marketplace-url-link{word-wrap:break-word;white-space:pre-wrap}.marketplace-listing-markdown{line-height:1.4}.integrations-promo-bg{background-image:url(/images/modules/works-with/build-your-own.svg);background-repeat:no-repeat;background-size:0 0}@media (min-width:544px){.integrations-promo-bg{background-position:100% 0;background-size:auto 100%}}.marketplace-product-callout{border-color:#d1d5da!important}.marketplace-product-callout:after,.marketplace-product-callout:before{display:none}.marketplace-product-callout .branch-action-item-icon{color:#586069;background-color:#e1e4e8}.filter-item.selected .Label--outline-white{color:#fff;border-color:#fff}.MarketplaceEdit-body{min-height:570px}.MarketplaceEdit-body .pricing-model-selector{width:calc(100% - 12px);max-width:100%!important}.MarketplaceEdit-body .menu{border-right:0;border-left:0;border-radius:0}.MarketplaceEdit-body .menu-item{padding:12px 16px;background:#fafbfc}.MarketplaceEdit-body .menu-item.selected{background:#fff}.MarketplaceEdit-body .menu-item:hover{background:#f6f8fa}.MarketplaceEdit-body .menu-item.selected:before{position:absolute;top:0;bottom:0;left:0;width:3px;content:"";background-color:#f66a0a}.MarketplaceEdit-body .menu-item:first-child:before{border-top-left-radius:0}.MarketplaceEdit-body .CircleIcon{display:inline-block;width:32px;height:32px;font-weight:600;line-height:32px;color:#586069;text-align:center;background:#e6ebf1;border-radius:100%}.MarketplaceEdit-body .CircleIcon .octicon{display:inline-block}.MarketplaceInsights-graph .insights-month .tick:nth-child(2n){visibility:hidden}.BarChart{border-radius:3px}.BarChart-bar{height:10px;border-right:1px solid #fff}.BarChart-bar--green{background-color:#34d058}.BarChart-bar--orange{background-color:#fb8532}.BarChart-bar--yellow{background-color:#f9c513}.CircleBadge--tiny{width:32px;height:32px}.CircleBadge--github{position:relative}.CircleBadge--github.CircleBadge--large:after{right:5px;bottom:5px}.CircleBadge--github.CircleBadge--small:after{right:-5px;bottom:-5px}.CircleBadge--github:after{position:absolute;right:0;bottom:0;display:block;width:22px;height:22px;padding:3px;line-height:0;content:"";background:#fff url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBDNC45MjMgMCAwIDQuOTIyIDAgMTFjMCA0Ljg2OCAzLjE0OSA4Ljk3OSA3LjUyMSAxMC40MzYuNTUuMDk3Ljc1Ni0uMjMzLjc1Ni0uNTIyIDAtLjI2Mi0uMDEzLTEuMTI4LS4wMTMtMi4wNDktMi43NjQuNTA5LTMuNDc5LS42NzQtMy42OTktMS4yOTMtLjEyNC0uMzE2LS42Ni0xLjI5Mi0xLjEyOC0xLjU1My0uMzg0LS4yMDYtLjkzNS0uNzE1LS4wMTMtLjcyOS44NjYtLjAxNCAxLjQ4NS43OTggMS42OTEgMS4xMjguOTkgMS42NjMgMi41NzEgMS4xOTYgMy4yMDQuOTA3LjA5Ni0uNzE1LjM4NS0xLjE5Ni43MDEtMS40NzEtMi40NDgtLjI3NS01LjAwNS0xLjIyNC01LjAwNS01LjQzMiAwLTEuMTk2LjQyNi0yLjE4NiAxLjEyNy0yLjk1Ni0uMTEtLjI3NS0uNDk1LTEuNDAyLjExLTIuOTE1IDAgMCAuOTIyLS4yODggMy4wMjUgMS4xMjguODgtLjI0OCAxLjgxNS0uMzcyIDIuNzUtLjM3MnMxLjg3LjEyNCAyLjc1LjM3MmMyLjEwNC0xLjQzIDMuMDI2LTEuMTI4IDMuMDI2LTEuMTI4LjYwNSAxLjUxMy4yMiAyLjY0LjExIDIuOTE1LjcuNzcgMS4xMjcgMS43NDcgMS4xMjcgMi45NTYgMCA0LjIyMi0yLjU3MSA1LjE1Ny01LjAxOSA1LjQzMi4zOTkuMzQzLjc0MyAxLjAwNC43NDMgMi4wMzUgMCAxLjQ3MS0uMDE0IDIuNjU0LS4wMTQgMy4wMjUgMCAuMjg5LjIwNi42MzIuNzU2LjUyMkMxOC44NTEgMTkuOTggMjIgMTUuODU0IDIyIDExYzAtNi4wNzgtNC45MjMtMTEtMTEtMTF6IiBmaWxsPSIjMUIxRjIzIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=") 50% no-repeat;border-radius:100px}.select-search-icon{position:absolute;top:19px;left:18px}body.page-responsive .flash-full .container{width:100%;max-width:980px}.ClipboardButton{position:relative}.ClipboardButton.ClipboardButton--success{border-color:#28a745;box-shadow:0 0 0 .2em rgba(52,208,88,.4)}.ClipboardButton.ClipboardButton--success:focus{box-shadow:0 0 0 .2em rgba(52,208,88,.4)}@media (min-width:768px){.MarketplacePlan--sticky{position:-webkit-sticky;position:sticky;top:24px;z-index:999}}@media (max-width:544px){.Box--full{right:0;bottom:0;left:0;width:100%;max-width:none;max-height:none;margin:0;border-radius:0;transform:none}}.select-menu-item-disabled{font-weight:400;color:#6a737d;background-color:#fafbfc}.select-menu-item-disabled:hover{color:#6a737d!important;cursor:not-allowed;background-color:#fafbfc}.select-menu-item-disabled:hover .octicon{color:#6a737d}.MarketplaceBackground-wrapper{position:relative}.MarketplaceBackground{position:relative;top:-90px;width:313px;margin-top:-150px;margin-bottom:-125px;overflow:hidden}.MarketplaceBackground img{position:relative;top:0;right:225px;width:549px}@media (min-width:544px){.MarketplaceBackground{position:relative;width:463px;margin-top:-180px;margin-bottom:65px;overflow:hidden}.MarketplaceBackground img{right:305px;width:730px}}@media (min-width:768px){.MarketplaceBackground{position:absolute;top:-148px;right:-250px;width:633px}.MarketplaceBackground img{right:195px;width:550px}}@media (min-width:1012px){.MarketplaceBackground{position:absolute;top:-268px;right:-63px;width:1040px}.MarketplaceBackground img{right:0;width:900px}}@media (min-width:1280px){.MarketplaceBackground{top:-253px;right:-67px}.MarketplaceBackground img{width:860px}}.MarketplaceBackground-recommendations{position:relative;top:-90px;width:313px;margin-top:-150px;margin-bottom:-120px;overflow:hidden}.MarketplaceBackground-recommendations img{position:relative;top:0;right:225px;width:549px}@media (min-width:544px){.MarketplaceBackground-recommendations{position:relative;width:463px;margin-top:-180px;margin-bottom:70px;overflow:hidden}.MarketplaceBackground-recommendations img{right:305px;width:730px}}@media (min-width:768px){.MarketplaceBackground-recommendations{position:absolute;top:-228px;right:-69px;width:633px}.MarketplaceBackground-recommendations img{right:195px;width:750px}}@media (min-width:1012px){.MarketplaceBackground-recommendations{top:-268px;right:0;width:1040px}.MarketplaceBackground-recommendations img{right:-115px;width:900px}}@media (min-width:1280px){.MarketplaceBackground-recommendations{top:-325px;right:105px;width:1040px}.MarketplaceBackground-recommendations img{right:0;width:1040px}}.MarketplaceBackground-buffer{padding-top:40px;margin-top:-146px;background:#fafbfc}@media (min-width:544px){.MarketplaceBackground-buffer{padding-top:120px;margin-top:-233px}}@media (min-width:768px){.MarketplaceBackground-buffer{margin-top:-109px}}@media (min-width:1012px){.MarketplaceBackground-buffer{margin-top:-89px}}.MarketplaceHeader{overflow:hidden}.muted-link.filter-item.selected{color:#fff!important}.MarketplaceBody{position:relative}@media (min-width:544px){.MarketplaceBody{top:-72px;z-index:2}}.MarketplaceDetails .octicon{transition:transform .2s linear;transform:scaleY(1)}.MarketplaceDetails[open] .octicon{transform:scaleY(-1)}.MarketplaceAnnouncement{color:#fff;background:linear-gradient(90deg,#257bf9,#2426ca)}.MarketplaceAnnouncement .btn-outline-mktg{color:#fff;background-color:hsla(0,0%,100%,0);border-color:hsla(0,0%,100%,.7)}.MarketplaceAnnouncement .btn-outline-mktg:hover{color:#c8e1ff;border-color:#fff}.MarketplaceAnnouncement-icon{width:80px;opacity:.9}.MarketplaceAnnouncement-description{opacity:.7}.topic-tag-contrast{background-color:#c8e1ff}.topic-tag-contrast .delete-topic-link{color:#24292e;background-color:#c8e1ff;border-left-color:rgba(27,31,35,.15)}.topic-tag-contrast .delete-topic-link:hover{background-color:#79b8ff}.member-list-item .table-list-cell-checkbox{width:30px}.member-list-item.adminable .member-info{padding-left:5px}.member-list-item .member-avatar-cell{width:64px}.member-info{width:450px}.member-info .css-truncate-target{max-width:430px}.member-meta .select-menu-modal{width:310px}.member-meta .select-menu-modal-holder{right:0;text-align:left}.triage-mode .none-selected{display:none}.merge-branch-heading{margin:0;line-height:1;color:#24292e}.merge-branch-description{margin-right:160px;margin-bottom:-5px;line-height:1.6em;color:#586069}.merge-branch-description .zeroclipboard-link .octicon{top:2px}.alt-merge-options{display:inline-block;margin-bottom:0;margin-left:4px;vertical-align:middle}.merged .merge-branch-description .commit-ref .css-truncate-target{max-width:180px}.merge-branch-prh-output{margin-top:10px}.merge-branch-form{display:none;padding-left:60px}.merge-branch.open .merge-branch-form{display:block}.merge-branch.open .merge-message{display:none}.merge-branch-manually{display:none;padding-top:15px;margin-top:14px;background-color:initial;border-top:1px solid #ddd}.merge-branch-manually p{margin-bottom:0}.merge-branch-manually h3{margin-bottom:10px}.merge-branch-manually .intro{padding-bottom:10px;margin-top:0}.merge-branch-manually .step{margin:15px 0 5px}.merge-branch-manually .url-box{padding:0;margin-left:0;border:0}.merge-branch-manually .copyable-terminal{background-color:#f2f2f2}.open .merge-branch-manually{display:block}.select-menu-merge-method{width:310px}.merge-pr.is-rebasing .commit-form-fields{display:none;transition:opacity .15s linear 0s,margin-top .25s ease .1s}.merge-pr .btn-group-merge,.merge-pr.is-rebasing .btn-group-rebase,.merge-pr.is-squashing .btn-group-squash{display:inline-block}.merge-pr.is-merging .branch-action-state-error-if-merging .merging-body,.merge-pr .merging-body,.merge-pr .merging-body-merge-warning,.merge-pr .rebasing-body,.merge-pr .squashing-body{display:none}.merge-pr.is-merging .branch-action-state-error-if-merging .merging-body-merge-warning,.merge-pr.is-merging .merging-body,.merge-pr.is-rebasing .rebasing-body,.merge-pr.is-squashing .squashing-body{display:block}.merge-pr .btn-group-rebase,.merge-pr .btn-group-squash,.merge-pr.is-rebasing .btn-group-merge,.merge-pr.is-squashing .btn-group-merge{display:none;margin-left:0}.commit-form-fields{transition:opacity .15s linear .1s,margin-top .25s ease 0s}.unavailable-merge-method{display:block;margin-top:6px;color:#a04100}.navigation-focus.disabled .unavailable-merge-method,[aria-selected=true].disabled .unavailable-merge-method{color:#fff}.network .gravatar,.network .network-tree{vertical-align:middle}.network .gravatar{margin-right:4px;border-radius:3px}.network .octicon{display:inline-block;width:16px;margin-left:2px;text-align:center;vertical-align:middle}.network .current-repository{background-color:#fff5b1}.page-new-repo .octicon-repo{color:#959da5}.page-new-repo .color-private-icon{color:rgba(115,92,15,.5)}.page-new-repo ul.repo-templates{margin:10px 0}.page-new-repo ul.repo-templates>li{display:inline-block;margin:0 10px 0 0;list-style-type:none}.page-new-repo ul.repo-templates .select-menu{float:left}.page-new-repo .form-checkbox.disabled{color:#6a737d}.page-new-repo .internal-repo-avatar{right:4px;bottom:-4px;border:2px solid #fff}.new-repo-container{width:700px;margin:40px auto 0}.new-repo-container .Subhead{margin-bottom:30px}.owner-reponame dl.form-group{margin-top:5px;margin-bottom:0}.owner-reponame .slash{float:left;padding-top:32px;margin:0 8px;font-size:21px;color:#586069}.reponame-suggestion{color:#34631a;cursor:pointer}.upgrade-upsell{padding-left:33px}.cc-upgrade{padding-left:20px}.license-container{padding-left:15px;border-left:1px solid #ccc}.news .release{margin-top:0;margin-bottom:0}.news blockquote{color:#586069}.news h1{margin-bottom:0}.news .alert{position:relative;padding:0 0 1em 45px;overflow:hidden;border-top:1px solid #eff3f6}.news .alert .commits{padding-left:40px}.news .alert .css-truncate.css-truncate-target,.news .alert .css-truncate .css-truncate-target{max-width:180px}.news .alert p{margin:0}.news .alert .markdown-body blockquote{padding:0 0 0 40px;border-width:0}.news .alert .octicon{color:#959da5}.news .alert .dashboard-event-icon{position:absolute;top:18px;left:22px;transform:translateX(-50%)}.news .alert .body{padding:1em 0 0;overflow:hidden;font-size:14px;border-bottom:0}.news .alert .time{font-size:12px;color:#959da5}.news .alert .title{padding:0;font-weight:600}.news .alert .title .subtle{color:#959da5}.news .alert .gravatar{float:left;margin-right:.6em;line-height:0;background-color:#fff;border-radius:3px}.news .alert .simple .title{display:inline-block;font-size:13px;font-weight:400;color:#586069}.news .alert .simple .time{display:inline-block}.news .alert:first-child{border-top:0}.news .alert:first-child .body{padding-top:0}.news .alert:first-child .dashboard-event-icon{top:0}.news .github-welcome .done{color:#586069;text-decoration:line-through}.news .commits li{margin-top:.15em;list-style-type:none}.news .commits li.more{padding-top:2px;font-size:11px}.news .commits li .committer{display:none;padding-left:.5em}.news .commits li img{margin:0 1px 0 0;vertical-align:middle;background-color:#fff;border-radius:2px}.news .commits li img.emoji{padding:0;margin:0;border:0}.news .commits li .message{display:inline-block;max-width:390px;margin-top:2px;overflow:hidden;font-size:13px;line-height:1.3;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.news div.message,.news li blockquote{display:inline;font-size:13px;color:#586069}.notification-routing .notification-email .edit-link{margin-right:10px;font-weight:600}.notification-routing .notification-email .btn-sm{float:none;margin:-2px 0 0}.notification-routing .notification-email .edit-form{display:none}.notification-routing .notification-email.open .edit-form{display:block}.notification-routing .notification-email.open .email-display{display:none}.notifications .list-group-item{padding-top:8px;padding-bottom:8px;padding-left:35px;border-width:1px 0 0}.notifications .list-group-item:first-child{border:0}.notifications .list-group-item-name{display:block;max-width:400px;font-size:14px;line-height:1.5em}.notifications .list-group-item-name a{display:block;max-width:460px}.notifications .notifications-more{padding:0}.notifications .notifications-more>a{display:block;padding:10px 15px;font-weight:600;color:#0366d6;text-align:center}.notifications .notifications-more>a:hover{text-decoration:underline}.notifications .unread .mark-as-unread{display:none}.notifications .read .list-group-item-name>a,.notifications .read .notification-actions{color:#586069}.notifications .read .avatar img{opacity:.5}.notifications .read .undo{display:block}.notifications .read .delete{visibility:hidden}.notifications .read .mark-as-unread{display:block}.notifications .read .mark-as-read{display:none}.notifications .read.navigation-focus,.notifications .read[aria-selected=true]{background-color:#f5f9fc}.notifications .read.list-group-item{background-color:#f6f8fa}.notifications .mark-as-unread .octicon-primitive-dot{margin:0 2px}.notifications .muted .unmute{display:block}.notifications .muted .mute,.notifications .unmute{display:none}.notification-thread-subscription:first-child{border-top:1px solid #d1d5da}.notification-subscription-filters-repo .no-results{display:none}.notifications-sso-prompt{padding:0}.notifications-sso-prompt.navigation-focus,.notifications-sso-prompt[aria-selected=true]{background-color:#f5f9fc}.notifications-sso-prompt a{display:block;padding:10px 15px;color:#586069;text-align:center;background:none;border:0;outline:none}.notifications-sso-prompt a:hover{text-decoration:none}.notifications-sso-prompt em{font-style:normal;color:#0366d6}.notifications-sso-prompt a:hover em{text-decoration:underline}.notifications-sso-prompt strong{font-weight:600}.type-icon-state-none{color:#586069}.type-icon-state-open,.type-icon-state-published{color:#28a745}.type-icon-state-closed{color:#cb2431}.type-icon-state-draft{color:#6a737d}.type-icon-state-merged,.type-icon-state-published{color:#6f42c1}.notifications-list{float:left;width:100%}.notifications-list .notifications-repo-link{max-width:500px}.notifications-list .boxed-group .notification-success{position:absolute;right:3px;width:220px;margin-top:4px;font-size:13px;color:#28a745;text-align:right;visibility:hidden;opacity:0;transition:opacity .35s ease-in-out,transform .35s ease-in-out;transform:translateX(10px)}.notifications-list .mark-all-as-read{padding:2px 6px 5px 10px;margin-top:0;margin-right:0;line-height:20px;color:#586069;background-color:initial;border:0}.notifications-list .mark-all-as-read-confirmed .notification-success{visibility:visible;opacity:1;transform:translateX(0)}.notifications-list .mark-all-as-read-confirmed .mark-all-as-read{visibility:hidden}.notifications-list .confirmation{max-height:0;padding:0;overflow:hidden;color:#666;text-align:center;opacity:0;transition:opacity .4s ease-in-out,max-height .4s ease-in-out,padding .4s ease-in-out}.notifications-list .confirmation+.list-group-item{margin-top:-1px;border-top-color:#d5d5d5}.notifications-list .confirmation.mark-all-as-read-confirmed{max-height:300px;padding:10px 0;opacity:1}.notification-actions{position:absolute;top:8px;right:10px;list-style:none}.notification-actions li{float:right;margin-left:10px;font-size:16px;line-height:20px}.notification-actions .age{width:120px;font-size:12px;color:#586069}.notification-actions .undo{position:absolute;top:0;display:none}.notification-actions .btn-link{padding-right:5px;padding-left:5px;line-height:inherit;color:#586069}.notification-actions .btn-link:hover{color:#0366d6;text-decoration:none}.notification-actions .unsaved-notification{color:#d1d5da}.repo-subscription-container{width:600px;margin-right:auto;margin-left:auto}.repo-subscription-container .spinner{float:right}.repo-subscription-container h2{margin-top:24px;margin-bottom:16px;font-size:22px;font-weight:400}.repo-subscription-container .intro{font-size:14px;color:#666}.repo-subscription-label{display:inline-block}.subscriptions-content .repo-icon{margin-right:5px;color:#666;vertical-align:middle}.subscriptions-content .repo-list form{display:inline}.thread-subscription-status{padding:10px;margin:40px 0 20px;color:#586069;background-color:#fff;border:1px solid #eee;border-radius:3px}.thread-subscription-status .octicon-radio-tower{margin-right:10px;margin-left:4px;color:#ccc;vertical-align:middle}.thread-subscription-status .btn-sm>.octicon{margin-right:1px}.thread-subscription-status .reason{margin:0 10px}.thread-subscription-status .reason,.thread-subscription-status .thread-subscribe-form{display:inline-block;vertical-align:middle}.subscription .loading{opacity:.5}.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-archived{display:block}.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-read,.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-unread{display:none}@media (max-width:1280px){.notifications-v2 .timeline-new-comment{padding-left:0!important}.notifications-v2 .timeline-new-comment .timeline-comment-avatar{display:none!important}.notifications-v2 .timeline-new-comment .timeline-comment--caret:after,.notifications-v2 .timeline-new-comment .timeline-comment--caret:before{border:0}.notifications-v2 .comment-form-head{display:block!important}.notifications-v2 .form-actions{padding-right:0!important;padding-left:0!important}}@media (max-width:768px){.notifications-v2 .timeline-comment{border:0;border-radius:0}.notifications-v2 .timeline-comment .comment-form-head.comment-form-head{background-color:initial}.notifications-v2 .timeline-comment .tabnav--responsive .tabnav-tabs{margin-right:-17px!important;margin-left:-17px!important}.notifications-v2 .timeline-comment .write-content{margin-right:0!important;margin-left:0!important}}.notifications-v2 .search-notifications-tab .notifications-list-item.notification-archived,.notifications-v2 .search-notifications-tab .notifications-list-item.notification-read,.notifications-v2 .search-notifications-tab .notifications-list-item.notification-unread{display:block}@media (max-width:544px){.notifications-v2 .Box{border-right:0;border-left:0;border-radius:0}}@media (max-width:544px){.notifications-v2 .Box .Box-header{border-right:0!important;border-left:0!important;border-radius:0!important}}@media (max-width:768px){.notifications-v2 .AvatarStack--right{width:auto!important;min-width:auto!important;margin-left:53px!important}}@media (max-width:768px){.notifications-v2 .AvatarStack--right .AvatarStack-body{position:relative!important;right:unset!important;margin-right:8px;flex-direction:row!important}}@media (max-width:768px){.notifications-v2 .AvatarStack-body .avatar{position:relative!important;margin-right:-11px!important;margin-left:0!important;border-right:1px solid #fff!important;border-left:0!important}}.notifications-v2 .timeline-new-comment{max-width:100%!important}.notifications-v2 .collapsed-notification-timeline-comment .timeline-comment-header{border-bottom-width:0!important;border-bottom-right-radius:3px!important;border-bottom-left-radius:3px!important}.notifications-v2 .thread-subscription-status{background-color:initial!important}.notifications-v2 .notification-action-mark-archived,.notifications-v2 .notification-action-mark-unread,.notifications-v2 .notification-action-star,.notifications-v2 .notification-action-unsubscribe{display:block!important}.notifications-v2 .notification-action-mark-read,.notifications-v2 .notification-action-mark-unarchived,.notifications-v2 .notification-action-subscribe,.notifications-v2 .notification-action-unstar,.notifications-v2 .notification-is-starred-icon,.notifications-v2 .notification-unsubscribed .notification-action-unsubscribe{display:none!important}.notifications-v2 .notification-unread .notification-action-mark-read,.notifications-v2 .notification-unsubscribed .notification-action-subscribe{display:block!important}.notifications-v2 .notification-archived .notification-action-mark-archived,.notifications-v2 .notification-archived .notification-action-mark-read,.notifications-v2 .notification-archived .notification-action-mark-unread,.notifications-v2 .notification-unread .notification-action-mark-unread{display:none!important}.notifications-v2 .notification-archived .notification-action-mark-unarchived{display:block!important}.notifications-v2 .notification-starred .notification-action-star{display:none!important}.notifications-v2 .notification-starred .notification-is-starred-icon{display:inline-block!important}.notifications-v2 .notification-starred .notification-action-unstar{display:block!important}.notifications-v2 .notification-sticky{min-height:1px}.notifications-v2 .notification-sticky.is-stuck .sticky-content{display:block!important}.notifications-v2 .notification-sticky .sticky-content{display:none!important}.notification-navigation .menu-item{color:#6a737d}.notification-navigation .menu-item:before{display:none}.notification-navigation .menu-item .octicon{color:#586069}.notification-navigation .menu-item.selected{background-color:#f1f8ff}.notification-navigation .menu-item.selected .octicon{color:#0366d6!important}.notification-navigation .notification-configure-filters .octicon{color:#6a737d!important}.notification-navigation .notification-configure-filters:hover .octicon{color:#0366d6!important}.notifications-list-item.navigation-focus,.notifications-list-item:hover{background-color:#f6f8fa!important}.notifications-list-item:hover .notification-list-item-link{color:#24292e!important}.notifications-list-item:hover .notification-list-item-actions{display:flex!important}@media (max-width:768px){.notifications-list-item:hover .notification-list-item-actions{display:none!important}}.notifications-list-item:hover .notification-list-item-actions .btn{color:#586069!important;background:transparent!important;border:0!important}.notifications-list-item:hover .notification-list-item-actions .btn:hover{color:#24292e!important;background-color:#e1e4e8!important}.notifications-list-item:hover .notification-list-item-hide-on-hover{visibility:hidden!important}.notifications-list-item:last-child{border-bottom:0!important}.notifications-list-item .Label{font-size:12px}.notifications-list-item .notification-list-item-unread-indicator{width:8px;height:8px;background:none}.notifications-list-item.notification-unread{background-color:#fff}.notifications-list-item.notification-unread .notification-list-item-unread-indicator{background-color:#0366d6}.notifications-list-item.notification-archived{display:none}.notifications-v2 .thread-subscribe-form{display:none!important}.oauth-permissions-details{position:relative;padding:15px;margin:0;list-style:none;border-bottom:1px solid #f2f2f2}.oauth-permissions-details:first-child{border-radius:3px 3px 0 0}.oauth-permissions-details:last-child{border:0;border-radius:0 0 3px 3px}.oauth-permissions-details.oauth-public-data-only{border-radius:3px}.oauth-permissions-details .markdown-body{font-size:13px}.oauth-permissions-details .content{display:none;margin-left:45px}.oauth-permissions-details .content .form-checkbox{margin-left:0}.oauth-permissions-details .content .form-checkbox:last-child{margin-bottom:0}.oauth-permissions-details .octicon{float:left;color:#586069;text-align:center}.oauth-permissions-details .permission-help{font-size:13px}.oauth-permissions-details .permission-help ul{padding-left:20px;margin:1em 0}.oauth-permissions-details .permission-summary{margin-left:45px}.oauth-permissions-details .permission-summary .access-details{position:relative;color:#586069}.oauth-permissions-details .permission-summary em.highlight{position:relative;padding:2px 3px;margin-right:-2px;margin-left:-3px;font-style:normal;color:#4c4a42;background:#fff9ea;border-radius:3px}.oauth-permissions-details .permission-title{display:block;color:#24292e}.oauth-permissions-details a.btn-sm{float:right;margin-top:4px}.oauth-permissions-details.open a.btn-sm{background-color:#dcdcdc;background-image:none;border-color:#b5b5b5;box-shadow:inset 0 2px 4px rgba(0,0,0,.15)}.oauth-permissions-details.open .content{display:block}.oauth-permissions-details.default:not(.delete) .default-access,.oauth-permissions-details.default:not(.delete) .no-access,.oauth-permissions-details.none .default-access,.oauth-permissions-details.none .no-access{display:inline}.oauth-permissions-details.default:not(.delete) .access-details,.oauth-permissions-details.default:not(.delete) .permission-title,.oauth-permissions-details.none .access-details,.oauth-permissions-details.none .permission-title{color:#6a737d}.oauth-permissions-details.default:not(.delete) .octicon,.oauth-permissions-details.none .octicon{color:#ccc}.oauth-permissions-details.default .default-access,.oauth-permissions-details.full .full-access{display:inline}.oauth-details-toggle{position:absolute;top:0;right:0;padding:20px 15px}.oauth-details-toggle .octicon-chevron-up,.open .oauth-details-toggle .octicon-chevron-down{display:none}.open .oauth-details-toggle .octicon-chevron-up{display:block}.oauth-user-permissions .full-access,.oauth-user-permissions .limited-access,.oauth-user-permissions .limited-access-emails,.oauth-user-permissions .limited-access-emails-followers,.oauth-user-permissions .limited-access-emails-profile,.oauth-user-permissions .limited-access-followers,.oauth-user-permissions .limited-access-followers-profile,.oauth-user-permissions .limited-access-profile,.oauth-user-permissions .no-access{display:none}.oauth-user-permissions.limited.limited-email .limited-access-emails{display:inline}.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-emails,.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-profile{display:none}.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-emails-profile{display:inline}.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails,.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails-followers,.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails-profile,.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-followers,.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-followers-profile,.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-profile{display:none}.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access{display:inline}.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-emails,.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-followers{display:none}.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-emails-followers,.oauth-user-permissions.limited.limited-follow .limited-access-followers{display:inline}.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-followers,.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-profile{display:none}.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-followers-profile,.oauth-user-permissions.limited.limited-profile .limited-access-profile{display:inline}.oauth-repo-permissions .default-access,.oauth-repo-permissions .full-access,.oauth-repo-permissions .limited-repo-invite-access,.oauth-repo-permissions .public-access{display:none}.oauth-repo-permissions.default .default-access,.oauth-repo-permissions.full .full-access,.oauth-repo-permissions.limited-repo-invite .limited-repo-invite-access,.oauth-repo-permissions.public .public-access{display:inline}.oauth-delete-repo-permissions .octicon-alert{color:#cb2431}.oauth-notifications-permissions .no-access,.oauth-notifications-permissions .read-access,.oauth-notifications-permissions .via-full-access,.oauth-notifications-permissions .via-public-access,.oauth-repo-deployment-permissions .full-access,.oauth-repo-deployment-permissions .no-access,.oauth-repo-status-permissions .full-access,.oauth-repo-status-permissions .no-access{display:none}.oauth-notifications-permissions.read .read-access,.oauth-notifications-permissions.via-public .via-public-access{display:inline}.oauth-notifications-permissions.via-public .octicon{display:none}.oauth-notifications-permissions.via-full .via-full-access{display:inline}.oauth-gist-permissions .full-access,.oauth-gist-permissions .no-access,.oauth-granular-permissions .full-access,.oauth-granular-permissions .no-access,.oauth-granular-permissions .read-access,.oauth-granular-permissions .write-access{display:none}.oauth-granular-permissions.full .full-access,.oauth-granular-permissions.none .no-access,.oauth-granular-permissions.read .read-access,.oauth-granular-permissions.write .write-access{display:inline}.oauth-no-description{color:#586069}.oauth-org-access-details{background:#fff}.oauth-org-access-details .oauth-org-item:hover{background:#ffe}.oauth-org-access-details a:hover{text-decoration:none}.oauth-org-access-details .boxed-group-inner{border:0;border-radius:3px}.oauth-org-access-details .oauth-org-item{line-height:24px}.oauth-org-access-details .oauth-org-item:first-child{border-radius:3px 3px 0 0}.oauth-org-access-details .oauth-org-item .loading-indicator{display:none;margin:4px}.oauth-org-access-details .oauth-org-item.on .authorized-tools{display:block}.oauth-org-access-details .oauth-org-item.on .unauthorized-tools{display:none}.oauth-org-access-details .oauth-org-item.on strong{color:#24292e}.oauth-org-access-details .oauth-org-item.on .octicon-check{display:inline}.oauth-org-access-details .oauth-org-item.on .octicon-x{display:none}.oauth-org-access-details .oauth-org-item.revoked{background:#fff}.oauth-org-access-details .oauth-org-item.revoked .authorized-tools,.oauth-org-access-details .oauth-org-item.revoked .unauthorized-tools{display:none}.oauth-org-access-details .oauth-org-item.revoked .octicon-x{color:#cb2431}.oauth-org-access-details .oauth-org-item.loading .authorized-tools,.oauth-org-access-details .oauth-org-item.loading .unauthorized-tools{display:none}.oauth-org-access-details .oauth-org-item.loading .loading-indicator{display:block}.oauth-org-access-details .oauth-org-item .authorized-tools{display:none}.oauth-org-access-details .oauth-org-item .unauthorized-tools{display:block}.oauth-org-access-details .btn{line-height:1.5em}.oauth-org-access-details .octicon{color:#979797}.oauth-org-access-details .octicon-check{display:none;color:#28a745}.oauth-org-access-details .octicon-x{display:inline}.oauth-org-access-details .octicon-x.org-access-denied{color:#cb2431}.oauth-application-whitelist h2{display:inline-block}.oauth-application-whitelist .request-info{display:block}.oauth-application-whitelist .request-info strong{display:inline-block;color:#24292e}.oauth-application-whitelist .request-info .application-description{display:none}.oauth-application-whitelist .request-info.open .application-description{display:block}.oauth-application-whitelist .avatar{margin-top:0}.oauth-application-whitelist .requestor{font-weight:600}.oauth-application-whitelist .octicon-alert{color:#a04100}.oauth-application-whitelist .approved-request,.oauth-application-whitelist .octicon-check{color:#28a745}.oauth-application-whitelist .denied-request{color:#cb2431}.oauth-application-whitelist .request-indicator{margin-left:10px}.oauth-application-whitelist .edit-link{color:#6a737d}.oauth-application-whitelist .edit-link:hover{color:#0366d6}.oauth-application-whitelist .boxed-group-list{margin-top:1em}.oauth-application-whitelist .boxed-group-list li{padding:10px}.boxed-group-inner .oauth-application-info{margin-bottom:10px}.oauth-application-info .application-title{font-size:30px;color:#24292e}.oauth-application-info .application-description{margin-top:3px;margin-bottom:0}.oauth-application-info .app-info{display:inline-block;margin-right:10px;color:#6a737d}.oauth-application-info .app-info .octicon{margin-right:5px}.oauth-application-info .listgroup-item{line-height:inherit}.oauth-application-info .app-approved,.oauth-application-info .app-denied{margin-left:10px;font-size:13px;font-weight:400;white-space:nowrap}.oauth-application-info .app-approved,.oauth-application-info .octicon-check{color:#28a745}.oauth-application-info .app-denied,.oauth-application-info .octicon-x{color:#a04100}.restrict-oauth-access-button{margin-right:20px}.restrict-oauth-access-info{margin-bottom:40px;font-size:15px}.restrict-oauth-access-list{padding-left:25px}.restrict-oauth-access-list li{margin-bottom:10px}.restrict-oauth-access-list li:last-child{margin-bottom:0}.app-transfer-actions form{display:inline}.oauth-border{border-bottom:1px solid #e5e5e5}.oauth-border:last-child{border:0}.developer-app-item .developer-app-avatar-cell{width:60px}.developer-app-item .developer-app-name{font-size:15px;font-weight:600;line-height:1.2;color:#24292e}.developer-app-item .developer-app-name:hover{color:#0366d6;text-decoration:none}.developer-app-item .developer-app-info-cell{padding-left:0}.developer-app-item .developer-app-list-meta{margin-top:3px;margin-bottom:2px;font-weight:400;color:#6a737d}.org-transfer-requests{margin:10px 0 20px}.octocaptcha-frame{height:340px}.zero-height,.zero-height .octocaptcha-frame{height:0!important}.org-insights-graph-canvas .activity{width:400px;padding:10px;margin:100px auto 0;color:#2f363d;text-align:center;border-radius:3px}.org-insights-graph-canvas .dots{margin:0 auto}.org-insights-graph-canvas .totals circle{stroke-width:4;opacity:0}.org-insights-graph-canvas .totals circle:only-child{opacity:1}.org-insights-graph-canvas>.activity{display:none}.org-insights-graph-canvas .axis{font-size:10px}.org-insights-graph-canvas .axis line{stroke:rgba(27,31,35,.1);shape-rendering:crispedges}.org-insights-graph-canvas .axis text{font-size:12px;font-weight:300;fill:#959da5}.org-insights-graph-canvas .axis path{display:none}.org-insights-graph-canvas .axis .zero line{stroke:#0366d6;stroke-dasharray:3 3;stroke-width:1.5}.org-insights-graph-canvas path{fill:none;stroke-width:2}.org-insights-graph-canvas .y line{display:none}.org-insights-graph-canvas .y.unique line{stroke:#1d7fb3}.org-insights-graph-canvas .overlay{fill-opacity:0}.org-insights-graph-canvas .graph-loading{padding:110px 0}.org-insights-graph-canvas .graph-empty,.org-insights-graph-canvas .graph-error,.org-insights-graph-canvas .graph-loading,.org-insights-graph-canvas .graph-no-usable-data{display:none}.org-insights-graph-canvas.is-graph-empty .graph-empty,.org-insights-graph-canvas.is-graph-empty>.activity,.org-insights-graph-canvas.is-graph-load-error .graph-error,.org-insights-graph-canvas.is-graph-loading .graph-loading,.org-insights-graph-canvas.is-graph-loading>.activity,.org-insights-graph-canvas.is-graph-without-usable-data .graph-no-usable-data,.org-insights-graph-canvas.is-graph-without-usable-data>.activity{display:block}.org-insights-svg-tip{position:absolute;z-index:99999;padding:10px;pointer-events:none}.org-insights-svg-tip.is-visible{display:block}.org-insights-svg-tip:after,.org-insights-svg-tip:before{position:absolute;top:100%;left:50%;width:0;height:0;pointer-events:none;content:" ";border:solid transparent}.org-insights-svg-tip:after{margin-left:-5px;border-width:5px;border-color:#fff hsla(0,0%,100%,0) hsla(0,0%,100%,0)}.org-insights-svg-tip:before{margin-left:-6px;border-width:6px;border-color:#e1e4e8 transparent transparent}.org-insights-svg-tip.comparison{padding:10px;text-align:left;pointer-events:none}.org-insights-svg-tip.comparison ul{margin:0;white-space:nowrap;list-style:none}.org-insights-svg-tip.comparison li{position:relative}.org-insights-svg-tip.comparison li .legend{width:7px;height:7px;border-radius:50%}.org-insights-card-legend .metric-0{color:#0366d6}.org-insights-card-legend .metric-1{color:#28a745}.org-insights-card-legend .metric-2{color:#e36209}.org-insights-card-legend .metric-3{color:#6f42c1}.org-insights-graph-canvas .metric-0 circle,.org-insights-graph-canvas path.metric-0,.org-insights-svg-tip .metric-0 .legend{stroke:#0366d6;background-color:#0366d6}.org-insights-graph-canvas .metric-1 circle,.org-insights-graph-canvas path.metric-1,.org-insights-svg-tip .metric-1 .legend{stroke:#28a745;background-color:#28a745}.org-insights-graph-canvas .metric-2 circle,.org-insights-graph-canvas path.metric-2,.org-insights-svg-tip .metric-2 .legend{stroke:#e36209;background-color:#e36209}.org-insights-graph-canvas .metric-3 circle,.org-insights-graph-canvas path.metric-3,.org-insights-svg-tip .metric-3 .legend{stroke:#6f42c1;background-color:#6f42c1}.UnderlineNav{display:flex;overflow-x:auto;overflow-y:hidden;border-bottom:1px solid #e1e4e8;justify-content:space-between}.UnderlineNav-body{display:flex}.UnderlineNav-item{padding:16px 8px;margin-right:16px;font-size:14px;line-height:1.5;color:#586069;text-align:center;border-bottom:2px solid transparent}.UnderlineNav-item:focus,.UnderlineNav-item:hover{color:#24292e;text-decoration:none;border-bottom-color:#d1d5da;transition:.2s ease}.UnderlineNav-item:focus .UnderlineNav-octicon,.UnderlineNav-item:hover .UnderlineNav-octicon{color:#6a737d}.UnderlineNav-item.selected{font-weight:600;color:#24292e;border-bottom-color:#e36209}.UnderlineNav-item.selected .UnderlineNav-octicon{color:#6a737d}.UnderlineNav--right{justify-content:flex-end}.UnderlineNav--right .UnderlineNav-item{margin-right:0;margin-left:16px}.UnderlineNav--right .UnderlineNav-actions{flex:1 1 auto}.UnderlineNav-actions{align-self:center}.UnderlineNav--full{display:block}.UnderlineNav-octicon{color:#959da5}.UnderlineNav-container{display:flex;justify-content:space-between}.org-insights-cards .boxed-group{width:100%;margin:10px 0}.org-insights-cards .org-insights-card-legend{display:none;color:#959da5}.org-insights-cards [role=tab][aria-selected=true]{font-weight:600;color:#24292e;border-bottom-color:#e36209}.org-insights-cards [role=tab][aria-selected=true] .UnderlineNav-octicon{color:#6a737d}.org-insights-cards .repository-lang-stats-graph{overflow:visible;cursor:default;border:0}.org-insights-cards .repository-lang-stats-graph .language-color{min-width:12px;margin-right:-6px;border:2px solid #fff}.org-insights-cards .is-rendered .org-insights-card-legend{display:block}@media (min-width:544px){.org-insights-cards .is-rendered .org-insights-card-legend{display:flex}}.org-insights-cards .octicon-arrow-down,.org-insights-cards .octicon-arrow-up{display:none}.org-insights-cards .is-decrease .octicon-arrow-down,.org-insights-cards .is-increase .octicon-arrow-up{display:inline-block}.org-insights-cards .graph-canvas .dots{padding:43px 0}.invitation-2fa-banner{margin-right:-24px;margin-left:-24px}.sign-up-via-invitation .bleed-flush{width:100%;padding:0 20px;margin-left:-20px;border-color:#d8dee2}.sign-up-via-invitation label{font-size:13px}.orghead{padding-top:20px;padding-bottom:0;margin-bottom:20px;color:#666;background-color:#fafbfc;border-bottom:1px solid #eee}.orghead .orgnav{position:relative;top:1px;margin-top:10px}.org-header-wrapper .TableObject-item--primary,.org-repos .TableObject-item--primary{white-space:normal}.org-header-wrapper .avatar{display:block;width:100px}.org-header-wrapper .TableObject-item--primary{padding-left:20px}.org-name{font-weight:400;color:#333}.audit-log-search .member-info{width:300px}.audit-log-search .member-info .member-avatar{float:left;margin-right:15px}.audit-log-search .member-info .member-link{display:block}.audit-log-search .member-info .member-list-avatar{margin-right:0}.audit-log-search .member-info .ghost{display:inline-block;color:#586069}.audit-log-search .blankslate{border-top-left-radius:0;border-top-right-radius:0}.audit-log-search .export-phrase{margin:5px 0}.audit-results-actions{overflow:auto}.audit-search-clear{float:left;margin-bottom:20px;border:0}.audit-search-clear .issues-reset-query{margin-bottom:0}.audit-type{width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.audit-type .octicon{margin-right:3px;font-weight:400;vertical-align:bottom}.audit-type .repo{color:#a04100}.audit-type .team{color:#28a745}.audit-type .user{color:#6f42c1}.audit-type .oauth_access{color:#cb2431}.audit-type .hook{color:#e1bf4e}.export-phrase{margin-top:5px}.export-phrase pre{padding-left:10px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;white-space:pre-wrap;border-left:1px solid #eee}.two-factor-enforcement-form .loading-spinner{float:left;margin:0 0 0 -20px;vertical-align:middle}.saml-enabled-banner-container{background-image:linear-gradient(-1deg,#fff,#f5f5f5)}.saml-settings-form .test-status-indicator{width:30px;height:30px;margin-top:-4px;border-radius:50%}.saml-settings-form .test-status-indicator .octicon{display:block;margin-top:7px;margin-right:auto;margin-left:auto}.saml-settings-form .form-group.errored{margin-bottom:40px}.saml-settings-form .test-status-indicator-error{color:#fff;background-color:#cb2431}.saml-settings-form .test-status-indicator-success{color:#fff;background-color:#28a745}.saml-settings-form .details-container .method-field{display:none}.saml-settings-form .details-container .method-label{font-weight:400}.saml-settings-form .details-container .details-target{cursor:pointer}.saml-settings-form .details-container.open .details-target,.saml-settings-form .details-container.open .method-value{display:none}.saml-settings-form .details-container.open .method-field{display:inline-block}.saml-settings-form .saml-enforcement-disabled{opacity:.5}.form-group .form-control.saml-certificate-field{width:440px;height:150px;min-height:0}.member-avatar{float:left;margin:1px}.member-fullname{color:#586069}.org-toolbar.disabled{pointer-events:none}.org-toolbar .subnav-search{width:320px;margin-right:20px;margin-left:0}.org-toolbar .subnav-search-context+.subnav-search{margin-left:-1px}.org-toolbar .subnav-search-input{width:100%}.org-toolbar-next{margin-bottom:24px}.org-toolbar-next .subnav-search{width:240px}.auto-search-group{position:relative}.auto-search-group .auto-search-input{padding-left:30px}.auto-search-group .spinner,.auto-search-group>.octicon{position:absolute;left:10px;z-index:5;width:16px;height:16px}.auto-search-group .spinner{top:9px;background-color:#fff}.auto-search-group>.octicon{top:10px;font-size:14px;color:#bbb;text-align:center}.org-list .list-item{position:relative;padding-top:15px;padding-bottom:15px;border-bottom:1px solid #eee}.org-list .list-item:before{display:table;content:""}.org-list .list-item:after{display:table;clear:both;content:""}.org-repos-mini{padding:0;margin:0}.org-repos-mini .org-repo-mini-item:first-child .org-repo-mini-cell{border-top:0}.org-repos-mini .org-repo-name{margin-top:0;margin-bottom:0;font-size:14px;word-wrap:break-word}.org-repos-mini .org-repo-name .octicon-repo{color:#586069}.org-repos-mini .org-repo-name .octicon-lock{color:rgba(115,92,15,.5)}.org-repos-mini .org-repo-name .repo-prefix{font-weight:400}.org-repos-mini .org-repo-name .repo-slash{display:inline-block;margin-right:-4px;margin-left:-4px}.org-repo-mini-cell{padding-top:15px;padding-bottom:15px;vertical-align:middle}.org-repo-meta{width:165px}.org-repo-meta .access-level{cursor:default}.with-higher-access .table-list-cell-checkbox{vertical-align:top}.permission-level-cell .select-menu-button{width:90px;text-align:left}.permission-level-cell .select-menu-button:after{position:absolute;top:10px;right:10px}.permission-level-cell .spinner{float:none;opacity:0;transition:opacity .2s ease-in-out}.permission-level-cell .is-loading .spinner{opacity:1}.select-menu-option-title{margin-top:0;margin-bottom:0}.reinstate-org-member{position:relative;width:500px;margin:40px auto}.reinstate-org-member .reinstate-lead{margin-bottom:30px;font-size:16px}.reinstate-org-member label{cursor:pointer}.reinstate-org-member .reinstate-detail-container{margin:15px 0}.reinstate-org-member .reinstate-title{color:#333}.reinstate-org-member .reinstate-title .octicon{width:16px;margin-right:10px;color:#999}.add-member-wrapper{position:relative;width:500px;margin:40px auto}.add-member-wrapper .available-seats{color:#586069}.add-member-team-list{display:block;margin-bottom:30px;list-style:none}.add-member-team-list .team-row-header{padding:10px 20px 10px 0;font-size:12px;text-align:right;background:#fafafa;border-top-left-radius:3px;border-top-right-radius:3px}.add-member-team-list .team-row-header .team-row-teams{margin-right:245px}.add-member-team-list .team-row-header .team-row-members{margin-right:35px}.add-member-team-list .team{display:block;font-weight:400;cursor:pointer}.add-member-team-list .team:first-child{border-top:1px solid #f2f2f2}.add-member-team-list .team .btn-sm{float:right}.add-member-team-list .team-info{max-width:80%;color:#24292e;text-decoration:none}.add-member-team-list .team-meta{margin-top:2px;margin-bottom:2px;color:#586069}.add-member-team-list .team-description{width:260px;margin-top:2px;margin-bottom:2px}.add-member-team-list .team-toggler.on .turn-off,.add-member-team-list .team-toggler .turn-on{display:inline-block}.add-member-team-list .team-toggler.on .turn-on,.add-member-team-list .team-toggler .turn-off{display:none}.invite-team-member-list .team{cursor:default}.invite-team-member-list .team:first-child .table-list-cell{border-top:0}.invite-team-member-list .table-list-cell-checkbox{width:42px}.invite-team-member-list .team-toggler{padding-top:12px;padding-right:3px}.invite-team-member-list .team-info{width:260px;padding:10px 15px 10px 0}.invite-team-member-list .team-description{display:block;padding-top:0;padding-bottom:0;font-weight:400}.invite-team-member-list .team-meta{width:100px;text-align:left;vertical-align:middle}.invite-team-member-list .team-link{color:#0366d6;text-align:right}.team-stats{padding-right:15px;padding-left:15px;margin-right:-15px;margin-bottom:-15px;margin-left:-15px;border-top:1px solid #eee}.stats-group{display:table;width:100%;table-layout:fixed}.stats-group-stat{display:table-cell;padding-top:10px;padding-bottom:10px;padding-left:15px;font-size:12px;color:#586069;text-transform:uppercase}.stats-group-stat:first-child{padding-left:0;border-right:1px solid #eee}.stats-group-stat:hover,.stats-group-stat:hover .stat-number{color:#0366d6;text-decoration:none}.stats-group-stat.no-link:hover{color:#586069;text-decoration:none}.stats-group-stat.no-link:hover .stat-number{color:#333}.stat-number{display:block;font-size:16px;color:#333}.permission-title{margin-top:0}.invite-member-results ul{margin:0}.add-to-org-title{font-size:21px;font-weight:400;line-height:normal}.team-member-list{list-style:none}.team-member-list .table-list-cell{padding-top:15px;padding-bottom:15px}.team-member-list .team-member-content{margin-left:50px}.team-member-list .team-member-username{margin:0;font-size:14px;font-weight:600;line-height:20px}.team-member-list .Label--gray,.team-member-list .Label--outline{cursor:default}.team-member-list .invite-icon{width:28px;color:#959da5}.menu-item-danger,.menu-item-danger.selected{color:#cb2431}.menu-item-danger.navigation-focus,.menu-item-danger.selected.navigation-focus,.menu-item-danger.selected:hover,.menu-item-danger.selected[aria-selected=true],.menu-item-danger:hover,.menu-item-danger[aria-selected=true]{color:#fff;background:#d73a49}.team-member-list-avatar{float:left;margin-right:10px}.team-member-list-avatar .octicon{width:40px;color:#959da5}.org-team-form .disabled{opacity:.5}.org-team-form .css-truncate-target{max-width:250px}.confirm-removal-container .private-fork-count{margin-top:0;font-size:12px;font-weight:400;color:#586069}.confirm-removal-container .deleting-private-forks-warning{position:relative;padding-left:26px}.confirm-removal-container .deleting-private-forks-warning .octicon{position:absolute;top:2px;left:0;color:#cb2431}.confirm-removal-list-container{margin-bottom:15px;border:1px solid #eaeaea;border-radius:3px}.confirm-removal-list-item{padding:10px;margin:0;font-size:14px;font-weight:600;border-top:1px solid #eaeaea}.confirm-removal-list-item:first-child{border-top:0}.confirm-removal-repo .octicon,.confirm-removal-team .octicon{margin-right:3px;color:#586069}.team-repo-access-list{max-height:245px}.manage-member-meta{list-style:none}.manage-member-meta-item{margin-top:12px;color:#586069}.manage-member-meta-item:first-child{margin-top:0}.manage-member-meta-item .btn-link{color:#586069}.manage-member-meta-item>.octicon{width:14px;margin-right:5px;color:#586069;text-align:center}.manage-member-meta-item>.octicon-alert{color:#a04100}.manage-member-button{margin-bottom:10px}.org-user-notice-title{margin-top:0;margin-bottom:0}.org-user-notice-content{margin-top:10px;margin-bottom:10px;font-size:14px}.org-user-notice-content strong{color:#333}.org-user-notice-content:last-child{margin-bottom:0}.org-user-notice-content .octicon{color:#586069}.org-user-notice-icon{float:right;margin:10px 10px 20px;font-size:45px;color:#ccc}.manage-repo-access-header{margin-top:30px;margin-bottom:30px}.manage-repo-access-header:before{display:table;content:""}.manage-repo-access-header:after{display:table;clear:both;content:""}.manage-repo-access-header .btn{margin-top:8px}.manage-repo-access-header .tooltipped:after{width:250px;white-space:normal}.manage-repo-access-heading{margin-top:-2px;margin-bottom:0;font-size:24px;font-weight:400}.manage-repo-access-lead{margin-top:3px;margin-bottom:0;font-size:16px;color:#586069}.manage-repo-access-group{background-color:#fff;border:1px solid #ddd;border-radius:3px}.manage-repo-access-title{padding:12px 15px;margin-top:0;margin-bottom:0;font-size:14px;background-color:#f8f8f8;border-bottom:1px solid #ddd;border-radius:3px 3px 0 0}.manage-repo-access-wrapper{position:relative;padding-left:25px}.manage-repo-access-wrapper:before{position:absolute;top:15px;bottom:15px;left:20px;z-index:1;display:block;width:2px;content:"";background-color:#eee}.manage-repo-access-icon{position:relative;z-index:2;float:left;padding-top:2px;padding-bottom:2px;margin-top:-3px;margin-left:-25px;background:#fff}.manage-repo-access-icon .octicon{font-size:14px;color:#ccc}.manage-repo-access-list{list-style:none}.manage-repo-access-list-item{padding:15px}.manage-repo-access-list-item:last-child{border-bottom:0;border-radius:0 0 3px 3px}.manage-repo-access-teams-group{margin-top:-20px;list-style:none;border:1px solid #ddd;border-radius:3px}.manage-repo-access-team-item{border-top:1px solid #eee}.manage-repo-access-team-item:first-child{border-top:0}.manage-repo-access-description{margin-top:3px;margin-bottom:0;overflow:hidden;text-overflow:ellipsis;word-wrap:break-word;white-space:nowrap}.manage-repo-access-not-active{color:#24292e;background-color:#fafbfc}.manage-repo-access-not-active .manage-repo-access-icon{background:#f9f9f9}.manage-access-remove-footer{padding:15px;border-top:1px solid #ddd}.manage-access-remove-footer .tooltipped:after{width:250px;white-space:normal}.manage-access-none{margin:20px 50px;text-align:center}.ldap-group-dn{display:block;font-weight:400;color:#aaa}.ldap-import-groups-container .blankslate{display:none}.ldap-import-groups-container.is-empty .blankslate{display:block}.ldap-import-groups-container.is-empty .ldap-memberships-list{display:none}.ldap-memberships-list{margin-bottom:30px}.ldap-memberships-list .table-list-cell{padding-top:10px;padding-bottom:10px;font-size:13px;vertical-align:middle}.ldap-memberships-list .table-list-cell:last-child{width:92px}.ldap-memberships-list .ldap-list-team-name{width:380px}.ldap-memberships-list .ldap-group-dn{font-size:11px}.ldap-memberships-list .ldap-mention-as{width:260px}.ldap-memberships-list .edit{position:absolute;padding:10px;margin-left:-33px;color:#0366d6;cursor:pointer}.ldap-memberships-list .edit-fields,.ldap-memberships-list .is-editing .edit-hide{display:none}.ldap-memberships-list .is-editing .edit-fields{display:block}.ldap-memberships-list .is-editing .spinner{margin-left:15px;vertical-align:middle}.ldap-memberships-list .is-removing{opacity:.25}.ldap-memberships-list .is-removing .edit{opacity:.5}.team-name-field{height:33px}.ldap-import-form-actions{margin-top:30px}.invited .team-member-list{margin:-20px 0}.invited .team-member-list .list-item{padding:10px 0;border-bottom:1px solid #eee}.invited .team-member-list .list-item:before{display:table;content:""}.invited .team-member-list .list-item:after{display:table;clear:both;content:""}.invited .team-member-list .list-item:last-of-type{border:0}.invited .team-member-list .list-item .edit-invitation{float:right;margin-top:6px}.invited-banner{margin-bottom:20px}.invited-banner:after,.invited-banner:before{display:table;content:""}.invited-banner:after{clear:both}.invited-banner .btn-sm{float:right;margin-left:5px}.invited-banner p{font-size:15px;line-height:1.6}.invited-banner .inviter-link{font-weight:600}.manage-member-sso-sessions.has-active-sessions .blankslate{display:none}.manage-memberships-nav{position:relative;top:1px;margin-top:10px}.manage-memberships-tabs-item{cursor:pointer;border:1px solid transparent;border-top:3px solid transparent;border-radius:3px 3px 0 0}.manage-memberships-tabs-item:hover{color:#333}.manage-memberships-tabs-item.selected{font-weight:600;color:#24292e;background-color:#fff;border-bottom:2px solid #d26911}.clock-blink{animation:blinkingText 3s infinite}@keyframes blinkingText{0%{color:#e1e4e8}50%{color:hsla(0,0%,100%,.15)}33%{color:#e1e4e8}to{color:#e1e4e8}}.countdown-clock{position:absolute;right:0;z-index:90;cursor:pointer}.theme-picker{margin-bottom:-1px;background-color:#fff;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.1);box-shadow:0 5px 10px rgba(0,0,0,.1)}.theme-picker>.container{position:relative;overflow:hidden;text-align:center}.theme-picker-thumbs{border-bottom:1px solid #eee}.theme-toggle{width:32px;height:32px;padding:0;color:#ccc;background:none;border:0}.theme-toggle:hover{color:#0084c8;text-decoration:none}.theme-toggle.disabled,.theme-toggle.disabled:hover{color:#ccc;cursor:not-allowed;opacity:.3}.theme-toggle-full-left,.theme-toggle-full-right{position:absolute;top:50px;overflow:hidden}.theme-toggle-full-left{left:4px}.theme-toggle-full-right{right:4px}.theme-selector{height:102px;margin:15px 46px}.theme-selector-thumbnail{padding:2px;border:1px solid #ddd}.theme-selector-thumbnail:hover{text-decoration:none;background-color:#f5f5f5}.theme-selector-thumbnail.selected{padding:3px;background-color:#0366d6;border:0}.theme-selector-thumbnail.selected .theme-selector-img{border:1px solid #fff}.theme-selector-img{width:126px;height:96px;border-radius:1px}.theme-picker-spinner{position:absolute;top:16px;left:50%;margin-left:-16px;background-color:#fff;opacity:0;transition:.2s,opacity ease-in-out}.theme-picker-spinner.visible{opacity:1}.theme-picker-spinner.visible~.theme-picker-controls .theme-name{opacity:0}.theme-picker-view-toggle{float:left}.theme-picker-view-toggle .for-hiding{display:none}.theme-picker-view-toggle.open .for-hiding{display:inline}.theme-picker-view-toggle.open .for-showing{display:none}.theme-picker-controls{position:absolute;top:15px;left:50%;width:220px;margin-left:-110px;line-height:34px;text-align:center}.theme-name,.theme-picker-controls .theme-toggle{vertical-align:middle}.theme-name{display:inline-block;margin-right:10px;margin-left:10px;font-size:20px;line-height:1}.page-preview{z-index:-100;display:block;width:100%;height:6000px;padding:0;background-color:#fff;border:0}.pinned-items-spinner{position:relative;top:2px;left:6px}.pinned-items-reorder-error{padding-left:6px;font-size:12px;font-weight:400;color:#86181d}.pinned-items-setting-link{font-size:13px;font-weight:400}.pinned-item-name{color:#2f363d}.pinned-item-checkbox:checked+.pinned-item-name{color:#24292e;background-color:#f1f8ff}.pinned-gist-blob-num{min-width:36px;cursor:default}.pinned-gist-blob-num:hover{color:rgba(27,31,35,.3);cursor:default}@media print{#serverstats,.comment:after,.comment:before,.discussion-timeline-actions,.file-actions,.footer,.gh-header-sticky,.Header,.header,.Header-old,.header-search,.js-expandable-line,.language-color,.lock-toggle-link,.pagehead-actions,.pr-review-tools,.pr-toolbar.is-placeholder,.reponav,.thread-subscription-status,.timeline-comment-actions,.timeline-new-comment,.toolbar-shadow{display:none!important}.repository-lang-stats-graph{height:0}.btn:not(.btn-outline){color:#24292e!important;background:none}.comment h2,p{page-break-inside:avoid}.markdown-body h2{page-break-after:avoid}.topic-tag{padding:0}.topic-tag:before{margin-right:-2px;content:"#"}.blob-num{border-right:2px solid #e1e4e8}.blob-num-deletion{border-right-color:#d73a49}.blob-num-addition{border-right-color:#28a745}.blob-code-addition .x{border-bottom:2px solid #28a745;border-radius:0}.blob-code-deletion .x{border-bottom:2px solid #d73a49;border-radius:0}.pr-toolbar.is-stuck{position:static!important;width:100%!important}.block-diff-neutral{border:4px solid #d1d5da}.block-diff-deleted{border:4px solid #d73a49}.block-diff-added{border:4px solid #28a745}.State{color:#1b1f23;background:none;border:1px}.State--green{color:#28a745;border:1px solid #2cbe4e}.State--purple{color:#6f42c1;border:1px solid #6f42c1}.State--red{color:#cb2431;border:1px solid #cb2431}.markdown-body pre>code{white-space:pre-wrap}}.progress-pjax-loader{z-index:99999;height:2px;background:transparent;opacity:0;transition:opacity .4s linear .4s}.progress-pjax-loader.is-loading{opacity:1;transition:none}.progress-pjax-loader>.progress-pjax-loader-bar{background-color:#79b8ff;box-shadow:0 0 10px rgba(121,184,255,.7);transition:width .4s ease}.project-full-screen .Header,.project-full-screen .Header-old,.project-full-screen .pagehead{display:block}@media (min-width:544px){.project-full-screen .Header,.project-full-screen .Header-old,.project-full-screen .pagehead{display:none}}.project-full-screen .project-header{padding-top:10px;padding-bottom:10px;color:hsla(0,0%,100%,.75)}@media (min-width:544px){.project-full-screen .project-header{background-color:#24292e}}.project-full-screen .project-header:focus{outline:none}.project-full-screen .project-header .project-header-link{color:hsla(0,0%,100%,.75)!important}.project-full-screen .project-header .project-header-link:hover{color:#fff!important}.project-full-screen .project-header .pending-cards-status{border-color:#24292e}@media (min-width:544px){.project-full-screen .card-filter-input{color:#fff;background-color:hsla(0,0%,100%,.125);border:0;outline:none;box-shadow:none}.project-full-screen .card-filter-input:-ms-input-placeholder{color:hsla(0,0%,100%,.7)}.project-full-screen .card-filter-input::-ms-input-placeholder{color:hsla(0,0%,100%,.7)}.project-full-screen .card-filter-input::placeholder{color:hsla(0,0%,100%,.7)}.project-full-screen .card-filter-input:focus{background-color:hsla(0,0%,100%,.175)}}.project-header{background-color:#eff1f3}@media (min-width:544px){.project-header{background-color:#fff}}.project-header .select-menu-modal-holder{z-index:500}.project-updated-message{top:6px;left:50%;z-index:50;transform:translate(-50%)}.pending-cards-status{top:-2px;right:-9px;z-index:2;width:14px;height:14px;background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border:2px solid #fff}.project-columns{overflow-x:auto}@media (min-width:544px){.project-columns-container{height:0;overflow-x:visible!important}}.project-column{min-width:100%;max-width:100%;background-color:#eff1f3;border-width:0!important;border-radius:0!important}.project-column:focus{outline:none}@media (min-width:544px){.project-column{min-width:355px;max-width:355px;border-width:1px!important;border-radius:6px!important}.project-column:focus{border-color:#2188ff!important;box-shadow:0 0 0 .2em rgba(3,102,214,.3)}}.project-column.moving{background-color:#f1f8ff!important;box-shadow:0 0 0 .2em rgba(3,102,214,.3);transform:translateX(4px) translateY(-4px)}.new-project-column{width:315px;border-color:#959da5!important}.project-search-form .loading-indicator{top:21px;right:21px;display:none}.project-search-form.loading .loading-indicator{display:inline-block}.sortable-ghost{background-color:#f6f8fa;opacity:.5}.project-card .project-reference-markdown>p,.project-card:last-child{margin-bottom:0!important}.project-card:first-child{margin-top:8px!important}@media (min-width:544px){.project-card:first-child{margin-top:3px!important}}.project-card ol,.project-card ul{margin-bottom:8px;margin-left:16px}.project-card blockquote{padding:0 .75em;color:#6a737d;border-left:.25em solid #dfe2e5}.project-card .contains-task-list{margin-left:24px}.project-card:hover{border-color:#d1d5da!important;box-shadow:0 1px 3px rgba(106,115,125,.3)!important}.project-card:focus{outline:none}@media (min-width:544px){.project-card:focus{border-color:#2188ff!important;box-shadow:0 0 0 .2em rgba(3,102,214,.3)!important}}.project-card.moving{background-color:#f1f8ff!important;box-shadow:0 0 0 .2em rgba(3,102,214,.3)!important;transform:translateX(4px) translateY(0)}.archived-project-cards-pane .project-card .archived-header{display:flex!important;color:#735c0f}.archived-project-cards-pane .project-card .archive-dropdown-item{display:none}.issue-card.draggable{cursor:move}.issue-card .issue-card-label{max-width:50%}.issue-card .issue-card-label:after{max-width:150px}.issue-card .AvatarStack:hover .from-avatar{margin-right:-4px}.issue-card pre{word-wrap:break-word;white-space:pre-wrap}@keyframes show-pane{0%{transform:translateX(390px)}to{transform:translateX(0)}}.project-pane{z-index:30;background-clip:padding-box;box-shadow:-3px 0 5px rgba(36,41,46,.05)}@media (min-width:544px){.project-pane{position:absolute!important;width:360px!important;height:auto!important;animation:show-pane .2s cubic-bezier(0,0,0,1)}}.project-pane .redacted-activity{cursor:help;border-bottom:1px dotted #959da5}.project-pane .project-body-markdown ol:last-child,.project-pane .project-body-markdown p:last-child,.project-pane .project-body-markdown ul:last-child{margin-bottom:0}.project-pane-close{color:rgba(27,31,35,.5)}.project-pane-close:hover{color:rgba(27,31,35,.7)}.project-note-form textarea{resize:vertical}.card-menu-container .dropdown-menu,.column-menu-container .dropdown-menu{min-width:180px}.card-octicon{top:6px;left:10px}.card-note-octicon{top:8px}.is-sending .auto-search-group .chooser-spinner{top:15px;right:21px;left:auto}.card-filter-input{width:0}@media (min-width:544px){.card-filter-input{width:300px}}.card-filter-autocomplete-dropdown{z-index:500;float:none;min-width:240px;max-height:240px;cursor:pointer}.card-filter-autocomplete-dropdown .navigation-focus,.card-filter-autocomplete-dropdown [aria-selected=true]{color:#fff!important;background-color:#0366d6;border-radius:3px}.card-filter-autocomplete-dropdown .navigation-focus .autocomplete-text-qualifier,.card-filter-autocomplete-dropdown [aria-selected=true] .autocomplete-text-qualifier{color:#fff!important}.projects-reset-query:hover .projects-reset-query-icon{background-color:#0366d6}.projects-reset-query-icon{width:18px;height:18px;padding:1px;background-color:#6a737d}.project-small-menu-dropdown:after,.project-small-menu-dropdown:before{display:none}.project-header-controls,.project-header-search{flex-grow:1}@media (min-width:1012px){.project-header-controls,.project-header-search{flex-grow:0}}.project-header-subnav-search{flex-grow:1}@media (min-width:544px){.project-header-subnav-search{flex-grow:0}}.project-page .application-main{flex-shrink:0!important}@media (min-width:544px){.project-page .application-main{flex-shrink:1!important}}.project-page .reponav-small{display:none!important}@media (min-width:544px){.project-page .reponav-small{display:block!important}}@media (min-width:1012px){.project-page .reponav-small{display:none!important}}.project-edit-mode .column-menu-container,.project-edit-mode .column-menu-item{display:none!important}.project-edit-mode .project-move-actions{display:flex!important}.push-board-over{padding-right:0!important;transition:all .2s ease}@media (min-width:544px){.push-board-over{padding-right:360px!important}}.project-touch-scrolling{-webkit-overflow-scrolling:touch}.projects-comment-form .comment-md-support-link{float:none;width:100%;text-align:center}.projects-comment-form .comment-form-actions{width:100%;padding:8px 16px;margin:4px 0!important}.projects-comment-form .comment-form-actions button{width:100%;margin:4px 0!important}.projects-comment-form .comment-form-head{padding:0!important;margin:0!important;border-bottom:0}.projects-comment-form .comment-form-head .tabnav-tabs{padding:8px 8px 0}.projects-comment-form .comment-form-head .toolbar-commenting{width:100%;padding-top:4px;text-align:center;background-color:#fff;border-top:1px solid #d1d5da}.projects-comment-form .comment-form-head:after{display:block;clear:both;content:" "}.projects-comment-form .comment-form-textarea{height:250px!important}.projects-comment-form .preview-content{margin:0;border-top:1px solid #d1d5da}.projects-comment-form .preview-content .comment-body{padding:16px}.project-issue-body-wrapper{max-height:200px;overflow:hidden}.Details--on .project-issue-body-wrapper{max-height:none;overflow:visible}.project-issue-body-blur{height:32px;background:linear-gradient(0deg,#fff,hsla(0,0%,100%,0))}.Details--on .project-issue-body-blur{height:0}.project-comment-body-hover .comment-action,.project-comment-title-hover .comment-action{opacity:0}.project-comment-body-hover:hover .comment-action,.project-comment-title-hover:hover .comment-action{opacity:1}.project-comment-body-hover .octicon-pencil,.project-comment-title-hover .octicon-pencil{color:rgba(27,31,35,.5)}.project-comment-body-hover .octicon-pencil:hover,.project-comment-title-hover .octicon-pencil:hover{color:#0366d6}.project-comment-body-reaction .timeline-comment-action{padding:4px 8px}.project-comment-reactions .reaction-summary-item{padding:8px}.project-comment-reactions .reaction-summary-item g-emoji{margin:0!important}.vcard-names{line-height:1}.vcard-fullname{font-size:26px;line-height:30px}.vcard-username{font-size:20px;font-style:normal;font-weight:300;line-height:24px;color:#666}.vcard-details{list-style:none}.vcard-details .css-truncate.css-truncate-target{width:100%;max-width:100%}.vcard-details .css-truncate.css-truncate-target div{overflow:hidden;text-overflow:ellipsis}.vcard-detail{padding-left:24px;font-size:14px}.vcard-detail .octicon{float:left;width:16px;margin-top:3px;margin-left:-24px;color:#6a737d;text-align:center}.new-user-avatar-cta{font-size:14px;color:#244f79;background-color:#f1f6fb;border:1px solid #d0e5f8;border-radius:3px}.user-profile-bio{overflow:hidden;font-size:14px}.form-group .form-control.user-profile-bio-field{width:440px;height:5.35em;min-height:0}.user-profile-bio-field-container,.user-profile-company-field-container{position:relative}.user-profile-bio-message{margin:5px 0 0;font-size:12px;color:#86181d}.vcard-detail{padding-left:22px}.vcard-detail .octicon{margin-left:-22px}.user-profile-sticky-bar{position:fixed;top:0;z-index:90;width:233px;word-break:break-all;pointer-events:none;opacity:0;transition:.2s}.user-profile-sticky-bar:after{position:fixed;top:0;right:0;left:0;z-index:100;display:none;height:54px;content:"";background-color:#fff;border-bottom:1px solid #d1d5da;box-shadow:0 1px 2px rgba(0,0,0,.075);opacity:0;transition:.2s}.user-profile-sticky-bar.is-stuck{pointer-events:auto;opacity:1}.user-profile-sticky-bar.is-stuck:after{display:block;opacity:1}.user-profile-mini-vcard{position:relative;top:1px;z-index:110;height:54px}.user-profile-mini-avatar{width:32px}.mini-follow-button{padding:0 8px;line-height:1.5;opacity:0;transition:.2s}.is-follow-stuck .mini-follow-button{opacity:1}.user-profile-following-container .user-following-container.on .follow,.user-profile-following-container .user-following-container .unfollow{display:none}.user-profile-following-container .user-following-container .follow,.user-profile-following-container .user-following-container.on .unfollow{display:block}.vcard-names-container{top:0}.vcard-names-container.is-stuck{pointer-events:none}.vcard-names-container.is-stuck .vcard-names{opacity:0}.vcard-names-container.is-stuck:after{opacity:1}.blocked-user-notice{width:100%;padding:8px 16px;color:#cb2431;text-align:center;border:1px solid #d73a49;border-radius:3px}.user-profile-nav{background-color:#fff;border-bottom:1px solid #d1d5da}.user-profile-nav.is-stuck{z-index:90}.pinned-item-list-item .pinned-item-handle{color:#586069}.pinned-item-list-item .pinned-item-handle:hover{cursor:grab}.pinned-item-list-item.is-dragging,.pinned-item-list-item.is-dragging .pinned-item-handle{cursor:grabbing}.pinned-item-list-item.is-dragging{background-color:#f1f8ff}.pinned-item-list-item.sortable-ghost{background-color:#f1f8ff;opacity:0}.pinned-item-list-item.empty{border-style:dashed;border-width:1px;align-items:center;justify-content:center}.pinned-item-list-item-content{display:flex;width:100%;flex-direction:column}.pinned-item-desc{flex:1 0 auto}.pinned-item-meta{display:inline-block}.pinned-item-meta+.pinned-item-meta{margin-left:16px}.user-repo-search-results-summary{white-space:normal}.profile-timeline.discussion-timeline{float:none}.profile-timeline.discussion-timeline .profile-timeline-month-heading:after{position:absolute;top:12px;right:0;left:0;z-index:-1;height:1px;content:"";background-color:#eaecef}.profile-timeline.discussion-timeline:before{left:15px;background-color:#eaecef}.profile-timeline.discussion-timeline .contribution-first-issue,.profile-timeline.discussion-timeline .contribution-first-pull-request,.profile-timeline.discussion-timeline .contribution-first-repository,.profile-timeline.discussion-timeline .contribution-joined-github{margin-top:-16px}.profile-break-word{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word}.profile-timeline-year-list{top:74px}.profile-timeline-card-wrapper{border-top:2px solid #fff;border-bottom:2px solid #fff}.profile-timeline-card .issue-meta-section .progress-bar{width:40px}.profile-timeline-card .issue-meta-section .octicon{color:#6a737d;vertical-align:middle}.profile-rollup-wrapper .css-truncate-target{max-width:85%}.profile-rollup-wrapper .progress-bar{height:8px;border-radius:2px}.profile-rollup-wrapper+.profile-rollup-wrapper{border-top:1px solid #eaecef}.profile-timeline-card-wrapper+.profile-timeline-card-wrapper{margin-top:24px}.profile-rollup-wrapper+.profile-timeline-card-wrapper{margin-top:0}.profile-timeline-month-heading+.profile-timeline-card-wrapper{margin-top:24px}.profile-rollup-summarized+.profile-rollup-summarized{border-top:1px solid #eaecef}.profile-rollup-icon{display:inline-block;width:16px;text-align:center}.profile-rollup-content{display:none}.profile-rollup-content .content-title:hover .link-gray-dark-underline{text-decoration:underline}.vertical-text-bottom{vertical-align:text-bottom}.profile-rollup-summarized.open .profile-rollup-toggle-closed,.profile-rollup-summarized.open>.profile-rollup-content,.profile-rollup-wrapper.open .profile-rollup-toggle-closed,.profile-rollup-wrapper.open>.profile-rollup-content{display:block}.profile-rollup-summarized.open .profile-rollup-toggle-open,.profile-rollup-toggle-closed,.profile-rollup-wrapper.open .profile-rollup-toggle-open{display:none}.profile-rollup-toggle{color:#6a737d;cursor:pointer}.profile-rollup-toggle:hover{color:#0366d6}.pull-request-tab-content{display:none}.pull-request-tab-content.is-visible{display:block}.discussion-timeline p.explain{margin:0;font-size:12px}.pull-request-ref-restore{display:none}.pull-request-ref-restore .animated-ellipsis-container{line-height:16px}.pull-discussion-timeline.is-pull-restorable .pull-request-ref-restore.last,.pull-request-ref-restore-text{display:block}.files-bucket{margin-bottom:15px}.full-width .diffbar .container,.split-diff .diffbar .container{padding-right:0;padding-left:0}.stale-files-tab{float:left;padding:5px 10px;margin-top:-5px;margin-bottom:-5px;color:#a04100;background-color:#fff8f2;border-radius:3px}.stale-files-tab-link{font-weight:600;color:inherit}.pr-toolbar{position:-webkit-sticky;position:sticky;top:0;z-index:29;height:60px;padding:0 16px;margin:-16px -16px 0;background-color:#fff}.pr-toolbar .subset-files-tab{float:left;padding:0 8px;font-size:13px;border-radius:3px}.pr-toolbar .float-right .diffbar-item{margin-right:0}.pr-toolbar .float-right .diffbar-item+.diffbar-item{margin-left:20px}.is-stuck+.toolbar-shadow{position:fixed;top:60px;right:0;left:0;z-index:28;display:block;height:5px;content:"";background:linear-gradient(rgba(0,0,0,.075),rgba(0,0,0,.001)) repeat-x 0 0;border-top:1px solid rgba(0,0,0,.15)}.files-next-bucket .file,.files-next-bucket .full-commit{margin-top:0;margin-bottom:20px}.diffbar{height:20px;padding-top:20px;padding-bottom:20px;background-color:#fff}.diffbar:after,.diffbar:before{display:table;content:""}.diffbar:after{clear:both}.diffbar .show-if-stuck{display:none}.diffbar .container{width:auto}.diffbar .table-of-contents{margin-bottom:0}.diffbar .table-of-contents ol{margin-bottom:-15px}.diffbar .table-of-contents li{border-top:1px solid #eee}.diffbar .table-of-contents li:first-child{border-top:0}.diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized,.diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized{color:#fff}.is-stuck .diffbar{height:auto;padding-top:8px;padding-bottom:0}.is-stuck .diffbar .show-if-stuck{display:block}.is-stuck .diffbar .diffstat{display:none}.is-stuck .diffbar .pr-review-tools{margin-top:8px}.is-stuck .diffbar .stale-files-tab{margin-top:-8px}.diffbar-range-menu .select-menu-modal{width:380px}.diffbar-range-menu .css-truncate-target{max-width:280px}.diffbar-range-menu .select-menu-item:not(.select-menu-action){padding:8px 10px}.diffbar-range-menu .emoji{vertical-align:bottom}.diffbar-range-menu .in-range:not(.is-range-selected){background-color:#f1f8ff;border-bottom-color:rgba(27,31,35,.15)}.diffbar-range-menu .in-range:focus:not(.is-range-selected),.diffbar-range-menu .in-range:hover:not(.is-range-selected){background-color:#0366d6}.diffbar-range-menu .is-range-selected{color:#735c0f;cursor:default;background-color:#fffbdd;border-bottom-color:rgba(38,44,49,.15);outline:none}.diffbar-range-menu .is-range-selected .text-emphasized{color:#776521}.diffbar-range-menu .is-range-selected .description{color:inherit}.diffbar-range-menu .is-last-in-range{cursor:pointer;background-color:#fff5b1}.diffbar-item{float:left;margin-left:16px;font-size:13px;vertical-align:middle}.fork-collab-link{margin-left:15px}.conflict-resolver .conflict-loader,.conflict-resolver.loading .resolve-file-form{display:none}.conflict-resolver.loading .conflict-loader,.conflict-resolver .resolve-file-form{display:block}.conflict-resolver.loading{position:relative;height:calc(100vh + 51px);padding-top:50px;border:1px solid #e1e4e8}.conflict-resolver .file-header{padding:9px 10px}.conflicts-nav{height:100vh;-ms-overflow-style:-ms-autohiding-scrollbar;border-width:0 0 1px}.conflict-nav-item .discussion-item-icon{display:none}.conflict-nav-item.resolved .discussion-item-icon{display:block;margin-left:-5px}.conflict-nav-item.resolved .octicon-file-code{display:none}.conflict-nav-item.selected:before{border-radius:0}.conflict-nav-item .octicon{width:22px}.conflict-nav-item .css-truncate-target{max-width:100%}.is-resolved .file-actions{display:none}.is-resolved .resolved-notice{display:block}.add-comment-label,.is-review-pending .start-review-label,.resolved-notice,.review-cancel-button{display:none}.is-review-pending .add-comment-label,.start-review-label{display:inline-block}.is-review-pending .review-simple-reply-button{display:none}.is-review-pending .review-cancel-button,.is-review-pending .review-title-with-count{display:block}.review-title-with-count{display:none}.pr-review-tools{margin-top:-4px}.pr-review-tools .Counter{display:none}.is-review-pending .pr-review-tools .Counter{display:inline-block}.pull-request-review-menu,.pull-request-suggested-changes-menu{top:30px;left:auto;z-index:99;width:700px;margin:0;border:1px solid rgba(27,31,35,.15);transform:none}.pull-request-review-menu:after,.pull-request-review-menu:before,.pull-request-suggested-changes-menu:after,.pull-request-suggested-changes-menu:before{display:none}.pull-request-review-menu .select-menu-header,.pull-request-suggested-changes-menu .select-menu-header{border-radius:3px 3px 0 0}.pull-request-review-menu .form-actions,.pull-request-suggested-changes-menu .form-actions{border-radius:0 0 3px 3px}.pull-request-review-menu .preview-content,.pull-request-suggested-changes-menu .preview-content{max-height:365px}.pull-request-review-menu .comment-body,.pull-request-suggested-changes-menu .comment-body{border-bottom:0!important}.pull-request-suggested-changes-menu{width:500px;padding:8px}.review-comment-contents{margin-left:44px}.review-comment-loader:after,.review-comment.is-comment-editing:after,.review-comment:after{position:absolute;top:31px;left:29px;z-index:-1;width:3px;height:100%;content:"";background-color:#f6f8fa}.review-comment{position:relative;padding:8px 16px;color:#24292e}.review-comment:first-child{padding-top:16px}.review-comment:last-child{padding-bottom:16px}.review-comment .comment-body,.review-comment .comment-reactions{padding:0}.review-comment .comment-body{padding-top:4px}.review-comment .comment-body .suggested-change-form-container:nth-last-of-type(2){margin-bottom:0!important}.review-comment .comment-reactions{margin-top:5px;border-top:0}.review-comment .comment-reactions .add-reaction-btn{padding:4px 10px}.review-comment .comment-reactions.has-reactions{margin-top:12px}.review-comment .show-more-popover.dropdown-menu-sw{right:-5px;margin-top:5px}.review-comment .reaction-summary-item:not(.add-reaction-btn){padding:0 8px;font-size:12px;line-height:26px;border:1px solid #d2dff0;border-radius:3px}.review-comment .reaction-summary-item:not(.add-reaction-btn) .emoji{font-size:16px;vertical-align:sub}.review-comment .reaction-summary-item:not(.add-reaction-btn)+.reaction-summary-item{margin-left:8px}.review-comment:last-child .review-comment-contents:after,.review-comment:last-child:after{display:none}.review-comment .timeline-comment-action{padding:0 5px}.review-comment .timeline-comment-label{float:none;margin-top:0;margin-left:4px}.review-comment .pending-batched-suggestion-label{margin-right:auto;color:#b08800;background-color:#fffdef;border-color:#d9d0a5}.review-comment .is-comment-editing{position:relative;background-color:#fff;border:1px solid #e1e4e8;border-radius:3px}.review-comment .is-comment-editing:after{top:100%;bottom:0;left:19px;height:20px}.review-comment .is-comment-editing .edit-comment-hide,.review-comment .is-comment-editing .timeline-comment-actions{display:none}.review-comment .is-comment-editing .previewable-comment-form{display:block}.review-comment.is-comment-loading .previewable-comment-form{opacity:.5}.timeline-comment.is-comment-editing .discussion-item-header{display:none}.review-thread-reply{padding:8px 16px;background-color:#f6f8fa;border-top:1px solid #e1e4e8;border-radius:0 0 3px 3px}.review-thread-reply .inline-comment-form{margin:-8px -16px;background-color:#fff;border:0}.review-thread-reply-button{display:inline-block;min-height:28px;padding:3px 8px;margin-left:8px;cursor:text}.review-summary-form-wrapper{position:relative;display:none;margin-bottom:24px;margin-left:-19px;background-color:#fff;border:1px solid #e1e4e8;border-radius:3px}.is-comment-editing .review-summary-form-wrapper,.is-pending .review-summary-form-wrapper{display:block}.is-pending .review-summary-form-wrapper{border-color:#d9d0a5}.tooltipped-left:after,.tooltipped-left:before{right:auto;left:0}.diffstat-summary{padding:0 20px 0 0;font-size:16px;line-height:1.8;color:#586069;text-align:left;vertical-align:middle;border-radius:3px}.diffstat-summary a{color:#555}.diffstat-summary strong{color:#333}.authors-and-code .insertions{color:#28a745}.authors-and-code .deletions{color:#cb2431}.authors-and-code .section{display:table-cell;width:459px;height:150px}.pulse-authors-graph{position:relative;height:150px}.pulse-authors-graph>svg{width:100%}.pulse-authors-graph .dots{position:absolute;top:40px;right:0;left:0;width:64px;height:64px;margin:0 auto}.pulse-authors-graph .bar rect{fill:#f66a0a;fill-opacity:.7}.pulse-authors-graph .bar rect:hover{fill-opacity:1}.summary-stats{display:table;width:100%;table-layout:fixed}.summary-stats li{display:table-cell;color:#586069;text-align:center;border-left:1px solid #e1e4e8}.summary-stats li a{display:block;padding-bottom:10px;color:#586069;text-decoration:none}.summary-stats li a:hover{background:#fafafa}.summary-stats li .octicon-git-pull-request{color:#6f42c1}.summary-stats li .octicon-git-branch{color:#28a745}.summary-stats li .octicon-issue-closed{color:#cb2431}.summary-stats li .octicon-issue-opened{color:#28a745}.summary-stats li:first-child{border-left:0;border-bottom-left-radius:3px}.summary-stats li .num{display:block;padding-top:10px;font-size:16px;font-weight:600;color:#24292e}.pulse-sections{margin-top:20px;clear:both}.pulse-section{padding:0;clear:both;font-size:14px;color:#666}.pulse-section p{margin-top:20px}.readme.contributing>div{max-height:250px;overflow:auto}.readme .markdown-body,.readme .plain{word-wrap:break-word}.readme .plain pre{font-size:15px;white-space:pre-wrap}.file .readme .markdown-body{padding:45px;border:0;border-radius:0}.file .readme table[data-table-type=yaml-metadata]{font-size:12px;line-height:1}.file .readme table[data-table-type=yaml-metadata] table{margin:0}.release-timeline-tags .tag-timeline-date:after{position:absolute;top:50%;right:-7px;z-index:10;display:block;width:12px;height:12px;box-sizing:border-box;margin-top:-6px;content:" ";background-color:#e1e4e8;border:2px solid #fff;border-radius:6px}.release-timeline-tags.is-collapsed .expander{display:block!important}.release-timeline-tags.is-collapsed>.collapsable{display:none}.Label--draft{color:#cb2431;border-color:#d73a49}.Label--prerelease{color:#f66a0a;border-color:#f66a0a}.uploaded-files{border-top-left-radius:3px;border-top-right-radius:3px}.uploaded-files.not-populated+.drop-target p{border-top:1px #c3c8cf;border-top-left-radius:3px;border-top-right-radius:3px}.uploaded-files.is-populated{border:1px solid;border-color:#ddd #ddd #e5e5e5}.uploaded-files.is-populated+.drop-target p{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.uploaded-files>li.delete{background:#f9f9f9}.uploaded-files>li.delete:nth-child(2){border-top-left-radius:3px;border-top-right-radius:3px}.uploaded-files>li.delete .delete-pending{display:block!important}.uploaded-files>li.delete .live{display:none!important}.uploaded-files>li:nth-child(2){border-top:0!important}.uploaded-files .remove:hover{color:#cb2431!important}.upload-progress{height:3px;margin-top:3px;border-radius:30px;box-shadow:0 1px 1px #fff,inset 0 1px 1px hsla(0,0%,100%,.5)}.upload-progress .upload-meter{background-image:linear-gradient(#8dd2f7,#58b8f4);border-radius:30px}.release-entry{border-bottom:1px solid #e1e4e8}.release-entry:last-child{border-bottom:0}@media (min-width:768px){.release-tag-field{width:130px!important}.release-main-section{border-left:2px solid #e1e4e8}.release-entry{border-bottom:0}}.repo-file-upload-progress{position:relative;height:0;overflow:hidden;color:#246;background:#f7fbfe;border-bottom-right-radius:3px;border-bottom-left-radius:3px;box-shadow:inset 0 0 0 1px #d0dbe7;transition:height .2s ease-out}.repo-file-upload-progress.active{height:50px}.repo-file-upload-progress.is-file-list{border-bottom-right-radius:0;border-bottom-left-radius:0}.repo-file-upload-progress .repo-file-upload-meter{position:absolute;top:1px;left:1px;width:0;height:48px;background:#d8e8f7}.repo-file-upload-progress .repo-file-upload-meter-text{position:absolute;top:7px;left:10px}.repo-file-upload-progress .repo-file-upload-meter-text .repo-file-upload-info{display:block;font-weight:600}.repo-file-upload-progress .repo-file-upload-meter-text .repo-file-upload-meter-filename{display:block;margin:0}.manifest-commit-form{margin-top:20px}.repo-file-upload-outline{width:100%;height:100%}.repo-file-upload-target{position:relative;padding-top:100px;padding-bottom:80px;color:#666}.repo-file-upload-target.is-progress-bar,.repo-file-upload-target.is-uploading{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.repo-file-upload-target.is-file-list{border-bottom-right-radius:0;border-bottom-left-radius:0}.repo-file-upload-target.is-default .repo-file-upload-text.initial-text,.repo-file-upload-target.is-failed .repo-file-upload-text.initial-text,.repo-file-upload-target.is-uploading .repo-file-upload-text.initial-text{display:none}.repo-file-upload-target.is-default .repo-file-upload-text.alternate-text,.repo-file-upload-target.is-failed .repo-file-upload-text.alternate-text,.repo-file-upload-target.is-uploading .repo-file-upload-text.alternate-text{display:block}.repo-file-upload-target.is-default.dragover .repo-file-upload-text,.repo-file-upload-target.is-failed.dragover .repo-file-upload-text,.repo-file-upload-target.is-uploading.dragover .repo-file-upload-text{display:none}.repo-file-upload-target .repo-file-upload-text.initial-text{display:block}.repo-file-upload-target .repo-file-upload-text.alternate-text{display:none}.repo-file-upload-target .repo-file-upload-drop-text,.repo-file-upload-target .repo-file-upload-text{margin-bottom:5px}.repo-file-upload-target .repo-file-upload-choose{display:inline-block;margin-top:0;font-size:18px}.repo-file-upload-target .manual-file-chooser{margin-left:0}.repo-file-upload-target .repo-file-upload-outline{position:absolute;top:3%;left:1%;width:98%;height:94%}.repo-file-upload-target.is-bad-file .repo-file-upload-outline,.repo-file-upload-target.is-empty .repo-file-upload-outline,.repo-file-upload-target.is-failed .repo-file-upload-outline,.repo-file-upload-target.is-too-big .repo-file-upload-outline,.repo-file-upload-target.is-too-many .repo-file-upload-outline{height:85%}.repo-file-upload-target.dragover .repo-file-upload-text{display:none}.repo-file-upload-target.dragover .repo-file-upload-choose{visibility:hidden}.repo-file-upload-target.dragover .repo-file-upload-drop-text{display:block}.repo-file-upload-target.dragover .repo-file-upload-outline{border:6px dashed #ddd;border-radius:5px}.repo-file-upload-errors,.repo-file-upload-errors .error,.repo-file-upload-target .repo-file-upload-drop-text{display:none}.is-bad-file .repo-file-upload-errors,.is-empty .repo-file-upload-errors,.is-failed .repo-file-upload-errors,.is-hidden-file .repo-file-upload-errors,.is-too-big .repo-file-upload-errors,.is-too-many .repo-file-upload-errors{position:absolute;right:0;bottom:0;left:0;display:block;padding:5px 8px;line-height:1.5;text-align:left;background-color:#fff;border-top:1px solid #e5e5e5;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.is-file-list .repo-file-upload-errors{border-bottom-right-radius:0;border-bottom-left-radius:0}.is-bad-file .repo-file-upload-errors .failed-request,.is-empty .repo-file-upload-errors .empty,.is-failed .repo-file-upload-errors .failed-request,.is-hidden-file .repo-file-upload-errors .hidden-file,.is-too-big .repo-file-upload-errors .too-big,.is-too-many .repo-file-upload-errors .too-many{display:inline-block}.repo-file-upload-tree-target{position:fixed;top:0;left:0;z-index:1000;width:100%;height:100%;padding:12px;color:#666;visibility:hidden;background:radial-gradient(ellipse at center,#fff 0,hsla(0,0%,100%,.85) 65%,hsla(0,0%,100%,.85) 100%);opacity:0;transition:visibility .2s,opacity .2s}.repo-file-upload-tree-target .repo-file-upload-outline{border:6px dashed #ddd;border-radius:5px}.dragover .repo-file-upload-tree-target{visibility:visible;opacity:1}.dragover .repo-file-upload-tree-target .repo-file-upload-slate{top:50%;opacity:1}.dragover .repo-file-upload-tree-target .files-lg>.file-graph{opacity:1;transform:translateX(4px)}.dragover .repo-file-upload-tree-target .files-lg>.file-zip{opacity:1;transform:translateX(9px)}.dragover .repo-file-upload-tree-target .files-lg>.file-generic{opacity:1;transform:translateX(-4px)}.dragover .repo-file-upload-tree-target .files-lg>.file-acrobat{opacity:1;transform:translateX(-9px)}.repo-file-upload-slate{position:absolute;top:50%;width:100%;text-align:center;transform:translateY(-50%)}.repo-file-upload-slate h2{margin-top:5px}.repo-file-upload-slate .file-graph{transform:translateX(50px)}.repo-file-upload-slate .file-graph,.repo-file-upload-slate .file-zip{opacity:0;transition:opacity .2s cubic-bezier(.175,.885,.32,1.275) .12s,transform .2s cubic-bezier(.175,.885,.32,1.275) .12s}.repo-file-upload-slate .file-zip{transform:translateX(90px)}.repo-file-upload-slate .file-generic{transform:translateX(-50px)}.repo-file-upload-slate .file-acrobat,.repo-file-upload-slate .file-generic{opacity:0;transition:opacity .2s cubic-bezier(.175,.885,.32,1.275) .12s,transform .2s cubic-bezier(.175,.885,.32,1.275) .12s}.repo-file-upload-slate .file-acrobat{transform:translateX(-90px)}.repo-file-upload-file-wrap .name{color:#888}.repo-file-upload-file-wrap .actions{width:50px;padding-right:10px;text-align:right}.repo-file-upload-file-wrap .remove-file{color:#888}.repo-file-upload-file-wrap .remove-file:hover{color:#666}.repo-upload-breadcrumb{margin-bottom:18px}.labels-list .blankslate{display:none}.labels-list.is-empty .blankslate,.labels-list .table-list-header{display:block}.labels-list.is-empty .table-list-header{display:none}.sidebar-labels .sidebar-labels-style{margin-top:3px}.label-select-menu-item .g-emoji{font-size:12px;line-height:1;vertical-align:initial}.label-edit:after,.label-edit:before{display:table;content:""}.label-edit:after{clear:both}.label-edit label{display:block;margin-bottom:8px}.label-edit .error{float:left;margin-top:8px;margin-left:10px;color:red}.label-edit.is-valid .octicon-check,.label-edit.loading{display:block}.label-characters-remaining{color:#586069}.emoji-size-boost .IssueLabel .g-emoji{top:0;font-size:1.15em;line-height:1.1}.repo-list,.repo-list-item{position:relative}.repo-list-item{padding-top:30px;padding-bottom:30px;list-style:none;border-bottom:1px solid #eee}.repo-list-item-with-avatar{padding-left:42px}.repo-list-item-hanging-avatar{float:left;margin-left:-42px}.mini-repo-list-item{position:relative;display:block;padding:6px 64px 6px 30px;font-size:14px;border-top:1px solid #d1d5da}.mini-repo-list-item:hover{text-decoration:none}.mini-repo-list-item:hover .owner,.mini-repo-list-item:hover .repo{text-decoration:underline}.mini-repo-list-item .repo-icon{float:left;margin-top:2px;margin-left:-20px;color:#666}.mini-repo-list-item .repo-and-owner{max-width:220px}.mini-repo-list-item .owner{max-width:110px}.mini-repo-list-item .repo{font-weight:600}.mini-repo-list-item .stars{position:absolute;top:0;right:10px;margin-top:6px;font-size:12px;color:#6a737d}.mini-repo-list-item .repo-description{display:block;max-width:100%;font-size:12px;line-height:21px;color:#586069}.private .mini-repo-list-item{background-color:#fffdef}.private .mini-repo-list-item .repo-icon{color:rgba(27,31,35,.7)}.filter-bar{padding:10px;background-color:#fafbfc;border-bottom:1px solid #e5e5e5}.filter-bar:after,.filter-bar:before{display:table;content:""}.filter-bar:after{clear:both}.user-repos .filter-bar{text-align:center}.url-box{width:100%;height:26px;padding:10px 10px 0;margin-top:10px;margin-left:-10px;border-top:1px solid #ddd}.url-box p{float:left;height:26px;margin:0 0 0 5px;line-height:26px}.url-box p strong{color:#24292e}.clone-url-button{display:table-cell;width:1%;vertical-align:top}.clone-url-button:first-child .clone-url-link{border-top-left-radius:3px;border-bottom-left-radius:3px}.clone-url-button>.clone-url-link{position:relative;display:block;padding:0 9px;margin-right:-1px;font-size:11px;font-weight:600;line-height:26px;color:#333;text-decoration:none;white-space:nowrap;cursor:pointer;background-image:linear-gradient(#fafafa,#eaeaea);border:1px solid #ccc}.clone-url-button>.clone-url-link:active,.clone-url-button>.clone-url-link:hover{z-index:3;color:#fff;text-decoration:none;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-image:linear-gradient(#599bcd,#3072b3);border-color:#2a65a0}.clone-url-button>.clone-url-link:active{background-color:#3072b3;background-image:none;border-color:#25588c;box-shadow:inset 0 3px 5px rgba(0,0,0,.15)}.clone-url-button>.clone-url-link:focus{outline:0}.clone-url-button+.clone-url-button>.clone-url-link{box-shadow:inset 1px 0 0 #fff}.clone-url-button+.clone-url-button>.clone-url-link:hover{box-shadow:none}.clone-url-button+.clone-url-button>.clone-url-link:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.15)}.clone-url-button.selected>.clone-url-link,.clone-url-button.selected>.clone-url-link:hover{z-index:2;color:#333;text-shadow:0 1px 0 hsla(0,0%,100%,.6);background-color:#ccc;background-image:linear-gradient(#ccc,#d5d5d5);border-color:#bbb;box-shadow:inset 0 2px 3px rgba(0,0,0,.075)}.url-box-clippy .zeroclipboard-button{margin-left:0!important;border-left:0;border-radius:0 3px 3px 0}.repository-og-image{width:640px;height:320px;object-fit:cover;object-position:center;background-repeat:no-repeat;background-position:50%;background-size:cover}.timeout{width:auto;height:300px;padding:0;margin:20px 0;background-color:initial;border:0}.timeout h3{padding-top:100px;color:#586069}.overall-summary{position:relative;margin-bottom:10px;border:1px solid #dfe2e5;border-radius:3px}.overall-summary-bottomless{margin-bottom:0;border-bottom:0;border-radius:3px 3px 0 0}.numbers-summary{display:table;width:100%;table-layout:fixed}.numbers-summary li{display:table-cell;padding:0;text-align:center;white-space:nowrap}.numbers-summary li>.nolink,.numbers-summary li>a{display:block;padding:10px 0;color:#586069;text-decoration:none}.numbers-summary li>a:hover{color:#0366d6}.numbers-summary li>a:hover .num{color:inherit}.numbers-summary .octicon{color:#6a737d}.repo-language-color{position:relative;top:1px;display:inline-block;width:12px;height:12px;border-radius:50%}.experiment-repo-nav .capped-cards .capped-card{width:480px}.experiment-repo-nav.repohead .repo-mirror{padding-left:20px}.iconbutton .octicon{margin-right:0}.file-navigation:after,.file-navigation:before{display:table;content:""}.file-navigation:after{clear:both}.file-navigation.in-mid-page{margin-top:16px}.file-navigation .select-menu-button .css-truncate-target{max-width:200px}.file-navigation .branch-select-menu{margin-right:6px;margin-bottom:10px}.file-navigation .new-pull-request-btn{float:left}.file-navigation .breadcrumb{float:left;margin-top:0;margin-left:5px;font-size:16px;line-height:26px}.file-navigation+.breadcrumb{margin-bottom:10px}.file-navigation .BtnGroup{margin-bottom:10px;margin-left:10px}.file-navigation .get-repo-modal{top:6px;width:352px}.file-navigation .get-repo-modal .https-clone-options{display:block}.file-navigation .get-repo-modal.on .https-clone-options,.file-navigation .get-repo-modal .ssh-clone-options{display:none}.file-navigation .get-repo-modal .get-repo-modal-options,.file-navigation .get-repo-modal.on .ssh-clone-options{display:block}.file-navigation .get-repo-modal.is-downloading .get-repo-modal-options{display:none}.file-navigation .get-repo-modal .animated-ellipsis-container{width:16px;height:16px}.file-navigation .get-repo-modal .animated-ellipsis-container>.animated-ellipsis{animation:ellipsis 1s infinite}@keyframes ellipsis{0%{width:2px}to{width:16px}}.file-navigation .btn-change-protocol{font-size:12px}.file-navigation .get-repo-decription-text{font-size:13px}.file-navigation .get-repo-btn{float:left;width:50%;padding:10px 0;text-align:center;border:0;border-top:1px solid #e1e4e8;border-radius:0}.file-navigation .get-repo-btn:first-child{border-right:1px solid #e1e4e8;border-bottom-left-radius:3px}.file-navigation .get-repo-btn:first-child:nth-last-child(3){border-radius:0}.file-navigation .get-repo-btn:last-child{border-bottom-right-radius:3px}.file-navigation .get-repo-btn.btn-block,.file-navigation .get-repo-btn:only-child{width:100%;border-right:0;border-radius:0 0 3px 3px}.file-navigation .clone-options{padding:8px 16px 16px}.file-wrap{margin-bottom:10px;border:1px solid #dfe2e5;border-top:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.file-wrap .include-fragment-error{display:none}.file-wrap.is-error .include-fragment-error{display:table-row}table.files{width:100%;background:#fff;border-radius:2px}table.files tr.navigation-focus td,table.files tr[aria-selected=true] td{background:#f6f8fa}table.files td{padding:6px 3px;line-height:20px;border-top:1px solid #eaecef}table.files td.icon{width:17px;padding-right:2px;padding-left:10px;color:rgba(3,47,98,.55)}table.files td.icon .octicon-file-directory{color:rgba(3,47,98,.5)}table.files td.icon .spinner{position:relative;top:3px;display:none;margin-top:-3px;margin-left:-2px}table.files td .simplified-path{color:#6a737d}table.files td .css-truncate{max-width:100%}table.files td.content{max-width:180px}table.files td.message{max-width:442px;padding-left:10px;overflow:hidden;color:#6a737d}table.files td.message .emoji{vertical-align:top}table.files td.message a{color:#6a737d}table.files td.message a:hover{color:#0366d6}table.files td.age{width:125px;padding-right:10px;color:#6a737d;text-align:right;white-space:nowrap}table.files .message .tooltipped:after,table.files .message .tooltipped:before,table.files tr.is-loading td.icon .octicon{display:none}table.files tr.is-loading td.icon .spinner{display:inline-block}table.files tr.up-tree{border-top:1px solid #eaecef;border-bottom:1px solid #eaecef}table.files tr.up-tree a{padding:3px 6px;margin-left:-3px;font-weight:600;border-radius:2px}table.files tr.up-tree a:hover{background-color:#dfe2e5}table.files tbody tr:first-child td{border-top:0}.branch-infobar{padding:8px;color:#586069;background-color:#fafbfc;border:solid #dfe2e5;border-width:1px 1px 0;border-top-left-radius:3px;border-top-right-radius:3px}.branch-infobar:after,.branch-infobar:before{display:table;content:""}.branch-infobar:after{clear:both}.branch-infobar .muted-link{display:inline-block;margin-left:10px}.branch-infobar .muted-link .octicon{color:#959da5}.branch-infobar .muted-link:hover .octicon{color:inherit}.spinner-forking{display:block;margin:20px auto 40px}.prereceive-feedback{padding:16px;margin-bottom:16px;border:1px solid #dfe2e5;border-left:3px solid #caa21a;border-radius:3px}.prereceive-feedback-heading{margin-top:0;margin-bottom:10px;color:#b08800}.file-navigation-options{float:right;margin-left:3px}.file-navigation-options .dropdown-menu{width:360px;padding:16px}.file-navigation-options .dropdown-divider{margin:0}.file-navigation-option{position:relative;display:inline-block;margin-left:3px}.file-navigation-option .select-menu{display:inline-block;margin-right:0;margin-bottom:0;vertical-align:middle}.file-navigation-option .select-menu-button .octicon:only-child{margin-left:2px}.file-navigation-option .zeroclipboard-button{padding-right:8px}.file-navigation-option .input-group{width:290px}.file-navigation-option .input-group .form-control{width:calc(100% + 2px);height:28px;min-height:0;margin-right:-1px;margin-left:-1px;border-radius:0}.file-navigation-option .input-group .select-menu-button{position:relative;z-index:2}.anim-rainbow{background:linear-gradient(270deg,#6f42c1 7.1%,#0366d6 28.4%,#28a745 42.6%,#ffd33d 56.8%,#f66a0a 71%,#d73a49 92.9%,#6f42c1);background-size:200% 100%;animation:MakeItRainbow 4s linear infinite}@keyframes MakeItRainbow{0%{background-position:0 0}50%{background-position:-100% 0}to{background-position:-200% 0}}.anim-ball{position:absolute;top:0;left:0;width:70px;height:4px;border-radius:2px;opacity:.3;animation:Ballin 4s linear infinite}.anim-delay{delay-animation:1s;animation-duration:3s}@keyframes Ballin{0%{transform:translate(0)}to{transform:translate(120vw)}}.Loadmore-workflows[open] summary{display:none}.profile-picture{margin:10px 0 0}.profile-picture>p{float:left;margin:0;line-height:30px}.profile-picture>img{float:left;margin:0 10px 0 0;border-radius:3px}.app-owner{margin:15px 0 0}.edit-profile-avatar{width:200px}.edit-profile-avatar .drag-and-drop{padding:0;color:#666;border-width:0}.edit-profile-avatar input{cursor:pointer}.edit-profile-avatar.is-bad-file{border:0}.edit-profile-avatar .manual-file-chooser{position:absolute;top:0;left:0;height:34px;padding:0;cursor:pointer}.profile-picture-spinner{background-image:url(/images/spinners/octocat-spinner-128.gif);background-repeat:no-repeat;background-position:50%;background-size:64px 64px}.avatar-upload .flash{width:100%;padding:30px 15px;border:1px dashed #d73a49;box-shadow:none}.avatar-upload .upload-state{display:none;padding:10px 0}.avatar-upload .upload-state p{margin:0;font-size:12px;color:#586069}.avatar-upload .avatar-upload .octicon{display:inline-block}.is-uploading .avatar-upload .loading{display:block;padding:0}.is-uploading .avatar-upload .loading img{vertical-align:top}.is-uploading .avatar-upload .button-change-avatar{display:none}.is-bad-dimensions .avatar-upload .bad-dimensions,.is-bad-file .avatar-upload .bad-file,.is-bad-format .avatar-upload .bad-format,.is-empty .avatar-upload .file-empty,.is-failed .avatar-upload .failed-request,.is-too-big .avatar-upload .too-big{display:block;margin:0}dl.new-email-form{padding:10px 10px 0;margin:0 -10px 10px;border-top:1px solid #e5e5e5}.email-actions{float:right}.email-actions>span{float:left}.email-actions form{display:inline}.email-actions span.label{padding:0 10px;font-size:13px;color:#586069}.email-actions .octicon-alert{color:#ca5633}.boxed-group .fork-flag{margin-left:16px;font-size:12px;color:#586069}.selected-user-key{background-color:#fffdef}.user-key-type{padding-right:20px;padding-left:10px;text-align:center}.user-key-badge{display:block;padding-right:5px;padding-left:5px;margin-top:3px;font-size:12px;line-height:1.4;border:1px solid #ddd;border-radius:3px}.user-key-email-badge{display:inline-table;margin-right:4px}.user-key-email{display:table-cell;padding:1px 5px;font-size:12px;line-height:1.4;border:1px solid #ddd;border-radius:3px}.user-key-email.unverified{border-top-right-radius:0;border-bottom-right-radius:0}.user-key-email-unverified{display:table-cell;padding-right:5px;padding-left:5px;font-size:11px;color:#666;background-color:#ecebec;border:1px solid #ddd;border-left:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.user-key-details{width:400px;line-height:1.6;white-space:normal}.user-key-details code{font-size:13px}.recent-user-key{color:#28a745}.recent-user-key-access{color:#1e7e34}.unverified-user-key,.unverified-user-key-notice{color:#cb2431}.notification-center .overview{padding:0 10px 10px;border-bottom:1px solid #ddd}.oauth-app-info-container .float-left-container{float:left;text-align:left}.oauth-app-info-container .float-right-container{float:right;text-align:right}.oauth-app-info-container dl.keys{margin:10px 0}.oauth-app-info-container dl.keys dt{margin-top:10px;font-weight:600;color:#586069}.oauth-app-info-container dl.keys dd{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:#333}.oauth-app-info-container .user-count{font-size:30px;font-weight:300;color:#586069}.logo-uploader-container{display:block}.logo-upload{position:relative;display:inline-block}.logo-upload a.delete,.logo-upload span.delete{position:absolute;left:88px;display:none;padding:8px 10px}.logo-upload a.delete:hover,.logo-upload span.delete:hover{color:#cb2431}.logo-upload-container{display:inline-block}.logo-upload-container .logo-upload-label .manual-file-chooser{top:0;left:0;width:130px;height:34px;padding:0;margin-left:0;cursor:pointer}.logo-upload-container .upload-state{padding:10px 0}.logo-upload-container .upload-state p{margin:0;font-size:12px;color:#586069}.logo-box{display:inline-block;float:left;width:120px;height:120px;background-color:#eee;border:1px solid #ccc;border-radius:3px}.logo-box img{display:none;width:118px;height:118px;border-radius:3px}.logo-placeholder{color:#586069;text-align:center;text-shadow:0 1px 0 #fff}.logo-placeholder p{margin:0;font-size:14px}.has-uploaded-logo .logo-placeholder,.has-uploaded-logo .or{display:none}.has-uploaded-logo .logo-box img,.has-uploaded-logo:hover a.delete,.has-uploaded-logo:hover span.delete{display:block}.saved-reply-form{border:1px solid #ddd;border-radius:3px}.saved-reply-form .tabnav-tab.selected{border-radius:3px 3px 0 0}.saved-reply-form .form-actions{margin-right:10px;margin-bottom:8px}.saved-reply-form .comment{border:0}.saved-reply-form .comment-body{padding:5px 5px 15px;background-color:initial;border-bottom:1px solid #eee}.saved-reply-settings-container.has-replies .listgroup{display:block}.saved-reply-settings-container.has-replies .blankslate,.saved-reply-settings-container .listgroup{display:none}.access-token{border-bottom:1px solid #e5e5e5}.access-token:last-child{border:0}.access-token .last-used{margin-right:10px}.access-token .zeroclipboard-link{display:inline-block;vertical-align:text-bottom}.access-token.new-token{background-color:rgba(108,198,68,.1)}.access-token.new-token .octicon-check{color:#28a745}.access-token .token-description{max-width:450px;color:#24292e}.access-token .token{font-size:14px}.regenerate-token-cta .btn-danger{margin-left:30px}.personal-access-tokens-group{padding:0 10px}.personal-access-tokens label{display:inline}.personal-access-tokens label p{display:inline-block;margin:0;font-size:13px;font-weight:400}.personal-access-tokens .child-scopes{margin-left:20px;list-style:none}.personal-access-tokens .child-scopes .token-scope{width:180px;font-weight:400}.personal-access-tokens .child-scopes .child-scopes{margin-left:0}.token-scope{display:inline-block;width:200px;padding:2px 0;margin:0;font-size:13px;color:#24292e}.token-scope input{margin-right:5px}.callback-urls dl dd .form-control{width:100%}.callback-urls.has-many .callback-url-action-cell{display:table-cell}.callback-description{margin-top:20px}.callback-description .octicon{padding-left:0}.callback-url .label{display:none;width:64px;text-align:center}.callback-url.is-default-callback .label{display:inline-block}.callback-url.is-default-callback .btn{display:none}.callback-url-wrap{display:table;width:100%}.callback-url-field-cell{display:table-cell}.callback-url-action-cell{display:none;width:70px;text-align:right}.boxed-group.application-show-group dl.form-group>dd .form-control.wide{width:460px}.boxed-group.application-show-group dl.form-group>dd .form-control.short{height:50px;min-height:50px}.application-show-group .errored .note{display:none}.application-show-group .drag-and-drop{padding:0;text-align:left;background-color:initial;border:0}.application-show-group .drag-and-drop img{margin-bottom:1px;vertical-align:bottom}.application-show-group .drag-and-drop span{padding:0}.application-show-group .dragover .logo-box{box-shadow:0 0 3px #c9ff00}.application-show-group .is-uploading .loading{display:inline-block}.application-show-group .is-uploading .default{display:none}.application-show-group .is-failed .failed-request{display:inline-block}.application-show-group .is-failed .default{display:none}.application-show-group .is-bad-file .bad-file{display:inline-block}.application-show-group .is-bad-file .default{display:none}.application-show-group .is-too-big .file-too-big{display:inline-block}.application-show-group .is-too-big .default{display:none}.application-show-group .is-bad-format .bad-format{display:inline-block}.application-show-group .is-bad-format .default{display:none}.application-show-group .is-default .default{display:block}.post-recovery-token .create-recovery-token-error,.post-recovery-token .octospinner{display:none}.post-recovery-token.failed .create-recovery-token-error,.post-recovery-token.loading .octospinner{display:block}.security-history .security-history-timestamp{float:right;color:#586069}table.security-history-detail{width:100%;font-size:12px}table.security-history-detail td{max-width:200px;word-wrap:break-word}.settings-email .email-actions .settings-remove-email{float:right;padding-right:7px;padding-left:7px;margin-left:5px;line-height:24px;color:#cb2431;cursor:pointer}.settings-email .email-actions .settings-remove-email.settings-disabled-remove-email{display:block;color:#6a737d}.settings-email .octicon-info{margin-left:5px}.settings-email .css-truncate-target{max-width:300px}.email-preference-exceptions{font-size:12px}.email-preference-exceptions h5{margin:15px 0 5px;color:#666}.email-preference-exceptions .exception-list{list-style:none}.email-preference-exceptions .exception{max-width:400px;padding:5px 5px 5px 0;border-top:1px solid #eee}.email-preference-exceptions .exception:last-child{border-bottom:1px solid #eee}.email-preference-exceptions.opt-in-list{display:none}.transactional-only .email-preference-exceptions.opt-in-list{display:block}.transactional-only .email-preference-exceptions.opt-out-list{display:none}.two-factor-intro{width:675px;margin:40px auto 0}.two-factor-intro .two-factor-graphic{margin:20px 0}.two-factor-intro .two-factor-explain{padding:0;margin:0 0 40px;font-size:13px;list-style:none}.two-factor-intro .two-factor-explain li{float:left;padding:0;margin:0}.two-factor-intro .two-factor-explain .step-one{width:185px;margin-right:36px}.two-factor-intro .two-factor-explain .step-two{width:230px;margin-right:42px}.two-factor-intro .two-factor-explain .step-three{width:180px}.two-factor-graphic{width:675px;height:135px;background-image:url(/images/modules/settings/2fa_guide.png);background-repeat:no-repeat}.two-factor-recovery-codes{margin:30px 0;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:21px}.two-factor-recovery-code-mark{width:24px;height:24px;font-size:24px;line-height:16px;color:#bbb}.two-factor-recovery-code{display:inline-block;width:48%;line-height:1.6;text-align:center}.two-factor-recovery-code:before{position:relative;top:-3px;margin-right:10px;font-size:10px;color:#d8d8d8;content:"\25CF"}.recovery-codes-saving-options{margin-left:35px}.recovery-codes-saving-options .recovery-code-save-button{width:115px;margin-right:15px;text-align:center}.recovery-codes-warning{margin:0 -15px}.recovery-codes-warning .recovery-codes-warning-octicon{height:40px;margin-right:15px}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.two-factor-graphic{background-image:url(/images/modules/settings/2fa_guide@2x.png);background-size:675px 135px}}.btn-two-factor-state{min-width:70px}.sms-or-app{width:100%;padding:40px 0 0;margin:0;border-top:1px solid #ddd}.sms-or-app:after,.sms-or-app:before{display:table;content:""}.sms-or-app:after{clear:both}.sms-or-app li{float:left;width:325px;padding:0;list-style:none}.sms-or-app li:first-child{margin-right:25px}.sms-or-app li .btn{display:block;width:100%;height:100%;padding-top:12px;padding-bottom:12px;margin:10px 0;font-size:15px;text-align:center}.sms-or-app small{font-size:80%}.app-only{padding:20px 0 0}.app-only li{float:none;width:auto}.app-only li .btn{display:inline-block;width:auto;padding-right:20px;padding-left:20px}.two-factor-lead{font-size:16px}.two-factor-qr-code{text-align:center}.two-factor-steps{padding:15px 15px 0;margin:30px 0;border:1px solid #eee;border-radius:3px}.two-factor-steps .error-icon{position:relative;top:2px;left:5px;color:#cb2431}.two-factor-steps .sent-message{position:relative;top:2px;left:5px;color:#28a745}.sms-country-code-field{padding-right:10px}.two-factor-toggle .two-factor-status{color:#586069;border-bottom:1px solid #eaeaea}.two-factor-toggle .two-factor-on{padding:3px 5px;margin-right:5px;color:#fff;text-shadow:0 1px 1px rgba(0,0,0,.1);background-color:#28a745;border-radius:2px}.two-factor-settings-group{border-bottom:1px solid #ddd}.two-factor-settings-group li{line-height:1.5;list-style:none}.u2f-registrations{padding-left:24px}.u2f-registration{position:relative;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #f8f8f8}.u2f-registration.is-sending .u2f-registration-delete{display:none}.u2f-registration.is-sending .spinner{position:relative;top:3px}.u2f-registration-nickname{font-weight:600}.u2f-registration-icon{position:absolute;left:-24px;color:rgba(47,38,6,.5)}.new-u2f-registration{position:relative}.new-u2f-registration .add-u2f-registration-form{display:none;margin-bottom:10px}.new-u2f-registration.is-active .add-u2f-registration-link{display:none}.new-u2f-registration.is-active .add-u2f-registration-form{display:block}.new-u2f-registration .u2f-request-error,.new-u2f-registration .u2f-request-interaction{display:none}.new-u2f-registration.is-sending .u2f-request-interaction,.new-u2f-registration.is-showing-error .u2f-request-error{display:block}.new-u2f-registration .u2f-message-icon{font-size:64px}.u2f-box .u2f-sorry{display:block}.u2f-box.available .u2f-sorry,.u2f-box .new-u2f-registration{display:none}.u2f-box.available .new-u2f-registration{display:block}.github-access-banner{position:relative;padding:10px 20px 10px 70px;margin:0 0 20px;font-size:14px;border:1px solid #ddd;border-radius:3px}.github-access-banner .octicon{position:absolute;top:20px;left:20px;color:#cb2431}.error-icon,.sent-message,.sms-error-message,.spinner{display:none}.sms-error-message{margin-top:15px}.is-sending .spinner,.is-sent .sent-message{display:inline-block}.is-not-sent .sms-error-message{display:block}.is-not-sent .error-icon,.qr-code-table{display:inline-block}.qr-code-table{padding:20px;margin:30px auto;border:1px solid #eee;border-radius:3px;box-shadow:0 2px 2px 0 rgba(0,0,0,.04)}.qr-code-table tr{background:transparent;border:0}.qr-code-table td,.qr-code-table th{padding:0;border:0}.qr-code-table td{width:3px;height:3px}.qr-code-table .black{background:#000}.qr-code-table .white{background:#fff}.confirmation-phrase{font-style:italic;font-weight:400}.do-not-copy-me{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.session-device{position:relative;padding:15px;line-height:18px;color:#586069}.session-device .btn{float:right;margin-top:4px}.session-device .session-state-indicator{float:left;width:8px;height:8px;margin-top:10px;border-radius:5px}.session-device .session-state-indicator.recent{background-color:#28a745;box-shadow:0 0 10px rgba(108,198,68,.5)}.session-device .session-state-indicator.revoked{background-color:#d73a49;box-shadow:0 0 10px rgba(198,108,68,.5)}.session-device .session-state-indicator.not-recent{background-image:linear-gradient(#aaa,#ccc);box-shadow:0 1px 0 #fff}.session-device .session-icon{float:left;width:32px;margin-top:1px;margin-left:15px;color:#bbb;text-align:center}.session-device .sessions-more-info{margin-top:10px}.session-details{margin-left:70px}.session-details:hover .octicon{color:#0366d6;cursor:pointer}.session-details.open .sessions-more-info{display:block}.collaborators .collab-list{border-bottom-width:0}.collaborators .collab-list-item:first-child .collab-list-cell{border-top-width:0}.collaborators .collab-list-cell{padding-top:15px;padding-bottom:15px;vertical-align:middle}.collaborators .collab-meta{width:140px}.collaborators .collab-remove{padding-right:20px;text-align:right}.collaborators .collab-remove .remove-link{color:#586069}.collaborators .collab-remove .remove-link:hover{color:#cb2431}.collaborators .collab-team-link{width:300px}.collaborators .collab-team-link:hover{text-decoration:none}.collaborators .collab-team-link .avatar{float:left;margin-top:1px;margin-right:10px}.collaborators .collab-team-link.disabled{pointer-events:none}.collaborators .collab-info{height:100%;color:#666}.collaborators .collab-info .description{padding-right:50px;margin-top:3px;margin-bottom:3px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.collaborators .collab-info .collab-name{display:block;font-size:14px}.collaborators .collab-info .collab-message{position:relative;top:25%;display:block}.collaborators .copy-invite-modal{width:352px}.collaborators .cancel-invite-cell{width:113px;padding-left:0}.access-sub-heading{float:right;font-weight:400;line-height:1.4;color:#586069}.access-form-wrapper{padding:10px;background-color:#fcfcfc;border-top:1px solid #ddd;border-radius:0 0 3px 3px}.access-flash{padding:8px;margin-right:10px;margin-bottom:10px;margin-left:10px}.repo-access-group .blankslate{display:none}.repo-access-group.is-empty .blankslate{display:block}.repo-access-group.no-form .add-team-form{display:none}.oauth-pending-deletion-list-item{background-color:#fafbfc;box-shadow:inset 0 0 8px #eee}.oauth-pending-deletion-list-item:hover{background-color:#fafbfc}.oauth-pending-deletion-list-item .oauth-pending-deletion{display:inline-block;width:19%;line-height:30px}.oauth-pending-deletion-list-item .active{display:none}.oauth-pending-deletion{display:none;width:100%}.boxed-group-list .access-level{color:#586069}.boxed-group-list .access-level.css-truncate-target{max-width:500px}.settings-next{font-size:14px;line-height:1.5}.settings-next label{font-size:14px}.settings-next .note{font-size:13px}.settings-next .form-checkbox input[type=checkbox],.settings-next .form-checkbox input[type=radio]{margin-top:4px}dl.form-group>dd textarea.compact{height:100px;min-height:0}.form-hr{margin-top:15px;margin-bottom:15px;border-bottom-color:#e5e5e5}.listgroup{list-style:none;border:1px solid #e5e5e5;border-radius:3px}.listgroup-item{min-height:inherit;padding:10px;font-size:13px;line-height:26px;color:#586069}.listgroup-item:after,.listgroup-item:before{display:table;content:""}.listgroup-item:after{clear:both}.listgroup-item+.listgroup-item{border-top:1px solid #e5e5e5}.listgroup-item.listgroup-item-preview{line-height:inherit}.listgroup-item.listgroup-item-preview .BtnGroup{margin-top:5px}.listgroup-item .css-truncate-target{max-width:615px}.listgroup-item-title{display:block;font-weight:600}.listgroup-item-body{display:block}.listgroup-header{border-top:0;border-bottom:1px solid #e5e5e5}.listgroup-overflow{max-height:240px;overflow-y:auto;background-color:#f5f5f5}.listgroup-sm .listgroup-item{padding-top:5px;padding-bottom:5px}.protected-branches{margin-top:15px;margin-bottom:15px}.protected-branch-options,.repo-data-options{margin-left:20px;opacity:.5}.protected-branch-options.active,.repo-data-options.active{opacity:1}.protected-branch-reviews.on .require-approving-reviews,.protected-branch-reviews.on .require-code-owner-review,.protected-branch-reviews.on .reviews-dismiss-on-push,.protected-branch-reviews.on .reviews-include-dismiss{display:block}.protected-branch-reviews .require-approving-reviews,.protected-branch-reviews .require-code-owner-review,.protected-branch-reviews .reviews-dismiss-on-push,.protected-branch-reviews .reviews-include-dismiss{display:none}.protected-branch-orgs-and-repo-admins{padding:10px;background-color:#fafbfc}.authorized-pushers{width:440px}.authorized-pushers .add-protected-branch-user-or-team{display:block}.authorized-pushers .user-or-team-limit-reached{display:none;padding:10px;font-size:13px}.authorized-pushers.at-limit .add-protected-branch-user-or-team{display:none}.authorized-pushers.at-limit .user-or-team-limit-reached{display:block;width:440px}.protected-branch-authorized-pushers-table{margin-top:10px}.protected-branch-authorized-pushers-table .boxed-group-inner{max-height:350px;overflow-y:auto}.protected-branch-authorized-pushers-table .table-list{border-bottom:0}.protected-branch-authorized-pushers-table .table-list-cell{vertical-align:middle}.protected-branch-authorized-pushers-table .table-list-cell:first-child{width:100%}.protected-branch-authorized-pushers-table .avatar,.protected-branch-authorized-pushers-table .octicon-jersey,.protected-branch-authorized-pushers-table .octicon-organization{width:36px;margin-right:10px;text-align:center}.protected-branch-pusher{color:#333}.user-already-added:after{display:inline-block;padding:1px 5px;margin-left:6px;font-size:11px;line-height:1.4;color:#fff;content:"Already added";background-color:#d15704;border-radius:3px}.protected-branch-admin-permission{float:left;padding:3px;margin:-2px 0 -2px -4px;line-height:normal;border:1px solid transparent;border-radius:3px}.protected-branch-admin-permission.active{animation:toggle-color 1s ease-in-out 0s}@keyframes toggle-color{0%{background-color:initial}50%{color:#4c4a42;background-color:#fff9ea;border-color:#dfd8c2}to{background-color:initial}}.automated-check-options{margin-top:10px}.automated-check-options .listgroup-item label{font-size:inherit}.automated-check-options .listgroup-item input[type=checkbox]{float:none;margin-top:-2px;margin-right:5px;margin-left:0}.automated-check-options .label{margin-top:4px}.repository-merge-features .form-group.errored label{color:inherit}.repository-merge-features .form-group.errored .error{position:inherit;padding:0;margin-top:0;margin-left:6px;font-size:11px;color:#cb2431;background:transparent;border:0}.repository-merge-features .form-group.errored .error:after,.repository-merge-features .form-group.errored .error:before{display:none}.repository-settings-actions [role=tab][aria-selected=true]{font-weight:600;color:#24292e;border-bottom-color:#e36209}.repository-settings-actions [role=tab][aria-selected=true] .UnderlineNav-octicon{color:#6a737d}
-
-/*!
- * Primer-marketing
- * http://primer.github.io
- *
- * Released under MIT license. Copyright (c) 2019 GitHub Inc.
- */.h000-mktg,.h00-mktg,.h0-mktg,.h1-mktg,.h2-mktg,.h3-mktg,.h4-mktg,.h5-mktg,.h6-mktg,.lead-mktg{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:500}.h000-mktg{font-size:48px!important}@media (min-width:768px){.h000-mktg{font-size:64px!important}}.h00-mktg{font-size:40px!important}@media (min-width:768px){.h00-mktg{font-size:48px!important}}.h0-mktg{font-size:32px!important}@media (min-width:768px){.h0-mktg{font-size:40px!important}}.h1-mktg{font-size:26px!important}@media (min-width:768px){.h1-mktg{font-size:32px!important}}.h2-mktg{font-size:22px!important}@media (min-width:768px){.h2-mktg{font-size:24px!important}}.h3-mktg{font-size:18px!important}@media (min-width:768px){.h3-mktg{font-size:20px!important}}.h4-mktg{font-size:16px!important}.h5-mktg{font-size:14px!important}.h6-mktg{font-size:12px!important}.lead-mktg{font-size:20px;font-weight:400}.pullquote{padding-top:0;padding-bottom:0;padding-left:8px;margin-bottom:24px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:16px;line-height:1.4;color:#586069;border-left:3px solid #e1e4e8}@media (min-width:768px){.pullquote{padding-left:12px;margin-bottom:32px;margin-left:-15px;font-size:18px;line-height:1.5}}.btn-mktg{display:inline-block;padding:16px 24px;font-size:14px;font-weight:500;color:#fff;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#1074e7;border:1px solid #1074e7;border-radius:3px;transition:.2s;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn-mktg:hover{text-decoration:none;background-color:#0366d6;border-color:#0366d6}.btn-mktg:focus{outline:0;box-shadow:0 0 0 .2em rgba(3,102,214,.3)}.btn-mktg.disabled,.btn-mktg:disabled{pointer-events:none;cursor:default;opacity:.65}.btn-primary-mktg{background-color:#2ebc4f;border-color:#2ebc4f}.btn-primary-mktg:hover{background-color:#28a745;border-color:#28a745}.btn-primary-mktg:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.3)}.btn-large-mktg{padding:20px 32px;font-size:16px}.btn-outline-mktg{color:#1074e7;background-color:hsla(0,0%,100%,0);border-color:rgba(16,116,231,.5)}.btn-outline-mktg:hover{color:#0366d6;text-decoration:none;background-color:hsla(0,0%,100%,0);border-color:#1074e7}.btn-transparent{color:#fff;background-color:initial;background-image:none;border:1px solid hsla(0,0%,100%,.5)}.btn-transparent:active,.btn-transparent:hover{color:#2f363d;background-color:#fff;background-image:none;border-color:#fff}@font-face{font-family:Inter;font-style:normal;font-weight:400;src:local("Inter"),local("Inter-Regular"),url(/fonts/Inter-Regular.woff) format("woff");font-display:swap}@font-face{font-family:Inter;font-style:normal;font-weight:500;src:local("Inter Medium"),local("Inter-Medium"),url(/fonts/Inter-Medium.woff) format("woff");font-display:swap}.grayscale{filter:grayscale(100%)}.top-0{top:0!important}.right-0{right:0!important}.bottom-0{bottom:0!important}.left-0{left:0!important}.top-n0{top:0!important}.right-n0{right:0!important}.bottom-n0{bottom:0!important}.left-n0{left:0!important}.top-1{top:4px!important}.right-1{right:4px!important}.bottom-1{bottom:4px!important}.left-1{left:4px!important}.top-n1{top:-4px!important}.right-n1{right:-4px!important}.bottom-n1{bottom:-4px!important}.left-n1{left:-4px!important}.top-2{top:8px!important}.right-2{right:8px!important}.bottom-2{bottom:8px!important}.left-2{left:8px!important}.top-n2{top:-8px!important}.right-n2{right:-8px!important}.bottom-n2{bottom:-8px!important}.left-n2{left:-8px!important}.top-3{top:16px!important}.right-3{right:16px!important}.bottom-3{bottom:16px!important}.left-3{left:16px!important}.top-n3{top:-16px!important}.right-n3{right:-16px!important}.bottom-n3{bottom:-16px!important}.left-n3{left:-16px!important}.top-4{top:24px!important}.right-4{right:24px!important}.bottom-4{bottom:24px!important}.left-4{left:24px!important}.top-n4{top:-24px!important}.right-n4{right:-24px!important}.bottom-n4{bottom:-24px!important}.left-n4{left:-24px!important}.top-5{top:32px!important}.right-5{right:32px!important}.bottom-5{bottom:32px!important}.left-5{left:32px!important}.top-n5{top:-32px!important}.right-n5{right:-32px!important}.bottom-n5{bottom:-32px!important}.left-n5{left:-32px!important}.top-6{top:40px!important}.right-6{right:40px!important}.bottom-6{bottom:40px!important}.left-6{left:40px!important}.top-n6{top:-40px!important}.right-n6{right:-40px!important}.bottom-n6{bottom:-40px!important}.left-n6{left:-40px!important}.top-7{top:48px!important}.right-7{right:48px!important}.bottom-7{bottom:48px!important}.left-7{left:48px!important}.top-n7{top:-48px!important}.right-n7{right:-48px!important}.bottom-n7{bottom:-48px!important}.left-n7{left:-48px!important}.top-8{top:64px!important}.right-8{right:64px!important}.bottom-8{bottom:64px!important}.left-8{left:64px!important}.top-n8{top:-64px!important}.right-n8{right:-64px!important}.bottom-n8{bottom:-64px!important}.left-n8{left:-64px!important}.top-9{top:80px!important}.right-9{right:80px!important}.bottom-9{bottom:80px!important}.left-9{left:80px!important}.top-n9{top:-80px!important}.right-n9{right:-80px!important}.bottom-n9{bottom:-80px!important}.left-n9{left:-80px!important}.top-10{top:96px!important}.right-10{right:96px!important}.bottom-10{bottom:96px!important}.left-10{left:96px!important}.top-n10{top:-96px!important}.right-n10{right:-96px!important}.bottom-n10{bottom:-96px!important}.left-n10{left:-96px!important}.top-11{top:112px!important}.right-11{right:112px!important}.bottom-11{bottom:112px!important}.left-11{left:112px!important}.top-n11{top:-112px!important}.right-n11{right:-112px!important}.bottom-n11{bottom:-112px!important}.left-n11{left:-112px!important}.top-12{top:128px!important}.right-12{right:128px!important}.bottom-12{bottom:128px!important}.left-12{left:128px!important}.top-n12{top:-128px!important}.right-n12{right:-128px!important}.bottom-n12{bottom:-128px!important}.left-n12{left:-128px!important}@media (min-width:768px){.top-md-0{top:0!important}.right-md-0{right:0!important}.bottom-md-0{bottom:0!important}.left-md-0{left:0!important}.top-md-n0{top:0!important}.right-md-n0{right:0!important}.bottom-md-n0{bottom:0!important}.left-md-n0{left:0!important}.top-md-1{top:4px!important}.right-md-1{right:4px!important}.bottom-md-1{bottom:4px!important}.left-md-1{left:4px!important}.top-md-n1{top:-4px!important}.right-md-n1{right:-4px!important}.bottom-md-n1{bottom:-4px!important}.left-md-n1{left:-4px!important}.top-md-2{top:8px!important}.right-md-2{right:8px!important}.bottom-md-2{bottom:8px!important}.left-md-2{left:8px!important}.top-md-n2{top:-8px!important}.right-md-n2{right:-8px!important}.bottom-md-n2{bottom:-8px!important}.left-md-n2{left:-8px!important}.top-md-3{top:16px!important}.right-md-3{right:16px!important}.bottom-md-3{bottom:16px!important}.left-md-3{left:16px!important}.top-md-n3{top:-16px!important}.right-md-n3{right:-16px!important}.bottom-md-n3{bottom:-16px!important}.left-md-n3{left:-16px!important}.top-md-4{top:24px!important}.right-md-4{right:24px!important}.bottom-md-4{bottom:24px!important}.left-md-4{left:24px!important}.top-md-n4{top:-24px!important}.right-md-n4{right:-24px!important}.bottom-md-n4{bottom:-24px!important}.left-md-n4{left:-24px!important}.top-md-5{top:32px!important}.right-md-5{right:32px!important}.bottom-md-5{bottom:32px!important}.left-md-5{left:32px!important}.top-md-n5{top:-32px!important}.right-md-n5{right:-32px!important}.bottom-md-n5{bottom:-32px!important}.left-md-n5{left:-32px!important}.top-md-6{top:40px!important}.right-md-6{right:40px!important}.bottom-md-6{bottom:40px!important}.left-md-6{left:40px!important}.top-md-n6{top:-40px!important}.right-md-n6{right:-40px!important}.bottom-md-n6{bottom:-40px!important}.left-md-n6{left:-40px!important}.top-md-7{top:48px!important}.right-md-7{right:48px!important}.bottom-md-7{bottom:48px!important}.left-md-7{left:48px!important}.top-md-n7{top:-48px!important}.right-md-n7{right:-48px!important}.bottom-md-n7{bottom:-48px!important}.left-md-n7{left:-48px!important}.top-md-8{top:64px!important}.right-md-8{right:64px!important}.bottom-md-8{bottom:64px!important}.left-md-8{left:64px!important}.top-md-n8{top:-64px!important}.right-md-n8{right:-64px!important}.bottom-md-n8{bottom:-64px!important}.left-md-n8{left:-64px!important}.top-md-9{top:80px!important}.right-md-9{right:80px!important}.bottom-md-9{bottom:80px!important}.left-md-9{left:80px!important}.top-md-n9{top:-80px!important}.right-md-n9{right:-80px!important}.bottom-md-n9{bottom:-80px!important}.left-md-n9{left:-80px!important}.top-md-10{top:96px!important}.right-md-10{right:96px!important}.bottom-md-10{bottom:96px!important}.left-md-10{left:96px!important}.top-md-n10{top:-96px!important}.right-md-n10{right:-96px!important}.bottom-md-n10{bottom:-96px!important}.left-md-n10{left:-96px!important}.top-md-11{top:112px!important}.right-md-11{right:112px!important}.bottom-md-11{bottom:112px!important}.left-md-11{left:112px!important}.top-md-n11{top:-112px!important}.right-md-n11{right:-112px!important}.bottom-md-n11{bottom:-112px!important}.left-md-n11{left:-112px!important}.top-md-12{top:128px!important}.right-md-12{right:128px!important}.bottom-md-12{bottom:128px!important}.left-md-12{left:128px!important}.top-md-n12{top:-128px!important}.right-md-n12{right:-128px!important}.bottom-md-n12{bottom:-128px!important}.left-md-n12{left:-128px!important}}@media (min-width:1012px){.top-lg-0{top:0!important}.right-lg-0{right:0!important}.bottom-lg-0{bottom:0!important}.left-lg-0{left:0!important}.top-lg-n0{top:0!important}.right-lg-n0{right:0!important}.bottom-lg-n0{bottom:0!important}.left-lg-n0{left:0!important}.top-lg-1{top:4px!important}.right-lg-1{right:4px!important}.bottom-lg-1{bottom:4px!important}.left-lg-1{left:4px!important}.top-lg-n1{top:-4px!important}.right-lg-n1{right:-4px!important}.bottom-lg-n1{bottom:-4px!important}.left-lg-n1{left:-4px!important}.top-lg-2{top:8px!important}.right-lg-2{right:8px!important}.bottom-lg-2{bottom:8px!important}.left-lg-2{left:8px!important}.top-lg-n2{top:-8px!important}.right-lg-n2{right:-8px!important}.bottom-lg-n2{bottom:-8px!important}.left-lg-n2{left:-8px!important}.top-lg-3{top:16px!important}.right-lg-3{right:16px!important}.bottom-lg-3{bottom:16px!important}.left-lg-3{left:16px!important}.top-lg-n3{top:-16px!important}.right-lg-n3{right:-16px!important}.bottom-lg-n3{bottom:-16px!important}.left-lg-n3{left:-16px!important}.top-lg-4{top:24px!important}.right-lg-4{right:24px!important}.bottom-lg-4{bottom:24px!important}.left-lg-4{left:24px!important}.top-lg-n4{top:-24px!important}.right-lg-n4{right:-24px!important}.bottom-lg-n4{bottom:-24px!important}.left-lg-n4{left:-24px!important}.top-lg-5{top:32px!important}.right-lg-5{right:32px!important}.bottom-lg-5{bottom:32px!important}.left-lg-5{left:32px!important}.top-lg-n5{top:-32px!important}.right-lg-n5{right:-32px!important}.bottom-lg-n5{bottom:-32px!important}.left-lg-n5{left:-32px!important}.top-lg-6{top:40px!important}.right-lg-6{right:40px!important}.bottom-lg-6{bottom:40px!important}.left-lg-6{left:40px!important}.top-lg-n6{top:-40px!important}.right-lg-n6{right:-40px!important}.bottom-lg-n6{bottom:-40px!important}.left-lg-n6{left:-40px!important}.top-lg-7{top:48px!important}.right-lg-7{right:48px!important}.bottom-lg-7{bottom:48px!important}.left-lg-7{left:48px!important}.top-lg-n7{top:-48px!important}.right-lg-n7{right:-48px!important}.bottom-lg-n7{bottom:-48px!important}.left-lg-n7{left:-48px!important}.top-lg-8{top:64px!important}.right-lg-8{right:64px!important}.bottom-lg-8{bottom:64px!important}.left-lg-8{left:64px!important}.top-lg-n8{top:-64px!important}.right-lg-n8{right:-64px!important}.bottom-lg-n8{bottom:-64px!important}.left-lg-n8{left:-64px!important}.top-lg-9{top:80px!important}.right-lg-9{right:80px!important}.bottom-lg-9{bottom:80px!important}.left-lg-9{left:80px!important}.top-lg-n9{top:-80px!important}.right-lg-n9{right:-80px!important}.bottom-lg-n9{bottom:-80px!important}.left-lg-n9{left:-80px!important}.top-lg-10{top:96px!important}.right-lg-10{right:96px!important}.bottom-lg-10{bottom:96px!important}.left-lg-10{left:96px!important}.top-lg-n10{top:-96px!important}.right-lg-n10{right:-96px!important}.bottom-lg-n10{bottom:-96px!important}.left-lg-n10{left:-96px!important}.top-lg-11{top:112px!important}.right-lg-11{right:112px!important}.bottom-lg-11{bottom:112px!important}.left-lg-11{left:112px!important}.top-lg-n11{top:-112px!important}.right-lg-n11{right:-112px!important}.bottom-lg-n11{bottom:-112px!important}.left-lg-n11{left:-112px!important}.top-lg-12{top:128px!important}.right-lg-12{right:128px!important}.bottom-lg-12{bottom:128px!important}.left-lg-12{left:128px!important}.top-lg-n12{top:-128px!important}.right-lg-n12{right:-128px!important}.bottom-lg-n12{bottom:-128px!important}.left-lg-n12{left:-128px!important}}.offset-n1{margin-left:-8.33333%}.offset-n2{margin-left:-16.66667%}.offset-n3{margin-left:-25%}.offset-n4{margin-left:-33.33333%}.offset-n5{margin-left:-41.66667%}.offset-n6{margin-left:-50%}.offset-n7{margin-left:-58.33333%}@media (min-width:544px){.offset-sm-n1{margin-left:-8.33333%}.offset-sm-n2{margin-left:-16.66667%}.offset-sm-n3{margin-left:-25%}.offset-sm-n4{margin-left:-33.33333%}.offset-sm-n5{margin-left:-41.66667%}.offset-sm-n6{margin-left:-50%}.offset-sm-n7{margin-left:-58.33333%}}@media (min-width:768px){.offset-md-n1{margin-left:-8.33333%}.offset-md-n2{margin-left:-16.66667%}.offset-md-n3{margin-left:-25%}.offset-md-n4{margin-left:-33.33333%}.offset-md-n5{margin-left:-41.66667%}.offset-md-n6{margin-left:-50%}.offset-md-n7{margin-left:-58.33333%}}@media (min-width:1012px){.offset-lg-n1{margin-left:-8.33333%}.offset-lg-n2{margin-left:-16.66667%}.offset-lg-n3{margin-left:-25%}.offset-lg-n4{margin-left:-33.33333%}.offset-lg-n5{margin-left:-41.66667%}.offset-lg-n6{margin-left:-50%}.offset-lg-n7{margin-left:-58.33333%}}@media (min-width:1280px){.offset-xl-n1{margin-left:-8.33333%}.offset-xl-n2{margin-left:-16.66667%}.offset-xl-n3{margin-left:-25%}.offset-xl-n4{margin-left:-33.33333%}.offset-xl-n5{margin-left:-41.66667%}.offset-xl-n6{margin-left:-50%}.offset-xl-n7{margin-left:-58.33333%}}.mt-7{margin-top:48px!important}.mb-7,.my-7{margin-bottom:48px!important}.my-7{margin-top:48px!important}.mt-8{margin-top:64px!important}.mb-8,.my-8{margin-bottom:64px!important}.my-8{margin-top:64px!important}.mt-9{margin-top:80px!important}.mb-9,.my-9{margin-bottom:80px!important}.my-9{margin-top:80px!important}.mt-10{margin-top:96px!important}.mb-10,.my-10{margin-bottom:96px!important}.my-10{margin-top:96px!important}.mt-11{margin-top:112px!important}.mb-11,.my-11{margin-bottom:112px!important}.my-11{margin-top:112px!important}.mt-12{margin-top:128px!important}.mb-12,.my-12{margin-bottom:128px!important}.my-12{margin-top:128px!important}@media (min-width:544px){.mt-sm-7{margin-top:48px!important}.mb-sm-7,.my-sm-7{margin-bottom:48px!important}.my-sm-7{margin-top:48px!important}.mt-sm-8{margin-top:64px!important}.mb-sm-8,.my-sm-8{margin-bottom:64px!important}.my-sm-8{margin-top:64px!important}.mt-sm-9{margin-top:80px!important}.mb-sm-9,.my-sm-9{margin-bottom:80px!important}.my-sm-9{margin-top:80px!important}.mt-sm-10{margin-top:96px!important}.mb-sm-10,.my-sm-10{margin-bottom:96px!important}.my-sm-10{margin-top:96px!important}.mt-sm-11{margin-top:112px!important}.mb-sm-11,.my-sm-11{margin-bottom:112px!important}.my-sm-11{margin-top:112px!important}.mt-sm-12{margin-top:128px!important}.mb-sm-12,.my-sm-12{margin-bottom:128px!important}.my-sm-12{margin-top:128px!important}}@media (min-width:768px){.mt-md-7{margin-top:48px!important}.mb-md-7,.my-md-7{margin-bottom:48px!important}.my-md-7{margin-top:48px!important}.mt-md-8{margin-top:64px!important}.mb-md-8,.my-md-8{margin-bottom:64px!important}.my-md-8{margin-top:64px!important}.mt-md-9{margin-top:80px!important}.mb-md-9,.my-md-9{margin-bottom:80px!important}.my-md-9{margin-top:80px!important}.mt-md-10{margin-top:96px!important}.mb-md-10,.my-md-10{margin-bottom:96px!important}.my-md-10{margin-top:96px!important}.mt-md-11{margin-top:112px!important}.mb-md-11,.my-md-11{margin-bottom:112px!important}.my-md-11{margin-top:112px!important}.mt-md-12{margin-top:128px!important}.mb-md-12,.my-md-12{margin-bottom:128px!important}.my-md-12{margin-top:128px!important}}@media (min-width:1012px){.mt-lg-7{margin-top:48px!important}.mb-lg-7,.my-lg-7{margin-bottom:48px!important}.my-lg-7{margin-top:48px!important}.mt-lg-8{margin-top:64px!important}.mb-lg-8,.my-lg-8{margin-bottom:64px!important}.my-lg-8{margin-top:64px!important}.mt-lg-9{margin-top:80px!important}.mb-lg-9,.my-lg-9{margin-bottom:80px!important}.my-lg-9{margin-top:80px!important}.mt-lg-10{margin-top:96px!important}.mb-lg-10,.my-lg-10{margin-bottom:96px!important}.my-lg-10{margin-top:96px!important}.mt-lg-11{margin-top:112px!important}.mb-lg-11,.my-lg-11{margin-bottom:112px!important}.my-lg-11{margin-top:112px!important}.mt-lg-12{margin-top:128px!important}.mb-lg-12,.my-lg-12{margin-bottom:128px!important}.my-lg-12{margin-top:128px!important}}@media (min-width:1280px){.mt-xl-7{margin-top:48px!important}.mb-xl-7,.my-xl-7{margin-bottom:48px!important}.my-xl-7{margin-top:48px!important}.mt-xl-8{margin-top:64px!important}.mb-xl-8,.my-xl-8{margin-bottom:64px!important}.my-xl-8{margin-top:64px!important}.mt-xl-9{margin-top:80px!important}.mb-xl-9,.my-xl-9{margin-bottom:80px!important}.my-xl-9{margin-top:80px!important}.mt-xl-10{margin-top:96px!important}.mb-xl-10,.my-xl-10{margin-bottom:96px!important}.my-xl-10{margin-top:96px!important}.mt-xl-11{margin-top:112px!important}.mb-xl-11,.my-xl-11{margin-bottom:112px!important}.my-xl-11{margin-top:112px!important}.mt-xl-12{margin-top:128px!important}.mb-xl-12,.my-xl-12{margin-bottom:128px!important}.my-xl-12{margin-top:128px!important}}.p-7{padding:48px!important}.pt-7{padding-top:48px!important}.pr-7{padding-right:48px!important}.pb-7{padding-bottom:48px!important}.pl-7{padding-left:48px!important}.py-7{padding-top:48px!important;padding-bottom:48px!important}.p-8{padding:64px!important}.pt-8{padding-top:64px!important}.pr-8{padding-right:64px!important}.pb-8{padding-bottom:64px!important}.pl-8{padding-left:64px!important}.py-8{padding-top:64px!important;padding-bottom:64px!important}.p-9{padding:80px!important}.pt-9{padding-top:80px!important}.pr-9{padding-right:80px!important}.pb-9{padding-bottom:80px!important}.pl-9{padding-left:80px!important}.py-9{padding-top:80px!important;padding-bottom:80px!important}.p-10{padding:96px!important}.pt-10{padding-top:96px!important}.pr-10{padding-right:96px!important}.pb-10{padding-bottom:96px!important}.pl-10{padding-left:96px!important}.py-10{padding-top:96px!important;padding-bottom:96px!important}.p-11{padding:112px!important}.pt-11{padding-top:112px!important}.pr-11{padding-right:112px!important}.pb-11{padding-bottom:112px!important}.pl-11{padding-left:112px!important}.py-11{padding-top:112px!important;padding-bottom:112px!important}.p-12{padding:128px!important}.pt-12{padding-top:128px!important}.pr-12{padding-right:128px!important}.pb-12{padding-bottom:128px!important}.pl-12{padding-left:128px!important}.py-12{padding-top:128px!important;padding-bottom:128px!important}@media (min-width:544px){.p-sm-7{padding:48px!important}.pt-sm-7{padding-top:48px!important}.pr-sm-7{padding-right:48px!important}.pb-sm-7{padding-bottom:48px!important}.pl-sm-7{padding-left:48px!important}.py-sm-7{padding-top:48px!important;padding-bottom:48px!important}.p-sm-8{padding:64px!important}.pt-sm-8{padding-top:64px!important}.pr-sm-8{padding-right:64px!important}.pb-sm-8{padding-bottom:64px!important}.pl-sm-8{padding-left:64px!important}.py-sm-8{padding-top:64px!important;padding-bottom:64px!important}.p-sm-9{padding:80px!important}.pt-sm-9{padding-top:80px!important}.pr-sm-9{padding-right:80px!important}.pb-sm-9{padding-bottom:80px!important}.pl-sm-9{padding-left:80px!important}.py-sm-9{padding-top:80px!important;padding-bottom:80px!important}.p-sm-10{padding:96px!important}.pt-sm-10{padding-top:96px!important}.pr-sm-10{padding-right:96px!important}.pb-sm-10{padding-bottom:96px!important}.pl-sm-10{padding-left:96px!important}.py-sm-10{padding-top:96px!important;padding-bottom:96px!important}.p-sm-11{padding:112px!important}.pt-sm-11{padding-top:112px!important}.pr-sm-11{padding-right:112px!important}.pb-sm-11{padding-bottom:112px!important}.pl-sm-11{padding-left:112px!important}.py-sm-11{padding-top:112px!important;padding-bottom:112px!important}.p-sm-12{padding:128px!important}.pt-sm-12{padding-top:128px!important}.pr-sm-12{padding-right:128px!important}.pb-sm-12{padding-bottom:128px!important}.pl-sm-12{padding-left:128px!important}.py-sm-12{padding-top:128px!important;padding-bottom:128px!important}}@media (min-width:768px){.p-md-7{padding:48px!important}.pt-md-7{padding-top:48px!important}.pr-md-7{padding-right:48px!important}.pb-md-7{padding-bottom:48px!important}.pl-md-7{padding-left:48px!important}.py-md-7{padding-top:48px!important;padding-bottom:48px!important}.p-md-8{padding:64px!important}.pt-md-8{padding-top:64px!important}.pr-md-8{padding-right:64px!important}.pb-md-8{padding-bottom:64px!important}.pl-md-8{padding-left:64px!important}.py-md-8{padding-top:64px!important;padding-bottom:64px!important}.p-md-9{padding:80px!important}.pt-md-9{padding-top:80px!important}.pr-md-9{padding-right:80px!important}.pb-md-9{padding-bottom:80px!important}.pl-md-9{padding-left:80px!important}.py-md-9{padding-top:80px!important;padding-bottom:80px!important}.p-md-10{padding:96px!important}.pt-md-10{padding-top:96px!important}.pr-md-10{padding-right:96px!important}.pb-md-10{padding-bottom:96px!important}.pl-md-10{padding-left:96px!important}.py-md-10{padding-top:96px!important;padding-bottom:96px!important}.p-md-11{padding:112px!important}.pt-md-11{padding-top:112px!important}.pr-md-11{padding-right:112px!important}.pb-md-11{padding-bottom:112px!important}.pl-md-11{padding-left:112px!important}.py-md-11{padding-top:112px!important;padding-bottom:112px!important}.p-md-12{padding:128px!important}.pt-md-12{padding-top:128px!important}.pr-md-12{padding-right:128px!important}.pb-md-12{padding-bottom:128px!important}.pl-md-12{padding-left:128px!important}.py-md-12{padding-top:128px!important;padding-bottom:128px!important}}@media (min-width:1012px){.p-lg-7{padding:48px!important}.pt-lg-7{padding-top:48px!important}.pr-lg-7{padding-right:48px!important}.pb-lg-7{padding-bottom:48px!important}.pl-lg-7{padding-left:48px!important}.py-lg-7{padding-top:48px!important;padding-bottom:48px!important}.p-lg-8{padding:64px!important}.pt-lg-8{padding-top:64px!important}.pr-lg-8{padding-right:64px!important}.pb-lg-8{padding-bottom:64px!important}.pl-lg-8{padding-left:64px!important}.py-lg-8{padding-top:64px!important;padding-bottom:64px!important}.p-lg-9{padding:80px!important}.pt-lg-9{padding-top:80px!important}.pr-lg-9{padding-right:80px!important}.pb-lg-9{padding-bottom:80px!important}.pl-lg-9{padding-left:80px!important}.py-lg-9{padding-top:80px!important;padding-bottom:80px!important}.p-lg-10{padding:96px!important}.pt-lg-10{padding-top:96px!important}.pr-lg-10{padding-right:96px!important}.pb-lg-10{padding-bottom:96px!important}.pl-lg-10{padding-left:96px!important}.py-lg-10{padding-top:96px!important;padding-bottom:96px!important}.p-lg-11{padding:112px!important}.pt-lg-11{padding-top:112px!important}.pr-lg-11{padding-right:112px!important}.pb-lg-11{padding-bottom:112px!important}.pl-lg-11{padding-left:112px!important}.py-lg-11{padding-top:112px!important;padding-bottom:112px!important}.p-lg-12{padding:128px!important}.pt-lg-12{padding-top:128px!important}.pr-lg-12{padding-right:128px!important}.pb-lg-12{padding-bottom:128px!important}.pl-lg-12{padding-left:128px!important}.py-lg-12{padding-top:128px!important;padding-bottom:128px!important}}@media (min-width:1280px){.p-xl-7{padding:48px!important}.pt-xl-7{padding-top:48px!important}.pr-xl-7{padding-right:48px!important}.pb-xl-7{padding-bottom:48px!important}.pl-xl-7{padding-left:48px!important}.py-xl-7{padding-top:48px!important;padding-bottom:48px!important}.p-xl-8{padding:64px!important}.pt-xl-8{padding-top:64px!important}.pr-xl-8{padding-right:64px!important}.pb-xl-8{padding-bottom:64px!important}.pl-xl-8{padding-left:64px!important}.py-xl-8{padding-top:64px!important;padding-bottom:64px!important}.p-xl-9{padding:80px!important}.pt-xl-9{padding-top:80px!important}.pr-xl-9{padding-right:80px!important}.pb-xl-9{padding-bottom:80px!important}.pl-xl-9{padding-left:80px!important}.py-xl-9{padding-top:80px!important;padding-bottom:80px!important}.p-xl-10{padding:96px!important}.pt-xl-10{padding-top:96px!important}.pr-xl-10{padding-right:96px!important}.pb-xl-10{padding-bottom:96px!important}.pl-xl-10{padding-left:96px!important}.py-xl-10{padding-top:96px!important;padding-bottom:96px!important}.p-xl-11{padding:112px!important}.pt-xl-11{padding-top:112px!important}.pr-xl-11{padding-right:112px!important}.pb-xl-11{padding-bottom:112px!important}.pl-xl-11{padding-left:112px!important}.py-xl-11{padding-top:112px!important;padding-bottom:112px!important}.p-xl-12{padding:128px!important}.pt-xl-12{padding-top:128px!important}.pr-xl-12{padding-right:128px!important}.pb-xl-12{padding-bottom:128px!important}.pl-xl-12{padding-left:128px!important}.py-xl-12{padding-top:128px!important;padding-bottom:128px!important}}.setup-wrapper{width:750px;padding-top:30px;margin:0 auto}.setup-wrapper:after,.setup-wrapper:before{display:table;content:""}.setup-wrapper:after{clear:both}.setup-header{padding-bottom:20px;margin:0 auto 30px;overflow:hidden;text-align:left;border-bottom:1px solid #ddd}.setup-header h1{margin-top:0;margin-bottom:0;font-size:45px;font-weight:400;line-height:1.1;letter-spacing:-1px}.setup-header h1 .octicon{color:#bbb}.setup-header .lead{margin-top:2px;margin-bottom:0;font-size:21px}.setup-header .lead a{color:#586069}.setup-header .lead a:hover{color:#0366d6;text-decoration:none}.setup-org{padding-bottom:0;border-bottom:0}.setup-main{float:left;width:450px}.setup-main.without-secondary{margin-left:150px}.setup-secondary{float:right;width:250px}.setup-secondary .info{padding-top:0;padding-bottom:0;margin-top:-10px;font-size:12px;line-height:18px;color:#586069;text-align:center}.setup-info-module{margin-bottom:30px;background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.075)}.setup-info-module h2{padding:15px;margin-bottom:15px;overflow:hidden;font-size:16px;border-bottom:1px solid #ddd}.setup-info-module h2 .price{float:right;font-weight:600;color:#586069}.setup-info-module h3{padding:0 15px;margin:0 0 -7px;font-size:14px}.setup-info-module p{padding:0 15px;margin:15px 0}.setup-info-module .setup-info-note{padding:1px 0;margin:0;background:#f9f9f9;border-top:1px solid #e0e0e0}.features-list{padding:0 15px 15px;margin:0;font-size:14px;list-style:none}.features-list li{margin-top:10px}.features-list li:first-child{margin-top:0}.features-list .list-divider{margin:15px -15px;border-top:1px solid #eee}.features-list .octicon-check{margin-right:5px;color:#60b044}.features-list .octicon-question{font-size:12px;color:#555}.features-list .tooltipped:after{width:250px;white-space:normal}.features-list.features-list-org{padding-bottom:0}.setup-form-container .setup-form-title{font-size:16px}.setup-form-container .secure{float:right;margin-top:2px;font-size:11px;color:#60b044;text-transform:uppercase}.setup-form-container hr{margin-top:25px;margin-bottom:25px}.setup-form-container .form-actions{padding-top:0;padding-bottom:0;text-align:left}.team-member-container{margin-bottom:20px}.team-member-container .team-member-username{line-height:1.2}.setup-form{padding-bottom:15px}.setup-form .form-group dd .form-control{width:100%}.setup-form .form-group dd .form-control.short{width:250px}.setup-form dd{position:relative}.setup-form dd .octicon{position:absolute;top:8px;right:25px}.setup-form .octicon-alert{color:#cb2431}.setup-form .octicon-check{color:#28a745}.setup-form .setup-organization-next,.setup-form .tos-info{margin:15px 0;border-top:1px solid #eee;border-bottom:1px solid #eee}.setup-form .tos-info{padding:15px 0}.setup-form .setup-organization-next{padding-top:15px;padding-bottom:15px}.setup-form .setup-plans{border-collapse:initial;border:1px solid #d1d5da}.setup-form .setup-plans tr.selected{background-color:#f1f8ff}.setup-form .setup-plans .name{font-weight:600}.setup-form .setup-plans .choose-plan input[type=radio]{display:none}.setup-creditcard-form .country-form,.setup-creditcard-form .state-form{float:left;margin:0;word-wrap:normal}.setup-creditcard-form .country-form,.setup-creditcard-form .postal-code-form{margin-top:0;margin-bottom:15px}.setup-creditcard-form .form-group select.select-country{width:182px;margin-right:5px}.setup-creditcard-form .form-group select:invalid{color:#6a737d}.setup-creditcard-form .form-group select.select-state{width:113px}.setup-creditcard-form .form-group .input-vat{width:288px}.setup-creditcard-form .form-group input.input-postal-code{width:180px}.setup-creditcard-form.is-vat-country .vat-field{display:block}.setup-creditcard-form.is-international .form-group select.select-country{width:300px}.setup-creditcard-form.is-international .state-form,.setup-creditcard-form.no-postcodes .postal-code-form{display:none}.setup-creditcard-form dd .octicon-credit-card{position:inherit}.setup-creditcard-form .vat-field{display:none}.setup-creditcard-form .vat-field.prefilled{display:block}.setup-creditcard-form .help-text{font-size:80%;font-weight:400;color:#586069}.org-creation-questions,.user-identification-questions{float:none;width:auto}.org-creation-questions .question,.user-identification-questions .question{margin-bottom:30px}.org-creation-questions .question-title,.user-identification-questions .question-title{padding-right:40px;margin-bottom:10px;font-size:14px;line-height:1.5}.org-creation-questions .question-title i,.user-identification-questions .question-title i{font-size:13px;font-style:normal;font-weight:400;color:#767676}.org-creation-questions .response-group label,.user-identification-questions .response-group label{font-weight:400}.org-creation-questions .form-checkbox,.user-identification-questions .form-checkbox{margin:8px 0}.org-creation-questions .other-field .form-control,.user-identification-questions .other-field .form-control{margin-top:10px}.org-creation-questions .alternate-action,.user-identification-questions .alternate-action{margin-left:10px;line-height:34px}.org-creation-questions .disclaimer,.user-identification-questions .disclaimer{margin:40px 0 0;text-align:center}.user-identification-questions.redesign .question{margin-bottom:96px}.user-identification-questions.redesign .topic-input-container .tag-input{width:100%;border:0;border-bottom:3px solid #000;box-shadow:0 0 0}.user-identification-questions{margin-top:40px}.shelf{padding-top:20px;margin-bottom:20px;background-color:#fefefe;border-bottom:1px solid #eff1f3}.shelf .container{position:relative}.shelf-title{margin:0;font-size:30px;font-weight:400}.shelf-content{width:800px;margin:50px auto;text-align:center}.shelf-lead{margin-top:10px;margin-bottom:30px;font-size:18px;color:#586069}.shelf-dismiss{position:absolute;top:0;right:20px;font-size:12px;color:#959da5}.shelf-dismiss:hover{color:#0366d6;text-decoration:none}.shelf-dismiss .close-button{width:28px;height:28px;padding:3px 5px;color:rgba(27,31,35,.7);border:1px solid rgba(27,31,35,.15);border-radius:28px}.shelf-dismiss .close-button:hover{color:#24292e;border-color:rgba(27,31,35,.3)}.shelf-cta{padding:10px 50px;font-size:16px}.intro-shelf{margin-top:0;color:rgba(27,31,35,.85);background-image:linear-gradient(180deg,hsla(0,0%,100%,0) 60%,#fff),linear-gradient(70deg,#dbedff 32%,#ebfff0);border-bottom:#fff}.intro-shelf .shelf-lead{color:rgba(27,31,35,.7)}.orgs-help-shelf{padding-top:20px;padding-bottom:20px;margin-top:-20px;margin-bottom:20px;border-bottom:1px solid #eff1f3}.orgs-help-shelf .orgs-help-title{font-size:30px;font-weight:400}.orgs-help-shelf-content{width:800px;margin:50px auto;text-align:center}.orgs-help-shelf-content .orgs-help-lead{padding-right:45px;padding-left:45px;font-size:18px}.orgs-help-shelf-content .orgs-help-divider{display:block;width:150px;margin:40px auto;content:"";border-top:1px solid #d1d5da}.orgs-help-lead{margin-top:10px;margin-bottom:30px;color:#586069}.orgs-help-items{margin-bottom:40px}.orgs-help-item-octicon{width:70px;height:70px;margin:0 auto 15px;text-align:center;background-color:#fff;border:1px solid #e1e4e8;border-radius:50px}.orgs-help-item-octicon .octicon{margin-top:20px;color:#0366d6}.orgs-help-item-title{margin-bottom:10px;font-weight:400}.orgs-help-item-content{margin-top:0;font-size:14px;color:#586069}.orgs-help-dismiss{float:right;margin-top:5px;margin-right:10px;font-size:12px;color:#586069}.orgs-help-dismiss:hover{color:#0366d6;text-decoration:none}.orgs-help-dismiss .octicon{position:relative;top:1px}.orgs-help-title{margin-top:0;margin-bottom:0}.signup-plan-column{max-width:auto}@media (min-width:544px){.signup-plan-column{max-width:320px}}.signup-plan-card{height:auto;background:#f6f8fa;border:1px solid #f6f8fa}@media (min-width:768px){.signup-plan-card{height:480px}}.signup-plan-card:hover{background:#fff;border-color:#79b8ff;box-shadow:0 1px 15px rgba(27,31,35,.15)}.signup-plan-summary-subhead{border-bottom:3px solid}.signup-btn:disabled{color:hsla(0,0%,100%,.5);opacity:.5!important}.plan-category-tab{background-color:#fff}.plan-category-tab[aria-selected=true]{color:#fff;background-color:#0366d6}.plan-selection-previous-icon{transform:rotate(90deg)}@media (min-width:768px){.plan-selection-previous-icon{transform:rotate(0deg)}}.collection-search-results em{padding:.1em;background-color:#faffa6}.draft-tag{padding:5px 10px;font-weight:600;color:#eee;background-color:#404040}.showcase-page-pattern{position:relative;z-index:-1;height:100px;margin-top:-21px;margin-bottom:-70px}.showcase-page-pattern:after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;content:"";background-image:linear-gradient(180deg,hsla(0,0%,100%,.85),#fff)}.showcase-page-repo-list{border-top:1px solid #eee}.repo-health .repo-health-loading{display:none;font-style:italic}.repo-health.is-loading .repo-health-loading{display:block}.repo-health.is-loading .repo-health-results,.sortable-button-item:first-of-type .sortable-button[data-direction=up],.sortable-button-item:last-of-type .sortable-button[data-direction=down]{display:none}.business-sso,.org-sso{width:340px;margin:0 auto}.business-sso .sso-title,.org-sso .sso-title{font-size:24px;font-weight:300;letter-spacing:-.5px}.business-sso .business-sso-panel,.business-sso .org-sso-panel,.org-sso .business-sso-panel,.org-sso .org-sso-panel{padding:20px;background-color:#fff;border:1px solid #e1e4e8;border-radius:5px}.business-sso .sso-recovery-callout,.org-sso .sso-recovery-callout{padding:15px 10px;text-align:center;border:1px solid #d1d5da;border-radius:5px}.sso-modal{padding:16px}.sso-modal .business-sso,.sso-modal .org-sso{width:auto}.sso-modal .business-sso .business-sso-panel,.sso-modal .org-sso .org-sso-panel{border:0}.sso-modal .sso-prompt-error,.sso-modal .sso-prompt-success,.sso-modal.success .sso-prompt-default{display:none}.sso-modal.success .sso-prompt-success{display:block}.sso-modal.error .sso-prompt-default{display:none}.sso-modal.error .sso-prompt-error{display:block}.sso-modal.error .flash-error{margin-right:-35px;margin-left:-35px;border-right:0;border-left:0;border-radius:0}.tab-size[data-tab-size="1"]{-moz-tab-size:1;tab-size:1}.tab-size[data-tab-size="2"]{-moz-tab-size:2;tab-size:2}.tab-size[data-tab-size="3"]{-moz-tab-size:3;tab-size:3}.tab-size[data-tab-size="4"]{-moz-tab-size:4;tab-size:4}.tab-size[data-tab-size="5"]{-moz-tab-size:5;tab-size:5}.tab-size[data-tab-size="6"]{-moz-tab-size:6;tab-size:6}.tab-size[data-tab-size="7"]{-moz-tab-size:7;tab-size:7}.tab-size[data-tab-size="8"]{-moz-tab-size:8;tab-size:8}.tab-size[data-tab-size="9"]{-moz-tab-size:9;tab-size:9}.tab-size[data-tab-size="10"]{-moz-tab-size:10;tab-size:10}.tab-size[data-tab-size="11"]{-moz-tab-size:11;tab-size:11}.tab-size[data-tab-size="12"]{-moz-tab-size:12;tab-size:12}.tag-input-container{position:relative}.tag-input-container .suggester{position:absolute;z-index:100;width:100%;margin-top:-1px}.tag-input-container ul{list-style:none}.tag-input input{float:left;padding-left:2px;margin:0;background:none;border:0;box-shadow:none}.tag-input input:focus{box-shadow:none}.task-list-item{list-style-type:none}.task-list-item label{font-weight:400}.task-list-item.enabled label{cursor:pointer}.task-list-item+.task-list-item{margin-top:3px}.task-list-item .handle{display:none}.task-list-item-checkbox{margin:0 .2em .25em -1.6em;vertical-align:middle}.reorderable-task-lists .markdown-body .contains-task-list{padding:0}.reorderable-task-lists .markdown-body li:not(.task-list-item){margin-left:26px}.reorderable-task-lists .markdown-body ol:not(.contains-task-list) li,.reorderable-task-lists .markdown-body ul:not(.contains-task-list) li{margin-left:0}.reorderable-task-lists .markdown-body li p{margin-top:0}.reorderable-task-lists .markdown-body .task-list-item{padding-right:15px;padding-left:42px;margin-right:-15px;margin-left:-15px;border:1px solid transparent}.reorderable-task-lists .markdown-body .task-list-item+.task-list-item{margin-top:0}.reorderable-task-lists .markdown-body .task-list-item .contains-task-list{padding-top:4px}.reorderable-task-lists .markdown-body .task-list-item .handle{display:block;float:left;width:20px;padding:2px 0 0 2px;margin-left:-43px;opacity:0}.reorderable-task-lists .markdown-body .task-list-item .drag-handle{fill:#333}.reorderable-task-lists .markdown-body .task-list-item.hovered>.handle{opacity:1}.reorderable-task-lists .markdown-body .task-list-item.is-dragging{opacity:0}.review-comment-contents .markdown-body .task-list-item{padding-left:42px;margin-right:-12px;margin-left:-12px;border-top-left-radius:3px;border-bottom-left-radius:3px}.review-comment-contents .markdown-body .task-list-item.hovered{border-left-color:#ededed}.team-label-ldap{display:inline-block;padding:0 9px;line-height:25px;color:#586069;text-transform:uppercase;cursor:default;border:1px solid #eaeaea;border-radius:3px;box-shadow:none}.team-label-ldap.header-label-ldap{padding:3px 5px}.team-member-ellipsis{width:25px;height:25px;line-height:24px}.team-member-ellipsis:hover{color:#0366d6;background:#f6f8fa}.team-listing .nested-teams-checkbox{padding-left:3px}.team-listing .nested-teams-checkbox.show{padding-right:11px}.team-listing .nested-teams-checkbox.indent-1{padding-left:30px}.team-listing .nested-teams-checkbox.indent-2{padding-left:54px}.team-listing .nested-teams-checkbox.indent-3{padding-left:78px}.team-listing .nested-teams-checkbox.indent-4{padding-left:102px}.team-listing .nested-teams-checkbox.indent-5{padding-left:126px}.team-listing .nested-teams-checkbox.indent-6{padding-left:150px}.team-listing .nested-teams-checkbox.indent-7{padding-left:174px}.team-listing .nested-teams-checkbox.indent-8{padding-left:198px}.team-listing .nested-teams-checkbox.indent-9{padding-left:222px}.team-listing .nested-teams-checkbox.indent-10{padding-left:246px}.team-listing .nested-teams-checkbox.indent-11{padding-left:270px}.team-listing .nested-teams-checkbox.indent-12{padding-left:294px}.team-listing .nested-teams-checkbox.indent-13{padding-left:318px}.team-listing .nested-teams-checkbox.indent-14{padding-left:342px}.team-listing .nested-teams-checkbox.indent-15{padding-left:366px}.team-listing .team-info{width:280px}.team-listing .nested-team-info{width:650px}.team-listing .nested-team-name{max-width:268px}.team-listing .shortened-teams-avatars{margin-left:auto}.team-listing .shortened-teams-avatars.width-0{width:300px}.team-listing .shortened-teams-avatars.width-1{width:233px}.team-listing .shortened-teams-avatars.width-2{width:167px}.team-listing .shortened-teams-avatars.width-3{width:99px}.team-listing .team-members-count{width:124px}.team-listing .team-show-more-cell{width:980px}.team-listing .team-buttons{width:150px}.team-listing .octicon-wrapper{width:10px}.team-listing .is-open.root-team{background-color:#fafbfc}.team-listing .is-open .expand-nested-team{font-weight:600}.team-listing .is-open .octicon-chevron-down{transform:rotate(180deg)}.traffic-graph{min-height:150px}.traffic-graph .activity{margin-top:0}.traffic-graph .activity .dots{margin-top:40px}.traffic-graph .path{fill:none;stroke-width:2}.traffic-graph path.total{stroke:#28a745}.traffic-graph path.unique{stroke:#005cc5}.traffic-graph .axis .tick:first-of-type line{stroke:#28a745;stroke-width:2px}.traffic-graph .y line{stroke:#28a745}.traffic-graph .y.unique line{stroke:#005cc5}.traffic-graph .overlay{fill-opacity:0}.uniques-graph .axis .tick:last-child line{stroke:#005cc5;stroke-width:2px}.svg-tip .date{color:#fff}.top-domains .dots{display:block;margin:167px auto 0}.top-domains-icon{display:inline-block;margin-right:5px;vertical-align:middle}table.capped-list{width:100%;line-height:100%}table.capped-list th{padding:8px;text-align:left;background:#f6f8fa;border-bottom:1px solid #dfe2e5}table.capped-list td{padding:8px;font-size:12px;border-bottom:1px solid #eaecef}table.capped-list td.middle,table.capped-list th.middle{text-align:center}table.capped-list .favicon{width:16px;height:16px;margin:0 5px;vertical-align:middle}table.capped-list .octicon{margin-right:10px;color:#444d56;vertical-align:-1px}table.capped-list tr:nth-child(2n){background-color:#fafbfc}.capped-list-label{max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.traffic-graph-stats{border-top:1px solid #dfe2e5}.traffic-graph-stats .summary-stats{width:100%}.traffic-graph-stats .summary-stats:before{display:table;content:""}.traffic-graph-stats .summary-stats:after{display:table;clear:both;content:""}.traffic-graph-stats .summary-stats li{display:block;float:left;width:50%;padding-bottom:10px}.totals circle{fill:#28a745;stroke:#fff;stroke-width:2}.uniques circle{fill:#005cc5;stroke:#fff;stroke-width:2}ul.web-views li{width:140px}ul.clones li{width:170px}.tree-finder-input,.tree-finder-input:focus{font-size:inherit;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.tree-browser .octicon-chevron-right{color:transparent}.tree-browser-result[aria-selected=true]{background-color:#fff!important}.tree-browser-result[aria-selected=true] .octicon-chevron-right{color:#0366d6}.tree-browser-result .css-truncate-target{max-width:870px}.tree-browser-result mark{font-weight:600;color:#0366d6;background:none}.toolbar-commenting{float:right}.toolbar-commenting .dropdown-menu-s{width:100px}.toolbar-commenting .dropdown-item{font-weight:600;line-height:1em;background:none;border:0}.toolbar-commenting .dropdown-item:hover{color:#0366d6}.toolbar-commenting .dropdown-item:focus{color:#0366d6;outline:none}.toolbar-item{display:block;float:left;padding:4px;color:#586069;cursor:pointer;background:none;border:0}.toolbar-item.dropdown,.toolbar-item.select-menu{padding:0}.toolbar-item .select-menu-modal{margin-top:2px}.toolbar-item .select-menu-item{padding-left:8px}.toolbar-item .menu-target{display:block;padding:4px;color:#586069;background:none;border:0}.toolbar-item .menu-target:hover,.toolbar-item:hover{color:#0366d6}.toolbar-item .menu-target:focus,.toolbar-item:focus{color:#0366d6;outline:none}.toolbar-item:disabled{color:#ddd}.toolbar-item .octicon-link,.toolbar-item .octicon-tasklist{margin-left:-3px}.toolbar-item .octicon-mention{margin-left:-4px}.toolbar-item .octicon-bold{margin-left:-2px}.typeahead-result{position:relative;display:block;min-width:100%;padding:10px;margin-top:0;color:#333;cursor:pointer}.typeahead-result:after,.typeahead-result:before{display:table;content:""}.typeahead-result:after{clear:both}.typeahead-result:first-child{border-top:0}.typeahead-result.navigation-focus,.typeahead-result:focus,.typeahead-result:hover,.typeahead-result[aria-selected=true]{text-decoration:none}.typeahead-result.navigation-focus,.typeahead-result:hover,.typeahead-result[aria-selected=true]{color:#fff;background-color:#0366d6}.typeahead-result.navigation-focus .octicon-plus,.typeahead-result:hover .octicon-plus,.typeahead-result[aria-selected=true] .octicon-plus{color:#fff}.typeahead-result.disabled{pointer-events:none;opacity:.5}.member-suggestion{padding-left:44px}.member-suggestion .avatar{float:left;margin-right:10px;margin-left:-34px}.member-suggestion .member-suggestion-info{width:90%;margin-top:2px;margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.member-suggestion .member-name{font-size:12px;color:#586069}.member-suggestion .member-email{margin-top:0;margin-bottom:0}.member-suggestion .octicon-check,.member-suggestion .octicon-plus{position:absolute;top:50%;right:15px;margin-top:-8px;color:#ddd}.member-suggestion .already-member-note,.member-suggestion .non-member-action,.member-suggestion .non-member-note{margin-top:0;margin-bottom:0;color:#586069}.member-suggestion .non-member-action{display:none}.member-suggestion.navigation-focus .already-member-note,.member-suggestion.navigation-focus .member-email,.member-suggestion.navigation-focus .member-name,.member-suggestion.navigation-focus .non-member-action,.member-suggestion.navigation-focus .non-member-note,.member-suggestion:hover .already-member-note,.member-suggestion:hover .member-email,.member-suggestion:hover .member-name,.member-suggestion:hover .non-member-action,.member-suggestion:hover .non-member-note,.member-suggestion[aria-selected=true] .already-member-note,.member-suggestion[aria-selected=true] .member-email,.member-suggestion[aria-selected=true] .member-name,.member-suggestion[aria-selected=true] .non-member-action,.member-suggestion[aria-selected=true] .non-member-note{color:#fff}.member-suggestion.navigation-focus .non-member-note,.member-suggestion:hover .non-member-note,.member-suggestion[aria-selected=true] .non-member-note{display:none}.member-suggestion.navigation-focus .non-member-action,.member-suggestion:hover .non-member-action,.member-suggestion[aria-selected=true] .non-member-action{display:block}.member-suggestion.navigation-focus .octicon,.member-suggestion:hover .octicon,.member-suggestion[aria-selected=true] .octicon{color:#fff}.member-suggestion.disabled .member-info,.member-suggestion.not-a-member .member-info{margin-top:-2px}.non-member-result{padding-left:31px}.team-suggestion{padding-left:32px}.team-suggestion .octicon{float:left;margin-top:2px;margin-left:-22px}.team-suggestion .team-suggestion-info{margin:2px 0 0}.team-suggestion .team-suggestion-info .css-truncate-target{max-width:none}.team-suggestion .team-description,.team-suggestion .team-size{font-size:12px;color:#586069}.team-suggestion.navigation-focus .team-description,.team-suggestion.navigation-focus .team-size,.team-suggestion[aria-selected=true] .team-description,.team-suggestion[aria-selected=true] .team-size{color:#fff}.email-suggestion{padding-left:32px}.email-suggestion .octicon-mail{margin-left:-20px;color:#959da5}.email-suggestion .member-suggestion-info{margin-top:1px}.repo-access-add-team .team-name{font-size:13px}.repo-access-add-team .team-description{display:block}.repo-access-add-team .team-description,.repo-access-add-team .team-size{font-size:12px;color:#586069}.repo-access-add-team.navigation-focus .team-description,.repo-access-add-team.navigation-focus .team-size,.repo-access-add-team[aria-selected=true] .team-description,.repo-access-add-team[aria-selected=true] .team-size{color:#fff}#user-content-toc{overflow:visible}#user-content-toc tr{border-top:0}#user-content-toc td{padding:0 20px;background-color:#f7f7f7;border:0;border-radius:3px}#user-content-toc ul{padding-left:0;font-weight:600;list-style:none}#user-content-toc ul li{padding-left:.2em}#user-content-toc ul ul{font-weight:400}#user-content-toc ul ul li:before{float:left;margin-top:-.2em;margin-right:.2em;font-size:1.2em;line-height:1;color:#aaa;content:"\231e"}#user-content-toc ul ul ul{padding-left:.9em}#user-content-toctitle h2{margin-top:1em;margin-bottom:.5em;font-size:1.25em;border-bottom:0}.user-list .avatar{position:absolute;top:0;left:0}.user-list-info{min-height:48px;padding:0;font-size:18px;font-weight:400;line-height:20px}.user-list-meta{overflow:hidden}.user-list-item+.user-list-item{border-top:1px solid #e1e4e8}.follow-list{list-style-type:none}.follow-list .follow-list-item{width:305px;height:100px;padding-bottom:20px;margin-right:20px;margin-bottom:20px}.follow-list .follower-list-align-top{vertical-align:top}.follow-list .flagged-banner{width:75px;padding:3px 0;font-size:10px;font-weight:600;color:#fff;text-transform:uppercase;background-color:#cb2431;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.follow-list .follow-list-name{margin-bottom:1px;font-weight:400}.follow-list .follow-list-name a{color:inherit}.follow-list .follow-list-info{margin-bottom:.6em;font-size:12px;color:#586069}.follow-list .css-truncate.css-truncate-target{max-width:190px}.user-status-suggestions{height:98px;transition:height .1s ease-out,opacity .2s ease-in}.user-status-suggestions.collapsed{height:0;opacity:0}@media (min-width:768px){.avatar-before-user-status{border:1px solid #e1e4e8;border-bottom:0;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:0}}.user-status-container-border-busy{background-color:#fffbdd;border:1px solid #ffdf5d}.user-status-container,.user-status-container .team-mention,.user-status-container .user-mention{white-space:normal}.user-status-container{word-break:break-word;word-wrap:break-word}.user-status-container .input-group-button .btn{width:46px;height:34px;line-height:0}.user-status-container .input-group-button g-emoji{font-size:1.3em;line-height:18px}.user-status-container .team-mention,.user-status-container .user-mention{white-space:normal}.emoji-size-boost .user-status-compact g-emoji{font-size:1.2em}.emoji-size-boost .emoji-picker-emoji-width g-emoji,.emoji-size-boost .user-status-emoji-tab g-emoji{font-size:1.4em}.user-status-container img.emoji{width:18px;height:18px}.emoji-status-width{width:20px}.emoji-picker-container{z-index:1;width:377px}.emoji-picker-tab{height:136px;padding-top:8px}.emoji-picker-emoji-width{width:32px;height:28px}.emoji-picker-list{list-style:none}.user-status-emoji-tab.UnderlineNav-item{margin-right:5px}.user-status-emoji-tab[role=tab][aria-selected=true]{font-weight:600;color:#24292e;border-bottom-color:#e36209}.user-status-emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon{color:#6a737d}.selected-emoji{z-index:100;background-color:#0366d6}.emoji-picker-container .emoji-picker-tab g-emoji,.emoji-size-boost .user-status-emoji-tab g-emoji{margin-right:-1px;margin-left:1px}.user-status-emoji-tab .emoji-icon{width:auto}.user-status-org-button .user-status-org-detail{color:#586069}.user-status-org-button:focus .user-status-org-detail,.user-status-org-button:hover .user-status-org-detail{color:#fff}.user-status-org-button.selected{color:#fff;background-color:#0366d6}.user-status-org-button.selected .user-status-org-detail{color:#fff}.user-status-limited-availability-compact{width:8px;height:8px;background-color:#ffea7f}.user-status-message-wrapper{color:#24292e}.toggle-user-status-edit:focus .user-status-message-wrapper,.toggle-user-status-edit:hover .user-status-message-wrapper{color:#0366d6}.user-status-message-wrapper div{display:inline}.user-status-message-wrapper .g-emoji{display:inline-block}.user-status-limited-availability-container{margin-top:16px;margin-bottom:16px}@media only screen and (max-height:560px){.user-status-suggestions{display:none}.user-status-limited-availability-container{margin-top:8px;margin-bottom:8px}}@media (min-width:768px){.wiki-rightbar{width:230px!important}}.wiki-rightbar .markdown-body .anchor{display:none}.wiki-rightbar .markdown-body h1{font-size:1.6em}.wiki-rightbar .markdown-body h2{font-size:1.4em}.wiki-rightbar ol:last-child,.wiki-rightbar p:last-child,.wiki-rightbar ul:last-child{margin-bottom:0}.wiki-footer .markdown-body,.wiki-rightbar .markdown-body{font-size:13px}.wiki-footer .markdown-body.wiki-writable>:nth-child(2),.wiki-rightbar .markdown-body.wiki-writable>:nth-child(2){margin-top:0!important}.wiki-footer .markdown-body img{background:none}.wiki-pages-box .wiki-more-pages{display:none}.wiki-pages-box .filterable-active .wiki-more-pages,.wiki-pages-box.wiki-show-more .wiki-more-pages{display:block}.wiki-pages-box .filterable-active .wiki-more-pages-link,.wiki-pages-box.wiki-show-more .wiki-more-pages-link{display:none}.anim-rotate{animation:rotate 1s linear infinite}@keyframes rotate{to{transform:rotate(1turn)}}@media (min-width:1012px){.hx_actions-sidebar{max-width:320px}}.hx_badge-search-container{cursor:text}.hx_badge-search-container .hx_badge-input{border:0;outline:0;box-shadow:none}.hx_badge-search-container .hx_badge-input:focus{border:0!important;box-shadow:none!important}.hx_badge{cursor:pointer}.hx_badge[aria-pressed=true]{color:#fff!important;background-color:#0366d6!important;border-color:#0366d6!important}@media (hover:hover){.hx_menuitem--focus{color:#fff;background-color:#0366d6}}.hx_color-repo-private-icon{color:rgba(115,92,15,.5)}.hx_link-purple{color:#6f42c1!important}.hx_link-purple:focus,.hx_link-purple:hover{color:#fff!important}.hx_hit-commit em,.hx_hit-highlighting-wrapper em,.hx_hit-issue em,.hx_hit-marketplace em,.hx_hit-package em,.hx_hit-repo em,.hx_hit-user em,.hx_hit-wiki em{font-style:normal;font-weight:600}.hx_UnderlineNav-item[aria-selected=true]{font-weight:600;color:#24292e;border-bottom-color:#e36209}.hx_reponav .reponav-item{padding:7px 12px 8px!important}.hx_reponav .reponav-item .Counter{padding:2px 4px!important}@media (max-width:767px){.page-responsive .Popover{position:fixed;top:auto!important;left:0!important;right:0!important;bottom:0!important}.page-responsive .Popover-message{margin:8px;width:auto!important}.page-responsive .Popover-message>.btn-octicon{padding:12px!important}.page-responsive .Popover-message:after,.page-responsive .Popover-message:before{display:none}}.hx_rsm-close-button{display:none!important}@media (max-width:767px){.page-responsive .hx_rsm[open]>summary:before{background-color:rgba(27,31,35,.5)}.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{position:fixed!important;display:flex;flex-direction:column;margin:0;width:auto;height:80%;top:16px;left:16px;right:16px!important}.page-responsive .hx_rsm--auto-height .select-menu-modal{height:auto;max-height:calc(80% - 16px);top:auto;bottom:20%}.page-responsive .hx_rsm .select-menu-header,.page-responsive .hx_rsm .select-menu-text-filter.select-menu-text-filter{padding:16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.page-responsive .hx_rsm-content,.page-responsive .hx_rsm .js-project-menu-container,.page-responsive .hx_rsm tab-container{display:flex;flex-direction:column;flex:auto;min-height:0}.page-responsive .hx_rsm .select-menu-list{flex:auto;max-height:none;-webkit-overflow-scrolling:touch}.page-responsive .hx_rsm-content>.select-menu-item{flex-shrink:0}.page-responsive .hx_rsm .select-menu-item{padding-top:16px;padding-bottom:16px;padding-left:40px}.page-responsive .hx_rsm-list-compact.select-menu-list{flex:none;border-top:1px solid #eaecef}.page-responsive .hx_rsm-close-button,.page-responsive .hx_rsm .close-button{display:block!important;position:relative}.page-responsive .hx_rsm-close-button:before,.page-responsive .hx_rsm .close-button:before{content:"";position:absolute;top:-16px;left:-16px;right:-16px;bottom:-16px}.page-responsive .hx_rsm-close-button .octicon-x,.page-responsive .hx_rsm .close-button .octicon-x{color:#6a737d}.page-responsive .hx_rsm-loading,.page-responsive .hx_rsm .select-menu-loading-overlay{animation-delay:1s}.page-responsive .hx_rsm-trigger:before,.page-responsive .hx_rsm .select-menu-button:before{animation:hx_rsm-trigger-animation .24s cubic-bezier(0,0,.2,1) backwards}@keyframes hx_rsm-trigger-animation{0%{opacity:0}}.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{animation:hx_rsm-modal-animation .24s cubic-bezier(0,.1,.1,1) .12s backwards}@keyframes hx_rsm-modal-animation{0%{opacity:0;transform:scale(.9)}}.page-responsive .hx_rsm-dialog{height:auto;max-height:80%;max-width:none;transform:none}.page-responsive .hx_rsm-dialog-content{flex:1;min-height:0}}@media (max-width:767px) and (max-height:500px){.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{height:auto;bottom:16px}}.preview-selected .tabnav--responsive{border-bottom:1px solid #e1e4e8!important}.tabnav--responsive .tabnav-tabs{z-index:1}@media (max-width:767px){.tabnav--responsive .tabnav-tab{background-color:#f6f8fa;border:1px solid #e1e4e8;border-left:0;border-radius:0}.tabnav--responsive .tabnav-tab:first-child{border-left:1px solid #e1e4e8}.tabnav--responsive .tabnav-tab.selected,.tabnav--responsive .tabnav-tab[aria-selected=true]{border-bottom:0;background-color:#fff}}@media (max-width:767px){.hx_sm-hide-drag-drop textarea{border-bottom:1px solid #e1e4e8;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.hx_sm-hide-drag-drop .hx_drag-and-drop{display:none!important}}@media (hover:none){.tooltipped:hover:after,.tooltipped:hover:before{display:none}}@media (hover:none){.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{visibility:visible!important}}.hx_hover-target:hover .hx_replace .hx_hover-hide{display:none}.hx_hover-target:hover .hx_replace:before{content:attr(data-hover)}.min-width-lg{min-width:1012px}.min-width-xl{min-width:1280px}.ws-pre-wrap{white-space:pre-wrap}.Toast--loading .Toast-icon{background-color:#586069}.Toast--spinner{animation:Toast--spinner 1s linear infinite}@keyframes Toast--spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.cm-atom,.cm-number{color:#005cc5}auto-check .is-autocheck-errored,auto-check .is-autocheck-loading,auto-check .is-autocheck-successful{padding-right:30px}auto-check .is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-16px.gif)}auto-check .is-autocheck-successful{background-image:url(/images/modules/ajax/success.png)}auto-check .is-autocheck-errored{background-image:url(/images/modules/ajax/error.png)}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){auto-check .is-autocheck-errored,auto-check .is-autocheck-loading,auto-check .is-autocheck-successful{background-size:16px 16px}auto-check .is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-32.gif)}auto-check .is-autocheck-successful{background-image:url(/images/modules/ajax/success@2x.png)}auto-check .is-autocheck-errored{background-image:url(/images/modules/ajax/error@2x.png)}}.hx_Box--overlay--wide{width:800px}.hx_text-body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji!important}
\ No newline at end of file
diff --git a/static/css/light.css b/static/css/light.css
new file mode 100644
index 0000000..1fba604
--- /dev/null
+++ b/static/css/light.css
@@ -0,0 +1,684 @@
+:root {
+ --body-background-color: #fff;
+ --color-actions-workflow-table-sticky-bg: hsla(0, 0%, 100%, 0.95);
+ --color-alert-error-bg: #ffe3e6;
+ --color-alert-error-border: rgba(158, 28, 35, 0.2);
+ --color-alert-error-icon: rgba(158, 28, 35, 0.6);
+ --color-alert-error-text: #24292e;
+ --color-alert-info-bg: #dbedff;
+ --color-alert-info-border: rgba(4, 66, 137, 0.2);
+ --color-alert-info-icon: rgba(4, 66, 137, 0.6);
+ --color-alert-info-text: #24292e;
+ --color-alert-success-bg: #dcffe4;
+ --color-alert-success-border: rgba(23, 111, 44, 0.2);
+ --color-alert-success-icon: rgba(23, 111, 44, 0.8);
+ --color-alert-success-text: #24292e;
+ --color-alert-warn-bg: #fffbdd;
+ --color-alert-warn-border: rgba(176, 136, 0, 0.2);
+ --color-alert-warn-icon: #b08800;
+ --color-alert-warn-text: #24292e;
+ --color-ansi-black: #24292e;
+ --color-ansi-black-bright: #2f363d;
+ --color-ansi-blue: #79b8ff;
+ --color-ansi-blue-bright: #c8e1ff;
+ --color-ansi-cyan: #76e3ea;
+ --color-ansi-cyan-bright: #b3f0ff;
+ --color-ansi-gray: #959da5;
+ --color-ansi-green: #85e89d;
+ --color-ansi-green-bright: #bef5cb;
+ --color-ansi-magenta: #b392f0;
+ --color-ansi-magenta-bright: #d1bcf9;
+ --color-ansi-red: #f97583;
+ --color-ansi-red-bright: #fdaeb7;
+ --color-ansi-white: #e1e4e8;
+ --color-ansi-white-bright: #e1e4e8;
+ --color-ansi-yellow: #ffea7f;
+ --color-ansi-yellow-bright: #fff5b1;
+ --color-auto-black: #1b1f23;
+ --color-auto-blue-0: #f1f8ff;
+ --color-auto-blue-1: #dbedff;
+ --color-auto-blue-2: #c8e1ff;
+ --color-auto-blue-3: #79b8ff;
+ --color-auto-blue-4: #2188ff;
+ --color-auto-blue-5: #0366d6;
+ --color-auto-blue-6: #005cc5;
+ --color-auto-blue-7: #044289;
+ --color-auto-blue-8: #032f62;
+ --color-auto-blue-9: #05264c;
+ --color-auto-gray-0: #fafbfc;
+ --color-auto-gray-1: #f6f8fa;
+ --color-auto-gray-2: #e1e4e8;
+ --color-auto-gray-3: #d1d5da;
+ --color-auto-gray-4: #959da5;
+ --color-auto-gray-5: #6a737d;
+ --color-auto-gray-6: #586069;
+ --color-auto-gray-7: #444d56;
+ --color-auto-gray-8: #2f363d;
+ --color-auto-gray-9: #24292e;
+ --color-auto-green-0: #f0fff4;
+ --color-auto-green-1: #dcffe4;
+ --color-auto-green-2: #bef5cb;
+ --color-auto-green-3: #85e89d;
+ --color-auto-green-4: #34d058;
+ --color-auto-green-5: #28a745;
+ --color-auto-green-6: #22863a;
+ --color-auto-green-7: #176f2c;
+ --color-auto-green-8: #165c26;
+ --color-auto-green-9: #144620;
+ --color-auto-orange-0: #fff8f2;
+ --color-auto-orange-1: #ffebda;
+ --color-auto-orange-2: #ffd1ac;
+ --color-auto-orange-3: #ffab70;
+ --color-auto-orange-4: #fb8532;
+ --color-auto-orange-5: #f66a0a;
+ --color-auto-orange-6: #e36209;
+ --color-auto-orange-7: #d15704;
+ --color-auto-orange-8: #c24e00;
+ --color-auto-orange-9: #a04100;
+ --color-auto-pink-0: #ffeef8;
+ --color-auto-pink-1: #fedbf0;
+ --color-auto-pink-2: #f9b3dd;
+ --color-auto-pink-3: #f692ce;
+ --color-auto-pink-4: #ec6cb9;
+ --color-auto-pink-5: #ea4aaa;
+ --color-auto-pink-6: #d03592;
+ --color-auto-pink-7: #b93a86;
+ --color-auto-pink-8: #99306f;
+ --color-auto-pink-9: #6d224f;
+ --color-auto-purple-0: #f5f0ff;
+ --color-auto-purple-1: #e6dcfd;
+ --color-auto-purple-2: #d1bcf9;
+ --color-auto-purple-3: #b392f0;
+ --color-auto-purple-4: #8a63d2;
+ --color-auto-purple-5: #6f42c1;
+ --color-auto-purple-6: #5a32a3;
+ --color-auto-purple-7: #4c2889;
+ --color-auto-purple-8: #3a1d6e;
+ --color-auto-purple-9: #29134e;
+ --color-auto-red-0: #ffeef0;
+ --color-auto-red-1: #ffdce0;
+ --color-auto-red-2: #fdaeb7;
+ --color-auto-red-3: #f97583;
+ --color-auto-red-4: #ea4a5a;
+ --color-auto-red-5: #d73a49;
+ --color-auto-red-6: #cb2431;
+ --color-auto-red-7: #b31d28;
+ --color-auto-red-8: #9e1c23;
+ --color-auto-red-9: #86181d;
+ --color-auto-white: #fff;
+ --color-auto-yellow-0: #fffdef;
+ --color-auto-yellow-1: #fffbdd;
+ --color-auto-yellow-2: #fff5b1;
+ --color-auto-yellow-3: #ffea7f;
+ --color-auto-yellow-4: #ffdf5d;
+ --color-auto-yellow-5: #ffd33d;
+ --color-auto-yellow-6: #f9c513;
+ --color-auto-yellow-7: #dbab09;
+ --color-auto-yellow-8: #b08800;
+ --color-auto-yellow-9: #735c0f;
+ --color-autocomplete-row-border: #eaecef;
+ --color-autocomplete-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
+ --color-avatar-bg: #fff;
+ --color-avatar-border: transparent;
+ --color-avatar-child-shadow: -2px -2px 0 hsla(0, 0%, 100%, 0.8);
+ --color-avatar-stack-fade: #d1d5da;
+ --color-avatar-stack-fade-more: #e1e4e8;
+ --color-bg-backdrop: rgba(27, 31, 35, 0.5);
+ --color-bg-canvas: #fff;
+ --color-bg-canvas-inset: #f6f8fa;
+ --color-bg-canvas-inverse: #24292e;
+ --color-bg-canvas-mobile: #fff;
+ --color-bg-danger: #ffeef0;
+ --color-bg-danger-inverse: #d73a49;
+ --color-bg-discussions-row-emoji-box: rgba(209, 213, 218, 0.5);
+ --color-bg-info: #f1f8ff;
+ --color-bg-info-inverse: #0366d6;
+ --color-bg-overlay: #fff;
+ --color-bg-primary: #fff;
+ --color-bg-secondary: #fafbfc;
+ --color-bg-success: #dcffe4;
+ --color-bg-success-inverse: #28a745;
+ --color-bg-tertiary: #f6f8fa;
+ --color-bg-warning: #fff5b1;
+ --color-bg-warning-inverse: #ffd33d;
+ --color-blankslate-icon: #a3aab1;
+ --color-blob-line-highlight-bg: #fffbdd;
+ --color-blob-line-highlight-border: transparent;
+ --color-border-danger: #d73a49;
+ --color-border-info: #0366d6;
+ --color-border-inverse: #fff;
+ --color-border-overlay: #e1e4e8;
+ --color-border-primary: #e1e4e8;
+ --color-border-secondary: #eaecef;
+ --color-border-success: #34d058;
+ --color-border-tertiary: #d1d5da;
+ --color-border-warning: #f9c513;
+ --color-box-bg-info: #f1f8ff;
+ --color-box-bg-warning: #fffdef;
+ --color-box-blue-border: #c8e1ff;
+ --color-box-border-info: rgba(3, 102, 214, 0.2);
+ --color-box-border-warning: rgba(255, 211, 61, 0.4);
+ --color-box-header-blue-bg: #f1f8ff;
+ --color-box-header-blue-border: #c8e1ff;
+ --color-box-row-blue-bg: #f1f8ff;
+ --color-box-row-yellow-bg: #fffbdd;
+ --color-branch-name-bg: #eaf5ff;
+ --color-branch-name-icon: #a8bbd0;
+ --color-branch-name-link-bg: #eaf5ff;
+ --color-branch-name-link-icon: #a8bbd0;
+ --color-branch-name-link-text: #0366d6;
+ --color-branch-name-text: rgba(27, 31, 35, 0.6);
+ --color-btn-bg: #fafbfc;
+ --color-btn-border: rgba(27, 31, 35, 0.15);
+ --color-btn-counter-bg: rgba(27, 31, 35, 0.08);
+ --color-btn-danger-counter-bg: rgba(215, 58, 73, 0.1);
+ --color-btn-danger-disabled-bg: #fafbfc;
+ --color-btn-danger-disabled-counter-bg: rgba(215, 58, 73, 0.05);
+ --color-btn-danger-disabled-text: rgba(215, 58, 73, 0.5);
+ --color-btn-danger-focus-border: rgba(27, 31, 35, 0.15);
+ --color-btn-danger-focus-shadow: 0 0 0 3px rgba(203, 36, 49, 0.4);
+ --color-btn-danger-hover-bg: #cb2431;
+ --color-btn-danger-hover-border: rgba(27, 31, 35, 0.15);
+ --color-btn-danger-hover-counter-bg: hsla(0, 0%, 100%, 0.2);
+ --color-btn-danger-hover-inset-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.03);
+ --color-btn-danger-hover-shadow: 0 1px 0 rgba(27, 31, 35, 0.1);
+ --color-btn-danger-hover-text: #fff;
+ --color-btn-danger-selected-bg: #d42d3d;
+ --color-btn-danger-selected-border: rgba(27, 31, 35, 0.15);
+ --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(134, 24, 29, 0.2);
+ --color-btn-danger-selected-text: #fff;
+ --color-btn-danger-text: #d73a49;
+ --color-btn-focus-bg: #fafbfc;
+ --color-btn-focus-border: rgba(27, 31, 35, 0.15);
+ --color-btn-focus-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
+ --color-btn-hover-bg: #f3f4f6;
+ --color-btn-hover-border: rgba(27, 31, 35, 0.15);
+ --color-btn-inset-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.25);
+ --color-btn-outline-counter-bg: rgba(3, 102, 214, 0.1);
+ --color-btn-outline-disabled-bg: #fafbfc;
+ --color-btn-outline-disabled-counter-bg: rgba(3, 102, 214, 0.05);
+ --color-btn-outline-disabled-text: rgba(3, 102, 214, 0.5);
+ --color-btn-outline-focus-border: rgba(27, 31, 35, 0.15);
+ --color-btn-outline-focus-shadow: 0 0 0 3px rgba(0, 92, 197, 0.4);
+ --color-btn-outline-hover-bg: #0366d6;
+ --color-btn-outline-hover-border: rgba(27, 31, 35, 0.15);
+ --color-btn-outline-hover-counter-bg: hsla(0, 0%, 100%, 0.2);
+ --color-btn-outline-hover-inset-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.03);
+ --color-btn-outline-hover-shadow: 0 1px 0 rgba(27, 31, 35, 0.1);
+ --color-btn-outline-hover-text: #fff;
+ --color-btn-outline-selected-bg: #035fc7;
+ --color-btn-outline-selected-border: rgba(27, 31, 35, 0.15);
+ --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(5, 38, 76, 0.2);
+ --color-btn-outline-selected-text: #fff;
+ --color-btn-outline-text: #0366d6;
+ --color-btn-primary-bg: #2ea44f;
+ --color-btn-primary-border: rgba(27, 31, 35, 0.15);
+ --color-btn-primary-counter-bg: hsla(0, 0%, 100%, 0.2);
+ --color-btn-primary-disabled-bg: #94d3a2;
+ --color-btn-primary-disabled-border: rgba(27, 31, 35, 0.1);
+ --color-btn-primary-disabled-text: hsla(0, 0%, 100%, 0.8);
+ --color-btn-primary-focus-bg: #2ea44f;
+ --color-btn-primary-focus-border: rgba(27, 31, 35, 0.15);
+ --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46, 164, 79, 0.4);
+ --color-btn-primary-hover-bg: #2c974b;
+ --color-btn-primary-hover-border: rgba(27, 31, 35, 0.15);
+ --color-btn-primary-icon: hsla(0, 0%, 100%, 0.8);
+ --color-btn-primary-inset-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.03);
+ --color-btn-primary-selected-bg: #2a8f47;
+ --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(20, 70, 32, 0.2);
+ --color-btn-primary-shadow: 0 1px 0 rgba(27, 31, 35, 0.1);
+ --color-btn-primary-text: #fff;
+ --color-btn-selected-bg: #edeff2;
+ --color-btn-shadow: 0 1px 0 rgba(27, 31, 35, 0.04);
+ --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15);
+ --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(3, 102, 214, 0.3);
+ --color-btn-text: #24292e;
+ --color-calendar-graph-day-L1-bg: #9be9a8;
+ --color-calendar-graph-day-L1-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L2-bg: #40c463;
+ --color-calendar-graph-day-L2-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L3-bg: #30a14e;
+ --color-calendar-graph-day-L3-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-L4-bg: #216e39;
+ --color-calendar-graph-day-L4-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-graph-day-bg: #ebedf0;
+ --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06);
+ --color-calendar-halloween-graph-day-L1-bg: #ffee4a;
+ --color-calendar-halloween-graph-day-L2-bg: #ffc501;
+ --color-calendar-halloween-graph-day-L3-bg: #fe9600;
+ --color-calendar-halloween-graph-day-L4-bg: #03001c;
+ --color-checks-donut-error: #cb2431;
+ --color-checks-donut-neutral: #959da5;
+ --color-checks-donut-pending: #dbab09;
+ --color-checks-donut-success: #28a745;
+ --color-code-selection-bg: #c8e1ff;
+ --color-codemirror-activeline-bg: #fafbfc;
+ --color-codemirror-bg: #fff;
+ --color-codemirror-cursor: #24292e;
+ --color-codemirror-guttermarker-subtle-text: #d1d5da;
+ --color-codemirror-guttermarker-text: #fff;
+ --color-codemirror-gutters-bg: #fff;
+ --color-codemirror-linenumber-text: #959da5;
+ --color-codemirror-lines-bg: #fff;
+ --color-codemirror-matchingbracket-text: #24292e;
+ --color-codemirror-selection-bg: #c8e1ff;
+ --color-codemirror-syntax-comment: #6a737d;
+ --color-codemirror-syntax-constant: #005cc5;
+ --color-codemirror-syntax-entity: #6f42c1;
+ --color-codemirror-syntax-keyword: #d73a49;
+ --color-codemirror-syntax-storage: #d73a49;
+ --color-codemirror-syntax-string: #032f62;
+ --color-codemirror-syntax-support: #005cc5;
+ --color-codemirror-syntax-variable: #e36209;
+ --color-codemirror-text: #24292e;
+ --color-counter-bg: rgba(209, 213, 218, 0.5);
+ --color-counter-primary-bg: #6a737d;
+ --color-counter-primary-text: #fff;
+ --color-counter-secondary-text: #6a737d;
+ --color-counter-text: #24292e;
+ --color-diff-addition-bg: #e6ffed;
+ --color-diff-addition-border: #34d058;
+ --color-diff-addition-text: #22863a;
+ --color-diff-blob-addition-line-bg: #e6ffed;
+ --color-diff-blob-addition-num-bg: #cdffd8;
+ --color-diff-blob-addition-num-hover-text: rgba(27, 31, 35, 0.6);
+ --color-diff-blob-addition-num-text: rgba(27, 31, 35, 0.3);
+ --color-diff-blob-addition-word-bg: #acf2bd;
+ --color-diff-blob-comment-button-bg: #0366d6;
+ --color-diff-blob-comment-button-gradient-bg: #0372ef;
+ --color-diff-blob-comment-button-icon: #fff;
+ --color-diff-blob-deletion-line-bg: #ffeef0;
+ --color-diff-blob-deletion-num-bg: #ffdce0;
+ --color-diff-blob-deletion-num-hover-text: rgba(27, 31, 35, 0.6);
+ --color-diff-blob-deletion-num-text: rgba(27, 31, 35, 0.3);
+ --color-diff-blob-deletion-word-bg: #fdb8c0;
+ --color-diff-blob-empty-block-bg: #fafbfc;
+ --color-diff-blob-expander-hover-bg: #0366d6;
+ --color-diff-blob-expander-hover-icon: #fff;
+ --color-diff-blob-expander-icon: #586069;
+ --color-diff-blob-hunk-line-bg: #f1f8ff;
+ --color-diff-blob-hunk-num-bg: #dbedff;
+ --color-diff-blob-hunk-text: rgba(27, 31, 35, 0.7);
+ --color-diff-blob-num-hover-text: rgba(27, 31, 35, 0.6);
+ --color-diff-blob-num-text: rgba(27, 31, 35, 0.3);
+ --color-diff-blob-selected-line-highlight-bg: rgba(255, 223, 93, 0.2);
+ --color-diff-blob-selected-line-highlight-border: #ffd33d;
+ --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply;
+ --color-diff-change-bg: #fff5b1;
+ --color-diff-change-border: #f9c513;
+ --color-diff-change-text: #b08800;
+ --color-diff-deletion-bg: #ffeef0;
+ --color-diff-deletion-border: #d73a49;
+ --color-diff-deletion-text: #cb2431;
+ --color-diffstat-addition-bg: #28a745;
+ --color-diffstat-addition-border: #28a745;
+ --color-diffstat-deletion-bg: #d73a49;
+ --color-diffstat-deletion-border: #d73a49;
+ --color-diffstat-neutral-bg: #d1d5da;
+ --color-diffstat-neutral-border: #d1d5da;
+ --color-discussion-bg-success: #28a745;
+ --color-discussion-border: #a2cbac;
+ --color-discussions-answer-border: #28a745;
+ --color-discussions-answer-icon: #22863a;
+ --color-discussions-answer-text: #22863a;
+ --color-discussions-state-answered-icon: #fff;
+ --color-drag-and-drop-border: #c3c8cf;
+ --color-dropdown-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
+ --color-fade-black-10: rgba(27, 31, 35, 0.1);
+ --color-fade-black-15: rgba(27, 31, 35, 0.15);
+ --color-fade-black-30: rgba(27, 31, 35, 0.3);
+ --color-fade-black-50: rgba(27, 31, 35, 0.5);
+ --color-fade-black-70: rgba(27, 31, 35, 0.7);
+ --color-fade-black-85: rgba(27, 31, 35, 0.85);
+ --color-fade-fg-10: rgba(27, 31, 35, 0.1);
+ --color-fade-fg-15: rgba(27, 31, 35, 0.15);
+ --color-fade-fg-30: rgba(27, 31, 35, 0.3);
+ --color-fade-fg-50: rgba(27, 31, 35, 0.5);
+ --color-fade-fg-70: rgba(27, 31, 35, 0.7);
+ --color-fade-fg-85: rgba(27, 31, 35, 0.85);
+ --color-fade-white-10: hsla(0, 0%, 100%, 0.1);
+ --color-fade-white-15: hsla(0, 0%, 100%, 0.15);
+ --color-fade-white-30: hsla(0, 0%, 100%, 0.3);
+ --color-fade-white-50: hsla(0, 0%, 100%, 0.5);
+ --color-fade-white-70: hsla(0, 0%, 100%, 0.7);
+ --color-fade-white-85: hsla(0, 0%, 100%, 0.85);
+ --color-files-explorer-icon: #79b8ff;
+ --color-filter-item-bar-bg: #eff3f6;
+ --color-footer-invertocat-octicon: #d1d5da;
+ --color-footer-invertocat-octicon-hover: #6a737d;
+ --color-global-nav-bg: #24292e;
+ --color-global-nav-icon: #fff;
+ --color-global-nav-input-bg: #fafbfc;
+ --color-global-nav-input-border: #fafbfc;
+ --color-global-nav-input-icon: #d1d5da;
+ --color-global-nav-input-placeholder: #959da5;
+ --color-global-nav-logo: #fff;
+ --color-global-nav-text: #fff;
+ --color-header-bg: #24292e;
+ --color-header-logo: #fff;
+ --color-header-search-bg: #24292e;
+ --color-header-search-border: #444d56;
+ --color-header-text: hsla(0, 0%, 100%, 0.7);
+ --color-hidden-text-expander-bg: #dfe2e5;
+ --color-hidden-text-expander-bg-hover: #c6cbd1;
+ --color-hl-author-bg: #f1f8ff;
+ --color-hl-author-border: #c8e1ff;
+ --color-icon-danger: #d73a49;
+ --color-icon-info: #0366d6;
+ --color-icon-primary: #24292e;
+ --color-icon-secondary: #586069;
+ --color-icon-success: #22863a;
+ --color-icon-tertiary: #959da5;
+ --color-icon-warning: #b08800;
+ --color-input-bg: #fff;
+ --color-input-border: #e1e4e8;
+ --color-input-contrast-bg: #fafbfc;
+ --color-input-disabled-bg: #fff;
+ --color-input-disabled-border: #e1e4e8;
+ --color-input-error-border: #cb2431;
+ --color-input-shadow: inset 0 1px 2px rgba(27, 31, 35, 0.075);
+ --color-input-tooltip-error-bg: #ffeef0;
+ --color-input-tooltip-error-border: #f97583;
+ --color-input-tooltip-error-text: #86181d;
+ --color-input-tooltip-success-bg: #dcffe4;
+ --color-input-tooltip-success-border: #34d058;
+ --color-input-tooltip-success-text: #144620;
+ --color-input-tooltip-warning-bg: #fff5b1;
+ --color-input-tooltip-warning-border: #f9c513;
+ --color-input-tooltip-warning-text: #735c0f;
+ --color-input-warning-border: #f9c513;
+ --color-label-border: #e1e4e8;
+ --color-label-danger-border: #cb2431;
+ --color-label-danger-text: #d73a49;
+ --color-label-info-border: #0366d6;
+ --color-label-info-text: #0366d6;
+ --color-label-orange-border: #f66a0a;
+ --color-label-orange-text: #c24e00;
+ --color-label-primary-border: #6a737d;
+ --color-label-primary-text: #24292e;
+ --color-label-secondary-border: #e1e4e8;
+ --color-label-secondary-text: #586069;
+ --color-label-success-border: #28a745;
+ --color-label-success-text: #22863a;
+ --color-label-warning-border: #b08800;
+ --color-label-warning-text: #735c0f;
+ --color-logo-subdued: #d1d5da;
+ --color-markdown-blockquote-border: #dfe2e5;
+ --color-markdown-code-bg: rgba(27, 31, 35, 0.05);
+ --color-markdown-frame-border: #dfe2e5;
+ --color-markdown-table-border: #dfe2e5;
+ --color-markdown-table-tr-border: #c6cbd1;
+ --color-marketing-icon-primary: #2188ff;
+ --color-marketing-icon-secondary: #79b8ff;
+ --color-menu-bg-active: transparent;
+ --color-menu-border-active: #f9826c;
+ --color-menu-heading-text: #24292e;
+ --color-merge-box-error-icon-bg: #d73a49;
+ --color-merge-box-error-icon-border: transparent;
+ --color-merge-box-error-icon-text: #fff;
+ --color-merge-box-error-indicator-bg: #d73a49;
+ --color-merge-box-error-indicator-border: transparent;
+ --color-merge-box-merged-box-border: #6f42c1;
+ --color-merge-box-merged-icon-bg: #6f42c1;
+ --color-merge-box-merged-icon-border: transparent;
+ --color-merge-box-merged-icon-text: #fff;
+ --color-merge-box-neutral-icon-bg: #6a737d;
+ --color-merge-box-neutral-icon-border: transparent;
+ --color-merge-box-neutral-icon-text: #fff;
+ --color-merge-box-neutral-indicator-bg: #6a737d;
+ --color-merge-box-neutral-indicator-border: transparent;
+ --color-merge-box-success-icon-bg: #28a745;
+ --color-merge-box-success-icon-border: transparent;
+ --color-merge-box-success-icon-text: #fff;
+ --color-merge-box-success-indicator-bg: #28a745;
+ --color-merge-box-success-indicator-border: transparent;
+ --color-merge-box-warning-box-border: #ffd33d;
+ --color-merge-box-warning-icon-bg: #dbab09;
+ --color-merge-box-warning-icon-border: transparent;
+ --color-merge-box-warning-icon-text: #fff;
+ --color-merge-box-warning-merge-highlight: transparent;
+ --color-notifications-button-hover-bg: #e1e4e8;
+ --color-notifications-button-hover-text: #24292e;
+ --color-notifications-button-text: #586069;
+ --color-notifications-row-bg: #fff;
+ --color-notifications-row-read-bg: #f6f8fa;
+ --color-pr-state-closed-bg: #d73a49;
+ --color-pr-state-closed-border: transparent;
+ --color-pr-state-closed-text: #fff;
+ --color-pr-state-draft-bg: #6a737d;
+ --color-pr-state-draft-border: transparent;
+ --color-pr-state-draft-text: #fff;
+ --color-pr-state-merged-bg: #6f42c1;
+ --color-pr-state-merged-border: transparent;
+ --color-pr-state-merged-text: #fff;
+ --color-pr-state-open-bg: #28a745;
+ --color-pr-state-open-border: transparent;
+ --color-pr-state-open-text: #fff;
+ --color-prettylights-syntax-brackethighlighter-angle: #586069;
+ --color-prettylights-syntax-brackethighlighter-unmatched: #b31d28;
+ --color-prettylights-syntax-carriage-return-bg: #d73a49;
+ --color-prettylights-syntax-carriage-return-text: #fafbfc;
+ --color-prettylights-syntax-comment: #6a737d;
+ --color-prettylights-syntax-constant: #005cc5;
+ --color-prettylights-syntax-constant-other-reference-link: #032f62;
+ --color-prettylights-syntax-entity: #6f42c1;
+ --color-prettylights-syntax-entity-tag: #22863a;
+ --color-prettylights-syntax-invalid-illegal-bg: #b31d28;
+ --color-prettylights-syntax-invalid-illegal-text: #fafbfc;
+ --color-prettylights-syntax-keyword: #d73a49;
+ --color-prettylights-syntax-markup-bold: #24292e;
+ --color-prettylights-syntax-markup-changed-bg: #ffebda;
+ --color-prettylights-syntax-markup-changed-text: #e36209;
+ --color-prettylights-syntax-markup-deleted-bg: #ffeef0;
+ --color-prettylights-syntax-markup-deleted-text: #b31d28;
+ --color-prettylights-syntax-markup-heading: #005cc5;
+ --color-prettylights-syntax-markup-ignored-bg: #005cc5;
+ --color-prettylights-syntax-markup-ignored-text: #f6f8fa;
+ --color-prettylights-syntax-markup-inserted-bg: #f0fff4;
+ --color-prettylights-syntax-markup-inserted-text: #22863a;
+ --color-prettylights-syntax-markup-italic: #24292e;
+ --color-prettylights-syntax-markup-list: #735c0f;
+ --color-prettylights-syntax-meta-diff-range: #6f42c1;
+ --color-prettylights-syntax-storage-modifier-import: #24292e;
+ --color-prettylights-syntax-string: #032f62;
+ --color-prettylights-syntax-string-regexp: #22863a;
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #959da5;
+ --color-prettylights-syntax-variable: #e36209;
+ --color-previewable-comment-form-border: #c3c8cf;
+ --color-profile-color-modes-toggle-moon: #ffdf5d;
+ --color-profile-color-modes-toggle-thumb-bg: #2f363d;
+ --color-profile-color-modes-toggle-track-bg: #fff;
+ --color-profile-color-modes-toggle-track-border: #d1d5da;
+ --color-project-card-bg: #fff;
+ --color-project-gradient-in: #fff;
+ --color-project-gradient-out: hsla(0, 0%, 100%, 0);
+ --color-project-header-bg: #24292e;
+ --color-project-sidebar-bg: #fff;
+ --color-promo-color-modes-toggle-moon: #ffdf5d;
+ --color-promo-color-modes-toggle-thumb-bg: #2f363d;
+ --color-promo-color-modes-toggle-track-bg: #fff;
+ --color-promo-color-modes-toggle-track-border: #d1d5da;
+ --color-repo-language-color-border: rgba(27, 31, 35, 0.1);
+ --color-scale-black: #1b1f23;
+ --color-scale-blue-0: #f1f8ff;
+ --color-scale-blue-1: #dbedff;
+ --color-scale-blue-2: #c8e1ff;
+ --color-scale-blue-3: #79b8ff;
+ --color-scale-blue-4: #2188ff;
+ --color-scale-blue-5: #0366d6;
+ --color-scale-blue-6: #005cc5;
+ --color-scale-blue-7: #044289;
+ --color-scale-blue-8: #032f62;
+ --color-scale-blue-9: #05264c;
+ --color-scale-gray-0: #fafbfc;
+ --color-scale-gray-1: #f6f8fa;
+ --color-scale-gray-2: #e1e4e8;
+ --color-scale-gray-3: #d1d5da;
+ --color-scale-gray-4: #959da5;
+ --color-scale-gray-5: #6a737d;
+ --color-scale-gray-6: #586069;
+ --color-scale-gray-7: #444d56;
+ --color-scale-gray-8: #2f363d;
+ --color-scale-gray-9: #24292e;
+ --color-scale-green-0: #f0fff4;
+ --color-scale-green-1: #dcffe4;
+ --color-scale-green-2: #bef5cb;
+ --color-scale-green-3: #85e89d;
+ --color-scale-green-4: #34d058;
+ --color-scale-green-5: #28a745;
+ --color-scale-green-6: #22863a;
+ --color-scale-green-7: #176f2c;
+ --color-scale-green-8: #165c26;
+ --color-scale-green-9: #144620;
+ --color-scale-orange-0: #fff8f2;
+ --color-scale-orange-1: #ffebda;
+ --color-scale-orange-2: #ffd1ac;
+ --color-scale-orange-3: #ffab70;
+ --color-scale-orange-4: #fb8532;
+ --color-scale-orange-5: #f66a0a;
+ --color-scale-orange-6: #e36209;
+ --color-scale-orange-7: #d15704;
+ --color-scale-orange-8: #c24e00;
+ --color-scale-orange-9: #a04100;
+ --color-scale-pink-0: #ffeef8;
+ --color-scale-pink-1: #fedbf0;
+ --color-scale-pink-2: #f9b3dd;
+ --color-scale-pink-3: #f692ce;
+ --color-scale-pink-4: #ec6cb9;
+ --color-scale-pink-5: #ea4aaa;
+ --color-scale-pink-6: #d03592;
+ --color-scale-pink-7: #b93a86;
+ --color-scale-pink-8: #99306f;
+ --color-scale-pink-9: #6d224f;
+ --color-scale-purple-0: #f5f0ff;
+ --color-scale-purple-1: #e6dcfd;
+ --color-scale-purple-2: #d1bcf9;
+ --color-scale-purple-3: #b392f0;
+ --color-scale-purple-4: #8a63d2;
+ --color-scale-purple-5: #6f42c1;
+ --color-scale-purple-6: #5a32a3;
+ --color-scale-purple-7: #4c2889;
+ --color-scale-purple-8: #3a1d6e;
+ --color-scale-purple-9: #29134e;
+ --color-scale-red-0: #ffeef0;
+ --color-scale-red-1: #ffdce0;
+ --color-scale-red-2: #fdaeb7;
+ --color-scale-red-3: #f97583;
+ --color-scale-red-4: #ea4a5a;
+ --color-scale-red-5: #d73a49;
+ --color-scale-red-6: #cb2431;
+ --color-scale-red-7: #b31d28;
+ --color-scale-red-8: #9e1c23;
+ --color-scale-red-9: #86181d;
+ --color-scale-white: #fff;
+ --color-scale-yellow-0: #fffdef;
+ --color-scale-yellow-1: #fffbdd;
+ --color-scale-yellow-2: #fff5b1;
+ --color-scale-yellow-3: #ffea7f;
+ --color-scale-yellow-4: #ffdf5d;
+ --color-scale-yellow-5: #ffd33d;
+ --color-scale-yellow-6: #f9c513;
+ --color-scale-yellow-7: #dbab09;
+ --color-scale-yellow-8: #b08800;
+ --color-scale-yellow-9: #735c0f;
+ --color-search-hover-hl: #fff;
+ --color-search-keyword-hl: #fffbdd;
+ --color-select-menu-backdrop-bg: rgba(27, 31, 35, 0.5);
+ --color-select-menu-backdrop-border: transparent;
+ --color-select-menu-border-secondary: #eaecef;
+ --color-select-menu-shadow: 0 0 18px rgba(27, 31, 35, 0.4);
+ --color-select-menu-tap-focus-bg: #dbedff;
+ --color-select-menu-tap-highlight: rgba(209, 213, 218, 0.5);
+ --color-shadow-extra-large: 0 12px 48px rgba(149, 157, 165, 0.3);
+ --color-shadow-highlight: inset 0 1px 0 hsla(0, 0%, 100%, 0.25);
+ --color-shadow-inset: inset 0 1px 0 rgba(225, 228, 232, 0.2);
+ --color-shadow-large: 0 8px 24px rgba(149, 157, 165, 0.2);
+ --color-shadow-medium: 0 3px 6px rgba(149, 157, 165, 0.15);
+ --color-shadow-small: 0 1px 0 rgba(27, 31, 35, 0.04);
+ --color-sidenav-border-active: #f9826c;
+ --color-sidenav-selected-bg: #fff;
+ --color-social-count-bg: #fff;
+ --color-state-focus-border: #0366d6;
+ --color-state-focus-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
+ --color-state-hover-primary-bg: #0366d6;
+ --color-state-hover-primary-border: #0366d6;
+ --color-state-hover-primary-icon: #fff;
+ --color-state-hover-primary-text: #fff;
+ --color-state-hover-secondary-bg: #f6f8fa;
+ --color-state-hover-secondary-border: #f6f8fa;
+ --color-state-selected-primary-bg: #0366d6;
+ --color-state-selected-primary-border: #0366d6;
+ --color-state-selected-primary-icon: #fff;
+ --color-state-selected-primary-text: #fff;
+ --color-text-danger: #cb2431;
+ --color-text-disabled: #6a737d;
+ --color-text-inverse: #fff;
+ --color-text-link: #0366d6;
+ --color-text-placeholder: #6a737d;
+ --color-text-primary: #24292e;
+ --color-text-secondary: #586069;
+ --color-text-success: #22863a;
+ --color-text-tertiary: #6a737d;
+ --color-text-warning: #b08800;
+ --color-text-white: #fff;
+ --color-timeline-badge-bg: #e1e4e8;
+ --color-timeline-merged-bg: #6f42c1;
+ --color-timeline-target-badge-border: #2188ff;
+ --color-timeline-target-badge-shadow: #c8e1ff;
+ --color-timeline-text: #444d56;
+ --color-toast-bg: #fff;
+ --color-toast-border: #e1e4e8;
+ --color-toast-danger-border: #e1e4e8;
+ --color-toast-danger-icon: #fff;
+ --color-toast-danger-icon-bg: #d73a49;
+ --color-toast-danger-icon-border: transparent;
+ --color-toast-danger-text: #24292e;
+ --color-toast-icon: #fff;
+ --color-toast-icon-bg: #0366d6;
+ --color-toast-icon-border: transparent;
+ --color-toast-loading-border: #e1e4e8;
+ --color-toast-loading-icon: #fff;
+ --color-toast-loading-icon-bg: #586069;
+ --color-toast-loading-icon-border: transparent;
+ --color-toast-loading-text: #24292e;
+ --color-toast-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
+ --color-toast-success-border: #e1e4e8;
+ --color-toast-success-icon: #fff;
+ --color-toast-success-icon-bg: #28a745;
+ --color-toast-success-icon-border: transparent;
+ --color-toast-success-text: #24292e;
+ --color-toast-text: #24292e;
+ --color-toast-warning-border: #e1e4e8;
+ --color-toast-warning-icon: #24292e;
+ --color-toast-warning-icon-bg: #ffd33d;
+ --color-toast-warning-icon-border: transparent;
+ --color-toast-warning-text: #24292e;
+ --color-tooltip-bg: #24292e;
+ --color-tooltip-text: #fff;
+ --color-topic-tag-active-bg: #e7f3ff;
+ --color-topic-tag-bg: #f1f8ff;
+ --color-topic-tag-hover-bg: #def;
+ --color-topic-tag-text: #0366d6;
+ --color-underlinenav-border: rgba(209, 213, 218, 0);
+ --color-underlinenav-border-active: #f9826c;
+ --color-underlinenav-border-hover: #d1d5da;
+ --color-underlinenav-counter-text: #24292e;
+ --color-underlinenav-icon: #959da5;
+ --color-underlinenav-icon-active: #24292e;
+ --color-underlinenav-icon-hover: #959da5;
+ --color-underlinenav-text: #24292e;
+ --color-underlinenav-text-active: #24292e;
+ --color-underlinenav-text-hover: #24292e;
+ --color-upload-enabled-border: #dfe2e5;
+ --color-upload-enabled-border-focused: #4a9eff;
+ --color-upvote-icon-bg: #dbedff;
+ --color-verified-badge-bg: #fff;
+ --color-verified-badge-border: #e1e4e8;
+ --color-verified-badge-text: #22863a;
+ --color-workflow-card-bg: #fff;
+ --color-workflow-card-connector-line: #d1d5da;
+ --color-workflow-card-connector-node-bg: #d1d5da;
+ --color-workflow-card-header-shadow: rgba(27, 31, 35, 0.04);
+ --color-workflow-card-progress-complete-bg: #959da5;
+ --color-workflow-card-progress-incomplete-bg: #e1e4e8;
+}
\ No newline at end of file
diff --git a/static/js/contributions.js b/static/js/contributions.js
deleted file mode 100644
index b351c80..0000000
--- a/static/js/contributions.js
+++ /dev/null
@@ -1,244 +0,0 @@
-const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
-const now = new Date();
-let contributions;
-
-(() => {
- const dom = document.querySelector('#contributions');
- if (!dom) {
- return;
- }
-
- contributions = JSON.parse(dom.getAttribute('data'));
- let year = 0;
- for (const item of contributions) {
- item.publishDate = decodeURI(item.publishDate).replace(' ','T');
- item.date = new Date(item.publishDate);
- if (item.date.getFullYear() > year) {
- year = item.date.getFullYear();
- }
- item.title = decodeURI(item.title);
- }
-
- yearList();
- yearly(year.toString());
-})();
-
-function yearly(year) {
- let startDate;
- let endDate;
- if (year != now.getFullYear().toString()) {
- const date = new Date(year);
- startDate = new Date(date.getTime() - date.getDay() * 24 * 60 * 60 * 1000);
- endDate = new Date(date.getFullYear(), 11, 31);
- } else {
- endDate = now;
- startDate = new Date(endDate.getTime() - 364 * 24 * 60 * 60 * 1000 - endDate.getDay() * 24 * 60 * 60 * 1000);
- }
- startDate.setHours(0, 0, 0, 0);
- endDate.setHours(23, 59, 59, 999);
- const posts = [];
- const ms = [];
- for (const item of contributions) {
- if (item.date >= startDate && item.date <= endDate) {
- posts.push(item);
- if (!ms.includes(item.date.getMonth())) {
- ms.push(item.date.getMonth());
- }
- }
- }
- posts.sort((a, b) => { return b - a });
- document.querySelector('#posts-activity').innerHTML = '';
- for (const month of ms) {
- const node = document.createElement('div');
- node.innerHTML = monthly(year, month, posts);
- document.querySelector('#posts-activity').appendChild(node);
- }
-
- graph(year, posts, startDate, endDate);
-
- const yearList = document.querySelectorAll('.js-year-link');
- for (const elem of yearList) {
- if (elem.innerText == year) {
- elem.classList.add('selected');
- } else {
- elem.classList.remove('selected');
- }
- }
-}
-
-function monthly(year, month, posts) {
- const monthPosts = posts.filter(post =>
- post.date.getFullYear().toString() === year && post.date.getMonth() === month
- );
- let liHtml = '';
- for (const post of monthPosts) {
- liHtml += `
-
-
-
-
-
-
- ${post.title}
-
-
- ${months[post.date.getMonth()]} ${post.date.getDate()}
- `;
- }
- let html = `
-
-
-
- ${months[month]} ${monthPosts.length > 0 ? monthPosts[0].date.getFullYear() : year}
-
-
-
-
-
-
-
-
- Created ${monthPosts.length} post${monthPosts.length > 1 ? 's' : ''}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `;
- return html;
-}
-
-function yearList() {
- const years = [];
- for (const item of contributions) {
- const year = item.date.getFullYear();
- if (!years.includes(year)) {
- years.push(year);
- }
- }
- years.sort((a, b) => { return b - a });
-
- for (let i = 0; i < years.length; i++) {
- const year = years[i];
- const node = document.createElement('li');
- node.innerHTML = `${year} `;
- document.querySelector('#year-list').appendChild(node);
- }
-}
-
-function graph(year, posts, startDate, endDate) {
- const postsStr = posts.length === 1 ? "post" : "posts";
- if (year == now.getFullYear().toString()) {
- document.querySelector('#posts-count').innerText = `${posts.length} ${postsStr} in the last year`;
- } else {
- document.querySelector('#posts-count').innerText = `${posts.length} ${postsStr} in ${year}`;
- }
-
- let html = ``;
- const count = {};
- for (const post of posts) {
- const date = `${post.date.getFullYear()}-${(post.date.getMonth() + 1).toString().padStart(2, '0')}-${post.date.getDate().toString().padStart(2, '0')}`;
- if (count[date] == undefined) {
- count[date] = 1;
- } else {
- count[date]++;
- }
- }
- const monthPos = [];
- let startMonth = -1;
- for (let i = 0; i < 53; i++) {
- html += ``;
- for (let j = 0; j < 7; j++) {
- const date = new Date(startDate.getTime() + (i * 7 + j) * 24 * 60 * 60 * 1000);
- const dataDate = `${date.getFullYear()}-${(date.getMonth() + 1).toString().padStart(2, '0')}-${date.getDate().toString().padStart(2, '0')}`;
- if (date > endDate) {
- continue;
- }
-
- if (j == 0) {
- if (i <= 51) {
- if (startMonth != date.getMonth()) {
- monthPos.push(i);
- startMonth = date.getMonth();
- }
- }
- }
-
- let c;
- if (count[dataDate] == undefined) {
- c = 0;
- } else {
- c = count[dataDate];
- }
- let color;
- switch (c) {
- case 0:
- color = "#ebedf0";
- break;
- case 1:
- color = "#c6e48b";
- break;
- case 2:
- color = "#7bc96f";
- break;
- case 3:
- color = "#239a3b";
- break;
- default:
- color = "#196127";
- }
- html += ` `;
- }
- html += ' ';
- }
- if (monthPos[1] - monthPos[0] < 2) {
- monthPos[0] = -1;
- }
- for (let i = 0; i < monthPos.length; i++) {
- const month = monthPos[i];
- if (month == -1) {
- continue;
- }
- html += `${months[(i + startDate.getMonth()) % 12]} `;
- }
- html += `
-Sun
-Mon
-Tue
-Wed
-Thu
-Fri
-Sat
-`;
- document.querySelector('#graph-svg').innerHTML = html;
- stopClickEvent('.day');
-}
diff --git a/static/js/frameworks.js b/static/js/frameworks.js
deleted file mode 100644
index ce13fe2..0000000
--- a/static/js/frameworks.js
+++ /dev/null
@@ -1 +0,0 @@
-self.System=self.System||(()=>{const t={},e={},n=t=>t.replace(/^.\/(\w+)-[a-f0-9]{8,}.js$/,"./$1.js"),o={register(r,i){const s=n(`./${((document.currentScript||{}).src||"").split("?").shift().split("/").pop()}`),a={},c=i((t,e)=>e?a[t]=e:Object.assign(a,t),o);t[s]=Promise.all(r.map((t,e)=>o.import(n(t)).then(c.setters[e]))).then(()=>(c.execute(),a)).catch(t=>{throw t.message=`evaluating module ${s}: ${t.message}`,t}),e[s]&&(e[s](t[s]),delete e[s])},import:n=>t[n]||(t[n]=new Promise((t,o)=>{const r=setTimeout(()=>{o(new Error(`could not resolve ${n}`))},1e4);e[n]=(e=>{clearTimeout(r),t(e)})}))};return o})(),System.register([],function(t,e){"use strict";return{execute:function(){function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function n(t,n){return!n||"object"!==e(n)&&"function"!=typeof n?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):n}function o(t){var e="function"==typeof Map?new Map:void 0;return(o=function(t){if(null===t||(n=t,-1===Function.toString.call(n).indexOf("[native code]")))return t;var n;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,o)}function o(){return r(t,arguments,s(this).constructor)}return o.prototype=Object.create(t.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),i(o,t)})(t)}function r(t,e,n){return(r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(sn){return!1}}()?Reflect.construct:function(t,e,n){var o=[null];o.push.apply(o,e);var r=new(Function.bind.apply(t,o));return n&&i(r,n.prototype),r}).apply(null,arguments)}function i(t,e){return(i=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function s(t){return(s=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}t({$:async function(t,e){const n=Et(t,e);n.headers.set("Accept","application/json");const o=await self.fetch(n),r=new wt(o);return yt(o,r),o.json()},A:function(){return bn()&&yn()||_n()},B:_n,C:function(t,e,n){return new Promise(function(o,r){window.u2f.register(t,e,n,function(t){"registrationData"in t&&t.registrationData?o(t):r(new An("Device registration failed",Sn(t)))})})},D:async function(t){const e=un(sn,pn,t),n=await navigator.credentials.create(e);return un(an,mn,n)},E:async function(t){const e=(n=t,"low"===n||"medium"===n||"high"===n||"two_factor"===n?n:null);var n;if(!e)throw new Error("invariant violation: level");return"true"===await xt(`/sessions/in_sudo?requested_access_level=${e}`,{headers:{accept:"application/json"}})||async function(){if(xn)return!1;xn=!0,kn=!1;const t=(await async function(){const t=document.body;if(!t)throw new Error("invariant violation: body");const e=l(document,"link[rel=sudo-modal]",HTMLLinkElement),n=document.querySelector(".js-sudo-prompt");if(n instanceof HTMLTemplateElement)return n;if(e){const n=await kt(document,function(t){const e=new URL(t,window.location.origin),n=new URLSearchParams(e.search.slice(1));return n.set("webauthn-support",En()),e.search=n.toString(),e.toString()}(e.href));return t.appendChild(n),l(document,".js-sudo-prompt",HTMLTemplateElement)}throw new Error("couldn't load sudo prompt")}()).content.cloneNode(!0);if(!(t instanceof DocumentFragment))throw new Error("invariant violation: content instanceof DocumentFragment");const e=await Fe({content:t});return await new Promise(t=>{e.addEventListener("dialog:remove",function(){xn=!1,t()},{once:!0})}),kn}()},F:function(t,e,n){var o=n||HTMLInputElement,r=t.elements.namedItem(e);if(r instanceof o)return r;throw new a("Element not found by name: <".concat(o.name,"> ").concat(e))},H:function(t,e){if("boolean"==typeof e){if(!(t instanceof HTMLInputElement))throw new TypeError("only checkboxes can be set to boolean value");t.checked=e}else{if("checkbox"===t.type)throw new TypeError("checkbox can't be set to string value");t.value=e}he(t,"change",!1)},I:function(t,e){return new Promise(function(n,o){!function r(i){function s(t){switch(t.status){case 200:n(t);break;case 202:setTimeout(()=>r(1.5*i),i);break;default:o(new wt(t))}}Tt(t,e).then(function s(r){switch(r.status){case 200:n(r);break;case 202:setTimeout(()=>(function r(i){function s(t){switch(t.status){case 200:n(t);break;case 202:setTimeout(()=>r(1.5*i),i);break;default:o(new wt(t))}}Tt(t,e).then(s,o)})(1.5*i),i);break;default:o(new wt(r))}},o)}(1e3)})},J:Dn,K:ne,L:ee,M:function(t,e){0===Object.keys(Do.children).length&&document.addEventListener("keydown",Ro);var n=function(t){return t.split(",").map(function(t){return t.split(" ")})}(e||t.getAttribute("data-hotkey")||"").map(function(e){return Do.insert(e).add(t)});Io.set(t,n)},N:function(t){var e=Io.get(t);if(e&&e.length){var n=!0,o=!1,r=void 0;try{for(var i,s=e[Symbol.iterator]();!(n=(i=s.next()).done);n=!0){var a=i.value;a&&a.delete(t)}}catch(c){o=!0,r=c}finally{try{n||null==s.return||s.return()}finally{if(o)throw r}}}0===Object.keys(Do.children).length&&document.removeEventListener("keydown",Ro)},P:function(t,e,n){function o(e){const{currentTarget:r}=e;r&&(r.removeEventListener(t,n),r.removeEventListener("blur",o))}ye(e,function(e){e.addEventListener(t,n),e.addEventListener("blur",o)})},Q:function(){return Promise.resolve()},R:function(t,e){return 1===t?e:e.endsWith("y")?`${e.substring(0,e.length-1)}ies`:`${e}s`},S:function(t,e){t.removeEventListener("keydown",nn),t.removeEventListener("keyup",on),t.removeEventListener("input",rn);const n=tn.get(t);n&&(null!=n.timer&&n.listener===e&&clearTimeout(n.timer),tn.delete(t))},T:ge,V:Wo,W:async function(t,e){const n=Zo.get(t);n&&n.abort();return tr(t,e)},X:$o,Z:function(t){Oe.push(t)},_:async function(){await async function(){const t=document.querySelector("link[rel=sso-session]"),e=document.querySelector("meta[name=sso-expires-around]");if(!(t instanceof HTMLLinkElement))return!0;if(!function(t){if(!(t instanceof HTMLMetaElement))return!0;const e=parseInt(t.content);return(new Date).getTime()/1e3>e}(e))return!0;const n=t.href,o=await Tt(n,{headers:{Accept:"application/json"}});return await o.json()}()||(or||(or=async function(){const t=l(document,"link[rel=sso-modal]",HTMLLinkElement),e=await Fe({content:kt(document,t.href),dialogClass:"sso-modal"});let n=null;const o=window.external;if(o.ssoComplete=function(t){t.error?nr(n=!1):(nr(n=!0),function(t){const e=document.querySelector("meta[name=sso-expires-around]");e&&e.setAttribute("content",t)}(t.expiresAround),window.focus()),o.ssoComplete=null},await function(t){return new Promise(e=>{t.addEventListener("dialog:remove",e,{once:!0})})}(e),!n)throw new Error("sso prompt canceled")}().then(rr).catch(rr)),await or)},a$:qo,a0:Bo,a1:function(t,e){const n=t.currentTarget;if(!(n instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/pjax.js:39");if(0!==t.button||t.metaKey||t.ctrlKey||t.shiftKey||t.altKey)return;if(location.protocol!==n.protocol||location.hostname!==n.hostname)return;if(n.href.indexOf("#")>-1&&kr(n)===kr(location))return;if(t.defaultPrevented)return;const o={url:n.href,container:null,target:n};Object.assign(o,e),mr(n,"pjax:click",{options:o,relatedEvent:t})&&(vr(o),t.preventDefault(),mr(n,"pjax:clicked",{options:o}))},a2:function(t,e){const n=t.currentTarget;if(!(n instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/pjax.js:82");const o={type:(n.method||"GET").toUpperCase(),url:n.action,container:null,target:n};if(Object.assign(o,e),"GET"===o.type){if(n.querySelector("input[type=file]"))return;if("string"!=typeof o.url)throw new Error("invariant: app/assets/modules/github/pjax.js:97");const t=xr(o.url);t.search+=(t.search?"&":"")+ge(n),o.url=t.toString()}else o.data=new FormData(n);vr(o),t.preventDefault()},a3:gr,a5:Mo,a6:ar,a7:sr,a8:function(){return hr},a9:Pr,aA:me,aB:Xo,aC:Jo,aD:function(t,e){li(t),ci(t,e)},aF:function(t){const e=t.getAttribute("data-hydro-click-payload")||"",n=t.getAttribute("data-hydro-click-hmac")||"",o=t.getAttribute("data-hydro-client-context")||"";se({hydroEventPayload:e,hydroEventHmac:n,hydroClientContext:o},!0)},aG:function(t){const e=tn.get(t);e&&e.listener.call(null,t)},aH:async function(t,e){if(Zo.get(t))return;const n=new XMLHttpRequest,o=d(t,"data-url"),r=t.hasAttribute("data-retain-focus");n.open("GET",o),n.setRequestHeader("Accept","text/html"),n.setRequestHeader("X-Requested-With","XMLHttpRequest"),null!=e&&n.setRequestHeader("X-Request-Purpose",e);Zo.set(t,n);try{const e=await function(t,e){return new Promise((n,o)=>{t.onload=(()=>{200===t.status?n(t.responseText):o(new Error(`XMLHttpRequest ${t.statusText}`))}),t.onerror=o,t.send(e||null)})}(n);if(Xo(t,r))throw new Error("element had interactions");return tr(t,e,r)}catch(i){"XMLHttpRequest abort"!==i.message&&console.warn("Failed to update content",t,i)}finally{Zo.delete(t)}},aI:Xr,aJ:function(){const t=Ee[Ae()-1];if(t)return t.url},aK:function(){const t=Ee[Ae()+1];if(t)return t.url},aL:function(t,e){const n=t.closest("[data-pjax-container]");if(!n)throw new Error(`no pjax container for ${function(t){const e=[];let n=t;for(;n&&(e.push(cr(n)),!(n instanceof window.Window))&&9!==n.nodeType&&!n.id;){if(n.parentNode instanceof Document){e.push("#document");break}if(!(n.parentNode instanceof HTMLElement))break;n=n.parentNode}return e.reverse().join(" > ")}(t)}`);const o=Lr(n),r=xr(t.href);return r.search+=`${r.search?"&":""}_pjax=${encodeURIComponent(o)}`,Tt(r.href,{headers:Object.assign({Accept:"text/html","X-PJAX":"true","X-PJAX-Container":o},e&&e.headers)})},aM:function(t,e){lr.set(t,e),n=e,n.catch(()=>{});var n},aN:je,aO:function(t){return yi.get(t)},aP:function(t){const e=t.getAttribute("data-details-container")||".js-details-container",n=c(t,e).classList;return n.contains("Details--on")||n.contains("open")},aQ:En,aR:async function(){return window.PublicKeyCredential&&window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable&&await window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable()?"supported":"unsupported"},aS:function(){return bn()&&yn()||Tn()},aT:Tn,aU:function(t,e,n){return new Promise(function(o,r){window.u2f.sign(t,e,n,function(t){"keyHandle"in t&&t.keyHandle?o(t):r(new An("Signing request failed",Sn(t)))})})},aV:async function(t){const e=un(sn,gn,t),n=await navigator.credentials.get(e);return un(an,vn,n)},aW:function(t,e,n){let o=t.value.substring(0,t.selectionEnd||0),r=t.value.substring(t.selectionEnd||0);o=o.replace(e,n),r=r.replace(e,n),t.value=o+r,t.selectionStart=o.length,t.selectionEnd=o.length,t.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!1}))},aX:ai,aY:de,aZ:fe,a_:function(t){Ne.push(t)},aa:Ho,ab:function(t){const e=t.split("");let n=0;for(const o of e){const t=Array.from(o.split(/[\ufe00-\ufe0f]/).join("")).length;n+=t}return n/e.length},ac:Qo,ad:qe,ae:function(t){return Tt(t.action,{method:t.method,body:new FormData(t)})},af:function(t,e){for(const n in e){const o=e[n],r=t.elements.namedItem(n);r instanceof HTMLInputElement?r.value=o:r instanceof HTMLTextAreaElement&&(r.value=o)}},ag:Rr,ah:ir,ai:ke,aj:function(t,e){window.ga("provide",t,e)},ak:function(t){window.ga("set",{location:t})},al:function(t){window.ga("set",{title:t})},am:function(t,e){window.ga("set",t,e)},an:function(t,e={page:""}){e.page=t||"",window.ga("send","pageview",e)},ao:function(t,e,n={}){window.ga("create",t,e,n),window.ga("set","transport","sendBeacon"in window.navigator?"beacon":"xhr")},ap:function(t,e={}){window.ga(()=>{window.ga("require",t,e)})},aq:function(t){void 0===t.interactive&&(t.interactive=!0);window.ga("send","event",t.category,t.action,t.label,t.value,{nonInteraction:!t.interactive})},as:Br,at:function(t){let e=t;"string"==typeof e&&(e=e.replace(/,/g,""));return parseFloat(e)},au:function(t){return`${t}`.replace(/(^|[^\w.])(\d{4,})/g,(t,e,n)=>e+n.replace(/\d(?=(?:\d\d\d)+(?!\d))/g,"$&,"))},av:function(t,e){const n=1===t?"data-singular-string":"data-plural-string",o=e.getAttribute(n);if(null==o)return;e.textContent=o},aw:function(t,e){const n=t.selectionEnd||0,o=t.value.substring(0,n),r=t.value.substring(n),i=""===t.value||o.match(/\n$/)?"":"\n";t.value=o+i+e+r,t.selectionStart=n+e.length,t.selectionEnd=n+e.length,t.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!1})),t.focus()},ay:ci,az:si,b:l,b2:Gr,b3:jn,b5:Mn,b6:async function(t){return yi.get(t)||Ei(await(e=t,n="codeEditor:ready",new Promise(t=>{e.addEventListener(n,t,{once:!0})})));var e,n},b7:In,b8:function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},b9:function(){return new Promise(window.requestAnimationFrame)},bb:_i,d:pt,e:te,f:c,g:mt,h:d,i:Tt,j:se,l:pe,m:function(t){const e=t.getAttribute("data-hydro-view")||"",n=t.getAttribute("data-hydro-view-hmac")||"",o=t.getAttribute("data-hydro-client-context")||"";se({hydroEventPayload:e,hydroEventHmac:n,hydroClientContext:o},!0)},n:kt,o:ye,p:function(t,e){function n(t){const{currentTarget:o}=t;o&&(o.removeEventListener("input",e),o.removeEventListener("blur",n))}ye(t,function(t){t.addEventListener("input",e),t.addEventListener("blur",n)})},q:Me,r:Re,s:xt,t:u,u:function(t,e=0,{start:n=!1,middle:o=!1,once:r=!1}={}){return qe(t,e,{start:n,middle:o,once:r})},v:function(t,e){const n=new URL(t,window.location.origin),o=e?Object.assign({},e):{},r=n.hash.match(/^#csrf-token=([A-Za-z0-9+\/=]+)$/);if(!r)throw new TypeError("Expected csrfRequest(url) to have an associated #csrf-token");n.hash="";const i=n.toString();o.mode="same-origin";const s=new Request(i,o);return s.headers.append("Scoped-CSRF-Token",r[1]),s},w:Fe,x:vt,z:function(t,e,n={wait:null}){tn.set(t,{keypressed:!1,inputed:!1,timer:void 0,listener:e,wait:null!=n.wait?n.wait:100}),t.addEventListener("keydown",nn),t.addEventListener("keyup",on),t.addEventListener("input",rn)}});var a=function(t){function e(t){var o;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),(o=n(this,s(e).call(this,t))).name="QueryError",o.framesToPop=1,o}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&i(t,e)}(e,o(Error)),e}();function c(t,e,n){var o=n||HTMLElement,r=t.closest(e);if(r instanceof o)return r;throw new a("Element not found: <".concat(o.name,"> ").concat(e))}function l(t,e,n){var o=n||HTMLElement,r=t.querySelector(e);if(r instanceof o)return r;throw new a("Element not found: <".concat(o.name,"> ").concat(e))}function u(t,e,n){var o=n||HTMLElement,r=[],i=!0,s=!1,a=void 0;try{for(var c,l=t.querySelectorAll(e)[Symbol.iterator]();!(i=(c=l.next()).done);i=!0){var u=c.value;u instanceof o&&r.push(u)}}catch(d){s=!0,a=d}finally{try{i||null==l.return||l.return()}finally{if(s)throw a}}return r}function d(t,e){var n=t.getAttribute(e);if(null!=n)return n;throw new a("Attribute not found on element: ".concat(e))}const f=new WeakMap,h=(t("b0",t=>(...e)=>{const n=t(...e);return f.set(n,!0),n}),t=>"function"==typeof t&&f.has(t)),p=void 0!==window.customElements&&void 0!==window.customElements.polyfillWrapFlushCallback,m=(t,e,n=null)=>{for(;e!==n;){const n=e.nextSibling;t.removeChild(e),e=n}},g={},v={},w=`{{lit-${String(Math.random()).slice(2)}}}`,b=`\x3c!--${w}--\x3e`,y=new RegExp(`${w}|${b}`),E="$lit$";class _{constructor(t,e){this.parts=[],this.element=e;const n=[],o=[],r=document.createTreeWalker(e.content,133,null,!1);let i=0,s=-1,a=0;const{strings:c,values:{length:l}}=t;for(;a0;){const e=c[a],n=L.exec(e)[2],o=n.toLowerCase()+E,r=t.getAttribute(o);t.removeAttribute(o);const i=r.split(y);this.parts.push({type:"attribute",index:s,name:n,strings:i}),a+=i.length-1}}"TEMPLATE"===t.tagName&&(o.push(t),r.currentNode=t.content)}else if(3===t.nodeType){const e=t.data;if(e.indexOf(w)>=0){const o=t.parentNode,r=e.split(y),i=r.length-1;for(let e=0;e{const n=t.length-e.length;return n>=0&&t.slice(n)===e},x=t=>-1!==t.index,k=()=>document.createComment(""),L=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=\/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/;class A{constructor(t,e,n){this.__parts=[],this.template=t,this.processor=e,this.options=n}update(t){let e=0;for(const n of this.__parts)void 0!==n&&n.setValue(t[e]),e++;for(const n of this.__parts)void 0!==n&&n.commit()}_clone(){const t=p?this.template.element.content.cloneNode(!0):document.importNode(this.template.element.content,!0),e=[],n=this.template.parts,o=document.createTreeWalker(t,133,null,!1);let r,i=0,s=0,a=o.nextNode();for(;i-1||n)&&-1===t.indexOf("--\x3e",r+1);const i=L.exec(t);e+=null===i?t+(n?S:b):t.substr(0,i.index)+i[1]+i[2]+E+i[3]+w}return e+=this.strings[t]}getTemplateElement(){const t=document.createElement("template");return t.innerHTML=this.getHTML(),t}}const j=t("b1",t=>null===t||!("object"==typeof t||"function"==typeof t)),M=t=>Array.isArray(t)||!(!t||!t[Symbol.iterator]);class D{constructor(t,e,n){this.dirty=!0,this.element=t,this.name=e,this.strings=n,this.parts=[];for(let o=0;othis.handleEvent(t))}setValue(t){this.__pendingValue=t}commit(){for(;h(this.__pendingValue);){const t=this.__pendingValue;this.__pendingValue=g,t(this)}if(this.__pendingValue===g)return;const t=this.__pendingValue,e=this.value,n=null==t||null!=e&&(t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive),o=null!=t&&(null==e||n);n&&this.element.removeEventListener(this.eventName,this.__boundHandleEvent,this.__options),o&&(this.__options=F(t),this.element.addEventListener(this.eventName,this.__boundHandleEvent,this.__options)),this.value=t,this.__pendingValue=g}handleEvent(t){"function"==typeof this.value?this.value.call(this.eventContext||this.element,t):this.value.handleEvent(t)}}const F=t=>t&&(H?{capture:t.capture,passive:t.passive,once:t.once}:t.capture);const U=new class{handleAttributeExpressions(t,e,n,o){const r=e[0];return"."===r?new N(t,e.slice(1),n).parts:"@"===r?[new q(t,e.slice(1),o.eventContext)]:"?"===r?[new O(t,e.slice(1),n)]:new D(t,e,n).parts}handleTextExpression(t){return new P(t)}};function V(t){let e=W.get(t.type);void 0===e&&(e={stringsArray:new WeakMap,keyString:new Map},W.set(t.type,e));let n=e.stringsArray.get(t.strings);if(void 0!==n)return n;const o=t.strings.join(w);return void 0===(n=e.keyString.get(o))&&(n=new _(t,t.getTemplateElement()),e.keyString.set(o,n)),e.stringsArray.set(t.strings,n),n}const W=new Map,B=new WeakMap;t("c",(t,e,n)=>{let o=B.get(e);void 0===o&&(m(e,e.firstChild),B.set(e,o=new P(Object.assign({templateFactory:V},n))),o.appendInto(e)),o.setValue(t),o.commit()});(window.litHtmlVersions||(window.litHtmlVersions=[])).push("1.1.2");t("a",(t,...e)=>new C(t,e,"html",U));function X(){if(!(this instanceof X))return new X;this.size=0,this.uid=0,this.selectors=[],this.indexes=Object.create(this.indexes),this.activeIndexes=[]}var $=window.document.documentElement,G=$.matches||$.webkitMatchesSelector||$.mozMatchesSelector||$.oMatchesSelector||$.msMatchesSelector;X.prototype.matchesSelector=function(t,e){return G.call(t,e)},X.prototype.querySelectorAll=function(t,e){return e.querySelectorAll(t)},X.prototype.indexes=[];var K=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;X.prototype.indexes.push({name:"ID",selector:function(t){var e;if(e=t.match(K))return e[0].slice(1)},element:function(t){if(t.id)return[t.id]}});var Y=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;X.prototype.indexes.push({name:"CLASS",selector:function(t){var e;if(e=t.match(Y))return e[0].slice(1)},element:function(t){var e=t.className;if(e){if("string"==typeof e)return e.split(/\s/);if("object"==typeof e&&"baseVal"in e)return e.baseVal.split(/\s/)}}});var z,J=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;X.prototype.indexes.push({name:"TAG",selector:function(t){var e;if(e=t.match(J))return e[0].toUpperCase()},element:function(t){return[t.nodeName.toUpperCase()]}}),X.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},z="function"==typeof window.Map?window.Map:function(){function t(){this.map={}}return t.prototype.get=function(t){return this.map[t+" "]},t.prototype.set=function(t,e){this.map[t+" "]=e},t}();var Q=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function Z(t,e){var n,o,r,i,s,a,c=(t=t.slice(0).concat(t.default)).length,l=e,u=[];do{if(Q.exec(""),(r=Q.exec(l))&&(l=r[3],r[2]||!l))for(n=0;n3&&void 0!==arguments[3]?arguments[3]:{}).capture,r=o?ot:nt,i=r[t];i||(i=new X,r[t]=i,document.addEventListener(t,ht,o)),i.add(e,n)}function mt(t,e,n){return t.dispatchEvent(new CustomEvent(e,{bubbles:!0,cancelable:!0,detail:n}))}class gt extends Error{constructor(t,e){super(`${t} for HTTP ${e.status}`),this.response=e}}function vt(t,e){const n=t.createElement("template");return n.innerHTML=e,t.importNode(n.content,!0)}class wt extends Error{constructor(t){super(),this.response=t,this.framesToPop=1}}const bt=window.AbortError||class extends Error{};function yt(t,e){if(t.status>=200&&t.status<300)return t;{const n=t.statusText?` ${t.statusText}`:"";throw e.message=`HTTP ${t.status}${n}`,e}}function Et(t,e){const n=e?Object.assign({},e):{};n.credentials||(n.credentials="same-origin");const o=new Request(t,n);if(o.headers.append("X-Requested-With","XMLHttpRequest"),/#csrf-token=/.test(o.url))throw new TypeError("URL with encoded CSRF token was passed to fetch() without using the csrfRequest(url) helper");return o}async function _t(t,e){const n=await self.fetch(t);if(e&&e.aborted)throw new bt("The operation was aborted");return n}async function Tt(t,e){const n=Et(t,e),o=await _t(n,e&&e.signal);return yt(o,new wt(o)),o}async function xt(t,e){const n=Et(t,e),o=await _t(n,e&&e.signal);return yt(o,new wt(o)),o.text()}async function kt(t,e,n){const o=Et(e,n),r=await _t(o,n&&n.signal);return yt(r,new wt(r)),function(t,e){const n=e.headers.get("content-type")||"";if(!n.startsWith("text/html"))throw new gt(`expected response with text/html, but was ${n}`,e);const o=e.headers.get("x-html-safe");if(!o)throw new gt("missing X-HTML-Safe nonce",e);if(o!==t)throw new gt("response X-HTML-Safe nonce did not match",e)}(function(t){const e=t.querySelector("meta[name=html-safe-nonce]");if(null==e||!(e instanceof HTMLMetaElement))throw new Error("could not find html-safe-nonce on document");const n=e.content;if(n)return n;throw new Error("could not find html-safe-nonce on document")}(t),r),vt(t,await r.text())}var Lt=null,At=null,St=[];function Ct(t,e){var n=[];function o(){var t=n;n=[],e(t)}return function(){for(var e=arguments.length,r=Array(e),i=0;i{document.addEventListener("DOMContentLoaded",()=>{t()})})),re=t("k","complete"===document.readyState?Promise.resolve():new Promise(t=>{window.addEventListener("load",t)}));let ie=[];function se(t,e=!1){void 0===t.timestamp&&(t.timestamp=(new Date).getTime()),ie.push(t),e?ce():async function(){await re,null==ae&&(ae=window.requestIdleCallback(ce))}()}let ae=null;function ce(){if(ae=null,ne(document))return;const t=ee(document,"browser-stats-url");if(!t)return;const e=JSON.stringify({stats:ie});navigator.sendBeacon&&navigator.sendBeacon(t,e),ie=[]}var le;le="function"==typeof FormData&&"entries"in FormData.prototype?function(t){return Array.from(new FormData(t).entries())}:function(t){for(var e=[],n=t.elements,o=0;o",r),e.push([a,""])):e.push([a,r.value])}}return e};var ue=t("ax",le);function de(t){const e=t.closest("form");if(!(e instanceof HTMLFormElement))return;let n=fe(e);if(t.name){const o=t.matches("input[type=submit]")?"Submit":"",r=t.value||o;n||((n=document.createElement("input")).type="hidden",n.classList.add("is-submit-button-value"),e.prepend(n)),n.name=t.name,n.value=r}else n&&n.remove()}function fe(t){const e=t.querySelector("input.is-submit-button-value");return e instanceof HTMLInputElement?e:null}function he(t,e,n){return t.dispatchEvent(new CustomEvent(e,{bubbles:!0,cancelable:n}))}function pe(t,e){e&&(!function(t,e){if(!(t instanceof HTMLFormElement))throw new TypeError("The specified element is not of type HTMLFormElement.");if(!(e instanceof HTMLElement))throw new TypeError("The specified element is not of type HTMLElement.");if("submit"!==e.type)throw new TypeError("The specified element is not a submit button.");if(!t||t!==e.form)throw new Error("The specified element is not owned by the form element.")}(t,e),de(e)),he(t,"submit",!0)&&t.submit()}function me(t){if(!(t instanceof HTMLElement))return!1;const e=t.nodeName.toLowerCase(),n=(t.getAttribute("type")||"").toLowerCase();return"select"===e||"textarea"===e||"input"===e&&"submit"!==n&&"reset"!==n||t.isContentEditable}function ge(t){const e=new URLSearchParams;for(const[n,o]of ue(t))e.append(n,o);return e.toString()}pt("click","[data-hydro-click]",function(t){const e=t.currentTarget;se({hydroEventPayload:e.getAttribute("data-hydro-click")||"",hydroEventHmac:e.getAttribute("data-hydro-click-hmac")||"",hydroClientContext:e.getAttribute("data-hydro-client-context")||""},!0)});let ve=!1;const we=new X;function be(t){const e=t.target;if(e instanceof HTMLElement&&e.nodeType!==Node.DOCUMENT_NODE)for(const n of we.matches(e))n.data.call(null,e)}function ye(t,e){ve||(ve=!0,document.addEventListener("focus",be,!0)),we.add(t,e),document.activeElement&&document.activeElement.matches(t)&&e(document.activeElement)}const Ee=[];let _e,Te,xe=0;function ke(){return _e}function Le(){try{return Math.min(Math.max(0,history.length)||0,9007199254740991)}catch(sn){return 0}}function Ae(){return Le()-1+xe}function Se(t){_e=t;const e=location.href;Ee[Ae()]={url:e,state:_e},Ee.length=Le(),window.dispatchEvent(new CustomEvent("statechange",{bubbles:!1,cancelable:!1}))}function Ce(){return(new Date).getTime()}function je(t,e,n){xe=0;const o=Object.assign({},{_id:Ce()},t);history.pushState(o,e,n),Se(o)}function Me(t,e,n){const o=Object.assign({},{_id:ke()._id},t);history.replaceState(o,e,n),Se(o)}function De(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=[],o=!0,r=!1,i=void 0;try{for(var s,a=t[Symbol.iterator]();!(o=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);o=!0);}catch(c){r=!0,i=c}finally{try{o||null==a.return||a.return()}finally{if(r)throw i}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}_e=function(){const t={_id:(new Date).getTime()};return Se(t),t}(),window.addEventListener("popstate",function(t){const e=t.state;e&&e._id&&(e._id<(ke()._id||NaN)?xe--:xe++,Se(e))},!0),window.addEventListener("hashchange",function(){if(Le()>Ee.length){const t={_id:Ce()};history.replaceState(t,"",location.href),Se(t)}},!0);class Ie extends Error{constructor(t,e){super(t),this.response=e}}function Pe(){let t,e;return[new Promise(function(n,o){t=n,e=o}),t,e]}const Oe=[],Ne=[];function Re(t,e){Te||(Te=new X,document.addEventListener("submit",He)),Te.add(t,e)}function He(t){if(!(t.target instanceof HTMLFormElement))return;const e=t.target,n=Te&&Te.matches(e);if(!n||0===n.length)return;const o=function(t){const e={method:t.method||"GET",url:t.action,headers:new Headers({"X-Requested-With":"XMLHttpRequest"}),body:null};if("GET"===e.method.toUpperCase()){const n=function(t){const e=new URLSearchParams;for(const o of ue(t)){var n=De(o,2);const t=n[0],r=n[1];e.append(t,r)}return e.toString()}(t);n&&(e.url+=(~e.url.indexOf("?")?"&":"?")+n)}else e.body=new FormData(t);return e}(e),r=De(Pe(),3),i=r[0],s=r[1],a=r[2];t.preventDefault(),async function(t,e,n,o){let r=!1;for(const i of t){const t=Pe(),s=De(t,2),a=s[0],c=s[1],l=()=>(r=!0,c(),o),u={text:l,json:()=>(n.headers.set("Accept","application/json"),l()),html:()=>(n.headers.set("Accept","text/html"),l())};await Promise.race([a,i.data.call(null,e,u,n)])}return r}(n,e,o,i).then(async t=>{if(t){for(const t of Ne)await t(e);(async function(t){const e=await window.fetch(t.url,{method:t.method,body:null!==t.body?t.body:void 0,headers:t.headers,credentials:"same-origin"}),n={url:e.url,status:e.status,statusText:e.statusText,headers:e.headers,text:"",get json(){const t=JSON.parse(this.text);return delete this.json,this.json=t,this.json},get html(){return delete this.html,this.html=function(t,e){const n=t.createElement("template");return n.innerHTML=e,t.importNode(n.content,!0)}(document,this.text),this.html}},o=await e.text();if(n.text=o,e.ok)return n;throw new Ie("request failed",n)})(o).then(s,a).catch(()=>{}).then(()=>{for(const t of Oe)t(e)})}else e.submit()},t=>{e.submit(),setTimeout(()=>{throw t})})}function qe(t,e=0,{start:n=!0,middle:o=!0,once:r=!1}={}){var i,s=0,a=!1,c=function c(...l){if(!a){var u=Date.now()-s;s=Date.now(),n?(n=!1,t(...l),r&&c.cancel()):(o&&u{n.hasAttribute("open")||(mt(o,"dialog:remove"),n.remove())}),o}class Ue extends CustomEvent{constructor(t,e){super(t,e),this.relatedTarget=e.relatedTarget}}const Ve=new WeakMap;function We(t,e){const n=new XMLHttpRequest;return n.open("GET",e,!0),n.setRequestHeader("Accept","text/html; fragment"),function(t,e){const n=Ve.get(t);n&&n.abort();Ve.set(t,e);const o=()=>Ve.delete(t),r=function(t){return new Promise((e,n)=>{t.onload=function(){t.status>=200&&t.status<300?e(t.responseText):n(new Error(t.responseText))},t.onerror=n,t.send()})}(e);return r.then(o,o),r}(t,n)}function Be(t,e){(function(t,e){const n=t.scrollTop,o=n+t.clientHeight,r=e.offsetTop,i=r+e.clientHeight;return r>=n&&i<=o})(t,e)||(t.scrollTop=e.offsetTop)}let Xe=!1;const $e=!!navigator.userAgent.match(/Macintosh/);function Ge(t){if(t.shiftKey||t.metaKey||t.altKey)return;const e=t.currentTarget;if(!(e instanceof HTMLTextAreaElement||e instanceof HTMLInputElement))return;if(Xe)return;const n=document.getElementById(e.getAttribute("aria-owns")||"");if(n)switch(t.key){case"Enter":case"Tab":(function(t,e){const n=e.querySelector('[aria-selected="true"]');return!(!n||"true"!==n.getAttribute("aria-disabled")&&(n.click(),0))})(0,n)&&t.preventDefault();break;case"Escape":ze(e,n);break;case"ArrowDown":Ye(e,n,1),t.preventDefault();break;case"ArrowUp":Ye(e,n,-1),t.preventDefault();break;case"n":$e&&t.ctrlKey&&(Ye(e,n,1),t.preventDefault());break;case"p":$e&&t.ctrlKey&&(Ye(e,n,-1),t.preventDefault())}}function Ke(t){if(!(t.target instanceof Element))return;const e=t.target.closest('[role="option"]');e&&"true"!==e.getAttribute("aria-disabled")&&function(t){t.dispatchEvent(new CustomEvent("combobox-commit",{bubbles:!0}))}(e)}function Ye(t,e){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;const o=e.querySelector('[aria-selected="true"]'),r=Array.from(e.querySelectorAll('[role="option"]')),i=r.indexOf(o);let s=1===n?0:r.length-1;if(o&&i>=0){const t=i+n;t>=0&&t{clearTimeout(n),t(...r)},e)}}(this.onInputChange.bind(this),300),this.onResultsMouseDown=this.onResultsMouseDown.bind(this),this.onInputBlur=this.onInputBlur.bind(this),this.onInputFocus=this.onInputFocus.bind(this),this.onKeydown=this.onKeydown.bind(this),this.onCommit=this.onCommit.bind(this),this.input.addEventListener("keydown",this.onKeydown),this.input.addEventListener("focus",this.onInputFocus),this.input.addEventListener("blur",this.onInputBlur),this.input.addEventListener("input",this.onInputChange),this.results.addEventListener("mousedown",this.onResultsMouseDown),this.results.addEventListener("combobox-commit",this.onCommit)}destroy(){this.input.removeEventListener("keydown",this.onKeydown),this.input.removeEventListener("focus",this.onInputFocus),this.input.removeEventListener("blur",this.onInputBlur),this.input.removeEventListener("input",this.onInputChange),this.results.removeEventListener("mousedown",this.onResultsMouseDown),this.results.removeEventListener("combobox-commit",this.onCommit)}sibling(t){const e=Array.from(this.results.querySelectorAll('[role="option"]')),n=this.results.querySelector('[aria-selected="true"]'),o=e.indexOf(n),r=t?e[o+1]:e[o-1],i=t?e[0]:e[e.length-1];return r||i}onKeydown(t){"Escape"===t.key&&this.container.open&&(this.container.open=!1,t.stopPropagation(),t.preventDefault())}onInputFocus(){this.fetchResults()}onInputBlur(){this.interactingWithList?this.interactingWithList=!1:this.container.open=!1}onCommit(t){let{target:e}=t;const n=e;if(!(n instanceof HTMLElement))return;if(this.container.open=!1,n instanceof HTMLAnchorElement)return;const o=n.getAttribute("data-autocomplete-value")||n.textContent;this.container.value=o}onResultsMouseDown(){this.interactingWithList=!0}onInputChange(){this.container.removeAttribute("value"),this.fetchResults()}identifyOptions(){let t=0;for(const e of this.results.querySelectorAll('[role="option"]:not([id])'))e.id="".concat(this.results.id,"-option-").concat(t++)}fetchResults(){const t=this.input.value.trim();if(!t)return void(this.container.open=!1);const e=this.container.src;if(!e)return;const n=new URL(e,window.location.href),o=new URLSearchParams(n.search.slice(1));o.append("q",t),n.search=o.toString(),this.container.dispatchEvent(new CustomEvent("loadstart")),We(this.input,n.toString()).then(t=>{this.results.innerHTML=t,this.identifyOptions();const e=!!this.results.querySelector('[role="option"]');this.container.open=e,this.container.dispatchEvent(new CustomEvent("load")),this.container.dispatchEvent(new CustomEvent("loadend"))}).catch(()=>{this.container.dispatchEvent(new CustomEvent("error")),this.container.dispatchEvent(new CustomEvent("loadend"))})}open(){var t,e;this.results.hidden&&(t=this.input,e=this.results,t.addEventListener("compositionstart",Je),t.addEventListener("compositionend",Je),t.addEventListener("keydown",Ge),e.addEventListener("click",Ke),this.results.hidden=!1,this.container.setAttribute("aria-expanded","true"))}close(){var t,e;this.results.hidden||(t=this.input,e=this.results,t.removeAttribute("aria-activedescendant"),t.removeEventListener("compositionstart",Je),t.removeEventListener("compositionend",Je),t.removeEventListener("keydown",Ge),e.removeEventListener("click",Ke),this.results.hidden=!0,this.input.removeAttribute("aria-activedescendant"),this.container.setAttribute("aria-expanded","false"))}}const Ze=new WeakMap;class AutocompleteElement extends HTMLElement{constructor(){super()}connectedCallback(){const t=this.getAttribute("aria-owns");if(!t)return;const e=this.querySelector("input"),n=document.getElementById(t);e instanceof HTMLInputElement&&n&&(e.setAttribute("aria-owns",t),Ze.set(this,new Qe(this,e,n)),this.setAttribute("role","combobox"),this.setAttribute("aria-haspopup","listbox"),this.setAttribute("aria-expanded","false"),e.setAttribute("aria-autocomplete","list"),e.setAttribute("aria-controls",t),n.setAttribute("role","listbox"))}disconnectedCallback(){const t=Ze.get(this);t&&(t.destroy(),Ze.delete(this))}get src(){return this.getAttribute("src")||""}set src(t){this.setAttribute("src",t)}get value(){return this.getAttribute("value")||""}set value(t){this.setAttribute("value",t)}get open(){return this.hasAttribute("open")}set open(t){t?this.setAttribute("open",""):this.removeAttribute("open")}static get observedAttributes(){return["open","value"]}attributeChangedCallback(t,e,n){if(e===n)return;const o=Ze.get(this);if(o)switch(t){case"open":null===n?o.close():o.open();break;case"value":null!==n&&(o.input.value=n),this.dispatchEvent(new Ue("auto-complete-change",{bubbles:!0,relatedTarget:o.input}))}}}window.customElements.get("auto-complete")||(window.AutocompleteElement=AutocompleteElement,window.customElements.define("auto-complete",AutocompleteElement)),t("y",AutocompleteElement);const tn=new WeakMap;function en(t){const e=tn.get(t);e&&(null!=e.timer&&clearTimeout(e.timer),e.timer=window.setTimeout(()=>{null!=e.timer&&(e.timer=null),e.inputed=!1,e.listener.call(null,t)},e.wait))}function nn(t){const{currentTarget:e}=t;if(!(e&&e instanceof Element))return;const n=tn.get(e);n&&(n.keypressed=!0,null!=n.timer&&clearTimeout(n.timer))}function on(t){const{currentTarget:e}=t;if(!e||!(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement))return;const n=tn.get(e);n&&(n.keypressed=!1,n.inputed&&en(e))}function rn(t){const{currentTarget:e}=t;if(!e||!(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement))return;const n=tn.get(e);n&&(n.inputed=!0,n.keypressed||en(e))}function sn(t){const e="==".slice(0,(4-t.length%4)%4),n=t.replace(/-/g,"+").replace(/_/g,"/")+e,o=atob(n),r=new ArrayBuffer(o.length),i=new Uint8Array(r);for(let s=0;sun(t,e[0],n));if(e instanceof Object){const o={};for(const[r,i]of Object.entries(e))if(r in n)null!=n[r]?o[r]=un(t,i.schema,n[r]):o[r]=null;else if(i.required)throw new Error(`Missing key: ${r}`);return o}}function dn(t){return{required:!0,schema:t}}function fn(t){return{required:!1,schema:t}}const hn={type:dn(cn),id:dn(ln),transports:fn(cn)},pn={publicKey:dn({rp:dn(cn),user:dn({id:dn(ln),name:dn(cn),displayName:dn(cn),icon:fn(cn)}),challenge:dn(ln),pubKeyCredParams:dn(cn),timeout:fn(cn),excludeCredentials:fn([hn]),authenticatorSelection:fn(cn),attestation:fn(cn),extensions:fn(cn)}),signal:fn(cn)},mn={type:dn(cn),id:dn(cn),rawId:dn(ln),response:dn({clientDataJSON:dn(ln),attestationObject:dn(ln)})},gn={mediation:fn(cn),publicKey:dn({challenge:dn(ln),timeout:fn(cn),rpId:fn(cn),allowCredentials:fn([hn]),userVerification:fn(cn),extensions:fn(cn)}),signal:fn(cn)},vn={type:dn(cn),id:dn(cn),rawId:dn(ln),response:dn({clientDataJSON:dn(ln),authenticatorData:dn(ln),signature:dn(ln),userHandle:dn(ln)})};function wn(){return!!(navigator.credentials&&navigator.credentials.create&&navigator.credentials.get&&window.PublicKeyCredential)}function bn(){return"true"===ee(document,"u2f-enabled")}function yn(){return!!window.u2f}function En(){return wn()?"supported":"unsupported"}function _n(){return"true"===ee(document,"webauthn-registration-enabled")&&wn()}function Tn(){return"true"===ee(document,"webauthn-auth-enabled")&&wn()}t("G",{report(t){}});let xn=!1;let kn=!1;Re(".js-sudo-form",async function(t,e){try{await e.text()}catch(n){if(!n.response)throw n;let e;switch(n.response.status){case 401:e="Incorrect password.";break;case 429:e="Too many password attempts. Please wait and try again later.";break;default:e="Failed to receive a response. Please try again later."}return l(t,".js-sudo-error").textContent=e,l(t,".js-sudo-error").hidden=!1,void(l(t,".js-sudo-password",HTMLInputElement).value="")}kn=!0,c(t,"details").removeAttribute("open")}),function(){var t="chrome"in window&&window.navigator.userAgent.indexOf("Edge")<0;if(!("u2f"in window)&&t){var e,n=window.u2f={};n.EXTENSION_ID="kmendfapggjehodndflmmgagdbamhnfd",n.MessageTypes={U2F_REGISTER_REQUEST:"u2f_register_request",U2F_REGISTER_RESPONSE:"u2f_register_response",U2F_SIGN_REQUEST:"u2f_sign_request",U2F_SIGN_RESPONSE:"u2f_sign_response",U2F_GET_API_VERSION_REQUEST:"u2f_get_api_version_request",U2F_GET_API_VERSION_RESPONSE:"u2f_get_api_version_response"},n.ErrorCodes={OK:0,OTHER_ERROR:1,BAD_REQUEST:2,CONFIGURATION_UNSUPPORTED:3,DEVICE_INELIGIBLE:4,TIMEOUT:5},n.getMessagePort=function(t){if("undefined"!=typeof chrome&&chrome.runtime){var e={type:n.MessageTypes.U2F_SIGN_REQUEST,signRequests:[]};chrome.runtime.sendMessage(n.EXTENSION_ID,e,function(){chrome.runtime.lastError?n.getIframePort_(t):n.getChromeRuntimePort_(t)})}else n.isAndroidChrome_()?n.getAuthenticatorPort_(t):n.isIosChrome_()?n.getIosPort_(t):n.getIframePort_(t)},n.isAndroidChrome_=function(){var t=navigator.userAgent;return-1!=t.indexOf("Chrome")&&-1!=t.indexOf("Android")},n.isIosChrome_=function(){return["iPhone","iPad","iPod"].indexOf(navigator.platform)>-1},n.getChromeRuntimePort_=function(t){var e=chrome.runtime.connect(n.EXTENSION_ID,{includeTlsChannelId:!0});setTimeout(function(){t(new n.WrappedChromeRuntimePort_(e))},0)},n.getAuthenticatorPort_=function(t){setTimeout(function(){t(new n.WrappedAuthenticatorPort_)},0)},n.getIosPort_=function(t){setTimeout(function(){t(new n.WrappedIosPort_)},0)},n.WrappedChromeRuntimePort_=function(t){this.port_=t},n.formatSignRequest_=function(t,o,r,i,s){if(void 0===e||e<1.1){for(var a=[],c=0;ct.matches(":focus"))[0];let i=0;if(r){const t=n.indexOf(r);if(-1!==t){const e=t+o;e>=0&&(i=e%n.length)}}n[i].focus()}(t))}function Hn(t){return t.tabIndex>=0&&!t.disabled&&!t.hidden&&(!t.type||"hidden"!==t.type)&&!t.closest("[hidden]")}function qn(t){const e=t.querySelector("details-dialog");return!(e instanceof DetailsDialogElement)||e.dispatchEvent(new CustomEvent("details-dialog-close",{bubbles:!0,cancelable:!0}))}function Fn(t){if(!(t.currentTarget instanceof Element))return;const e=t.currentTarget.closest("details[open]");e&&(qn(e)||(t.preventDefault(),t.stopPropagation()))}function Un(t){const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.querySelector("details-dialog");if(n instanceof DetailsDialogElement)if(e.hasAttribute("open"))document.activeElement&&$n.set(n,{details:e,activeElement:document.activeElement}),Nn(n),e.addEventListener("keydown",Rn);else{for(const e of n.querySelectorAll("form"))e instanceof HTMLFormElement&&e.reset();const t=function(t,e){const n=$n.get(e);return n&&n.activeElement instanceof HTMLElement?n.activeElement:t.querySelector("summary")}(e,n);t&&t.focus(),e.removeEventListener("keydown",Rn)}}function Vn(t,e){e!==t.hasAttribute("open")&&(e?t.setAttribute("open",""):qn(t)&&t.removeAttribute("open"))}function Wn(t){const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.querySelector("details-dialog");if(!(n instanceof DetailsDialogElement))return;const o=n.querySelector("include-fragment:not([src])");if(!o)return;const r=n.src;null!==r&&(o.addEventListener("loadend",()=>{e.hasAttribute("open")&&Nn(n)}),o.setAttribute("src",r))}function Bn(t,e,n){Xn(t),e&&t.addEventListener("toggle",Wn,{once:!0}),e&&n&&t.addEventListener("mouseover",Wn,{once:!0})}function Xn(t){t.removeEventListener("toggle",Wn),t.removeEventListener("mouseover",Wn)}const $n=new WeakMap;class DetailsDialogElement extends HTMLElement{static get CLOSE_ATTR(){return Pn}static get CLOSE_SELECTOR(){return On}constructor(){super(),$n.set(this,{details:null,activeElement:null}),this.addEventListener("click",function(t){let{target:e}=t;if(!(e instanceof Element))return;const n=e.closest("details");n&&e.closest(On)&&Vn(n,!1)})}get src(){return this.getAttribute("src")}set src(t){this.setAttribute("src",t)}get preload(){return this.hasAttribute("preload")}set preload(t){t?this.setAttribute("preload",""):this.removeAttribute("preload")}connectedCallback(){this.setAttribute("role","dialog"),this.setAttribute("aria-modal","true");const t=$n.get(this);if(!t)return;const e=this.parentElement;if(!e)return;const n=e.querySelector("summary");n&&(n.hasAttribute("role")||n.setAttribute("role","button"),n.addEventListener("click",Fn,{capture:!0})),e.addEventListener("toggle",Un),t.details=e,Bn(e,this.src,this.preload)}disconnectedCallback(){const t=$n.get(this);if(!t)return;const{details:e}=t;if(!e)return;e.removeEventListener("toggle",Un),Xn(e);const n=e.querySelector("summary");n&&n.removeEventListener("click",Fn,{capture:!0}),t.details=null}toggle(t){const e=$n.get(this);if(!e)return;const{details:n}=e;n&&Vn(n,t)}static get observedAttributes(){return["src","preload"]}attributeChangedCallback(){const t=$n.get(this);if(!t)return;const{details:e}=t;e&&Bn(e,this.src,this.preload)}}t("ba",DetailsDialogElement),window.customElements.get("details-dialog")||(window.DetailsDialogElement=DetailsDialogElement,window.customElements.define("details-dialog",DetailsDialogElement));const Gn=new WeakMap;function Kn(t,e){setTimeout(function(){e.dispatchEvent(new Event(t))},0)}function Yn(t){return zn(t).then(function(e){const n=t.parentNode;n&&(t.insertAdjacentHTML("afterend",e),n.removeChild(t))},function(){t.classList.add("is-error")})}function zn(t){const e=t.src;let n=Gn.get(t);return n&&n.src===e?n.data:(n=e?t.load():Promise.reject(new Error("missing src")),Gn.set(t,{src:e,data:n}),n)}class IncludeFragmentElement extends HTMLElement{constructor(){super()}static get observedAttributes(){return["src"]}get src(){const t=this.getAttribute("src");if(t){const e=this.ownerDocument.createElement("a");return e.href=t,e.href}return""}set src(t){t?this.setAttribute("src",t):this.removeAttribute("src")}get data(){return zn(this)}attributeChangedCallback(t){"src"===t&&this._attached&&Yn(this)}connectedCallback(){this._attached=!0,this.src&&Yn(this)}disconnectedCallback(){this._attached=!1}request(){const t=this.src;if(!t)throw new Error("missing src");return new Request(t,{method:"GET",credentials:"same-origin",headers:{Accept:"text/html"}})}load(){return Promise.resolve().then(()=>(Kn("loadstart",this),this.fetch(this.request()))).then(t=>{if(200!==t.status)throw new Error("Failed to load resource: the server responded with a status of ".concat(t.status));const e=t.headers.get("Content-Type");if(!e||!e.match(/^text\/html/))throw new Error("Failed to load resource: expected text/html but was ".concat(e));return t}).then(t=>t.text()).then(t=>(Kn("load",this),Kn("loadend",this),t),t=>{throw Kn("error",this),Kn("loadend",this),t})}fetch(t){return fetch(t)}}t("O",IncludeFragmentElement),window.customElements.get("include-fragment")||(window.IncludeFragmentElement=IncludeFragmentElement,window.customElements.define("include-fragment",IncludeFragmentElement));class RemoteInputElement extends HTMLElement{static get observedAttributes(){return["src"]}attributeChangedCallback(t,e){e&&"src"===t&&Jn(this,!1)}connectedCallback(){const t=this.input;t&&(t.setAttribute("autocomplete","off"),t.setAttribute("spellcheck","false"),this.debounceInputChange=function(t){let e;return function(){clearTimeout(e),e=setTimeout(()=>{clearTimeout(e),t()},300)}}(()=>Jn(this)),this.boundFetchResults=(()=>Jn(this)),t.addEventListener("focus",this.boundFetchResults),t.addEventListener("change",this.boundFetchResults),t.addEventListener("input",this.debounceInputChange))}disconnectedCallback(){const t=this.input;t&&(t.removeEventListener("focus",this.boundFetchResults),t.removeEventListener("change",this.boundFetchResults),t.removeEventListener("input",this.debounceInputChange))}get input(){const t=this.querySelector("input, textarea");return t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement?t:null}get src(){return this.getAttribute("src")||""}set src(t){this.setAttribute("src",t)}}async function Jn(t){let e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];const n=t.input;if(!n)return;const o=n.value;if(e&&t.currentQuery===o)return;t.currentQuery=o;const r=t.src;if(!r)return;const i=document.getElementById(t.getAttribute("aria-owns")||"");if(!i)return;const s=new URL(r,window.location.href),a=new URLSearchParams(s.search);let c;a.append(t.getAttribute("param")||"q",o),s.search=a.toString(),t.dispatchEvent(new CustomEvent("loadstart")),t.setAttribute("loading","");let l=!1,u="";try{c=await fetch(s,{credentials:"same-origin",headers:{accept:"text/html; fragment"}}),u=await c.text(),t.dispatchEvent(new CustomEvent("load"))}catch(d){l=!0,t.dispatchEvent(new CustomEvent("error"))}t.removeAttribute("loading"),l||(c&&c.ok?(t.dispatchEvent(new CustomEvent("remote-input-success",{bubbles:!0})),i.innerHTML=u):t.dispatchEvent(new CustomEvent("remote-input-error",{bubbles:!0})),t.dispatchEvent(new CustomEvent("loadend")))}t("Y",RemoteInputElement),window.customElements.get("remote-input")||(window.RemoteInputElement=RemoteInputElement,window.customElements.define("remote-input",RemoteInputElement));const Qn=new WeakMap;let Zn=null;function to(t,e){return t.closest("task-lists")===e.closest("task-lists")}function eo(t){if(t.currentTarget!==t.target)return;const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.closest(".contains-task-list");if(!n)return;if(e.classList.add("is-ghost"),t.dataTransfer&&t.dataTransfer.setData("text/plain",e.textContent.trim()),!e.parentElement)return;const o=Array.from(e.parentElement.children),r=o.indexOf(e),i=Qn.get(e);i&&i.sortStarted(n),Zn={didDrop:!1,dragging:e,dropzone:e,sourceList:n,sourceSibling:o[r+1]||null,sourceIndex:r}}function no(t){if(!Zn)return;const e=t.currentTarget;e instanceof Element&&(to(Zn.dragging,e)?(t.preventDefault(),t.dataTransfer&&(t.dataTransfer.dropEffect="move"),Zn.dropzone!==e&&(Zn.dragging.classList.add("is-dragging"),Zn.dropzone=e,!function(t,e){if(t.parentNode===e.parentNode){let n=t;for(;n;){if(n===e)return!0;n=n.previousElementSibling}}return!1}(Zn.dragging,e)?e.after(Zn.dragging):e.before(Zn.dragging))):t.stopPropagation())}function oo(t){if(!Zn)return;t.preventDefault(),t.stopPropagation();const e=t.currentTarget;if(!(e instanceof Element))return;if(Zn.didDrop=!0,!Zn.dragging.parentElement)return;let n=Array.from(Zn.dragging.parentElement.children).indexOf(Zn.dragging);const o=e.closest(".contains-task-list");if(!o)return;if(Zn.sourceIndex===n&&Zn.sourceList===o)return;Zn.sourceList===o&&Zn.sourceIndex{const e=t.target;e instanceof HTMLInputElement&&e.classList.contains("task-list-item-checkbox")&&this.dispatchEvent(new CustomEvent("task-lists-check",{bubbles:!0,detail:{position:ho(e),checked:e.checked}}))}),so.set(this,new MutationObserver(go.bind(null,this)))}connectedCallback(){const t=so.get(this);t&&t.observe(this,{childList:!0,subtree:!0}),go(this)}disconnectedCallback(){const t=so.get(this);t&&t.disconnect()}get disabled(){return this.hasAttribute("disabled")}set disabled(t){t?this.setAttribute("disabled",""):this.removeAttribute("disabled")}get sortable(){return this.hasAttribute("sortable")}set sortable(t){t?this.setAttribute("sortable",""):this.removeAttribute("sortable")}static get observedAttributes(){return["disabled"]}attributeChangedCallback(t,e,n){if(e!==n)switch(t){case"disabled":vo(this)}}}const ao=document.createElement("template");ao.innerHTML='\n \n \n \n \n ';const co=new WeakMap;function lo(t){if(co.get(t))return;co.set(t,!0);const e=t.closest("task-lists");if(!(e instanceof TaskListsElement))return;if(e.querySelectorAll(".task-list-item").length<=1)return;const n=ao.content.cloneNode(!0),o=n.querySelector(".handle");if(t.prepend(n),!o)throw new Error("handle not found");o.addEventListener("mouseenter",_o),o.addEventListener("mouseleave",To),function(t,e,n){Qn.set(t,{sortStarted:e,sortFinished:n}),t.addEventListener("dragstart",eo),t.addEventListener("dragenter",no),t.addEventListener("dragend",ro),t.addEventListener("drop",oo),t.addEventListener("dragover",io)}(t,yo,Eo),t.addEventListener("mouseenter",uo),t.addEventListener("mouseleave",fo)}function uo(t){const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.closest("task-lists");n instanceof TaskListsElement&&n.sortable&&!n.disabled&&e.classList.add("hovered")}function fo(t){const e=t.currentTarget;e instanceof Element&&e.classList.remove("hovered")}function ho(t){const e=po(t);if(!e)throw new Error(".contains-task-list not found");const n=Array.from(e.children).indexOf(t.closest(".task-list-item"));return[wo(e),n]}function po(t){const e=t.parentElement;return e?e.closest(".contains-task-list"):null}function mo(t){return po(t)===function t(e){const n=po(e);return n?t(n)||n:null}(t)}function go(t){const e=t.querySelectorAll(".contains-task-list > .task-list-item");for(const n of e)mo(n)&&lo(n);vo(t)}function vo(t){for(const e of t.querySelectorAll(".task-list-item"))e.classList.toggle("enabled",!t.disabled);for(const e of t.querySelectorAll(".task-list-item-checkbox"))e instanceof HTMLInputElement&&(e.disabled=t.disabled)}function wo(t){const e=t.closest("task-lists");if(!e)throw new Error("parent not found");return Array.from(e.querySelectorAll("ol, ul")).indexOf(t)}const bo=new WeakMap;function yo(t){const e=t.closest("task-lists");if(!e)throw new Error("parent not found");bo.set(e,Array.from(e.querySelectorAll("ol, ul")))}function Eo(t){let{src:e,dst:n}=t;const o=e.list.closest("task-lists");if(!o)return;const r=bo.get(o);r&&(bo.delete(o),o.dispatchEvent(new CustomEvent("task-lists-move",{bubbles:!0,detail:{src:[r.indexOf(e.list),e.index],dst:[r.indexOf(n.list),n.index]}})))}function _o(t){const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.closest(".task-list-item");if(!n)return;const o=n.closest("task-lists");o instanceof TaskListsElement&&o.sortable&&!o.disabled&&n.setAttribute("draggable","true")}function To(t){if(Zn)return;const e=t.currentTarget;if(!(e instanceof Element))return;const n=e.closest(".task-list-item");n&&n.setAttribute("draggable","false")}function xo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ko(t,e){for(var n=0;n{const o={resolve:e,reject:n};this.previousReceiver=o,t.then(function(...t){o.resolve(...t)},function(...t){o.reject(...t)})})}}t("U",Uo);class Vo{constructor(t){this.closed=!1,this.unsubscribe=(()=>{t(),this.closed=!0})}}function Wo(t,e,n,o=!1){return t.addEventListener(e,n,o),new Vo(()=>{t.removeEventListener(e,n,o)})}function Bo(...t){return new Vo(()=>{for(const e of t)e.unsubscribe()})}function Xo(t,e=!1){return $o(t)||function(t,e){const n=function(t){if(Ko instanceof Element)return Ko;if(t&&t.ownerDocument&&t.ownerDocument.activeElement)return t.ownerDocument.activeElement;return null}(t);return null!=n&&!(e&&n===t)&&(me(n)&&n===t||t.contains(n)&&!function(t){if(!(Yo instanceof Element))return!1;const e=t.closest(zo);if(!e)return!1;const n=Yo.closest(zo);return e===n}(n))}(t,e)||function(t){return t.matches(":active")}(t)||function(t){return!(!t.closest(".is-dirty")&&!t.querySelector(".is-dirty"))}(t)}function $o(t){for(const e of t.querySelectorAll("input, textarea"))if((e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement)&&Go(e))return!0;return!1}function Go(t){if(t instanceof HTMLInputElement&&("checkbox"===t.type||"radio"===t.type)){if(t.checked!==t.defaultChecked)return!0}else if(t.value!==t.defaultValue)return!0;return!1}let Ko,Yo;document.addEventListener("mouseup",function(t){Yo=t.target});const zo="a[href], button, details:not([open]) summary";function Jo(t,e){return Qo(function(t){if(t.activeElement!==t.body)return t.activeElement;var e=t.querySelectorAll(":hover"),n=e.length;if(n)return e[n-1]}(t),e)}function Qo(t,e){var n=t;if(!n)return Promise.resolve(e());var o=n.ownerDocument.documentElement;var r=function(t){for(var e=[];t;){var n=t.getBoundingClientRect(),o=n.top,r=n.left;e.push({element:t,top:o,left:r}),t=t.parentElement}return e}(n);return Promise.resolve(e()).then(function(t){var e=function(t){for(var e=0;e{const o=vt(document,e.trim()),r=n&&t===t.ownerDocument.activeElement?o.querySelector("*"):null;for(const e of t.querySelectorAll(".js-updatable-content-preserve-scroll-position")){const t=d(e,"data-updatable-content-scroll-position-id");er.set(t,e.scrollTop)}t.replaceWith(o),r&&r.focus()})}const er=new Map;function nr(t){const e=document.querySelector(".sso-modal");e&&(e.classList.remove("success","error"),t?e.classList.add("success"):e.classList.add("error"))}te(".js-updatable-content-preserve-scroll-position",{constructor:HTMLElement,add(t){const e=t.getAttribute("data-updatable-content-scroll-position-id");if(!e)return;const n=er.get(e);null!=n&&(t.scrollTop=n)}}),te(".js-sso-modal-complete",function(t){if(window.opener&&window.opener.external.ssoComplete){const e=t.getAttribute("data-error"),n=t.getAttribute("data-expires-around");window.opener.external.ssoComplete({error:e,expiresAround:n}),window.close()}else{const e=t.getAttribute("data-fallback-url");e&&(window.location.href=e)}});let or=null;function rr(){or=null}function ir(t,e=location.hash){return sr(t,ar(e))}function sr(t,e){return""===e?null:t.getElementById(e)||t.getElementsByName(e)[0]}function ar(t){try{return decodeURIComponent(t.slice(1))}catch(e){return""}}function cr(t){if(t instanceof window.Window)return"window";if(t instanceof window.Document)return"#document";const e=[t.nodeName.toLowerCase()];if(!(t instanceof HTMLElement))throw new Error("invariant: target instanceof HTMLElement");const n=t.id;if(n&&e.push(`#${n}`),"function"==typeof t.getAttribute&&t.getAttribute("class")){const n=(t.getAttribute("class")||"").trim().split(/\s+/).join(".");n&&e.push(`.${n}`)}return e.join("")}const lr=new WeakMap;function ur(t,e){const n=function(t,e){const n=u(t,"link[rel=pjax-prefetch]",HTMLLinkElement);for(const o of n)if(o.href===e)return o}(t,e);if(n){const t=lr.get(n);return n.remove(),lr.delete(n),t}}const dr={container:null,push:!0,replace:!1,type:"GET",dataType:"html",scrollTo:0},fr=20;let hr;const pr=new Uo;function mr(t,e,n){return t.dispatchEvent(new CustomEvent(e,{bubbles:!0,cancelable:!0,detail:n}))}function gr(t){vr({url:t.url,container:t.container,replace:t.replace})}function vr(t){const e={url:"",container:null};if(Object.assign(e,dr,t),"string"!=typeof e.url)throw new Error("invariant: app/assets/modules/github/pjax.js:132");e.requestUrl=e.url;const n=xr(e.url),o=n.hash,r=e.container;if(!r)throw new Error("invariant: app/assets/modules/github/pjax.js:137");const i=Lr(r);if("GET"===e.type&&(n.search+=`${n.search?"&":""}_pjax=${encodeURIComponent(i)}`,e.url=n.toString()),hr||Me(hr={id:_r(),url:window.location.href,title:document.title,container:i,fragment:e.fragment},hr.title,hr.url),gr.options=e,"string"!=typeof e.requestUrl)throw new Error("invariant: app/assets/modules/github/pjax.js:273");let s=ur(r,e.requestUrl);if(!s){if(!e.url)throw new Error("invariant: app/assets/modules/github/pjax.js:277");s=Tt(e.url,{method:e.type,body:e.data,headers:{Accept:"text/html","X-PJAX":"true","X-PJAX-Container":i}})}if(!0===e.push&&!0!==e.replace){if(a=hr.id,c=Tr(r),jr[a]=c,Dr.push(a),Ir(Mr,0),Ir(Dr,fr),"string"!=typeof e.requestUrl)throw new Error("invariant: app/assets/modules/github/pjax.js:292");je(null,"",e.requestUrl)}var a,c;mr(r,"pjax:start",{url:e.url}),mr(r,"pjax:send"),pr.push(s).then(async function(t){const n=hr,s=function(){for(const t of document.getElementsByTagName("meta")){const e=t.getAttribute("http-equiv");if(e&&"X-PJAX-VERSION"===e.toUpperCase())return t.content}}(),a=t.headers.get("X-PJAX-Version"),c=function(t,e,n){if("string"!=typeof n.requestUrl)throw new Error("invariant: app/assets/modules/github/pjax.js:540");const o={url:Cr(e,n.requestUrl),title:""},r=/]*>([\s\S.]*)<\/head>/i),n=t.match(/]*>([\s\S.]*)<\/body>/i);i=e?Array.from(vt(document,e[0]).childNodes):[],s=n?Array.from(vt(document,n[0]).childNodes):[]}else i=s=Array.from(vt(document,t).childNodes);if(0===s.length)return o;const a=Ar(i,"title",HTMLTitleElement);let c;if(o.title=a.length>0?a[a.length-1].textContent:"",n.fragment){if("body"===n.fragment)c=s;else{const t=Ar(s,n.fragment,Element);c=t.length>0?[t[0]]:[]}if(c.length&&("body"===n.fragment?o.contents=c:o.contents=c.flatMap(t=>Array.from(t.childNodes)),!o.title)){const t=c[0];t instanceof Element&&(o.title=t.getAttribute("title")||t.getAttribute("data-title")||"")}}else r||(o.contents=s);if(o.contents){o.contents=o.contents.filter(function(t){return!(t instanceof Element&&t.matches("title"))});for(const e of o.contents)if(e instanceof Element)for(const t of e.querySelectorAll("title"))t.remove();const t=Ar(o.contents,"script[src]",HTMLScriptElement);for(const e of t)e.remove();if(o.scripts=t,!o.contents)throw new Error("invariant: app/assets/modules/github/pjax.js:632");o.contents=o.contents.filter(e=>-1===t.indexOf(e))}return o.title&&(o.title=o.title.trim()),o}(await t.text(),t,e),{contents:l}=c,d=xr(c.url);if(o&&(d.hash=o,c.url=d.href),s&&a&&s!==a)return void wr(c.url);if(!l)return void wr(c.url);hr={id:null!=e.id?e.id:_r(),url:c.url,title:c.title,container:i,fragment:e.fragment},!0!==e.push&&!0!==e.replace||Me(hr,c.title,c.url);const f=document.activeElement,h=null!=e.container&&e.container.contains(f);if(f&&h)try{f.blur()}catch(sn){}c.title&&(document.title=c.title),mr(r,"pjax:beforeReplace",{contents:l,state:hr,previousState:n}),Sr(r,l);const p=u(r,"input[autofocus], textarea[autofocus]").pop();p&&document.activeElement!==p&&p.focus(),function(t){if(!t)return;const e=u(document,"script[src]",HTMLScriptElement);for(const n of t){const{src:t}=n;if(e.some(e=>e.src===t))return;const o=document.createElement("script"),r=n.getAttribute("type");r&&(o.type=r),o.src=t,document.head&&document.head.appendChild(o)}}(c.scripts);let m=e.scrollTo;if(o){const t=ir(document,o);t&&(m=t.getBoundingClientRect().top+window.pageYOffset)}"number"==typeof m&&window.scrollTo(window.pageXOffset,m),mr(r,"pjax:success"),mr(r,"pjax:complete"),mr(r,"pjax:end")},function(t){let n=e.requestUrl;if("string"!=typeof n)throw new Error("invariant: app/assets/modules/github/pjax.js:150");t.response&&(n=Cr(t.response,n));const o=mr(r,"pjax:error");"GET"===e.type&&o&&wr(n),mr(r,"pjax:complete"),mr(r,"pjax:end")})}function wr(t){hr&&Me(null,"",hr.url),window.location.replace(t)}let br=!0;const yr=window.location.href,Er=window.history.state;function _r(){return(new Date).getTime()}function Tr(t){const e=t.cloneNode(!0);return[Lr(t),Array.from(e.childNodes),Date.now()]}function xr(t){const e=document.createElement("a");return e.href=t,e}function kr(t){return t.href.replace(/#.*/,"")}function Lr(t){if(t.id)return`#${t.id}`;throw new Error("pjax container has no id")}function Ar(t,e,n){let o=[];for(const r of t)r instanceof Element&&(r instanceof n&&r.matches(e)&&o.push(r),o=o.concat(u(r,e,n)));return o}function Sr(t,e){t.innerHTML="";for(const n of e)null!=n&&t.appendChild(n)}function Cr(t,e){const n=t.headers.get("X-PJAX-URL");return n?((o=xr(n)).search=o.search.replace(/([?&])(_pjax|_)=[^&]*/g,""),o.href.replace(/\?($|#)/,"$1")):e;var o}Er&&Er.container&&(hr=Er),"state"in window.history&&(br=!1);const jr={},Mr=[],Dr=[];function Ir(t,e){for(;t.length>e;)delete jr[t.shift()]}function Pr(t){return!function(t){return t.offsetWidth<=0&&t.offsetHeight<=0}(t)}window.addEventListener("popstate",function(t){br||pr.push(Promise.resolve(new Response));const e=hr,n=t.state;let o;if(n&&n.container){if(br&&yr===n.url)return;if(e){if(e.id===n.id)return;o=e.id{Or.length=Nr=0});let qr=window.location.href;window.addEventListener("popstate",function(){qr=window.location.href}),window.addEventListener("hashchange",function(t){const e=window.location.href;try{Hr(Or,t.oldURL||qr,e)}finally{qr=e}});let Fr=null;document.addEventListener("pjax:start",function(){Fr=window.location.href}),document.addEventListener("pjax:end",function(){Hr(Or,Fr,window.location.href)}),function(){var t=function(t){this.w=t||[]};t.prototype.set=function(t){this.w[t]=!0},t.prototype.encode=function(){for(var t=[],e=0;e<\/script>')):((n=T.createElement("script")).type="text/javascript",n.async=!0,n.src=t,o&&(n.onload=o),e&&(n.id=e),(t=T.getElementsByTagName("script")[0]).parentNode.insertBefore(n,t)))},v=function(){return"https:"==T.location.protocol},w=function(t,e){return(t=t.match("(?:&|#|\\?)"+h(e).replace(/([.*+?^=!:${}()|\[\]\/\\])/g,"\\$1")+"=([^]*)"))&&2==t.length?t[1]:""},b=function(){var t=""+T.location.hostname;return 0==t.indexOf("www.")?t.substring(4):t},y=function(t,e){if(1==e.length&&null!=e[0]&&"object"==typeof e[0])return e[0];for(var n={},o=Math.min(t.length+1,e.length),r=0;r=e.length)P(t,e,n);else{if(!(8192>=e.length))throw R("len",e.length),new D(e.length);N(t,e,n)||O(t,e,n)||P(t,e,n)}},P=function(t,e,n){var o=d(t+"?"+e);o.onload=o.onerror=function(){o.onload=null,o.onerror=null,n()}},O=function(t,e,n){var o=_.XMLHttpRequest;if(!o)return!1;var r=new o;return"withCredentials"in r&&(r.open("POST",t,!0),r.withCredentials=!0,r.setRequestHeader("Content-Type","text/plain"),r.onreadystatechange=function(){4==r.readyState&&(n(),r=null)},r.send(e),!0)},N=function(t,e,n){return!!_.navigator.sendBeacon&&(!!_.navigator.sendBeacon(t,e)&&(n(),!0))},R=function(t,e,n){1<=100*Math.random()||k("?")||(t=["t=error","_e="+t,"_v=j48","sr=1"],e&&t.push("_f="+e),n&&t.push("_m="+h(n.substring(0,100))),t.push("aip=1"),t.push("z="+Y()),P(M()+"/collect",t.join("&"),f))},H=function(t){var e=_.gaData=_.gaData||{};return e[t]=e[t]||{}},q=function(){this.M=[]};function F(t){if(100!=t.get(Ne)&&to(et(t,Te))%1e4>=100*nt(t,Ne))throw"abort"}function U(t){if(k(et(t,Le)))throw"abort"}function V(){var t=T.location.protocol;if("http:"!=t&&"https:"!=t)throw"abort"}function W(t){try{_.navigator.sendBeacon?n(42):_.XMLHttpRequest&&"withCredentials"in new _.XMLHttpRequest&&n(40)}catch(hn){}t.set(ie,r(t),!0),t.set(yt,nt(t,yt)+1);var e=[];Z.map(function(n,o){o.F&&(null!=(n=t.get(n))&&n!=o.defaultValue&&("boolean"==typeof n&&(n*=1),e.push(o.F+"="+h(""+n))))}),e.push("z="+z()),t.set(vt,e.join("&"),!0)}function B(t){var e=et(t,qe)||M()+"/collect",n=et(t,bt);if(!n&&t.get(wt)&&(n="beacon"),n){var o=et(t,vt),r=(r=t.get(gt))||f;"image"==n?P(e,o,r):"xhr"==n&&O(e,o,r)||"beacon"==n&&N(e,o,r)||I(e,o,r)}else I(e,et(t,vt),t.get(gt));e=t.get(Le),n=(e=H(e)).hitcount,e.hitcount=n?n+1:1,e=t.get(Le),delete H(e).pending_experiments,t.set(gt,f,!0)}function X(t){var e;(_.gaData=_.gaData||{}).expId&&t.set(zt,(_.gaData=_.gaData||{}).expId),(_.gaData=_.gaData||{}).expVar&&t.set(Jt,(_.gaData=_.gaData||{}).expVar);var n=t.get(Le);if(n=H(n).pending_experiments){var o=[];for(e in n)n.hasOwnProperty(e)&&n[e]&&o.push(encodeURIComponent(e)+"."+encodeURIComponent(n[e]));e=o.join("!")}else e=void 0;e&&t.set(Qt,e,!0)}function $(){if(_.navigator&&"preview"==_.navigator.loadPurpose)throw"abort"}function G(t){var e=_.gaDevIds;a(e)&&0!=e.length&&t.set("&did",e.join(","),!0)}function K(t){if(!t.get(Le))throw"abort"}q.prototype.add=function(t){this.M.push(t)},q.prototype.D=function(t){try{for(var e=0;e=o)throw"abort";t.set(re,--o)}t.set(ne,++e)}var Q=function(){this.data=new E},Z=new E,tt=[];Q.prototype.get=function(t){var e=it(t),n=this.data.get(t);return e&&null==n&&(n=s(e.defaultValue)?e.defaultValue():e.defaultValue),e&&e.Z?e.Z(this,t,n):n};var et=function(t,e){return null==(t=t.get(e))?"":""+t},nt=function(t,e){return null==(t=t.get(e))||""===t?0:1*t};Q.prototype.set=function(t,e,n){if(t)if("object"==typeof t)for(var o in t)t.hasOwnProperty(o)&&ot(this,o,t[o],n);else ot(this,t,e,n)};var ot=function(t,e,n,o){if(null!=n)switch(e){case Le:Cn.test(n)}var r=it(e);r&&r.o?r.o(t,e,n,o):t.data.set(e,n,o)},rt=function(t,e,n,o,r){this.name=t,this.F=e,this.Z=o,this.o=r,this.defaultValue=n},it=function(t){var e=Z.get(t);if(!e)for(var n=0;nn)&&(t[e]=void 0)},Ke=function(t){return function(e){if("pageview"==e.get(mt)&&!t.I){t.I=!0;var n=function(t){var e=Math.min(nt(t,Re),100);return!(to(et(t,Te))%100>=e)}(e);e=0=t&&o.push({hash:s[0],R:r[i],O:s})}if(0!=o.length)return 1==o.length?o[0]:an(e,o)||an(n,o)||an(null,o)||o[0]}function an(t,e){var n;null==t?n=t=1:(n=to(t),t=to(l(t,".")?t.substring(1):"."+t));for(var o=0;or.length)){o=[];for(var i=0;i=a[0]||0>=a[1]?"":a.join("x"),t.set(St,o),t.set(jt,function(){var t,e,n;if((n=(n=_.navigator)?n.plugins:null)&&n.length)for(var o=0;oarguments.length||("string"==typeof arguments[0]?(e=arguments[0],o=[].slice.call(arguments,1)):(e=arguments[0]&&arguments[0][mt],o=arguments),e&&((o=y(In[e]||[],o))[mt]=e,this.b.set(o,void 0,!0),this.filters.D(this.b),this.b.data.m={},We(this.ra,this.b)&&function(t){var e=_.performance;if(e&&e.getEntriesByName){n(35);var o="https://www.google-analytics.com/analytics.js?wpid="+t;g(o,void 0,void 0,function(){try{var r=1,i=e.getEntriesByName("https://www.google-analytics.com/analytics.js");i&&0!=i.length||(i=e.getEntriesByName("http://www.google-analytics.com/analytics.js"),r=0);var s=e.getEntriesByName(o);if(i&&1==i.length&&s&&1==s.length){n(37);var a=i[0],c=s[0],l={tid:t,ad:Sn(a.duration),bd:Sn(c.duration),ar:Sn(a.responseEnd-a.requestStart),br:Sn(c.responseEnd-c.requestStart),an:Sn(a.domainLookupEnd-a.domainLookupStart),bn:Sn(c.domainLookupEnd-c.domainLookupStart),ac:Sn(a.connectEnd-a.connectStart),bc:Sn(c.connectEnd-c.connectStart),as:r};for(var u in(r=[]).push("_v=j48"),r.push("id=10"),l)l.hasOwnProperty(u)&&r.push(u+"="+h(l[u]));r.push("z="+Y()),P("https://www.google-analytics.com/u/d",r.join("&"),f)}}catch(d){}})}}(this.b.get(Le))))},jn.prototype.ma=function(t,e){var n=this;Wn(t,n,e)||(Xn(t,function(){Wn(t,n,e)}),Bn(String(n.get(_e)),t,void 0,e,!0))};var Pn,On,Nn,Rn,Hn=function(t){return"prerender"!=T.visibilityState&&(t(),!0)},qn=function(t){if(!Hn(t)){n(16);var e=!1,o=function(){if(!e&&Hn(t)){e=!0;var n=o,r=T;r.removeEventListener?r.removeEventListener("visibilitychange",n,!1):r.detachEvent&&r.detachEvent("onvisibilitychange",n)}};p(T,"visibilitychange",o)}},Fn=/^(?:(\w+)\.)?(?:(\w+):)?(\w+)$/,Un=function(t){if(s(t[0]))this.u=t[0];else{var e=Fn.exec(t[0]);if(null!=e&&4==e.length&&(this.c=e[1]||"t0",this.K=e[2]||"",this.C=e[3],this.a=[].slice.call(t,1),this.K||(this.A="create"==this.C,this.i="require"==this.C,this.g="provide"==this.C,this.ba="remove"==this.C),this.i&&(3<=this.a.length?(this.X=this.a[1],this.W=this.a[2]):this.a[1]&&(c(this.a[1])?this.X=this.a[1]:this.W=this.a[1]))),e=t[1],t=t[2],!this.C)throw"abort";if(this.i&&(!c(e)||""==e))throw"abort";if(this.g&&(!c(e)||""==e||!s(t)))throw"abort";if(Vn(this.c)||Vn(this.K))throw"abort";if(this.g&&"t0"!=this.c)throw"abort"}};function Vn(t){return 0<=t.indexOf(".")||0<=t.indexOf(":")}Pn=new E,Nn=new E,Rn=new E,On={ec:45,ecommerce:46,linkid:47};var Wn=function(t,e,n){e==zn||e.get(_e);var o=Pn.get(t);return!!s(o)&&(e.plugins_=e.plugins_||new E,!!e.plugins_.get(t)||(e.plugins_.set(t,new o(e,n||{})),!0))},Bn=function(t,e,o,r,i){if(!s(Pn.get(e))&&!Nn.get(e)){if(On.hasOwnProperty(e)&&n(On[e]),wn.test(e)){if(n(52),!(t=zn.j(t)))return!0;r={id:e,B:(o=r||{}).dataLayer||"dataLayer",ia:!!t.get("anonymizeIp"),na:i,G:!1},t.get(">m")==e&&(r.G=!0);var a=String(t.get("name"));"t0"!=a&&(r.target=a),k(String(t.get("trackingId")))||(r.ja=String(t.get(Te)),r.ka=Number(t.get(xe)),o=o.palindrome?yn:bn,o=(o=T.cookie.replace(/^|(; +)/g,";").match(o))?o.sort().join("").substring(1):void 0,r.la=o,r.qa=w(t.b.get(Et)||"","gclid")),t=r.B,o=(new Date).getTime(),_[t]=_[t]||[],o={"gtm.start":o},i||(o.event="gtm.js"),_[t].push(o),o=function(t){function e(t,e){e&&(n+="&"+t+"="+h(e))}var n="https://www.google-analytics.com/gtm/js?id="+h(t.id);return"dataLayer"!=t.B&&e("l",t.B),e("t",t.target),e("cid",t.ja),e("cidt",t.ka),e("gac",t.la),e("aip",t.ia),t.na&&e("m","sync"),e("cycle",t.G),t.qa&&e("gclid",t.qa),n}(r)}!o&&On.hasOwnProperty(e)?(n(39),o=e+".js"):n(43),o&&(o&&0<=o.indexOf("/")||(o=(dt||v()?"https:":"http:")+"//www.google-analytics.com/plugins/ua/"+o),t=(r=Kn(o)).protocol,o=T.location.protocol,("https:"==t||t==o||"http:"==t&&"http:"==o)&&Gn(r)&&(g(r.url,void 0,i),Nn.set(e,!0)))}},Xn=function(t,e){var n=Rn.get(t)||[];n.push(e),Rn.set(t,n)},$n=function(t,e){Pn.set(t,e),e=Rn.get(t)||[];for(var n=0;nt.split("/")[0].indexOf(":")&&(t=s+r[2].substring(0,r[2].lastIndexOf("/"))+"/"+t),n.href=t,o=e(n),{protocol:(n.protocol||"").toLowerCase(),host:o[0],port:o[1],path:o[2],query:n.search||"",url:t||""}},Yn={ga:function(){Yn.f=[]}};Yn.ga(),Yn.D=function(t){var e=Yn.J.apply(Yn,arguments);e=Yn.f.concat(e);for(Yn.f=[];0o;o++){var r=e[o].src;if(r&&0==r.indexOf("https://www.google-analytics.com/analytics")){n(33),e=!0;break t}}e=!1}e&&(dt=!0)}v()||dt||!We(new Ve(1e4))||(n(36),dt=!0),(_.gaplugins=_.gaplugins||{}).Linker=dn,e=dn.prototype,$n("linker",dn),Ue("decorate",e,e.ca,20),Ue("autoLink",e,e.S,25),$n("displayfeatures",Ln),$n("adfeatures",Ln),t=t&&t.q,a(t)?Yn.D.apply(zn,t):n(50)}},zn.da=function(){for(var t=zn.getAll(),e=0;e>21:o;return o}Zn&&Zn.r?Qn():qn(Qn),qn(function(){Yn.D(["provide","render",f])})}(window),function(){var t=window,e="push",n="length",o="prototype",r=function(t){if(t.get&&t.set){this.clear();var e=t.get("buildHitTask");t.set("buildHitTask",d(this,e)),t.set("_rlt",f(this,t.get("_rlt")))}},i={action:"pa",promoAction:"promoa",id:"ti",affiliation:"ta",revenue:"tr",tax:"tt",shipping:"ts",coupon:"tcc",step:"cos",label:"col",option:"col",options:"col",list:"pal",listSource:"pls"},s={id:"id",name:"nm",brand:"br",category:"ca",variant:"va",position:"ps",price:"pr",quantity:"qt",coupon:"cc","dimension(\\d+)":"cd","metric(\\d+)":"cm"},a={id:"id",name:"nm",creative:"cr",position:"ps"},c=function(t,e){this.name=t,this.source=e,this.e=[]},l="detail checkout checkout_option click add remove purchase refund".split(" ");r[o].clear=function(){this.b=void 0,this.f=[],this.a=[],this.g=[],this.d=void 0},r[o].h=function(t,e){var n=e||{};"promo_click"==t?n.promoAction="click":n.action=t,this.b=h(n)},r[o].j=function(t){(t=h(t))&&this.f[e](t)},r[o].i=function(t){var o=h(t);if(o){var r,i=t.list||"";t=t.listSource||"";for(var s=0;s{o.style.display="",o.style.visibility="",t&&Wr(o,function(){o.style.height=""})},{once:!0}),o.style.boxSizing="content-box",o.style.display="block",o.style.visibility="visible",t&&Wr(o,function(){o.style.height=getComputedStyle(o).height}),o.offsetHeight)}e();for(const o of n)if(o instanceof HTMLElement&&Vr(o)){const t=getComputedStyle(o).height;o.style.boxSizing="",o.style.height="0px"===t?`${o.scrollHeight}px`:"0px"}}(o,()=>{const n=null!=e?e:!o.classList.contains("open");o.classList.toggle("open",n),o.classList.toggle("Details--on",n),t.setAttribute("aria-expanded",n.toString()),Promise.resolve().then(()=>{!function(t){const e=t.querySelectorAll("input[autofocus], textarea[autofocus]"),n=e[e.length-1];n instanceof HTMLElement&&document.activeElement!==n&&n.focus()}(o),function(t){t.classList.contains("tooltipped")&&(t.classList.remove("tooltipped"),t.addEventListener("mouseleave",()=>{t.classList.add("tooltipped"),t instanceof HTMLElement&&t.blur()},{once:!0}))}(t),function(t){const e=t.closest(".js-edit-repository-meta");e instanceof HTMLFormElement&&e.reset()}(t);const e=new CustomEvent("details:toggled",{bubbles:!0,cancelable:!1,detail:{open:o.classList.contains("Details--on")}});o.dispatchEvent(e)})})}function Xr(t){let e=!1,n=t.parentElement;for(;n;)n.classList.contains("Details-content--shown")&&(e=!0),n.classList.contains("js-details-container")&&(n.classList.toggle("open",!e),n.classList.toggle("Details--on",!e),e=!1),n=n.parentElement}function $r(t){let e=t;const n=e.ownerDocument;if(!n)return;if(!e.offsetParent)return;const o=n.defaultView.HTMLElement;if(e!==n.body){for(;e!==n.body;){if(!(e.parentElement instanceof o))return;e=e.parentElement;const{position:t,overflowY:n,overflowX:r}=getComputedStyle(e);if("fixed"===t||"auto"===n||"auto"===r||"scroll"===n||"scroll"===r)break}return e instanceof Document?null:e}}function Gr(t,e){let n=e;const o=t.ownerDocument;if(!o)return;if(!o.body)return;const r=o.documentElement;if(!r)return;if(t===r)return;const i=Kr(t,n);if(!i)return;const s=(n=i._container)===o.documentElement?{top:o.defaultView.pageYOffset,left:o.defaultView.pageXOffset}:{top:n.scrollTop,left:n.scrollLeft},a=i.top-s.top,c=i.left-s.left,l=n.clientHeight,u=n.clientWidth;return{top:a,left:c,bottom:l-(a+t.offsetHeight),right:u-(c+t.offsetWidth),height:l,width:u}}function Kr(t,e){let n=t;const o=n.ownerDocument;if(!o)return;const r=o.documentElement;if(!r)return;const i=o.body;if(!i)return;const s=o.defaultView.HTMLElement;let a=0,c=0;const l=n.offsetHeight,u=n.offsetWidth;for(;n!==o.body&&n!==e;){if(a+=n.offsetTop||0,c+=n.offsetLeft||0,!(n.offsetParent instanceof s))return;n=n.offsetParent}let d,f,h;if(e&&e!==o&&e!==o.defaultView&&e!==o.documentElement&&e!==o.body){if(!(e instanceof s))return;h=e,d=e.scrollHeight,f=e.scrollWidth}else h=r,d=function(t,e){return Math.max(t.scrollHeight,e.scrollHeight,t.offsetHeight,e.offsetHeight,e.clientHeight)}(i,r),f=function(t,e){return Math.max(t.scrollWidth,e.scrollWidth,t.offsetWidth,e.offsetWidth,e.clientWidth)}(i,r);return{top:a,left:c,bottom:d-(a+l),right:f-(c+u),_container:h}}function Yr(t,e){let n=t;const o=t.ownerDocument;n!==o&&n!==o.defaultView&&n!==o.documentElement&&n!==o.body||(n=o);const r=o.defaultView.Document,i=o.defaultView.HTMLElement;if(n instanceof r){const t=null!=e.top?e.top:o.defaultView.pageYOffset,n=null!=e.left?e.left:o.defaultView.pageXOffset;o.defaultView.scrollTo(n,t)}else{if(!(n instanceof i))throw new Error("container is not HTMLElement");n.scrollTop=e.top,null!=e.left&&(n.scrollLeft=e.left)}}pt("click",".js-details-target",function(t){const{currentTarget:e}=t;e instanceof HTMLElement&&(Br(e),t.preventDefault())}),Rr(function({target:t}){t&&Xr(t)});const zr=navigator.userAgent.match(/Macintosh/),Jr=zr?"metaKey":"ctrlKey",Qr=zr?"Meta":"Control";let Zr=!1,ti={x:0,y:0};function ei(t){t instanceof MouseEvent&&(ti.x===t.clientX&&ti.y===t.clientY||(Zr=!1),ti={x:t.clientX,y:t.clientY})}function ni(t){if(Zr)return;const e=t.currentTarget,{target:n}=t;if(!(n instanceof Element&&e instanceof HTMLElement&&e.closest(".js-active-navigation-container")))return;const o=n.closest(".js-navigation-item");o&&hi(o,e)}te(".js-navigation-container:not(.js-navigation-container-no-mouse)",{subscribe:t=>Bo(Wo(t,"mouseover",ei),Wo(t,"mouseover",ni))});let oi=0;function ri(t){if(t.target!==document.body&&t.target instanceof HTMLElement&&!t.target.classList.contains("js-navigation-enable"))return;Zr=!0;const e=pi();let n=!1;if(e){n=mt(e.querySelector('.js-navigation-item[aria-selected="true"]')||e,"navigation:keydown",{hotkey:Mo(t),originalEvent:t,originalTarget:t.target})}n||t.preventDefault()}function ii(t){mt(t.currentTarget,"navigation:open",{modifierKey:t.modifierKey||t.altKey||t.ctrlKey||t.metaKey,shiftKey:t.shiftKey})||t.preventDefault()}function si(t){const e=pi();t!==e&&(e&&ai(e),t.classList.add("js-active-navigation-container"))}function ai(t){t.classList.remove("js-active-navigation-container")}function ci(t,e){e||(e=t);const n=mi(t)[0],o=e.closest(".js-navigation-item")||n;if(si(t),o instanceof HTMLElement){if(hi(o,t))return;const e=$r(o);if(!e)throw new Error("invariant: app/assets/modules/github/navigation.js:481");wi(e,o)}}function li(t){const e=t.querySelectorAll(".js-navigation-item[aria-selected]");for(const n of e)n.classList.remove("navigation-focus"),n.setAttribute("aria-selected","false")}function ui(t,e){const n=mi(e),o=n.indexOf(t),r=n[o-1];if(r){if(hi(r,e))return;const t=$r(r);if(!t)throw new Error("invariant: app/assets/modules/github/navigation.js:529");"page"===gi(e)?vi(t,r):wi(t,r)}}function di(t,e){const n=mi(e),o=n.indexOf(t),r=n[o+1];if(r){if(hi(r,e))return;const t=$r(r);if(!t)throw new Error("invariant: app/assets/modules/github/navigation.js:558");"page"===gi(e)?vi(t,r):wi(t,r)}}function fi(t,e=!1){mt(t,"navigation:keyopen",{modifierKey:e})}function hi(t,e){return!mt(t,"navigation:focus")||(li(e),t.classList.add("navigation-focus"),t.setAttribute("aria-selected","true"),!1)}function pi(){return document.querySelector(".js-active-navigation-container")}function mi(t){return Array.from(t.querySelectorAll(".js-navigation-item")).filter(Pr)}function gi(t){return t.getAttribute("data-navigation-scroll")||"item"}function vi(t,e,n="smooth"){const o=Gr(e,t);o&&(o.bottom<=0?e.scrollIntoView({behavior:n,block:"start"}):o.top<=0&&e.scrollIntoView({behavior:n,block:"end"}))}function wi(t,e){const n=Kr(e,t),o=Gr(e,t);if(null!=n&&null!=o)if(o.bottom<=0&&document.body){Yr(t,{top:(null!=t.offsetParent?t.scrollHeight:document.body.scrollHeight)-(n.bottom+o.height)})}else o.top<=0&&Yr(t,{top:n.top})}te(".js-active-navigation-container",{add(){1===++oi&&document.addEventListener("keydown",ri)},remove(){0===--oi&&document.removeEventListener("keydown",ri)}}),pt("navigation:keydown",".js-active-navigation-container",function(t){if(!(t instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/navigation.js:208");const e=t.currentTarget,n=t.detail.originalTarget.matches("input, textarea"),o=t.target;if(o.classList.contains("js-navigation-item"))if(n){if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":di(o,e);break;case"Control+p":ui(o,e)}switch(Mo(t.detail.originalEvent)){case"ArrowUp":ui(o,e);break;case"ArrowDown":di(o,e);break;case"Enter":case`${Qr}+Enter`:fi(o,t.detail.originalEvent[Jr])}}else{if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":di(o,e);break;case"Control+p":ui(o,e);break;case"Alt+v":!function(t,e){const n=mi(e);let o=n.indexOf(t);const r=$r(t);if(null==r)return;let i,s;for(;(i=n[o-1])&&(s=Gr(i,r))&&s.top>=0;)o--;if(i){const t=hi(i,e);if(t)return;vi(r,i)}}(o,e);break;case"Control+v":!function(t,e){const n=mi(e);let o=n.indexOf(t);const r=$r(t);if(null==r)return;let i,s;for(;(i=n[o+1])&&(s=Gr(i,r))&&s.bottom>=0;)o++;if(i){const t=hi(i,e);if(t)return;vi(r,i)}}(o,e)}switch(Mo(t.detail.originalEvent)){case"j":case"J":di(o,e);break;case"k":case"K":ui(o,e);break;case"o":case"Enter":case`${Qr}+Enter`:fi(o,t.detail[Jr])}}else{const o=mi(e)[0];if(o)if(n){if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":hi(o,e)}switch(Mo(t.detail.originalEvent)){case"ArrowDown":hi(o,e)}}else{if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":case"Control+v":hi(o,e)}switch(Mo(t.detail.originalEvent)){case"j":hi(o,e)}}}if(n){if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":case"Control+p":t.preventDefault()}switch(Mo(t.detail.originalEvent)){case"ArrowUp":case"ArrowDown":t.preventDefault();break;case"Enter":t.preventDefault()}}else{if(zr)switch(Mo(t.detail.originalEvent)){case"Control+n":case"Control+p":case"Control+v":case"Alt+v":t.preventDefault()}switch(Mo(t.detail.originalEvent)){case"j":case"k":t.preventDefault();break;case"o":case"Enter":case`${Jr}+Enter`:t.preventDefault()}}}),pt("click",".js-active-navigation-container .js-navigation-item",function(t){if(!(t instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/navigation.js:379");ii(t)}),pt("navigation:keyopen",".js-active-navigation-container .js-navigation-item",function(t){if(!(t instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/navigation.js:384");const e=t.currentTarget.classList.contains("js-navigation-open")?t.currentTarget:t.currentTarget.querySelector(".js-navigation-open");if(e){if(t.detail.modifierKey)window.open(e.href,"_blank"),window.focus();else{e.dispatchEvent(new MouseEvent("click",{bubbles:!0,cancelable:!0}))&&e.click()}t.preventDefault()}else ii(t)});var bi=Dn(function(t){var e;e=function(){if("undefined"==typeof window||!window.document)return function(){throw new Error("Sortable.js requires a window with a document")};var t,e,n,o,r,i,s,a,c,l,u,d,f,h,p,m,g,v,w,b,y,E,_={},T=/\s+/g,x=/left|right|inline/,k="Sortable"+(new Date).getTime(),L=window,A=L.document,S=L.parseInt,C=L.setTimeout,j=L.jQuery||L.Zepto,M=L.Polymer,D=!1,I="draggable"in A.createElement("div"),P=!navigator.userAgent.match(/(?:Trident.*rv[ :]?11\.|msie)/i)&&((E=A.createElement("x")).style.cssText="pointer-events:auto","auto"===E.style.pointerEvents),O=!1,N=Math.abs,R=Math.min,H=[],q=[],F=function(){return!1},U=it(function(t,e,n){if(n&&e.scroll){var o,r,i,s,a,d,f=n[k],h=e.scrollSensitivity,p=e.scrollSpeed,m=t.clientX,g=t.clientY,v=window.innerWidth,w=window.innerHeight;if(l!==n&&(c=e.scroll,l=n,u=e.scrollFn,!0===c)){c=n;do{if(c.offsetWidth-1:r==t)}:F}var n={},o=t.group;o&&"object"==typeof o||(o={name:o}),n.name=o.name,n.checkPull=e(o.pull,!0),n.checkPut=e(o.put),n.revertClone=o.revertClone,t.group=n};try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){D={capture:!1,passive:!1}}}))}catch(lt){}function W(t,e){if(!t||!t.nodeType||1!==t.nodeType)throw"Sortable: `el` must be HTMLElement, and not "+{}.toString.call(t);this.el=t,this.options=e=st({},e),t[k]=this;var n={group:null,sort:!0,disabled:!1,store:null,handle:null,scroll:!0,scrollSensitivity:30,scrollSpeed:10,draggable:/[uo]l/i.test(t.nodeName)?"li":">*",ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,setData:function(t,e){t.setData("Text",e.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==W.supportPointer};for(var o in n)!(o in e)&&(e[o]=n[o]);for(var r in V(e),this)"_"===r.charAt(0)&&"function"==typeof this[r]&&(this[r]=this[r].bind(this));this.nativeDraggable=!e.forceFallback&&I,G(t,"mousedown",this._onTapStart),G(t,"touchstart",this._onTapStart),e.supportPointer&&G(t,"pointerdown",this._onTapStart),this.nativeDraggable&&(G(t,"dragover",this),G(t,"dragenter",this)),q.push(this._onDragOver),e.store&&this.sort(e.store.get(this))}function B(e,n){"clone"!==e.lastPullMode&&(n=!0),r&&r.state!==n&&(z(r,"display",n?"none":""),n||r.state&&(e.options.group.revertClone?(i.insertBefore(r,s),e._animate(t,r)):i.insertBefore(r,t)),r.state=n)}function X(t,e,n){if(t){n=n||A;do{if(">*"===e&&t.parentNode===n||rt(t,e))return t}while(t=$(t))}return null}function $(t){var e=t.host;return e&&e.nodeType?e:t.parentNode}function G(t,e,n){t.addEventListener(e,n,D)}function K(t,e,n){t.removeEventListener(e,n,D)}function Y(t,e,n){if(t)if(t.classList)t.classList[n?"add":"remove"](e);else{var o=(" "+t.className+" ").replace(T," ").replace(" "+e+" "," ");t.className=(o+(n?" "+e:"")).replace(T," ")}}function z(t,e,n){var o=t&&t.style;if(o){if(void 0===n)return A.defaultView&&A.defaultView.getComputedStyle?n=A.defaultView.getComputedStyle(t,""):t.currentStyle&&(n=t.currentStyle),void 0===e?n:n[e];e in o||(e="-webkit-"+e),o[e]=n+("string"==typeof n?"":"px")}}function J(t,e,n){if(t){var o=t.getElementsByTagName(e),r=0,i=o.length;if(n)for(;r*"!==e&&!rt(t,e)||n++;return n}function rt(t,e){if(t){var n=(e=e.split(".")).shift().toUpperCase(),o=new RegExp("\\s("+e.join("|")+")(?=\\s)","g");return!(""!==n&&t.nodeName.toUpperCase()!=n||e.length&&((" "+t.className+" ").match(o)||[]).length!=e.length)}return!1}function it(t,e){var n,o;return function(){void 0===n&&(n=arguments,o=this,C(function(){1===n.length?t.call(o,n[0]):t.apply(o,n),n=void 0},e))}}function st(t,e){if(t&&e)for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function at(t){return C(t,0)}function ct(t){return clearTimeout(t)}return W.prototype={constructor:W,_onTapStart:function(e){var n,o=this,r=this.el,i=this.options,s=i.preventOnFilter,c=e.type,l=e.touches&&e.touches[0],u=(l||e).target,d=e.target.shadowRoot&&e.path&&e.path[0]||u,f=i.filter;if(function(t){H.length=0;var e=t.getElementsByTagName("input"),n=e.length;for(;n--;){var o=e[n];o.checked&&H.push(o)}}(r),!t&&!(/mousedown|pointerdown/.test(c)&&0!==e.button||i.disabled)&&!d.isContentEditable&&(u=X(u,i.draggable,r))&&a!==u){if(n=ot(u,i.draggable),"function"==typeof f){if(f.call(this,e,u,this))return Q(o,d,"filter",u,r,r,n),void(s&&e.preventDefault())}else if(f&&(f=f.split(",").some(function(t){if(t=X(d,t.trim(),r))return Q(o,t,"filter",u,r,r,n),!0})))return void(s&&e.preventDefault());i.handle&&!X(d,i.handle,r)||this._prepareDragStart(e,l,u,n)}},_prepareDragStart:function(o,r,c,l){var u,d=this,f=d.el,h=d.options,m=f.ownerDocument;c&&!t&&c.parentNode===f&&(w=o,i=f,t=c,h.handleReplacedDragElement&&(e=c.getAttribute("id")),n=t.parentNode,s=t.nextSibling,a=c,g=h.group,p=l,this._lastX=(r||o).clientX,this._lastY=(r||o).clientY,t.style["will-change"]="all",u=function(){d._disableDelayedDrag(),t.draggable=d.nativeDraggable,Y(t,h.chosenClass,!0),d._triggerDragStart(o,r),Q(d,i,"choose",t,i,i,p)},h.ignore.split(",").forEach(function(e){J(t,e.trim(),tt)}),G(m,"mouseup",d._onDrop),G(m,"touchend",d._onDrop),G(m,"touchcancel",d._onDrop),G(m,"selectstart",d),h.supportPointer&&G(m,"pointercancel",d._onDrop),h.delay?(G(m,"mouseup",d._disableDelayedDrag),G(m,"touchend",d._disableDelayedDrag),G(m,"touchcancel",d._disableDelayedDrag),G(m,"mousemove",d._disableDelayedDrag),G(m,"touchmove",d._disableDelayedDrag),h.supportPointer&&G(m,"pointermove",d._disableDelayedDrag),d._dragStartTimer=C(u,h.delay)):u())},_disableDelayedDrag:function(){var t=this.el.ownerDocument;clearTimeout(this._dragStartTimer),K(t,"mouseup",this._disableDelayedDrag),K(t,"touchend",this._disableDelayedDrag),K(t,"touchcancel",this._disableDelayedDrag),K(t,"mousemove",this._disableDelayedDrag),K(t,"touchmove",this._disableDelayedDrag),K(t,"pointermove",this._disableDelayedDrag)},_triggerDragStart:function(e,n){(n=n||("touch"==e.pointerType?e:null))?(w={target:t,clientX:n.clientX,clientY:n.clientY},this._onDragStart(w,"touch")):this.nativeDraggable?(G(t,"dragend",this),G(i,"dragstart",this._onDragStart)):this._onDragStart(w,!0);try{A.selection?at(function(){A.selection.empty()}):window.getSelection().removeAllRanges()}catch(lt){}},_dragStarted:function(){if(i&&t){var e=this.options;Y(t,e.ghostClass,!0),Y(t,e.dragClass,!1),W.active=this,Q(this,i,"start",t,i,i,p)}else this._nulling()},_emulateDragOver:function(){if(b){if(this._lastX===b.clientX&&this._lastY===b.clientY)return;this._lastX=b.clientX,this._lastY=b.clientY,P||z(o,"display","none");var t=A.elementFromPoint(b.clientX,b.clientY),e=t,n=q.length;if(t&&t.shadowRoot&&(e=t=t.shadowRoot.elementFromPoint(b.clientX,b.clientY)),e)do{if(e[k]){for(;n--;)q[n]({clientX:b.clientX,clientY:b.clientY,target:t,rootEl:e});break}t=e}while(e=e.parentNode);P||z(o,"display","")}},_onTouchMove:function(t){if(w){var e=this.options,n=e.fallbackTolerance,r=e.fallbackOffset,i=t.touches?t.touches[0]:t,s=i.clientX-w.clientX+r.x,a=i.clientY-w.clientY+r.y,c=t.touches?"translate3d("+s+"px,"+a+"px,0)":"translate("+s+"px,"+a+"px)";if(!W.active){if(n&&R(N(i.clientX-this._lastX),N(i.clientY-this._lastY))5||e.clientX-(n.left+n.width)>5}(m,a)){if(0!==m.children.length&&m.children[0]!==o&&m===a.target&&(c=m.lastElementChild),c){if(c.animated)return;u=c.getBoundingClientRect()}B(E,_),!1!==Z(i,m,t,l,c,u,a)&&(t.contains(m)||(m.appendChild(t),n=m),this._animate(l,t),c&&this._animate(u,c))}else if(c&&!c.animated&&c!==t&&void 0!==c.parentNode[k]){d!==c&&(d=c,f=z(c),h=z(c.parentNode));var S=(u=c.getBoundingClientRect()).right-u.left,j=u.bottom-u.top,M=x.test(f.cssFloat+f.display)||"flex"==h.display&&0===h["flex-direction"].indexOf("row"),D=c.offsetWidth>t.offsetWidth,I=c.offsetHeight>t.offsetHeight,P=(M?(a.clientX-u.left)/S:(a.clientY-u.top)/j)>.5,N=c.nextElementSibling,R=!1;if(M){var H=t.offsetTop,q=c.offsetTop;R=H===q?c.previousElementSibling===t&&!D||P&&D:c.previousElementSibling===t||t.previousElementSibling===c?(a.clientY-u.top)/j>.5:q>H}else T||(R=N!==t&&!I||P&&I);var F=Z(i,m,t,l,c,u,a,R);!1!==F&&(1!==F&&-1!==F||(R=1===F),O=!0,C(et,30),B(E,_),t.contains(m)||(R&&!N?m.appendChild(t):c.parentNode.insertBefore(t,R?N:c)),n=t.parentNode,this._animate(l,t),this._animate(u,c))}}},_animate:function(t,e){var n=this.options.animation;if(n){var o=e.getBoundingClientRect();1===t.nodeType&&(t=t.getBoundingClientRect()),z(e,"transition","none"),z(e,"transform","translate3d("+(t.left-o.left)+"px,"+(t.top-o.top)+"px,0)"),e.offsetWidth,z(e,"transition","all "+n+"ms"),z(e,"transform","translate3d(0,0,0)"),clearTimeout(e.animated),e.animated=C(function(){z(e,"transition",""),z(e,"transform",""),e.animated=!1},n)}},_offUpEvents:function(){var t=this.el.ownerDocument;K(A,"touchmove",this._onTouchMove),K(A,"pointermove",this._onTouchMove),K(t,"mouseup",this._onDrop),K(t,"touchend",this._onDrop),K(t,"pointerup",this._onDrop),K(t,"touchcancel",this._onDrop),K(t,"pointercancel",this._onDrop),K(t,"selectstart",this)},_onDrop:function(e){var a=this.el,c=this.options;clearInterval(this._loopId),clearInterval(_.pid),clearTimeout(this._dragStartTimer),ct(this._cloneId),ct(this._dragStartId),K(A,"mouseover",this),K(A,"mousemove",this._onTouchMove),this.nativeDraggable&&(K(A,"drop",this),K(a,"dragstart",this._onDragStart)),this._offUpEvents(),e&&(y&&(e.preventDefault(),!c.dropBubble&&e.stopPropagation()),o&&o.parentNode&&o.parentNode.removeChild(o),i!==n&&"clone"===W.active.lastPullMode||r&&r.parentNode&&r.parentNode.removeChild(r),t&&(this.nativeDraggable&&K(t,"dragend",this),tt(t),t.style["will-change"]="",Y(t,this.options.ghostClass,!1),Y(t,this.options.chosenClass,!1),Q(this,i,"unchoose",t,n,i,p),i!==n?(m=ot(t,c.draggable))>=0&&(Q(null,n,"add",t,n,i,p,m),Q(this,i,"remove",t,n,i,p,m),Q(null,n,"sort",t,n,i,p,m),Q(this,i,"sort",t,n,i,p,m)):t.nextSibling!==s&&(m=ot(t,c.draggable))>=0&&(Q(this,i,"update",t,n,i,p,m),Q(this,i,"sort",t,n,i,p,m)),W.active&&(null!=m&&-1!==m||(m=p),Q(this,i,"end",t,n,i,p,m),this.save()))),this._nulling()},_nulling:function(){i=t=n=o=s=r=a=c=l=w=b=y=m=d=f=v=g=W.active=null,H.forEach(function(t){t.checked=!0}),H.length=0},handleEvent:function(e){switch(e.type){case"drop":case"dragend":this._onDrop(e);break;case"dragover":case"dragenter":t&&(this._onDragOver(e),function(t){t.dataTransfer&&(t.dataTransfer.dropEffect="move");t.preventDefault()}(e));break;case"mouseover":this._onDrop(e);break;case"selectstart":e.preventDefault()}},toArray:function(){for(var t,e=[],n=this.el.children,o=0,r=n.length,i=this.options;o{const e={},t={},n=e=>e.replace(/^.\/(\w+)-[a-f0-9]{8,}.js$/,"./$1.js"),s={register(o,r){const i=n(`./${((document.currentScript||{}).src||"").split("?").shift().split("/").pop()}`),a={},c=r((e,t)=>t?a[e]=t:Object.assign(a,e),s);e[i]=Promise.all(o.map((e,t)=>s.import(n(e)).then(c.setters[t]))).then(()=>(c.execute(),a)).catch(e=>{throw e.message=`evaluating module ${i}: ${e.message}`,e}),t[i]&&(t[i](e[i]),delete t[i])},import:n=>e[n]||(e[n]=new Promise((e,s)=>{const o=setTimeout(()=>{s(new Error(`could not resolve ${n}`))},1e4);t[n]=(t=>{clearTimeout(o),e(t)})}))};return s})(),System.register(["./frameworks.js"],function(e,t){"use strict";var n,s,o,r,i,a,c,l,u,d,m,f,p,g,h,v,b,w,j,y,E,L,T,k,M,A,x,S,H,C,q,I,_,$,D,B,R,N,P,F,O,W,z,U,V,K,Y,X,J,G,Q,Z,ee,te,ne,se,oe,re,ie,ae,ce,le,ue,de,me,fe,pe,ge,he,ve,be,we,je,ye,Ee,Le,Te,ke,Me,Ae,xe,Se,He,Ce,qe,Ie,_e,$e,De,Be,Re,Ne,Pe,Fe,Oe,We,ze,Ue,Ve,Ke,Ye,Xe,Je,Ge,Qe,Ze,et,tt,nt,st,ot,rt;return{setters:[function(e){n=e.J,s=e.K,o=e.L,r=e.e,i=e.M,a=e.N,c=e.i,l=e.O,u=e.d,d=e.f,m=e.P,f=e.Q,p=e.h,g=e.p,h=e.o,v=e.t,b=e.b,w=e.R,j=e.r,y=e.u,E=e.l,L=e.g,T=e.F,k=e.y,M=e.z,A=e.S,x=e.T,S=e.s,H=e.q,C=e.U,q=e.V,I=e.k,_=e.j,$=e.H,D=e.W,B=e.X,R=e.n,N=e.Y,P=e.Z,F=e.w,O=e._,W=e.$,z=e.a0,U=e.a1,V=e.a2,K=e.a3,Y=e.a4,X=e.a5,J=e.a6,G=e.a7,Q=e.a8,Z=e.a9,ee=e.aa,te=e.I,ne=e.ab,se=e.ac,oe=e.ad,re=e.ae,ie=e.af,ae=e.ag,ce=e.ah,le=e.ai,ue=e.aj,de=e.ak,me=e.al,fe=e.am,pe=e.an,ge=e.ao,he=e.ap,ve=e.aq,be=e.m,e.ar,we=e.as,je=e.at,ye=e.au,Ee=e.av,Le=e.aw,Te=e.v,ke=e.ax,Me=e.x,Ae=e.ay,xe=e.az,Se=e.aA,He=e.aB,Ce=e.aC,qe=e.aD,Ie=e.aE,_e=e.aF,$e=e.aG,De=e.E,Be=e.aH,Re=e.aI,Ne=e.aJ,Pe=e.aK,Fe=e.aL,Oe=e.aM,We=e.aN,ze=e.aO,Ue=e.c,Ve=e.a,Ke=e.aP,Ye=e.aQ,Xe=e.aR,Je=e.aS,Ge=e.aT,Qe=e.aU,Ze=e.aV,et=e.G,tt=e.aW,nt=e.aX,st=e.aY,ot=e.aZ,rt=e.a_}],execute:function(){window.requestIdleCallback=window.requestIdleCallback||function(e){var t=Date.now();return setTimeout(function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-t))}})},1)},window.cancelIdleCallback=window.cancelIdleCallback||function(e){clearTimeout(e)};n(function(e,t){!function(){var t=window,n=document;e.exports={polyfill:function(){if(!("scrollBehavior"in n.documentElement.style&&!0!==t.__forceSmoothScrollPolyfill__)){var e,s=t.HTMLElement||t.Element,o=468,r=(e=t.navigator.userAgent,new RegExp(["MSIE ","Trident/","Edge/"].join("|")).test(e)?1:0),i={scroll:t.scroll||t.scrollTo,scrollBy:t.scrollBy,elementScroll:s.prototype.scroll||c,scrollIntoView:s.prototype.scrollIntoView},a=t.performance&&t.performance.now?t.performance.now.bind(t.performance):Date.now;t.scroll=t.scrollTo=function(){void 0!==arguments[0]&&(!0!==l(arguments[0])?p.call(t,n.body,void 0!==arguments[0].left?~~arguments[0].left:t.scrollX||t.pageXOffset,void 0!==arguments[0].top?~~arguments[0].top:t.scrollY||t.pageYOffset):i.scroll.call(t,void 0!==arguments[0].left?arguments[0].left:"object"!=typeof arguments[0]?arguments[0]:t.scrollX||t.pageXOffset,void 0!==arguments[0].top?arguments[0].top:void 0!==arguments[1]?arguments[1]:t.scrollY||t.pageYOffset))},t.scrollBy=function(){void 0!==arguments[0]&&(l(arguments[0])?i.scrollBy.call(t,void 0!==arguments[0].left?arguments[0].left:"object"!=typeof arguments[0]?arguments[0]:0,void 0!==arguments[0].top?arguments[0].top:void 0!==arguments[1]?arguments[1]:0):p.call(t,n.body,~~arguments[0].left+(t.scrollX||t.pageXOffset),~~arguments[0].top+(t.scrollY||t.pageYOffset)))},s.prototype.scroll=s.prototype.scrollTo=function(){if(void 0!==arguments[0])if(!0!==l(arguments[0])){var e=arguments[0].left,t=arguments[0].top;p.call(this,this,void 0===e?this.scrollLeft:~~e,void 0===t?this.scrollTop:~~t)}else{if("number"==typeof arguments[0]&&void 0===arguments[1])throw new SyntaxError("Value couldn't be converted");i.elementScroll.call(this,void 0!==arguments[0].left?~~arguments[0].left:"object"!=typeof arguments[0]?~~arguments[0]:this.scrollLeft,void 0!==arguments[0].top?~~arguments[0].top:void 0!==arguments[1]?~~arguments[1]:this.scrollTop)}},s.prototype.scrollBy=function(){void 0!==arguments[0]&&(!0!==l(arguments[0])?this.scroll({left:~~arguments[0].left+this.scrollLeft,top:~~arguments[0].top+this.scrollTop,behavior:arguments[0].behavior}):i.elementScroll.call(this,void 0!==arguments[0].left?~~arguments[0].left+this.scrollLeft:~~arguments[0]+this.scrollLeft,void 0!==arguments[0].top?~~arguments[0].top+this.scrollTop:~~arguments[1]+this.scrollTop))},s.prototype.scrollIntoView=function(){if(!0!==l(arguments[0])){var e=function(e){var t;do{t=(e=e.parentNode)===n.body}while(!1===t&&!1===m(e));return t=null,e}(this),s=e.getBoundingClientRect(),o=this.getBoundingClientRect();e!==n.body?(p.call(this,e,e.scrollLeft+o.left-s.left,e.scrollTop+o.top-s.top),"fixed"!==t.getComputedStyle(e).position&&t.scrollBy({left:s.left,top:s.top,behavior:"smooth"})):t.scrollBy({left:o.left,top:o.top,behavior:"smooth"})}else i.scrollIntoView.call(this,void 0===arguments[0]||arguments[0])}}function c(e,t){this.scrollLeft=e,this.scrollTop=t}function l(e){if(null===e||"object"!=typeof e||void 0===e.behavior||"auto"===e.behavior||"instant"===e.behavior)return!0;if("object"==typeof e&&"smooth"===e.behavior)return!1;throw new TypeError("behavior member of ScrollOptions "+e.behavior+" is not a valid value for enumeration ScrollBehavior.")}function u(e,t){return"Y"===t?e.clientHeight+r1?1:c,n=.5*(1-Math.cos(Math.PI*i)),s=e.startX+(e.x-e.startX)*n,r=e.startY+(e.y-e.startY)*n,e.method.call(e.scrollable,s,r),s===e.x&&r===e.y||t.requestAnimationFrame(f.bind(t,e))}function p(e,s,o){var r,l,u,d,m=a();e===n.body?(r=t,l=t.scrollX||t.pageXOffset,u=t.scrollY||t.pageYOffset,d=i.scroll):(r=e,l=e.scrollLeft,u=e.scrollTop,d=c),f({scrollable:r,method:d,startTime:m,startX:l,startY:u,x:s,y:o})}}}}()}).polyfill;window.getSelection&&!function(){const e=document.createElement("div");return e.style.cssText="-ms-user-select: element; user-select: contain;","element"===e.style.getPropertyValue("-ms-user-select")||"contain"===e.style.getPropertyValue("-ms-user-select")||"contain"===e.style.getPropertyValue("user-select")}()&&document.addEventListener("click",function(e){if(!(e.target instanceof Element))return;const t=e.target.closest(".user-select-contain");if(!t)return;const n=window.getSelection();if(!n.rangeCount)return;const s=n.getRangeAt(0).commonAncestorContainer;t.contains(s)||n.selectAllChildren(t)}),window.Element&&!Element.prototype.toggleAttribute&&(Element.prototype.toggleAttribute=function(e,t){var n=!!t,s=2===arguments.length&&!t;return null!==this.getAttribute(e)?!!n||(this.removeAttribute(e),!1):!s&&(this.setAttribute(e,""),!0)}),Array.prototype.flatMap||Object.defineProperty(Array.prototype,"flatMap",{writable:!0,configurable:!0,value(e,t){return Array.prototype.reduce.call(this,(n,s,o,r)=>{const i=e.call(t,s,o,r);return Array.isArray(i)?n.concat(i):(n.push(i),n)})}});let e=0;function t(e,t={}){it(ct(e,t))}function it(t){const n=o(document,"browser-errors-url");n&&(e++,window.fetch(n,{method:"post",body:JSON.stringify(t)}).catch(function(){}))}const at=(new Date).getTime();function ct(e,t={}){let n;if(e){let s="";const o=e;if(e.stack){const{framesToPop:t}=o;s=function(e,t=0){if(0===t)return e;let n=e.split("\n");n.length>=2&<.test(n[0])&&ut.test(n[1])&&n.shift();null!=t&&(n=n.slice(t));return n.join("\n")}(e.stack,t)}else{let{fileName:e,lineNumber:n,columnNumber:r}=o;null==e&&(e=String(t.filename)),null==n&&(n=t.lineno||0),null==r&&(r=t.colno||0),s=`${e}:${n}:${r}`}n={message:e.message,name:e.name,stack:s,toString:e.toString()}}return Object.assign({error:n,filename:"",lineno:0,colno:0,url:window.location.href,readyState:document.readyState,referrer:document.referrer,timeSinceLoad:Math.round((new Date).getTime()-at),user:dt()||void 0},t)}const lt=/^\S/,ut=/^\s+at /;function dt(){const e=o(document,"user-login");if(e)return e;const t=window._octo&&window._octo._clientId();return t?`anonymous-${t}`:null}let mt=!1;function ft(){return!mt&&e<10&&"function"==typeof Blob&&"undefined"!=typeof customElements&&"undefined"!=typeof Intl&&"undefined"!=typeof MutationObserver&&!s(document)}function pt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}window.addEventListener("pageshow",()=>{mt=!1}),window.addEventListener("pagehide",()=>{mt=!0}),window.addEventListener("error",function(e){ft()&&it(function(e){const{message:t,filename:n,lineno:s,colno:o,error:r}=e;return ct(r,{message:t,filename:n,lineno:s,colno:o})}(e))}),window.addEventListener("unhandledrejection",function(e){ft()&&e.promise&&e.promise.catch(e=>{const n={};if(e&&e.response instanceof Response){if(/^HTTP (401|403|405|429|502)/.test(e.message))return;n.dataRemoteUrl=e.response.url}t(e,n)})}),"#b00m"===window.location.hash&&setTimeout(()=>{throw new Error("b00m")});class gt extends Error{constructor(e,t,n){super(),pt(this,"statusCode",void 0),pt(this,"responseText",void 0),pt(this,"contentType",void 0),this.statusCode=e,this.responseText=t,this.contentType=n}}const ht=new WeakMap,vt=new WeakMap,bt=new WeakMap;class AutoCheckElement extends HTMLElement{constructor(){super(),bt.set(this,function(e,t){let n;return function(){for(var s=arguments.length,o=new Array(s),r=0;r{e.dispatchEvent(new CustomEvent("loadend")),s.dispatchEvent(new CustomEvent("auto-check-complete",{bubbles:!0}))};e.required&&s.setCustomValidity("Verifying…");e.dispatchEvent(new CustomEvent("loadstart")),function(e,t,n){const s=ht.get(e);s&&s.abort();const o=()=>ht.delete(e),r=new XMLHttpRequest;ht.set(e,r),r.open("POST",n,!0),r.setRequestHeader("Accept","text/html; fragment");const i=function(e,t){return new Promise((n,s)=>{e.onload=function(){e.status>=200&&e.status<300?n(e.responseText):s(new gt(e.status,e.responseText,e.getResponseHeader("Content-Type")))},e.onerror=function(){s(new gt(e.status,e.responseText,e.getResponseHeader("Content-Type")))},e.send(t)})}(r,t);return i.then(o,o),i}(s,o,t).then(t=>{e.dispatchEvent(new CustomEvent("load"));const n=t?t.trim():null;e.required&&s.setCustomValidity(""),s.dispatchEvent(new CustomEvent("auto-check-success",{detail:{message:n},bubbles:!0}))}).catch(t=>{e.required&&s.setCustomValidity(wt(t)||"Something went wrong"),e.dispatchEvent(new CustomEvent("error")),s.dispatchEvent(new CustomEvent("auto-check-error",{detail:{message:wt(t)},bubbles:!0}))}).then(i,i)}.bind(null,this),300))}connectedCallback(){const e=this.input;if(!e)return;const t=bt.get(this);t&&(e.addEventListener("change",t),e.addEventListener("input",t),e.autocomplete="off",e.spellcheck=!1)}disconnectedCallback(){const e=this.input;if(!e)return;const t=bt.get(this);t&&(e.removeEventListener("change",t),e.removeEventListener("input",t),e.setCustomValidity(""))}get input(){const e=this.querySelector("input");return e instanceof HTMLInputElement?e:null}get src(){const e=this.getAttribute("src");if(!e)return"";const t=this.ownerDocument.createElement("a");return t.href=e,t.href}set src(e){this.setAttribute("src",e)}get csrf(){return this.getAttribute("csrf")||""}set csrf(e){this.setAttribute("csrf",e)}get required(){return this.hasAttribute("required")}set required(e){const t=this.input;t&&(t.required=e,e?this.setAttribute("required",""):this.removeAttribute("required"))}}function wt(e){if(422===e.statusCode&&e.responseText&&e.contentType.includes("text/html; fragment"))return e.responseText}function jt(e){if("clipboard"in navigator)return navigator.clipboard.writeText(e.textContent);const t=getSelection();if(null==t)return Promise.reject(new Error);t.removeAllRanges();const n=document.createRange();return n.selectNodeContents(e),t.addRange(n),document.execCommand("copy"),t.removeAllRanges(),Promise.resolve()}function yt(e){if("clipboard"in navigator)return navigator.clipboard.writeText(e);const t=document.body;if(!t)return Promise.reject(new Error);const n=function(e){const t=document.createElement("pre");return t.style.width="1px",t.style.height="1px",t.style.position="fixed",t.style.top="5px",t.textContent=e,t}(e);return t.appendChild(n),jt(n),t.removeChild(n),Promise.resolve()}function Et(e){const t=e.getAttribute("for"),n=e.getAttribute("value");function s(){e.dispatchEvent(new CustomEvent("clipboard-copy",{bubbles:!0}))}if(n)yt(n).then(s);else if(t){const n=e.ownerDocument.getElementById(t);n&&(o=n,o instanceof HTMLInputElement||o instanceof HTMLTextAreaElement?"hidden"===o.type?yt(o.value):function(e){if("clipboard"in navigator)return navigator.clipboard.writeText(e.value);e.select(),document.execCommand("copy");const t=getSelection();return null!=t&&t.removeAllRanges(),Promise.resolve()}(o):o instanceof HTMLAnchorElement&&o.hasAttribute("href")?yt(o.href):jt(o)).then(s)}var o}function Lt(e){const t=e.currentTarget;t instanceof HTMLElement&&Et(t)}function Tt(e){if(" "===e.key||"Enter"===e.key){const t=e.currentTarget;t instanceof HTMLElement&&(e.preventDefault(),Et(t))}}function kt(e){e.currentTarget.addEventListener("keydown",Tt)}function Mt(e){e.currentTarget.removeEventListener("keydown",Tt)}window.customElements.get("auto-check")||(window.AutoCheckElement=AutoCheckElement,window.customElements.define("auto-check",AutoCheckElement));class ClipboardCopyElement extends HTMLElement{constructor(){super(),this.addEventListener("click",Lt),this.addEventListener("focus",kt),this.addEventListener("blur",Mt)}connectedCallback(){this.hasAttribute("tabindex")||this.setAttribute("tabindex","0"),this.hasAttribute("role")||this.setAttribute("role","button")}get value(){return this.getAttribute("value")||""}set value(e){this.setAttribute("value",e)}}window.customElements.get("clipboard-copy")||(window.ClipboardCopyElement=ClipboardCopyElement,window.customElements.define("clipboard-copy",ClipboardCopyElement));class DetailsMenuElement extends HTMLElement{constructor(){super()}get preload(){return this.hasAttribute("preload")}set preload(e){e?this.setAttribute("preload",""):this.removeAttribute("preload")}get src(){return this.getAttribute("src")||""}set src(e){this.setAttribute("src",e)}connectedCallback(){this.hasAttribute("role")||this.setAttribute("role","menu");const e=this.parentElement;if(!e)return;const t=e.querySelector("summary");t&&(t.setAttribute("aria-haspopup","menu"),t.hasAttribute("role")||t.setAttribute("role","button")),e.addEventListener("click",_t),e.addEventListener("change",_t),e.addEventListener("keydown",Dt),e.addEventListener("toggle",xt,{once:!0}),e.addEventListener("toggle",Ht),this.preload&&e.addEventListener("mouseover",xt,{once:!0});const n=[St(e)];At.set(this,{details:e,subscriptions:n,loaded:!1})}disconnectedCallback(){const e=At.get(this);if(!e)return;At.delete(this);const t=e.details,n=e.subscriptions;for(const s of n)s.unsubscribe();t.removeEventListener("click",_t),t.removeEventListener("change",_t),t.removeEventListener("keydown",Dt),t.removeEventListener("toggle",xt,{once:!0}),t.removeEventListener("toggle",Ht),t.removeEventListener("mouseover",xt,{once:!0})}}const At=new WeakMap;function xt(e){const t=e.currentTarget;if(!(t instanceof Element))return;const n=t.querySelector("details-menu");if(!n)return;const s=n.getAttribute("src");if(!s)return;const o=At.get(n);if(!o)return;if(o.loaded)return;o.loaded=!0;const r=n.querySelector("include-fragment");r&&!r.hasAttribute("src")&&(r.addEventListener("loadend",()=>Ct(t)),r.setAttribute("src",s))}function St(e){let t=!1;const n=()=>t=!0,s=()=>t=!1,o=()=>{e.hasAttribute("open")&&(Ct(e)||t||function(e){const t=document.activeElement;if(t&&Bt(t)&&e.contains(t))return;const n=qt(e,!0);n&&n.focus()}(e))};return e.addEventListener("mousedown",n),e.addEventListener("keydown",s),e.addEventListener("toggle",o),{unsubscribe:()=>{e.removeEventListener("mousedown",n),e.removeEventListener("keydown",s),e.removeEventListener("toggle",o)}}}function Ht(e){const t=e.currentTarget;if(t instanceof Element&&t.hasAttribute("open"))for(const n of document.querySelectorAll("details[open] > details-menu")){const e=n.closest("details");e&&e!==t&&!e.contains(t)&&e.removeAttribute("open")}}function Ct(e){if(!e.hasAttribute("open"))return!1;const t=e.querySelector("[autofocus]");return!!t&&(t.focus(),!0)}function qt(e,t){const n=Array.from(e.querySelectorAll('[role^="menuitem"]:not([hidden]):not([disabled]):not([aria-disabled="true"])')),s=document.activeElement,o=n.indexOf(s),r=t?n[o+1]:n[o-1],i=t?n[0]:n[n.length-1];return r||i}const It=navigator.userAgent.match(/Macintosh/);function _t(e){const t=e.target;if(!(t instanceof Element))return;const n=e.currentTarget;if(n instanceof Element&&t.closest("details")===n)if("click"===e.type){const e=t.closest('[role="menuitem"], [role="menuitemradio"]'),s=e&&"LABEL"===e.tagName&&e.querySelector("input");e&&!s&&$t(e,n)}else if("change"===e.type){const e=t.closest('[role="menuitemradio"], [role="menuitemcheckbox"]');e&&$t(e,n)}}function $t(e,t){if(e.hasAttribute("disabled")||"true"===e.getAttribute("aria-disabled"))return;const n=e.closest("details-menu");n&&n.dispatchEvent(new CustomEvent("details-menu-select",{cancelable:!0,detail:{relatedTarget:e}}))&&(!function(e,t){const n=t.querySelector("[data-menu-button]");if(!n)return;const s=function(e){if(!e)return null;const t=e.hasAttribute("data-menu-button-text")?e:e.querySelector("[data-menu-button-text]");return t?t.getAttribute("data-menu-button-text")||t.textContent:null}(e);if(s)n.textContent=s;else{const t=function(e){if(!e)return null;const t=e.hasAttribute("data-menu-button-contents")?e:e.querySelector("[data-menu-button-contents]");return t?t.innerHTML:null}(e);t&&(n.innerHTML=t)}}(e,t),function(e,t){for(const n of t.querySelectorAll('[role="menuitemradio"], [role="menuitemcheckbox"]')){const t=n.querySelector('input[type="radio"], input[type="checkbox"]');let s=n===e;t instanceof HTMLInputElement&&(s=t.indeterminate?"mixed":t.checked),n.setAttribute("aria-checked",s.toString())}}(e,t),"menuitemcheckbox"!==e.getAttribute("role")&&Rt(t),n.dispatchEvent(new CustomEvent("details-menu-selected",{detail:{relatedTarget:e}})))}function Dt(e){const t=e.currentTarget;if(!(t instanceof Element))return;const n=e.target instanceof Element&&"SUMMARY"===e.target.tagName;if(!t.querySelector("details[open]"))switch(e.key){case"Escape":t.hasAttribute("open")&&(Rt(t),e.preventDefault(),e.stopPropagation());break;case"ArrowDown":{n&&!t.hasAttribute("open")&&t.setAttribute("open","");const s=qt(t,!0);s&&s.focus(),e.preventDefault()}break;case"ArrowUp":{n&&!t.hasAttribute("open")&&t.setAttribute("open","");const s=qt(t,!1);s&&s.focus(),e.preventDefault()}break;case"n":if(It&&e.ctrlKey){const n=qt(t,!0);n&&n.focus(),e.preventDefault()}break;case"p":if(It&&e.ctrlKey){const n=qt(t,!1);n&&n.focus(),e.preventDefault()}break;case" ":case"Enter":{const n=document.activeElement;n&&Bt(n)&&n.closest("details")===t&&(e.preventDefault(),e.stopPropagation(),n.click())}}}function Bt(e){const t=e.getAttribute("role");return"menuitem"===t||"menuitemcheckbox"===t||"menuitemradio"===t}function Rt(e){e.removeAttribute("open");const t=e.querySelector("summary");t&&t.focus()}window.customElements.get("details-menu")||(window.DetailsMenuElement=DetailsMenuElement,window.customElements.define("details-menu",DetailsMenuElement));class GEmojiElement extends HTMLElement{get image(){return this.firstElementChild instanceof HTMLImageElement?this.firstElementChild:null}connectedCallback(){if(null===this.image&&!function(){const e=/\bWindows NT 6.1\b/.test(navigator.userAgent),t=/\bWindows NT 6.2\b/.test(navigator.userAgent),n=/\bWindows NT 6.3\b/.test(navigator.userAgent),s=/\bFreeBSD\b/.test(navigator.userAgent),o=/\bLinux\b/.test(navigator.userAgent);return!(e||t||n||o||s)}()){this.textContent="";const e=function(e){const t=document.createElement("img");return t.className="emoji",t.alt=e.getAttribute("alias")||"",t.height=20,t.width=20,t}(this);e.src=this.getAttribute("fallback-src")||"",this.appendChild(e)}}}window.customElements.get("g-emoji")||(window.GEmojiElement=GEmojiElement,window.customElements.define("g-emoji",GEmojiElement));const Nt=document.createElement("template");Nt.innerHTML='\n \n
\n
\n
\n';const Pt=new WeakMap,Ft=new WeakMap,Ot=new WeakMap;function Wt(e){const t=e.currentTarget;if(!(t instanceof ImageCropElement))return;const{box:n,image:s}=Ot.get(t)||{};let o=0,r=0;if("keydown"===e.type)"ArrowUp"===e.key?r=-1:"ArrowDown"===e.key?r=1:"ArrowLeft"===e.key?o=-1:"ArrowRight"===e.key&&(o=1);else if(Ft.has(t)&&e instanceof MouseEvent){const n=Ft.get(t);if(!n)return;o=e.pageX-n.dragStartX,r=e.pageY-n.dragStartY}if(0!==o||0!==r){const e=Math.min(Math.max(0,n.offsetLeft+o),s.width-n.offsetWidth),i=Math.min(Math.max(0,n.offsetTop+r),s.height-n.offsetHeight);n.style.left="".concat(e,"px"),n.style.top="".concat(i,"px"),Jt(t,{x:e,y:i,width:n.offsetWidth,height:n.offsetHeight})}e instanceof MouseEvent&&Ft.set(t,{dragStartX:e.pageX,dragStartY:e.pageY})}function zt(e){const t=e.target;if(!(t instanceof HTMLElement))return;const n=t.closest("image-crop");if(!(n instanceof ImageCropElement))return;const{box:s}=Ot.get(n)||{},o=n.getBoundingClientRect();let r,i,a;if(e.key){if("Escape"===e.key)return Yt(n);if("-"===e.key&&(a=-10),"="===e.key&&(a=10),!a)return;r=s.offsetWidth+a,i=s.offsetHeight+a,Pt.set(n,{startX:s.offsetLeft,startY:s.offsetTop})}else if(e instanceof MouseEvent){const t=Pt.get(n);if(!t)return;r=e.pageX-t.startX-o.left-window.pageXOffset,i=e.pageY-t.startY-o.top-window.pageYOffset}r&&i&&Vt(n,r,i,!(e instanceof KeyboardEvent))}function Ut(e){const t=e.currentTarget;if(!(t instanceof HTMLElement))return;const n=t.closest("image-crop");if(!(n instanceof ImageCropElement))return;const{box:s}=Ot.get(n)||{},o=e.target;if(o instanceof HTMLElement)if(o.hasAttribute("data-direction")){const t=o.getAttribute("data-direction");n.addEventListener("mousemove",zt),["nw","se"].indexOf(t)>=0&&n.classList.add("nwse"),["ne","sw"].indexOf(t)>=0&&n.classList.add("nesw"),Pt.set(n,{startX:s.offsetLeft+(["se","ne"].indexOf(t)>=0?0:s.offsetWidth),startY:s.offsetTop+(["se","sw"].indexOf(t)>=0?0:s.offsetHeight)}),zt(e)}else n.addEventListener("mousemove",Wt)}function Vt(e,t,n){let s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],o=Math.max(Math.abs(t),Math.abs(n),10);const r=Pt.get(e);if(!r)return;const{box:i,image:a}=Ot.get(e)||{};o=Math.min(o,n>0?a.height-r.startY:r.startY,t>0?a.width-r.startX:r.startX);const c=s?Math.round(Math.max(0,t>0?r.startX:r.startX-o)):i.offsetLeft,l=s?Math.round(Math.max(0,n>0?r.startY:r.startY-o)):i.offsetTop;i.style.left="".concat(c,"px"),i.style.top="".concat(l,"px"),i.style.width="".concat(o,"px"),i.style.height="".concat(o,"px"),Jt(e,{x:c,y:l,width:o,height:o})}function Kt(e){const t=e.currentTarget;if(!(t instanceof HTMLElement))return;const n=t.closest("image-crop");n instanceof ImageCropElement&&(n.loaded=!0,Yt(n))}function Yt(e){const{image:t}=Ot.get(e)||{},n=Math.round(t.clientWidth>t.clientHeight?t.clientHeight:t.clientWidth);Pt.set(e,{startX:(t.clientWidth-n)/2,startY:(t.clientHeight-n)/2}),Vt(e,n,n)}function Xt(e){const t=e.currentTarget;t instanceof ImageCropElement&&(Ft.delete(t),t.classList.remove("nwse","nesw"),t.removeEventListener("mousemove",zt),t.removeEventListener("mousemove",Wt))}function Jt(e,t){const{image:n}=Ot.get(e)||{},s=n.naturalWidth/n.width;for(const o in t){const n=Math.round(t[o]*s);t[o]=n;const r=e.querySelector("[data-image-crop-input='".concat(o,"']"));r instanceof HTMLInputElement&&(r.value=n.toString())}e.dispatchEvent(new CustomEvent("image-crop-change",{bubbles:!0,detail:t}))}class ImageCropElement extends HTMLElement{connectedCallback(){if(Ot.has(this))return;this.appendChild(document.importNode(Nt.content,!0));const e=this.querySelector("[data-crop-box]");if(!(e instanceof HTMLElement))return;const t=this.querySelector("img");t instanceof HTMLImageElement&&(Ot.set(this,{box:e,image:t}),t.addEventListener("load",Kt),this.addEventListener("mouseleave",Xt),this.addEventListener("mouseup",Xt),e.addEventListener("mousedown",Ut),this.addEventListener("keydown",Wt),this.addEventListener("keydown",zt),this.src&&(t.src=this.src))}static get observedAttributes(){return["src"]}get src(){return this.getAttribute("src")}set src(e){e?this.setAttribute("src",e):this.removeAttribute("src")}get loaded(){return this.hasAttribute("loaded")}set loaded(e){e?this.setAttribute("loaded",""):this.removeAttribute("loaded")}attributeChangedCallback(e,t,n){const{image:s}=Ot.get(this)||{};"src"===e&&(this.loaded=!1,s&&(s.src=n))}}function Gt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}window.customElements.get("image-crop")||(window.ImageCropElement=ImageCropElement,window.customElements.define("image-crop",ImageCropElement));const Qt=new WeakMap;class MarkdownButtonElement extends HTMLElement{constructor(){super();const e=()=>{const e=Qt.get(this);e&&cn(this,e)};var t;this.addEventListener("keydown",(t=e,function(e){" "!==e.key&&"Enter"!==e.key||(e.preventDefault(),t(e))})),this.addEventListener("click",e)}connectedCallback(){this.hasAttribute("tabindex")||this.setAttribute("tabindex","0"),this.hasAttribute("role")||this.setAttribute("role","button")}click(){const e=Qt.get(this);e&&cn(this,e)}}class MarkdownHeaderButtonElement extends MarkdownButtonElement{constructor(){super();const e=parseInt(this.getAttribute("level")||3,10);if(e<1||e>6)return;const t="".concat("#".repeat(e)," ");Qt.set(this,{prefix:t})}}window.customElements.get("md-header")||(window.MarkdownHeaderButtonElement=MarkdownHeaderButtonElement,window.customElements.define("md-header",MarkdownHeaderButtonElement));class MarkdownBoldButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"**",suffix:"**",trimFirst:!0})}connectedCallback(){super.connectedCallback(),this.setAttribute("hotkey","b")}}window.customElements.get("md-bold")||(window.MarkdownBoldButtonElement=MarkdownBoldButtonElement,window.customElements.define("md-bold",MarkdownBoldButtonElement));class MarkdownItalicButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"_",suffix:"_",trimFirst:!0})}connectedCallback(){super.connectedCallback(),this.setAttribute("hotkey","i")}}window.customElements.get("md-italic")||(window.MarkdownItalicButtonElement=MarkdownItalicButtonElement,window.customElements.define("md-italic",MarkdownItalicButtonElement));class MarkdownQuoteButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"> ",multiline:!0,surroundWithNewlines:!0})}}window.customElements.get("md-quote")||(window.MarkdownQuoteButtonElement=MarkdownQuoteButtonElement,window.customElements.define("md-quote",MarkdownQuoteButtonElement));class MarkdownCodeButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"`",suffix:"`",blockPrefix:"```",blockSuffix:"```"})}}window.customElements.get("md-code")||(window.MarkdownCodeButtonElement=MarkdownCodeButtonElement,window.customElements.define("md-code",MarkdownCodeButtonElement));class MarkdownLinkButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"[",suffix:"](url)",replaceNext:"url",scanFor:"https?://"})}connectedCallback(){super.connectedCallback(),this.setAttribute("hotkey","k")}}window.customElements.get("md-link")||(window.MarkdownLinkButtonElement=MarkdownLinkButtonElement,window.customElements.define("md-link",MarkdownLinkButtonElement));class MarkdownImageButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"",replaceNext:"url",scanFor:"https?://"})}}window.customElements.get("md-image")||(window.MarkdownImageButtonElement=MarkdownImageButtonElement,window.customElements.define("md-image",MarkdownImageButtonElement));class MarkdownUnorderedListButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"- ",multiline:!0,surroundWithNewlines:!0})}}window.customElements.get("md-unordered-list")||(window.MarkdownUnorderedListButtonElement=MarkdownUnorderedListButtonElement,window.customElements.define("md-unordered-list",MarkdownUnorderedListButtonElement));class MarkdownOrderedListButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"1. ",multiline:!0,orderedList:!0})}}window.customElements.get("md-ordered-list")||(window.MarkdownOrderedListButtonElement=MarkdownOrderedListButtonElement,window.customElements.define("md-ordered-list",MarkdownOrderedListButtonElement));class MarkdownTaskListButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"- [ ] ",multiline:!0,surroundWithNewlines:!0})}connectedCallback(){super.connectedCallback(),this.setAttribute("hotkey","L")}}window.customElements.get("md-task-list")||(window.MarkdownTaskListButtonElement=MarkdownTaskListButtonElement,window.customElements.define("md-task-list",MarkdownTaskListButtonElement));class MarkdownMentionButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"@",prefixSpace:!0})}}window.customElements.get("md-mention")||(window.MarkdownMentionButtonElement=MarkdownMentionButtonElement,window.customElements.define("md-mention",MarkdownMentionButtonElement));class MarkdownRefButtonElement extends MarkdownButtonElement{constructor(){super(),Qt.set(this,{prefix:"#",prefixSpace:!0})}}window.customElements.get("md-ref")||(window.MarkdownRefButtonElement=MarkdownRefButtonElement,window.customElements.define("md-ref",MarkdownRefButtonElement));const Zt=navigator.userAgent.match(/Macintosh/)?"Meta":"Control";class MarkdownToolbarElement extends HTMLElement{constructor(){super()}connectedCallback(){const e=function(e,t){if(t.metaKey&&"Meta"===Zt||t.ctrlKey&&"Control"===Zt){const n=e.querySelector('[hotkey="'.concat(t.key,'"]'));n&&(n.click(),t.preventDefault())}}.bind(null,this);this.field&&(this.field.addEventListener("keydown",e),en.set(this,e))}disconnectedCallback(){const e=en.get(this);e&&this.field&&(this.field.removeEventListener("keydown",e),en.delete(this))}get field(){const e=this.getAttribute("for");if(!e)return;const t=document.getElementById(e);return t instanceof HTMLTextAreaElement?t:null}}const en=new WeakMap;function tn(e){return e.trim().split("\n").length>1}function nn(e,t){return Array(t+1).join(e)}function sn(e,t,n){let s=t;const o=n?/\n/:/\s/;for(;e[s]&&!e[s].match(o);)s++;return s}window.customElements.get("markdown-toolbar")||(window.MarkdownToolbarElement=MarkdownToolbarElement,window.customElements.define("markdown-toolbar",MarkdownToolbarElement));let on=null;function rn(e,t){const n=e.value.slice(e.selectionStart,e.selectionEnd);let s;s=t.orderedList?function(e){const t=/^\d+\.\s+/,n=e.selectionStart===e.selectionEnd;let s,o,r,i,a=e.value.slice(e.selectionStart,e.selectionEnd),c=a,l=a.split("\n");if(n){const t=e.value.slice(0,e.selectionStart).split(/\n/);r=e.selectionStart-t[t.length-1].length,i=sn(e.value,e.selectionStart,!0),c=e.value.slice(r,i)}const u=c.split("\n");if(u.every(e=>t.test(e))){if(l=u.map(e=>e.replace(t,"")),a=l.join("\n"),n&&r&&i){const t=u[0].length-l[0].length;o=s=e.selectionStart-t,e.selectionStart=r,e.selectionEnd=i}}else{l=function(){let e,t,n;const s=[];for(n=e=0,t=l.length;ee.startsWith(n)&&e.endsWith(s)))r=c.map(e=>e.slice(n.length,e.length-s.length)).join("\n"),a=i+r.length;else if(r=c.map(e=>n+e+s).join("\n"),o){const{newlinesToAppend:t,newlinesToPrepend:n}=an(e);i+=t.length,a=i+r.length,r=t+r+n}return{text:r,selectionStart:i,selectionEnd:a}}(e,t):function(e,t){let n,s;const{prefix:o,suffix:r,blockPrefix:i,blockSuffix:a,replaceNext:c,prefixSpace:l,scanFor:u,surroundWithNewlines:d}=t,m=e.selectionStart,f=e.selectionEnd;let p=e.value.slice(e.selectionStart,e.selectionEnd),g=tn(p)&&i.length>0?"".concat(i,"\n"):o,h=tn(p)&&a.length>0?"\n".concat(a):r;if(l){const t=e.value[e.selectionStart-1];0===e.selectionStart||null==t||t.match(/\s/)||(g=" ".concat(g))}p=function(e,t,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(e.selectionStart===e.selectionEnd)e.selectionStart=function(e,t){let n=t;for(;e[n]&&null!=e[n-1]&&!e[n-1].match(/\s/);)n--;return n}(e.value,e.selectionStart),e.selectionEnd=sn(e.value,e.selectionEnd,s);else{const s=e.selectionStart-t.length,o=e.selectionEnd+n.length,r=e.value.slice(s,e.selectionStart)===t,i=e.value.slice(e.selectionEnd,o)===n;r&&i&&(e.selectionStart=s,e.selectionEnd=o)}return e.value.slice(e.selectionStart,e.selectionEnd)}(e,g,h,t.multiline);let v=e.selectionStart,b=e.selectionEnd;const w=c.length>0&&h.indexOf(c)>-1&&p.length>0;if(d){const t=an(e);n=t.newlinesToAppend,s=t.newlinesToPrepend,g=n+o,h+=s}if(p.startsWith(g)&&p.endsWith(h)){const e=p.slice(g.length,p.length-h.length);if(m===f){let t=m-g.length;t=Math.max(t,v),t=Math.min(t,v+e.length),v=b=t}else b=v+e.length;return{text:e,selectionStart:v,selectionEnd:b}}if(w){if(u.length>0&&p.match(u)){h=h.replace(c,p);const e=g+h;return v=b=v+g.length,{text:e,selectionStart:v,selectionEnd:b}}{const e=g+p+h;return v=v+g.length+p.length+h.indexOf(c),b=v+c.length,{text:e,selectionStart:v,selectionEnd:b}}}{let e=g+p+h;v=m+g.length,b=f+g.length;const n=p.match(/^\s*|\s*$/g);if(t.trimFirst&&n){const t=n[0]||"",s=n[1]||"";e=t+g+p.trim()+h+s,v+=t.length,b-=s.length}return{text:e,selectionStart:v,selectionEnd:b}}}(e,t),function(e,t){let{text:n,selectionStart:s,selectionEnd:o}=t;const r=e.selectionStart,i=e.value.slice(0,r),a=e.value.slice(e.selectionEnd);if(null===on||!0===on){e.contentEditable="true";try{on=document.execCommand("insertText",!1,n)}catch(c){on=!1}e.contentEditable="false"}if(on&&!e.value.slice(0,e.selectionStart).endsWith(n)&&(on=!1),!on){try{document.execCommand("ms-beginUndoUnit")}catch(l){}e.value=i+n+a;try{document.execCommand("ms-endUndoUnit")}catch(l){}e.dispatchEvent(new CustomEvent("input",{bubbles:!0,cancelable:!0}))}null!=s&&null!=o?e.setSelectionRange(s,o):e.setSelectionRange(r,e.selectionEnd)}(e,s)}function an(e){const t=e.value.slice(0,e.selectionStart),n=e.value.slice(e.selectionEnd),s=t.match(/\n*$/),o=n.match(/^\n*/),r=s?s[0].length:0,i=o?o[0].length:0;let a,c;return t.match(/\S/)&&r<2&&(a=nn("\n",2-r)),n.match(/\S/)&&i<2&&(c=nn("\n",2-i)),null==a&&(a=""),null==c&&(c=""),{newlinesToAppend:a,newlinesToPrepend:c}}function cn(e,t){const n=e.closest("markdown-toolbar");if(!(n instanceof MarkdownToolbarElement))return;const s=function(e){for(var t=1;t{const t=e.target;if(!(t instanceof HTMLElement))return;if("tab"!==t.getAttribute("role")&&!t.closest('[role="tablist"]'))return;const n=Array.from(this.querySelectorAll('[role="tablist"] [role="tab"]')),s=n.indexOf(n.find(e=>e.matches('[aria-selected="true"]')));if("ArrowRight"===e.code){let e=s+1;e>=n.length&&(e=0),ln(this,e)}else if("ArrowLeft"===e.code){let e=s-1;e<0&&(e=n.length-1),ln(this,e)}else"Home"===e.code?(ln(this,0),e.preventDefault()):"End"===e.code&&(ln(this,n.length-1),e.preventDefault())}),this.addEventListener("click",e=>{const t=Array.from(this.querySelectorAll('[role="tablist"] [role="tab"]'));if(!(e.target instanceof Element))return;const n=e.target.closest('[role="tab"]');n&&n.closest('[role="tablist"]')&&ln(this,t.indexOf(n))})}}function ln(e,t){const n=e.querySelectorAll('[role="tablist"] [role="tab"]'),s=e.querySelectorAll('[role="tabpanel"]'),o=n[t],r=s[t];if(!!e.dispatchEvent(new CustomEvent("tab-container-change",{bubbles:!0,cancelable:!0,detail:{relatedTarget:r}}))){for(const e of n)e.setAttribute("aria-selected","false"),e.setAttribute("tabindex","-1");for(const e of s)e.hidden=!0,e.setAttribute("tabindex","0");o.setAttribute("aria-selected","true"),o.removeAttribute("tabindex"),o.focus(),r.hidden=!1,e.dispatchEvent(new CustomEvent("tab-container-changed",{bubbles:!0,detail:{relatedTarget:r}}))}}function un(e,t){(function(e,t){const n=e.scrollTop,s=n+e.clientHeight,o=t.offsetTop,r=o+t.clientHeight;return o>=n&&r<=s})(e,t)||(e.scrollTop=t.offsetTop)}function dn(e,t){e.addEventListener("compositionstart",bn),e.addEventListener("compositionend",bn),e.addEventListener("keydown",pn),t.addEventListener("click",gn)}window.customElements.get("tab-container")||(window.TabContainerElement=TabContainerElement,window.customElements.define("tab-container",TabContainerElement));let mn=!1;const fn=!!navigator.userAgent.match(/Macintosh/);function pn(e){if(e.shiftKey||e.metaKey||e.altKey)return;const t=e.currentTarget;if(!(t instanceof HTMLTextAreaElement||t instanceof HTMLInputElement))return;if(mn)return;const n=document.getElementById(t.getAttribute("aria-owns")||"");if(n)switch(e.key){case"Enter":case"Tab":(function(e,t){const n=t.querySelector('[aria-selected="true"]');return!(!n||"true"!==n.getAttribute("aria-disabled")&&(n.click(),0))})(0,n)&&e.preventDefault();break;case"Escape":vn(t,n);break;case"ArrowDown":hn(t,n,1),e.preventDefault();break;case"ArrowUp":hn(t,n,-1),e.preventDefault();break;case"n":fn&&e.ctrlKey&&(hn(t,n,1),e.preventDefault());break;case"p":fn&&e.ctrlKey&&(hn(t,n,-1),e.preventDefault())}}function gn(e){if(!(e.target instanceof Element))return;const t=e.target.closest('[role="option"]');t&&"true"!==t.getAttribute("aria-disabled")&&function(e){e.dispatchEvent(new CustomEvent("combobox-commit",{bubbles:!0}))}(t)}function hn(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;const s=t.querySelector('[aria-selected="true"]'),o=Array.from(t.querySelectorAll('[role="option"]')),r=o.indexOf(s);let i=1===n?0:o.length-1;if(s&&r>=0){const e=r+n;e>=0&&es)return;const o=e[s-1];return!o||wn.test(o)?{word:e.substring(s+t.length,n),position:s+t.length}:void 0}const yn=["position:absolute;","overflow:auto;","word-wrap:break-word;","top:0px;","left:-9999px;"],En=["box-sizing","font-family","font-size","font-style","font-variant","font-weight","height","letter-spacing","line-height","max-height","min-height","padding-bottom","padding-left","padding-right","padding-top","border-bottom","border-left","border-right","border-top","text-decoration","text-indent","text-transform","width","word-spacing"],Ln=new WeakMap;function Tn(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.selectionEnd;const{mirror:n,marker:s}=function(e,t){const n=e.nodeName.toLowerCase();if("textarea"!==n&&"input"!==n)throw new Error("expected textField to a textarea or input");let s=Ln.get(e);if(s&&s.parentElement===e.parentElement)s.innerHTML="";else{s=document.createElement("div"),Ln.set(e,s);const t=window.getComputedStyle(e),o=yn.slice(0);"textarea"===n?o.push("white-space:pre-wrap;"):o.push("white-space:nowrap;");for(let e=0,n=En.length;e{n.remove()},5e3),{top:r.top-o.top,left:r.left-o.left}}const kn=new WeakMap;class Mn{constructor(e,t){this.expander=e,this.input=t,this.menu=null,this.oninput=this.onInput.bind(this),this.onpaste=this.onPaste.bind(this),this.onkeydown=this.onKeydown.bind(this),this.oncommit=this.onCommit.bind(this),this.onmousedown=this.onMousedown.bind(this),this.onblur=this.onBlur.bind(this),this.interactingWithList=!1,t.addEventListener("paste",this.onpaste),t.addEventListener("input",this.oninput),t.addEventListener("keydown",this.onkeydown),t.addEventListener("blur",this.onblur)}destroy(){this.input.removeEventListener("paste",this.onpaste),this.input.removeEventListener("input",this.oninput),this.input.removeEventListener("keydown",this.onkeydown),this.input.removeEventListener("blur",this.onblur)}activate(e,t){if(this.input!==document.activeElement)return;this.deactivate(),this.menu=t,t.id||(t.id="text-expander-".concat(Math.floor(1e5*Math.random()).toString())),this.input.setAttribute("aria-owns",t.id),this.expander.append(t);const{top:n,left:s}=Tn(this.input,e.position);t.style.top="".concat(n,"px"),t.style.left="".concat(s,"px"),dn(this.input,t),t.addEventListener("combobox-commit",this.oncommit),t.addEventListener("mousedown",this.onmousedown),vn(this.input,t),hn(this.input,t)}deactivate(){const e=this.menu;var t,n;e&&(this.menu=null,e.removeEventListener("combobox-commit",this.oncommit),e.removeEventListener("mousedown",this.onmousedown),t=this.input,n=e,t.removeAttribute("aria-activedescendant"),t.removeEventListener("compositionstart",bn),t.removeEventListener("compositionend",bn),t.removeEventListener("keydown",pn),n.removeEventListener("click",gn),this.input.removeAttribute("aria-owns"),e.remove())}onCommit(e){let{target:t}=e;const n=t;if(!(n instanceof HTMLElement))return;const s=this.match;if(!s)return;const o=this.input.value.substring(0,s.position-s.key.length),r=this.input.value.substring(s.position+s.text.length),i={item:n,key:s.key,value:null};if(!this.expander.dispatchEvent(new CustomEvent("text-expander-value",{cancelable:!0,detail:i})))return;if(!i.value)return;const a="".concat(i.value," ");this.input.value=o+a+r,this.deactivate(),this.input.focus();const c=o.length+a.length;this.input.selectionStart=c,this.input.selectionEnd=c}onBlur(){this.interactingWithList?this.interactingWithList=!1:this.deactivate()}onPaste(){this.justPasted=!0}async onInput(){if(this.justPasted)return void(this.justPasted=!1);const e=this.findMatch();if(e){this.match=e;const t=await this.notifyProviders(e);if(!this.match)return;t?this.activate(e,t):this.deactivate()}else this.match=null,this.deactivate()}findMatch(){const e=this.input.selectionEnd,t=this.input.value;for(const n of this.expander.keys){const s=jn(t,n,e);if(s)return{text:s.word,key:n,position:s.position}}}async notifyProviders(e){const t=[];if(this.expander.dispatchEvent(new CustomEvent("text-expander-change",{cancelable:!0,detail:{provide:e=>t.push(e),text:e.text,key:e.key}})))return(await Promise.all(t)).filter(e=>e.matched).map(e=>e.fragment)[0]}onMousedown(){this.interactingWithList=!0}onKeydown(e){"Escape"===e.key&&(this.deactivate(),e.stopImmediatePropagation(),e.preventDefault())}}class TextExpanderElement extends HTMLElement{get keys(){const e=this.getAttribute("keys");return e?e.split(" "):[]}connectedCallback(){const e=this.querySelector('input[type="text"], textarea');if(!(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement))return;const t=new Mn(this,e);kn.set(this,t)}disconnectedCallback(){const e=kn.get(this);e&&(e.destroy(),kn.delete(this))}}window.customElements.get("text-expander")||(window.TextExpanderElement=TextExpanderElement,window.customElements.define("text-expander",TextExpanderElement));const An=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],xn=["January","February","March","April","May","June","July","August","September","October","November","December"];function Sn(e){return"0".concat(e).slice(-2)}function Hn(e,t){const n=e.getDay(),s=e.getDate(),o=e.getMonth(),r=e.getFullYear(),i=e.getHours(),a=e.getMinutes(),c=e.getSeconds();return t.replace(/%([%aAbBcdeHIlmMpPSwyYZz])/g,function(t){let l;switch(t[1]){case"%":return"%";case"a":return An[n].slice(0,3);case"A":return An[n];case"b":return xn[o].slice(0,3);case"B":return xn[o];case"c":return e.toString();case"d":return Sn(s);case"e":return String(s);case"H":return Sn(i);case"I":return Sn(Hn(e,"%l"));case"l":return 0===i||12===i?String(12):String((i+12)%12);case"m":return Sn(o+1);case"M":return Sn(a);case"p":return i>11?"PM":"AM";case"P":return i>11?"pm":"am";case"S":return Sn(c);case"w":return String(n);case"y":return Sn(r%100);case"Y":return String(r);case"Z":return(l=e.toString().match(/\((\w+)\)$/))?l[1]:"";case"z":return(l=e.toString().match(/\w([+-]\d\d\d\d) /))?l[1]:""}return""})}function Cn(e){let t;return function(){if(t)return t;if("Intl"in window)try{return t=new Intl.DateTimeFormat(void 0,e)}catch(n){if(!(n instanceof RangeError))throw n}}}let qn=null;const In=Cn({day:"numeric",month:"short"});function _n(){if(null!==qn)return qn;const e=In();if(e){const t=e.format(new Date(0));return qn=!!t.match(/^\d/)}return!1}let $n=null;const Dn=Cn({day:"numeric",month:"short",year:"numeric"});function Bn(e){const t=e.closest("[lang]");return t instanceof HTMLElement&&t.lang?t.lang:"default"}const Rn=new WeakMap;class ExtendedTimeElement extends HTMLElement{static get observedAttributes(){return["datetime","day","format","lang","hour","minute","month","second","title","weekday","year"]}connectedCallback(){const e=this.getFormattedTitle();e&&!this.hasAttribute("title")&&this.setAttribute("title",e);const t=this.getFormattedDate();t&&(this.textContent=t)}attributeChangedCallback(e,t,n){if("datetime"===e){const e=Date.parse(n);isNaN(e)?Rn.delete(this):Rn.set(this,new Date(e))}const s=this.getFormattedTitle();s&&!this.hasAttribute("title")&&this.setAttribute("title",s);const o=this.getFormattedDate();o&&(this.textContent=o)}get date(){return Rn.get(this)}getFormattedTitle(){const e=this.date;if(!e)return;const t=Nn();if(t)return t.format(e);try{return e.toLocaleString()}catch(n){if(n instanceof RangeError)return e.toString();throw n}}getFormattedDate(){}}const Nn=Cn({day:"numeric",month:"short",year:"numeric",hour:"numeric",minute:"2-digit",timeZoneName:"short"}),Pn=new WeakMap;class LocalTimeElement extends ExtendedTimeElement{attributeChangedCallback(e,t,n){"hour"!==e&&"minute"!==e&&"second"!==e&&"time-zone-name"!==e||Pn.delete(this),super.attributeChangedCallback(e,t,n)}getFormattedDate(){const e=this.date;if(!e)return;const t=function(e,t){const n={weekday:{short:"%a",long:"%A"},day:{numeric:"%e","2-digit":"%d"},month:{short:"%b",long:"%B"},year:{numeric:"%Y","2-digit":"%y"}};let s=_n()?"weekday day month year":"weekday month day, year";for(const o in n){const t=n[o][e.getAttribute(o)];s=s.replace(o,t||"")}return s=s.replace(/(\s,)|(,\s$)/,""),Hn(t,s).replace(/\s+/," ").trim()}(this,e)||"",n=function(e,t){const n={},s=e.getAttribute("hour");"numeric"!==s&&"2-digit"!==s||(n.hour=s);const o=e.getAttribute("minute");"numeric"!==o&&"2-digit"!==o||(n.minute=o);const r=e.getAttribute("second");"numeric"!==r&&"2-digit"!==r||(n.second=r);const i=e.getAttribute("time-zone-name");"short"!==i&&"long"!==i||(n.timeZoneName=i);if(0===Object.keys(n).length)return;let a=Pn.get(e);a||(a=Cn(n),Pn.set(e,a));const c=a();if(c)return c.format(t);{const e=n.second?"%H:%M:%S":"%H:%M";return Hn(t,e)}}(this,e)||"";return"".concat(t," ").concat(n).trim()}}window.customElements.get("local-time")||(window.LocalTimeElement=LocalTimeElement,window.customElements.define("local-time",LocalTimeElement));class Fn{constructor(e,t){this.date=e,this.locale=t}toString(){const e=this.timeElapsed();if(e)return e;{const e=this.timeAhead();return e||"on ".concat(this.formatDate())}}timeElapsed(){const e=(new Date).getTime()-this.date.getTime(),t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24);return e>=0&&o<30?this.timeAgoFromMs(e):null}timeAhead(){const e=this.date.getTime()-(new Date).getTime(),t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24);return e>=0&&o<30?this.timeUntil():null}timeAgo(){const e=(new Date).getTime()-this.date.getTime();return this.timeAgoFromMs(e)}timeAgoFromMs(e){const t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24),r=Math.round(o/30),i=Math.round(r/12);return e<0?On(this.locale,0,"second"):t<10?On(this.locale,0,"second"):t<45?On(this.locale,-t,"second"):t<90?On(this.locale,-n,"minute"):n<45?On(this.locale,-n,"minute"):n<90?On(this.locale,-s,"hour"):s<24?On(this.locale,-s,"hour"):s<36?On(this.locale,-o,"day"):o<30?On(this.locale,-o,"day"):r<12?On(this.locale,-r,"month"):On(this.locale,-i,"year")}microTimeAgo(){const e=(new Date).getTime()-this.date.getTime(),t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24),r=Math.round(o/30),i=Math.round(r/12);return n<1?"1m":n<60?"".concat(n,"m"):s<24?"".concat(s,"h"):o<365?"".concat(o,"d"):"".concat(i,"y")}timeUntil(){const e=this.date.getTime()-(new Date).getTime();return this.timeUntilFromMs(e)}timeUntilFromMs(e){const t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24),r=Math.round(o/30),i=Math.round(r/12);return r>=18?On(this.locale,i,"year"):r>=12?On(this.locale,i,"year"):o>=45?On(this.locale,r,"month"):o>=30?On(this.locale,r,"month"):s>=36?On(this.locale,o,"day"):s>=24?On(this.locale,o,"day"):n>=90?On(this.locale,s,"hour"):n>=45?On(this.locale,s,"hour"):t>=90?On(this.locale,n,"minute"):t>=45?On(this.locale,n,"minute"):On(this.locale,t>=10?t:0,"second")}microTimeUntil(){const e=this.date.getTime()-(new Date).getTime(),t=Math.round(e/1e3),n=Math.round(t/60),s=Math.round(n/60),o=Math.round(s/24),r=Math.round(o/30),i=Math.round(r/12);return o>=365?"".concat(i,"y"):s>=24?"".concat(o,"d"):n>=60?"".concat(s,"h"):n>1?"".concat(n,"m"):"1m"}formatDate(){let e=_n()?"%e %b":"%b %e";var t;return t=this.date,(new Date).getUTCFullYear()!==t.getUTCFullYear()&&(e+=function(){if(null!==$n)return $n;const e=Dn();if(e){const t=e.format(new Date(0));return $n=!!t.match(/\d,/)}return!0}()?", %Y":" %Y"),Hn(this.date,e)}formatTime(){const e=Wn();return e?e.format(this.date):Hn(this.date,"%l:%M%P")}}function On(e,t,n){const s=function(e,t){if("Intl"in window&&"RelativeTimeFormat"in window.Intl)try{return new Intl.RelativeTimeFormat(e,t)}catch(n){if(!(n instanceof RangeError))throw n}}(e,{numeric:"auto"});return s?s.format(t,n):function(e,t){if(0===e)switch(t){case"year":case"quarter":case"month":case"week":return"this ".concat(t);case"day":return"today";case"hour":case"minute":return"in 0 ".concat(t,"s");case"second":return"now"}else if(1===e)switch(t){case"year":case"quarter":case"month":case"week":return"next ".concat(t);case"day":return"tomorrow";case"hour":case"minute":case"second":return"in 1 ".concat(t)}else if(-1===e)switch(t){case"year":case"quarter":case"month":case"week":return"last ".concat(t);case"day":return"yesterday";case"hour":case"minute":case"second":return"1 ".concat(t," ago")}else if(e>1)switch(t){case"year":case"quarter":case"month":case"week":case"day":case"hour":case"minute":case"second":return"in ".concat(e," ").concat(t,"s")}else if(e<-1)switch(t){case"year":case"quarter":case"month":case"week":case"day":case"hour":case"minute":case"second":return"".concat(-e," ").concat(t,"s ago")}throw new RangeError("Invalid unit argument for format() '".concat(t,"'"))}(t,n)}const Wn=Cn({hour:"numeric",minute:"2-digit"});class RelativeTimeElement extends ExtendedTimeElement{getFormattedDate(){const e=this.date;if(e)return new Fn(e,Bn(this)).toString()}connectedCallback(){zn.push(this),Un||(Vn(),Un=setInterval(Vn,6e4)),super.connectedCallback()}disconnectedCallback(){const e=zn.indexOf(this);-1!==e&&zn.splice(e,1),zn.length||Un&&(clearInterval(Un),Un=null)}}const zn=[];let Un;function Vn(){let e,t,n;for(t=0,n=zn.length;tsetTimeout(e,t)),this.fetch(e,1.5*t)):n}}function Kn(e){return"ArrowDown"===e.key||"ArrowUp"===e.key}function Yn(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/firefox-label-hacks.js:114");const t=d(e,"label");t.hasAttribute("data-role")||t.setAttribute("data-role",p(t,"role")),t.setAttribute("role",p(t,"data-role")),e.removeAttribute("role")}window.customElements.get("poll-include-fragment")||(window.PollIncludeFragmentElement=PollIncludeFragmentElement,window.customElements.define("poll-include-fragment",PollIncludeFragmentElement)),navigator.userAgent.match(/Firefox/)&&(r('details-menu label[tabindex][role^="menuitem"]',e=>{const t=e.querySelector("input");if(!t)return;const n=e.classList.contains("select-menu-item"),s=t.classList.contains("d-none"),o=n||s||t.hidden;n&&t.classList.add("d-block"),s&&t.classList.remove("d-none"),o&&(t.classList.add("sr-only"),t.hidden=!1),e.removeAttribute("tabindex")}),u("focus",'details-menu label[role="menuitemradio"] input, details-menu label[role="menuitemcheckbox"] input',e=>{const t=d(e.currentTarget,"label");t.classList.contains("select-menu-item")&&t.classList.add("navigation-focus"),t.classList.contains("SelectMenu-item")&&t.classList.add("hx_menuitem--focus"),t.classList.contains("dropdown-item")&&t.classList.add("hx_menuitem--focus"),e.currentTarget.addEventListener("blur",()=>{t.classList.contains("select-menu-item")&&t.classList.remove("navigation-focus"),t.classList.contains("SelectMenu-item")&&t.classList.remove("hx_menuitem--focus"),t.classList.contains("dropdown-item")&&t.classList.remove("hx_menuitem--focus")},{once:!0})},{capture:!0}),m("keydown",'details-menu label[role="menuitemradio"] input, details-menu label[role="menuitemcheckbox"] input',async function(e){if(Kn(e))!function(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/firefox-label-hacks.js:106");const t=d(e,"label");t.hasAttribute("data-role")||t.setAttribute("data-role",p(t,"role"));e.setAttribute("role",p(t,"data-role")),t.removeAttribute("role")}(e.currentTarget);else if("Enter"===e.key){const t=e.currentTarget;if(e.preventDefault(),await f(),!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/firefox-label-hacks.js:80");t.click()}}),u("blur",'details-menu label input[role="menuitemradio"], details-menu label input[role="menuitemcheckbox"]',e=>{Yn(e.currentTarget)},{capture:!0}),m("keyup",'details-menu label[role="menuitemradio"] input, details-menu label[role="menuitemcheckbox"] input',e=>{Kn(e)&&Yn(e.currentTarget)}));var Xn=-1/0,Jn=1/0,Gn=-.005,Qn=-.005,Zn=-.01,es=1,ts=.9,ns=.8,ss=.7,os=.6;function rs(e){return e.toUpperCase()===e}function is(e,t,n,s){for(var o=e.length,r=t.length,i=e.toLowerCase(),a=t.toLowerCase(),c=function(e){for(var t,n=e.length,s=new Array(n),o="/",r=0;r1024)return Xn;var o=new Array(n),r=new Array(n);return is(e,t,o,r),r[n-1][s-1]},positions:function(e,t){var n=e.length,s=t.length,o=new Array(n);if(!n||!s)return o;if(n===s){for(var r=0;r1024)return o;var i=new Array(n),a=new Array(n);is(e,t,i,a);for(var c=!1,l=(r=n-1,s-1);r>=0;r--)for(;l>=0;l--)if(i[r][l]!==Xn&&(c||i[r][l]===a[r][l])){c=r&&l&&a[r][l]===i[r-1][l-1]+es,o[r]=l--;break}return o},hasMatch:function(e,t){e=e.toLowerCase(),t=t.toLowerCase();for(var n=e.length,s=0,o=0;s{if(!cs(e,t))return-1/0;const s=as.score(e,t);return s{e.innerHTML="";let s=0;for(const o of as.positions(t,n)){""!==n.slice(s,o)&&e.appendChild(document.createTextNode(n.slice(s,o))),s=o+1;const t=document.createElement("mark");t.textContent=n[o],e.appendChild(t)}e.appendChild(document.createTextNode(n.slice(s)))},ds=new WeakMap,ms=new WeakMap,fs=new WeakMap,ps=e=>{if(!fs.has(e)&&e instanceof HTMLElement){const t=(e.getAttribute("data-value")||e.textContent||"").trim();return fs.set(e,t),t}return fs.get(e)||""};class FuzzyListElement extends HTMLElement{connectedCallback(){const e=this.querySelector("ul");if(!e)return;const t=new Set(e.querySelectorAll("li")),n=this.querySelector("input");n instanceof HTMLInputElement&&n.addEventListener("input",()=>{this.value=n.value});const s=new MutationObserver(e=>{let n=!1;for(const s of e)if("childList"===s.type&&s.addedNodes.length)for(const e of s.addedNodes)if(e instanceof HTMLLIElement&&!t.has(e)){const s=ps(e);n=n||cs(this.value,s),t.add(e)}n&&this.sort()});s.observe(e,{childList:!0});const o={handler:s,items:t,lazyItems:new Map,timer:null};ms.set(this,o)}disconnectedCallback(){const e=ms.get(this);e&&(e.handler.disconnect(),ms.delete(this))}addLazyItems(e,t){const n=ms.get(this);if(!n)return;const{lazyItems:s}=n,{value:o}=this;let r=!1;for(const i of e)s.set(i,t),r=r||o&&cs(o,i);r&&this.sort()}sort(){const e=ds.get(this);e&&(e.aborted=!0);const t={aborted:!1};ds.set(this,t);const{minScore:n,markSelector:s,maxMatches:o,value:r}=this,i=ms.get(this);if(!i)return;if(!this.dispatchEvent(new CustomEvent("fuzzy-list-will-sort",{cancelable:!0,detail:r})))return;const{items:a,lazyItems:c}=i,l=this.hasAttribute("mark-selector"),u=this.querySelector("ul");if(!u)return;const d=[];if(r){for(const e of a){const t=ps(e),s=ls(r,t,n);s!==-1/0&&d.push({item:e,score:s})}for(const[e,t]of c){const s=ls(r,e,n);s!==-1/0&&d.push({text:e,render:t,score:s})}d.sort((e,t)=>t.score-e.score).splice(o)}else{let e=d.length;for(const t of a){if(e>=o)break;d.push({item:t,score:1}),e+=1}for(const[t,n]of c){if(e>=o)break;d.push({text:t,render:n,score:1}),e+=1}}requestAnimationFrame(()=>{if(t.aborted)return;const e=u.querySelector('input[type="radio"]:checked');u.innerHTML="";let n=0;const o=()=>{if(t.aborted)return;const i=Math.min(d.length,n+100),m=document.createDocumentFragment();for(let e=n;e0),this.dispatchEvent(new CustomEvent("fuzzy-list-sorted",{detail:d.length}))}};o()})}get value(){return this.getAttribute("value")||""}set value(e){this.setAttribute("value",e)}get markSelector(){return this.getAttribute("mark-selector")||""}set markSelector(e){e?this.setAttribute("mark-selector",!0===e?"":e):this.removeAttribute("mark-selector")}get minScore(){return Number(this.getAttribute("min-score")||0)}set minScore(e){Number.isNaN(e)||this.setAttribute("min-score",String(e))}get maxMatches(){return Number(this.getAttribute("max-matches")||1/0)}set maxMatches(e){Number.isNaN(e)||this.setAttribute("max-matches",String(e))}static get observedAttributes(){return["value","mark-selector","min-score","max-matches"]}attributeChangedCallback(e,t,n){if(t===n)return;const s=ms.get(this);s&&(s.timer&&clearTimeout(s.timer),s.timer=setTimeout(()=>this.sort(),100))}}function gs(){const e=v(document,"input[type=text].js-advanced-search-prefix",HTMLInputElement),t=v(document,"select.js-advanced-search-prefix",HTMLSelectElement),n=v(document,".js-advanced-search-prefix:checked",HTMLInputElement),s=[...vs(e),...vs(t),...vs(n)],o=s.reduce((e,t)=>(t.value&&t.type&&e[t.type]++,e),{Repositories:0,Users:0,Code:0,Issues:0}),r=s.reduce((e,t)=>`${e} ${function({prefix:e,value:t}){return""===e?"":t?`${e}${t}`:""}(t)}`.trim(),""),i=b(document,".js-advanced-search-input",HTMLInputElement).value;b(document,".js-type-value",HTMLInputElement).value=function(e){let t=new URLSearchParams(window.location.search).get("type")||"Repositories",n=0;for(const s in e)e[s]>n&&(n=e[s],t=s);return t}(o),b(document,".js-search-query",HTMLInputElement).value=`${i} ${r}`.trim();const a=b(document,".js-advanced-query");a.innerHTML="",a.textContent=r;const c=document.createElement("span");c.textContent=i.trim(),a.prepend(c," ")}function hs(e){return-1!==e.search(/\s/g)?`"${e}"`:e}function vs(e){return e.map(e=>{const t=e.value.trim(),n=p(e,"data-search-prefix"),s=e.getAttribute("data-search-type");return""===n?{prefix:n,value:t,type:s}:-1!==t.search(/,/g)&&"location"!==n?t.split(/,/).map(e=>({prefix:n,value:hs(e.trim()),type:s})):{prefix:n,value:hs(t),type:s}}).flatMap(e=>e)}function bs(){return v(document,".js-selected-repository-field",HTMLInputElement)}function ws(){const e=b(document,"#repository-menu-list"),t=Array.from(bs()).map(e=>e.value);let n=!1;for(const o of v(e,"[role=menuitem]",HTMLButtonElement)){const e=t.includes(o.value);n||e||(n=!0),o.hidden=e}const s=e.querySelector(".js-no-repository-found");s&&(s.hidden=n)}function js(){const e=!b(document,".js-select-repositories-radio",HTMLInputElement).checked||bs().length>0;b(document,".js-integrations-install-form-submit",HTMLButtonElement).disabled=!e}function ys(){const e=bs().length,t=b(document,".js-integration-total-repos");t.hidden=0===e,t.textContent=`Selected ${e} ${w(e,"repository")}.`}function Es(e,t){const n=e.querySelector(".js-app-logo-with-bgcolor");n&&(n.style.backgroundColor=`#${t}`)}function Ls(e,t){const n=e.nextElementSibling;if(n){if(!(n instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/find-next-element-sibling.js:16");if(n instanceof HTMLElement)return n.classList.contains(t)?n:Ls(n,t)}return null}window.customElements.get("fuzzy-list")||(window.FuzzyListElement=FuzzyListElement,window.customElements.define("fuzzy-list",FuzzyListElement)),g(".js-advanced-search-prefix",function(){gs()}),u("change",".js-advanced-search-prefix",gs),h(".js-advanced-search-input",function(e){const t=d(e,".js-advanced-search-label");t.classList.add("focus"),e.addEventListener("blur",()=>t.classList.remove("focus"),{once:!0})}),r(".js-advanced-search-input",function(){gs()}),r(".js-apps-install-select-repositories-container remote-input",e=>{e.addEventListener("loadend",ws)}),u("details-menu-selected",".js-apps-install-select-repositories-menu",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/apps/installation-repo-selection.js:61");const t=e.detail.relatedTarget,n=b(document,".js-integrations-install-repo-picked"),s=b(t,"template",HTMLTemplateElement).content.cloneNode(!0);n.prepend(s),b(document,".js-min-repository-error").hidden=!0,b(document,".js-max-repository-warning").hidden=!function(){const e=+b(document,".js-integrations-install-form",HTMLFormElement).getAttribute("data-max-repos");return e>0&&bs().length>=e}(),ys(),js(),ws()},{capture:!0}),u("change",".js-integrations-install-form",js),u("click",".js-repository-picker-remove",function(e){d(e.currentTarget,".js-repository-picker-result").remove(),b(document,".js-min-repository-error").hidden=bs().length>0,ys(),js(),ws()}),u("change",".js-installation-repositories-radio",function(){const e=b(document,".js-select-repositories-radio",HTMLInputElement);b(document,".js-integrations-install-repo-selection").classList.toggle("has-removed-contents",!e.checked)}),j(".js-app-bgcolor-form",async function(e,t){const n=e.querySelector(".js-app-bgcolor-save-notice");if(!n)return;let s;try{s=await t.html()}catch(o){n.classList.remove("visible")}s&&(n.classList.add("visible"),setTimeout(()=>n.classList.remove("visible"),1500))}),g(".js-app-bgcolor-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/apps.js:45");const n=d(t,"form",HTMLFormElement),s=t.value.replace(/^#/,"");if(s.length<1)return t.classList.remove("text-red"),void Es(n,t.defaultValue);t.checkValidity()?(t.classList.remove("text-red"),Es(n,s),n.classList.contains("js-app-bgcolor-form")&&y(()=>(function(e,t){t.checkValidity()&&E(e)})(n,t),400)()):(t.classList.add("text-red"),Es(n,t.defaultValue))}),u("click",".js-banner .js-next",function(e){const t=d(e.currentTarget,".js-banner"),n=b(t,".js-dismiss"),s=b(t,".js-next",HTMLButtonElement),o=b(t,".js-page.d-block"),r=Ls(o,"js-page");if(!r)throw new Error("invariant: app/assets/modules/github/banner.js:39");o.classList.remove("d-block"),o.classList.add("d-none"),r.classList.remove("d-none"),r.classList.add("d-block"),Ls(r,"js-page")||(s.classList.add("d-none"),n.classList.remove("d-none"))}),r(".js-banner",function(e){const t=b(e,".js-dismiss");if(e.querySelectorAll(".js-page").length>0){const n=b(e,".js-next",HTMLButtonElement),s=b(e,".js-page.d-block",HTMLDivElement);s&&!Ls(s,"js-page")?t.classList.remove("d-none"):n.classList.remove("d-none")}else t.classList.remove("d-none")}),u("deprecatedAjaxSend","[data-remote]",function(e){e.currentTarget===e.target&&(e.defaultPrevented||e.currentTarget.classList.add("loading"))}),u("deprecatedAjaxComplete","[data-remote]",function(e){e.currentTarget===e.target&&e.currentTarget.classList.remove("loading")}),j("form.js-ajax-pagination, .js-ajax-pagination form",async function(e,t){const n=d(e,".js-ajax-pagination");let s;try{s=await t.html()}catch(o){if(o.response&&404===o.response.status)return void n.remove();throw o}n.replaceWith(s.html),L(e,"page:loaded")});const Ts=["input[pattern]","input[required]","textarea[required]","input[data-required-change]","textarea[data-required-change]"].join(",");h(Ts,e=>{if(!(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/html-validation.js:9");let t=e.checkValidity();function n(){const n=e.checkValidity();n!==t&&e.form&&Ms(e.form),t=n}e.addEventListener("input",n),e.addEventListener("blur",function t(){e.removeEventListener("input",n),e.removeEventListener("blur",t)})});const ks=new WeakMap;function Ms(e){const t=e.checkValidity();for(const n of v(e,"button[data-disable-invalid]",HTMLButtonElement))n.disabled=!t}r("button[data-disable-invalid]",{constructor:HTMLButtonElement,initialize(e){const t=e.form;t&&(!function(e){ks.get(e)||(e.addEventListener("change",()=>Ms(e)),ks.set(e,!0))}(t),e.disabled=!t.checkValidity())}}),r("input[data-required-change], textarea[data-required-change]",function(e){if(!(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/html-validation.js:59");const t="radio"===e.type&&e.form?T(e.form,e.name,RadioNodeList).value:null;function n(n){const s=e.form;if(n&&"radio"===e.type&&s&&t)for(const o of T(s,e.name,RadioNodeList))o.setCustomValidity(e.value===t?"unchanged":"");else e.setCustomValidity(e.value===(t||e.defaultValue)?"unchanged":"")}e.addEventListener("input",n),e.addEventListener("change",n),n(),e.form&&Ms(e.form)}),document.addEventListener("reset",function(e){if(e.target instanceof HTMLFormElement){const t=e.target;setTimeout(()=>Ms(t))}});const As=new WeakMap;function xs(e,t){t.classList.remove("is-loading","successed","errored","warn"),e.classList.remove("is-autocheck-loading","is-autocheck-successful","is-autocheck-errored");const n=t.querySelector("p.note");if(n){const e=As.get(n);e&&(n.innerHTML=e)}const s=t.querySelector("dd.error");s&&s.remove();const o=t.querySelector("dd.warning");o&&o.remove()}function Ss(e){const t=e.closest("form");if(!t)return;const n=t.querySelector(".js-auto-complete-button");n instanceof HTMLButtonElement&&(n.disabled=!e.value)}r("auto-check",function(e){const t=b(e,"input",HTMLInputElement),n=t.closest("dl.form-group")||e,s=t.form;if(!s)throw new Error("invariant: app/assets/modules/github/behaviors/autocheck.js:11");const o=n.querySelector("p.note");o&&As.set(o,o.innerHTML),e.addEventListener("loadstart",()=>{xs(t,n),n.classList.add("is-loading"),t.classList.add("is-autocheck-loading"),Ms(s)}),e.addEventListener("loadend",()=>{n.classList.remove("is-loading"),t.classList.remove("is-autocheck-loading")}),t.addEventListener("auto-check-success",e=>{if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/autocheck.js:25");t.classList.add("is-autocheck-successful"),n.classList.add("successed"),Ms(s);const{message:r}=e.detail;if(r)if(o)o.innerHTML=r;else{const e=document.createElement("dd");e.classList.add("warning"),e.innerHTML=r,n.append(e),n.classList.add("warn")}}),t.addEventListener("auto-check-error",e=>{if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/autocheck.js:45");if(t.classList.add("is-autocheck-errored"),n.classList.add("errored"),Ms(s),o)o.innerHTML=e.detail.message||"Something went wrong";else{const t=e.detail.message||"Something went wrong",s=document.createElement("dd");s.classList.add("error"),s.innerHTML=t,n.append(s)}}),t.addEventListener("input",()=>{t.value||xs(t,n)}),s.addEventListener("reset",()=>{xs(t,n)})}),r("auto-complete",function(e){e.addEventListener("loadstart",()=>e.classList.add("is-auto-complete-loading")),e.addEventListener("loadend",()=>e.classList.remove("is-auto-complete-loading"))}),r("auto-complete",{constructor:k,initialize:Ss}),u("auto-complete-change","auto-complete",function(e){if(!(e.currentTarget instanceof k))throw new Error("invariant: app/assets/modules/github/behaviors/autocomplete.js:16");Ss(e.currentTarget)});const Hs=new C;async function Cs(e){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/behaviors/autosearch-form.js:30");t.classList.add("is-sending");try{const e=x(t),n=`${t.action}&${e}`.replace(/[?&]/,"?"),s=await Hs.push(S(n)),o=t.getAttribute("data-results-container"),r=o?document.getElementById(o):null;r&&(r.innerHTML=s),H(null,"",`?${e}`)}finally{t.classList.remove("is-sending")}}function qs(e){e.preventDefault(),e.stopPropagation()}function Is(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],s=!0,o=!1,r=void 0;try{for(var i,a=e[Symbol.iterator]();!(s=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);s=!0);}catch(c){o=!0,r=c}finally{try{s||null==a.return||a.return()}finally{if(o)throw r}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function _s(e){const t=document.querySelector(".js-global-screen-reader-notice");t&&(t.textContent="",t.textContent=function(e){return(e.getAttribute("aria-label")||e.innerText||"").trim()}(e))}h(".js-autosearch-field",e=>{const t=e;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/behaviors/autosearch-form.js:52");M(t,Cs),t.addEventListener("blur",()=>A(t,Cs),{once:!0})}),h("input[data-autoselect]",async function(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/behaviors/autoselect.js:6");await f(),e.select()}),u("change","form[data-autosubmit]",function(e){const t=e.currentTarget;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/behaviors/autosubmit.js:16");E(t)}),u("change","input[data-autosubmit]",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/behaviors/autosubmit.js:22");const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/behaviors/autosubmit.js:24");E(t)}),r("a.btn.disabled",{subscribe:e=>q(e,"click",qs)}),(async()=>{await I;const e=function(e){try{return JSON.parse(window.localStorage.getItem(e))}catch(t){return{}}}("bundle-urls")||{},t=function(){const e={};for(const t of document.getElementsByTagName("script")){const n=t.src.match(/\/([\w-]+)-[0-9a-f]{32,}\.js$/);n&&(e[`${n[1]}.js`]=t.src)}for(const t of document.getElementsByTagName("link")){const n=t.href.match(/\/([\w-]+)-[0-9a-f]{32,}\.css$/);n&&(e[`${n[1]}.css`]=t.href)}return e}();!function(e,t){try{window.localStorage.setItem(e,JSON.stringify(t))}catch(n){}}("bundle-urls",t);const n=Object.keys(t).filter(n=>{const s=t[n];return e[n]!==s});n.length&&_({downloadedBundles:n})})(),r(".js-check-all-container",{subscribe:function(e){var t=!1,n=null;function s(e,t,n){var s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];t instanceof HTMLInputElement&&(t.indeterminate=s,t.checked!==n&&(t.checked=n,setTimeout(function(){var n=new CustomEvent("change",{bubbles:!0,cancelable:!1,detail:{relatedTarget:e}});t.dispatchEvent(n)})))}function o(o){var r=o.target;r instanceof Element&&(r.hasAttribute("data-check-all")?function(t){if(t instanceof CustomEvent&&t.detail){var o=t.detail.relatedTarget;if(o&&o.hasAttribute("data-check-all-item"))return}var r=t.target;if(r instanceof HTMLInputElement){n=null;var a=!0,c=!1,l=void 0;try{for(var u,d=e.querySelectorAll("[data-check-all-item]")[Symbol.iterator]();!(a=(u=d.next()).done);a=!0){var m=u.value;s(r,m,r.checked)}}catch(f){c=!0,l=f}finally{try{a||null==d.return||d.return()}finally{if(c)throw l}}i()}}(o):r.hasAttribute("data-check-all-item")&&function(o){if(o instanceof CustomEvent&&o.detail){var r=o.detail.relatedTarget;if(r&&(r.hasAttribute("data-check-all")||r.hasAttribute("data-check-all-item")))return}var a=o.target;if(a instanceof HTMLInputElement){var c=Array.from(e.querySelectorAll("[data-check-all-item]"));if(t&&n){var l=[c.indexOf(n),c.indexOf(a)].sort(),u=Is(l,2),d=u[0],m=u[1],f=!0,p=!1,g=void 0;try{for(var h,v=c.slice(d,+m+1||9e9)[Symbol.iterator]();!(f=(h=v.next()).done);f=!0){var b=h.value;s(a,b,a.checked)}}catch(T){p=!0,g=T}finally{try{f||null==v.return||v.return()}finally{if(p)throw g}}}t=!1,n=a;var w=e.querySelector("[data-check-all]");if(w){var j=c.length,y=c.filter(function(e){return e instanceof HTMLInputElement&&e.checked}).length,E=y===j,L=j>y&&y>0;s(a,w,E,L)}i()}}(o))}function r(e){e.target instanceof Element&&e.target.hasAttribute("data-check-all-item")&&(t=e.shiftKey)}function i(){var t=e.querySelector("[data-check-all-count]");if(t){var n=e.querySelectorAll("[data-check-all-item]:checked").length;t.textContent=n.toString()}}return e.addEventListener("mousedown",r),e.addEventListener("change",o),{unsubscribe:function(){e.removeEventListener("mousedown",r),e.removeEventListener("change",o)}}}});function $s(e){const t=e.querySelector(".js-clipboard-clippy-icon"),n=e.querySelector(".js-clipboard-check-icon");e.classList.toggle("ClipboardButton--success"),t&&t.classList.toggle("d-none"),n&&n.classList.toggle("d-none")}function Ds(e,t){const n=e.closest(".js-write-bucket");n&&n.classList.toggle("focused",t)}function Bs(e){const t=e.currentTarget;t instanceof Element&&Ds(t,!1)}function Rs(e){const t=d(e,".js-previewable-comment-form"),n=e.classList.contains("js-preview-tab");if(n){const e=b(t,".js-write-bucket");b(t,".js-preview-body").style.minHeight=`${e.clientHeight}px`}t.classList.toggle("preview-selected",n),t.classList.toggle("write-selected",!n);const s=b(t,'.tabnav-tab.selected, .tabnav-tab[aria-selected="true"]');s.setAttribute("aria-selected","false"),s.classList.remove("selected"),e.classList.add("selected"),e.setAttribute("aria-selected","true");const o=b(t,".js-write-tab");return n?o.setAttribute("data-hotkey","Control+P,Meta+P"):o.removeAttribute("data-hotkey"),t}u("clipboard-copy","[data-copy-feedback]",e=>{const t=e.currentTarget,n=p(t,"data-copy-feedback"),s=t.getAttribute("aria-label"),o=t.getAttribute("data-tooltip-direction")||"s";t.setAttribute("aria-label",n),t.classList.add("tooltipped",`tooltipped-${o}`),_s(t),setTimeout(()=>{s?t.setAttribute("aria-label",s):t.removeAttribute("aria-label"),t.classList.remove("tooltipped",`tooltipped-${o}`)},2e3)}),u("clipboard-copy",".js-clipboard-copy",function({currentTarget:e}){$s(e),setTimeout($s,2e3,e)}),j(".js-new-comment-form",async function(e,t){let n;!function(e){const t=e.querySelector(".js-comment-form-error");t&&(t.hidden=!0)}(e);try{n=await t.json()}catch(r){!function(e,t){let n="You can't comment at this time";if(t.response&&422===t.response.status){const e=t.response.json;e.errors&&(n+=` — your comment ${e.errors.join(", ")}`)}n+=". ";const s=e.querySelector(".js-comment-form-error");s&&(s.textContent=n,s.hidden=!1)}(e,r)}if(!n)return;e.reset();for(const i of v(e,".js-resettable-field",HTMLInputElement))$(i,i.getAttribute("data-reset-value")||"");const s=e.querySelector(".js-write-tab");s&&s.click();const o=n.json.updateContent;for(const i in o){const e=o[i],t=document.querySelector(i);t?D(t,e):console.warn(`couldn't find ${i} for immediate update`)}}),r(".js-comment-and-button",{constructor:HTMLButtonElement,initialize(e){if(!e.form)throw new Error("invariant: app/assets/modules/github/behaviors/commenting/close.js:26");const t=b(e.form,".js-comment-field"),n=e.querySelector(".js-form-action-text"),s=n||e,o=s.textContent;let r=!1;function i(t){const n=t.currentTarget;if(!(n instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/close.js:35");const i=n.value.trim();i!==r&&(r=i,s.textContent=i?p(e,"data-comment-text"):o)}return{add(){t.addEventListener("input",i),t.addEventListener("change",i)},remove(){t.removeEventListener("input",i),t.removeEventListener("change",i)}}}}),u("click",".js-comment-edit-button",function(e){const t=d(e.currentTarget,".js-comment");t.classList.add("is-comment-editing"),b(t,".js-write-tab").click();const n=b(t,".js-comment-field");if(!(n instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/edit.js:14");n.focus(),L(n,"change");const s=e.currentTarget.closest(".js-dropdown-details");s&&s.removeAttribute("open")}),u("click",".js-comment-hide-button",function(e){const t=d(e.currentTarget,".js-comment").querySelector(".js-minimize-comment");t&&t.classList.remove("d-none");const n=e.currentTarget.closest(".js-dropdown-details");n&&n.removeAttribute("open")}),u("click",".js-comment-hide-minimize-form",function(e){d(e.currentTarget,".js-minimize-comment").classList.add("d-none")}),u("click",".js-comment-cancel-button",function(e){const t=d(e.currentTarget,"form",HTMLFormElement),n=p(e.currentTarget,"data-confirm-text");if(B(t)&&!confirm(n))return!1;for(const o of t.querySelectorAll("input, textarea")){if(!(o instanceof HTMLInputElement||o instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/edit.js:54");o.value=o.defaultValue}const s=e.currentTarget.closest(".js-comment");s&&s.classList.remove("is-comment-editing")}),j(".js-comment-delete, .js-comment .js-comment-update, .js-issue-update, .js-comment-minimize, .js-comment-unminimize",function(e,t,n){const s=d(e,".js-comment");s.classList.add("is-comment-loading");const o=s.getAttribute("data-body-version");o&&n.headers.set("X-Body-Version",o)}),j(".js-comment .js-comment-update",async function(e,t){let n;const s=d(e,".js-comment"),o=s.querySelector(".js-comment-update-error");o&&(o.hidden=!0);try{n=await t.json()}catch(l){if(422!==l.response.status)throw l;{const e=JSON.parse(l.response.text);if(e.errors)return void(o&&(o.textContent=`There was an error posting your comment: ${e.errors.join(", ")}`,o.hidden=!1))}}if(!n)return;const r=n.json,i=s.querySelector(".js-comment-body");i&&r.body&&(i.innerHTML=r.body),s.setAttribute("data-body-version",r.newBodyVersion);const a=s.querySelector(".js-body-version");a instanceof HTMLInputElement&&(a.value=r.newBodyVersion);for(const u of s.querySelectorAll("input, textarea")){if(!(u instanceof HTMLInputElement||u instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/edit.js:115");u.defaultValue=u.value}s.classList.remove("is-comment-stale","is-comment-editing");const c=s.querySelector(".js-comment-edit-history");if(c){const e=await R(document,r.editUrl);c.innerHTML="",c.append(e)}}),j(".js-comment .js-comment-delete, .js-comment .js-comment-update, .js-comment-minimize, .js-comment-unminimize",async function(e,t){const n=d(e,".js-comment");try{await t.text()}catch(s){if(422!==s.response.status)throw s;{let e;try{e=JSON.parse(s.response.text)}catch(o){}e&&e.stale&&n.classList.add("is-comment-stale")}}n.classList.remove("is-comment-loading")}),j(".js-comment-delete",async function(e,t){await t.json();let n=e.closest(".js-comment-delete-container");if(n||(n=e.closest(".js-comment-container")||e.closest(".js-line-comments"))&&1!==n.querySelectorAll(".js-comment").length&&(n=d(e,".js-comment")),!n)throw new Error("invariant: app/assets/modules/github/behaviors/commenting/edit.js:165");n.remove()}),j(".js-issue-update",async function(e,t){const n=d(e,".js-details-container");n.classList.remove("open");const s=(await t.json()).json;if(null!=s.issue_title){b(n,".js-issue-title").textContent=s.issue_title;const e=n.closest(".js-issues-results");if(e){if(e.querySelector(".js-merge-pr.is-merging")){const t=e.querySelector(".js-merge-pull-request textarea");t instanceof HTMLTextAreaElement&&t.value===t.defaultValue&&(t.value=t.defaultValue=s.issue_title)}else if(e.querySelector(".js-merge-pr.is-squashing")){const t=e.querySelector(".js-merge-pull-request .js-merge-title");t instanceof HTMLInputElement&&t.value===t.defaultValue&&(t.value=t.defaultValue=s.default_squash_commit_title)}const t=e.querySelector("button[value=merge]");t&&t.setAttribute("data-input-message-value",s.issue_title);const n=e.querySelector("button[value=squash]");n&&n.setAttribute("data-input-title-value",s.default_squash_commit_title)}}document.title=s.page_title;for(const o of e.elements)(o instanceof HTMLInputElement||o instanceof HTMLTextAreaElement)&&(o.defaultValue=o.value)}),j(".js-comment-minimize",async function(e,t){await t.json();const n=d(e,".js-comment").querySelector(".js-minimize-comment");n&&n.classList.add("d-none");const s=d(e,".unminimized-comment");s.classList.add("d-none"),s.classList.remove("js-comment");const o=d(e,".js-minimizable-comment-group").querySelector(".minimized-comment");o&&o.classList.remove("d-none"),o&&o.classList.add("js-comment")}),j(".js-comment-unminimize",async function(e,t){await t.json();const n=d(e,".js-minimizable-comment-group"),s=n.querySelector(".unminimized-comment");s&&s.classList.remove("d-none"),s&&s.classList.add("js-comment");const o=n.querySelector(".minimized-comment");o&&o.classList.add("d-none"),o&&o.classList.remove("js-comment")}),h(".js-comment-field",function(e){Ds(e,!0),e.addEventListener("blur",Bs,{once:!0})}),u("click",".js-write-tab",function(e){const t=e.currentTarget,n=d(t,".js-previewable-comment-form");if(n instanceof TabContainerElement)return;const s=Rs(t);setTimeout(()=>{b(s,".js-comment-field").focus()});const o=n.querySelector("markdown-toolbar");null!=o&&(o.hidden=!1)}),u("click",".js-preview-tab",function(e){const t=e.currentTarget,n=d(t,".js-previewable-comment-form");if(n instanceof TabContainerElement)return;const s=Rs(t);setTimeout(()=>{Ws(s)});const o=n.querySelector("markdown-toolbar");null!=o&&(o.hidden=!0),e.stopPropagation(),e.preventDefault()}),u("tab-container-change",".js-previewable-comment-form",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/preview.js:118");const t=e.detail.relatedTarget.classList.contains("js-preview-panel"),n=e.currentTarget,s=b(n,".js-write-tab");if(t){const e=b(n,".js-write-bucket");b(n,".js-preview-body").style.minHeight=`${e.clientHeight}px`,s.setAttribute("data-hotkey","Control+P,Meta+P"),Ws(n);const t=n.querySelector("markdown-toolbar");t&&(t.hidden=!0)}else{s.removeAttribute("data-hotkey"),setTimeout(()=>b(n,".js-comment-field").focus(),0);const e=n.querySelector("markdown-toolbar");e&&(e.hidden=!1)}n.classList.toggle("preview-selected",t),n.classList.toggle("write-selected",!t)}),u("preview:render",".js-previewable-comment-form",function(e){const t=Rs(b(e.target,".js-preview-tab"));setTimeout(()=>{Ws(t);const e=t.querySelector("markdown-toolbar");e&&(e.hidden=!0)})});const Ns=new C,Ps=new WeakMap;let Fs=!1;async function Os(e,t,n,s,o){const r={};r.text=t,r.authenticity_token=function(e){const t=e.getAttribute("data-preview-authenticity-token"),n=d(e,"form",HTMLFormElement).elements.namedItem("authenticity_token");return null!=t?t:n instanceof HTMLInputElement?n.value:void 0}(e),s&&(r.path=s),n&&(r.original_line=n),o&&(r.line_number=o);const i={url:p(e,"data-preview-url"),data:r};L(e,"preview:setup",i);const a=JSON.stringify(i),[c,l]=Ps.get(e)||[];if(c===a)return l;Fs=!1;const u=Ns.push(function(e){const t=new FormData;for(const n in e.data)null!==e.data[n]&&t.append(n,e.data[n]);return S(e.url,{method:"post",body:t})}(i));Ps.set(e,[a,u]);const m=await u;return Fs=!0,m}async function Ws(e){const t=b(e,".js-comment-field",HTMLTextAreaElement),n=b(e,".comment-body"),s=e.querySelector(".js-original-line"),o=e.querySelector(".js-path"),r=e.querySelector(".js-line-number"),i=s instanceof HTMLInputElement?s.value:null,a=o instanceof HTMLInputElement?o.value:null,c=r instanceof HTMLInputElement?r.value:null;Fs||(n.innerHTML=" Loading preview…
");try{const s=await Os(e,t.value,i,a,c);n.innerHTML=s||"Nothing to preview
"}catch(l){n.innerHTML="Error rendering preview
"}}r(".js-preview-tab",function(e){let t,n,s,o,r;e.addEventListener("mouseenter",()=>{!async function(){if(!t){t=d(e,".js-previewable-comment-form"),n=b(t,".js-comment-field",HTMLTextAreaElement);const i=t.querySelector(".js-original-line"),a=t.querySelector(".js-path"),c=t.querySelector(".js-line-number");s=i instanceof HTMLInputElement?i.value:null,o=a instanceof HTMLInputElement?a.value:null,r=c instanceof HTMLInputElement?c.value:null}try{await Os(t,n.value,s,o,r)}catch(i){}}()})}),m("keydown",".js-comment-field",function(e){const t=e.target;if(!(t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/preview.js:269");if((e.ctrlKey||e.metaKey)&&"P"===e.key){const n=d(t,".js-previewable-comment-form");n.classList.contains("write-selected")&&(n instanceof TabContainerElement?b(n,".js-preview-tab").click():(t.blur(),n.dispatchEvent(new CustomEvent("preview:render",{bubbles:!0,cancelable:!1}))),e.preventDefault(),e.stopImmediatePropagation())}});const zs=/^(\+1|-1|:\+1?|:-1?)$/,Us=e=>{let t=!1;for(const n of e.split("\n")){const e=n.trim();if(e&&!e.startsWith(">")){if(t&&!1===zs.test(e))return!1;!t&&zs.test(e)&&(t=!0)}}return t};function Vs(e){const t=e.target;if(!(t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/commenting/reaction-suggestion.js:41");const n=t.value,s=d(t,".js-reaction-suggestion");if(s)if(Us(n)){s.classList.remove("hide-reaction-suggestion"),s.classList.add("reaction-suggestion");const e=p(s,"data-reaction-markup");s.setAttribute("data-reaction-suggestion-message",e)}else Ks(s)}function Ks(e){e.classList.remove("reaction-suggestion"),e.classList.add("hide-reaction-suggestion"),e.removeAttribute("data-reaction-suggestion-message")}async function Ys({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/behaviors/details-menu.js:161");const t=e,n=e.hasAttribute("open");L(t,n?"menu:activate":"menu:deactivate"),await f(),L(t,n?"menu:activated":"menu:deactivated")}u("focusout","#new_comment_field",function(e){const t=e.currentTarget;Ks(d(t,".js-reaction-suggestion"))}),u("focusin","#new_comment_field",function(e){Vs(e)}),m("keyup","#new_comment_field",function(e){Vs(e)}),r("details.select-menu details-menu include-fragment",function(e){const t=e.closest("details");t&&(e.addEventListener("loadstart",function(){t.classList.add("is-loading"),t.classList.remove("has-error")}),e.addEventListener("error",function(){t.classList.add("has-error")}),e.addEventListener("loadend",function(){t.classList.remove("is-loading");const e=t.querySelector(".js-filterable-field");e&&L(e,"filterable:change")}))}),r("details details-menu .js-filterable-field",{constructor:HTMLInputElement,add(e){const t=d(e,"details");t.addEventListener("toggle",function(){t.hasAttribute("open")||(e.value="",L(e,"filterable:change"))})}}),r("details-menu[role=menu] [role=menu]",e=>{const t=e.closest("details-menu[role]");t&&t!==e&&t.removeAttribute("role")}),r("details details-menu remote-input input",{constructor:HTMLInputElement,add(e){const t=d(e,"details");t.addEventListener("toggle",function(){t.hasAttribute("open")||(e.value="")})}}),r("form details-menu",e=>{const t=d(e,"form");t.addEventListener("reset",()=>{setTimeout(()=>(function(e){const t=e.querySelectorAll("details-menu [role=menuitemradio] input[type=radio]:checked");for(const n of t)L(n,"change")})(t),0)})}),m("keypress","details-menu .js-filterable-field",e=>{if("Enter"===e.key){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/behaviors/details-menu.js:80");const n=d(t,"details-menu").querySelector('[role^="menuitem"]:not([hidden])');n&&n.click(),e.preventDefault()}}),u("details-menu-selected","details-menu",e=>{const t=e.currentTarget;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/behaviors/details-menu.js:90");const n=t.querySelector(".js-filterable-field");n instanceof HTMLInputElement&&n.value&&n.focus()},{capture:!0}),u("details-menu-selected","[data-menu-input]",e=>{const t=p(e.target,"data-menu-input"),n=document.getElementById(t);if(n instanceof HTMLInputElement||n instanceof HTMLTextAreaElement){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/details-menu.js:101");if(!(e.detail.relatedTarget instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/behaviors/details-menu.js:102");n.value=e.detail.relatedTarget.value}},{capture:!0}),r("details-menu remote-input",{constructor:N,initialize(e){const t=document.getElementById(e.getAttribute("aria-owns")||"");if(!t)return;let n;e.addEventListener("load",()=>{n=document.activeElement&&t.contains(document.activeElement)&&document.activeElement.id?document.activeElement.id:null}),e.addEventListener("loadend",()=>{if(n){const s=t.querySelector(`#${n}`)||t.querySelector('[role^="menu"]');s?s.focus():e.input&&e.input.focus()}})}}),u("details-menu-selected","details-menu[data-menu-max-options]",e=>{const t=+p(e.currentTarget,"data-menu-max-options")===e.currentTarget.querySelectorAll('[role="menuitemcheckbox"][aria-checked="true"]').length;b(e.currentTarget,"[data-menu-max-options-warning]").hidden=!t;for(const n of v(e.currentTarget,'[role="menuitemcheckbox"] input',HTMLInputElement))n.disabled=t&&!n.checked},{capture:!0}),r("details > details-menu",{subscribe(e){const t=d(e,"details");return q(t,"toggle",Ys)}});const Xs=new WeakMap,Js=["input[type=submit][data-disable-with]","button[data-disable-with]"].join(", ");function Gs(e,t){e instanceof HTMLInputElement?e.value=t:e.innerHTML=t}function Qs(e){for(const t of e.querySelectorAll(Js)){const n=Xs.get(t);if(null!=n){if(!(t instanceof HTMLInputElement||t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/behaviors/disable-with.js:53");Gs(t,n),t.hasAttribute("data-disable-invalid")&&!e.checkValidity()||(t.disabled=!1),Xs.delete(t)}}}u("submit","form",function(e){for(const n of e.currentTarget.querySelectorAll(Js)){if(!(n instanceof HTMLInputElement||n instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/behaviors/disable-with.js:34");Xs.set(n,(t=n)instanceof HTMLInputElement?t.value||"Submit":t.innerHTML||"");const e=n.getAttribute("data-disable-with");e&&Gs(n,e),n.disabled=!0}var t},{capture:!0}),u("deprecatedAjaxComplete","form",function({currentTarget:e,target:t}){if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/behaviors/disable-with.js:71");e===t&&Qs(e)}),P(Qs);const Zs={OS:"Meta",Win:"Meta",Windows:"Meta",Scroll:"ScrollLock",SpaceBar:" ",Left:"ArrowLeft",Right:"ArrowRight",Down:"ArrowDown",Up:"ArrowUp",Del:"Delete",Esc:"Escape"};const eo=Object.getOwnPropertyDescriptor(KeyboardEvent.prototype,"key");if(eo){let e=e=>eo.get.apply(e);/Macintosh.*Safari/.test(navigator.userAgent)&&(e=(e=>{return function(e,t){return t&&/^[a-z]$/.test(e)?e.toUpperCase():e}(eo.get.apply(e),e.shiftKey)})),Object.defineProperty(KeyboardEvent.prototype,"key",{enumerable:!0,configurable:!0,get(){return t=e(this),Zs[t]||t;var t}})}function to(e,t){let n=oo(e,t);if(n&&-1===t.indexOf("/")){n+=oo(e.substring(e.lastIndexOf("/")+1),t)}return n}function no(e){const t=e.toLowerCase().split("");let n="";for(let s=0;s"),o=!0):o&&(r.push(""),o=!1),r.push(t))}e.innerHTML=r.join("")}else{const t=e.innerHTML.trim(),n=t.replace(/<\/?mark>/g,"");t!==n&&(e.innerHTML=n)}}function oo(e,t){let n=e;if(n===t)return 1;const s=n.length;let o=0,r=0;for(let l=0;l-1?c:Math.max(i,a);if(-1===u)return 0;o+=.1,n[u]===e&&(o+=.1),0===u&&(o+=.8,0===l&&(r=1))," "===n.charAt(u-1)&&(o+=.8),n=n.substring(u+1,s)}const i=t.length,a=o/i;let c=(a*(i/s)+a)/2;return r&&c+.1<1&&(c+=.1),c}u("click","[data-feature-preview-trigger-url]",async e=>{const t=e.currentTarget,n=p(t,"data-feature-preview-trigger-url"),s=await F({content:R(document,n),dialogClass:"feature-preview-dialog"}),o=p(t,"data-hydro-details"),r=p(t,"data-hydro-hmac");s.addEventListener("dialog:remove",()=>{_({hydroEventPayload:o,hydroEventHmac:r},!0)})}),j(".js-feature-preview-unenroll",async(e,t)=>{await t.text();const n=b(e,".js-feature-preview-slug",HTMLInputElement).value;L(e,`feature-preview-unenroll:${n}`)}),j(".js-feature-preview-enroll",async(e,t)=>{await t.text();const n=b(e,".js-feature-preview-slug",HTMLInputElement).value;L(e,`feature-preview-enroll:${n}`)});const ro=new WeakMap,io=new WeakMap,ao=new WeakMap;function co(e,t,n={}){if(!e)return 0;const s=t.toLowerCase(),o=null!=n.text?n.text:uo,r=n.limit,i=n.score;let a=ro.get(e);const c=e.querySelector('input[type="radio"]:checked'),l=Array.from(e.children);a||(a=Array.from(e.children),ro.set(e,a));for(const g of l)e.removeChild(g),g.style.display="";const u=document.createDocumentFragment();let d=0,m=0;if(s){const e=Array.from(a);for(const n of e){null==io.get(n)&&io.set(n,o(n));const e=i?i(io.get(n)||"",s,n):to(io.get(n)||"",s);ao.set(n,String(e))}e.sort(lo);const t=no(s);for(const o of e)(null==r||d0&&(m++,!0===n.mark&&(so(o),so(o,s,t)),u.appendChild(o)),d++}else for(const g of a)(null==r||d0));return m}function lo(e,t){const n=parseFloat(ao.get(e)),s=parseFloat(ao.get(t)),o=io.get(e)||"",r=io.get(t)||"";return n>s?-1:nr?1:0}function uo(e){if(e.hasAttribute("data-filter-value")){return(e.getAttribute("data-filter-value")||"").toLowerCase().trim()}return e.textContent.toLowerCase().trim()}function mo(e){return e.textContent.toLowerCase().trim()}function fo(e,t){const n=e.innerHTML;if(t){const s=new RegExp(t,"i");e.innerHTML=n.replace(s,"$& ")}else{const t=n.replace(/<\/?mark>/g,"");n!==t&&(e.innerHTML=t)}}function po(e){return(e.querySelector("[data-filterable-item-text]")||e).textContent.toLowerCase().trim()}function go(e,t){const n=e.innerHTML;if(t){const s=new RegExp(t,"i");e.innerHTML=n.replace(s,"$& ")}else{const t=n.replace(/<\/?mark>/g,"");n!==t&&(e.innerHTML=t)}}const ho=new WeakMap;async function vo(e,t,n){const s=ho.get(e)||await async function(e){await O();const t=await W(p(e,"data-filterable-src"));return ho.set(e,t),t}(e);if(null==s)throw new Error("invariant: app/assets/modules/github/substring-memory-filter-list.js:24");const o=n.limit,r=b(e,"template",HTMLTemplateElement),i={};for(const p of v(e,"input[type=hidden]",HTMLInputElement))i[`${p.name}${p.value}`]=p;let a=r.nextElementSibling;for(;a;){const e=a;a=e.nextElementSibling,e instanceof HTMLElement&&("true"===e.getAttribute("aria-checked")||e.classList.contains("select-menu-divider"))?e.hidden=!0:e.remove()}let c=0,l=document.createDocumentFragment();const u=e.querySelector(".js-divider-suggestions"),d=e.querySelector(".js-divider-rest");function m(e){const n=!(null!=o&&c>=o)&&function(e){return`${e.login} ${e.name}`.toLowerCase().trim()}(e).indexOf(t)>=0;if(n||e.selected){const t=function(e,t,n){if(null!=e.element)return e.element;const s=t.content.cloneNode(!0),o=b(s,"input[type=checkbox]",HTMLInputElement);e.type&&(o.name=`reviewer_${e.type}_ids[]`);o.value=e.id;const r=`${o.name}${e.id}`;let i=e.selected;n[r]&&(i=!0,n[r].remove(),delete n[r]);const a=b(s,"[role^=menuitem]");i&&(a.setAttribute("aria-checked","true"),o.checked=!0);e.disabled&&a.setAttribute("aria-disabled","true");const c=s.querySelector(".js-username");c&&(c.textContent=e.login);const l=s.querySelector(".js-description");l&&(l.textContent=e.name);const u=s.querySelector(".js-extended-description");u&&(e.description?u.textContent=e.description:u.remove());return b(s,".js-avatar",HTMLImageElement).src=e.avatar,e.element=a,e.element}(e,r,i);t.hidden=!n,n&&c++,l.appendChild(t)}}if(u&&s.suggestions){for(const e of s.suggestions)m(e);l.childNodes.length&&(u.after(l),u.hidden=0===c,l=document.createDocumentFragment())}const f=c;for(const p of s.users)m(p);return e.append(l),d&&(d.hidden=c===f||0===f),c}async function bo(e,t){const n=e.hasAttribute("data-filterable-highlight"),s=parseInt(e.getAttribute("data-filterable-limit"),10)||null;let o=0;switch(e.getAttribute("data-filterable-type")){case"fuzzy":o=co(e,t,{mark:n,limit:s});break;case"substring":o=function(e,t,n={}){let s;if(!e)return;const o=t.toLowerCase(),r=null!=n.text?n.text:po,i=n.limit,a=Array.from(e.children).filter(e=>!e.classList.contains("select-menu-no-results"));!0===n.mark?s=go:"function"==typeof n.mark&&(s=n.mark);let c=0;for(const l of a)-1!==r(l).indexOf(o)?null!=i&&c>=i?(l.style.display="none",l.hidden=!0):(c++,l.style.display="",l.hidden=!1,s&&(s(l),s(l,o))):(l.style.display="none",l.hidden=!0);return c}(e,t,{mark:n,limit:s});break;case"substring-memory":o=await vo(e,t,{limit:s});break;default:o=function(e,t,n={}){let s;if(!e)return;const o=t.toLowerCase(),r=null!=n.text?n.text:mo,i=n.limit;!0===n.mark?s=fo:"function"==typeof n.mark&&(s=n.mark);let a=0;for(const c of e.children)0===r(c).indexOf(o)?null!=i&&a>=i?(c.style.display="none",c.hidden=!0):(a++,c.style.display="",c.hidden=!1,s&&(s(c),s(c,o))):(c.style.display="none",c.hidden=!0);return a}(e,t,{mark:n,limit:s})}!function(e,t=0){const n=e.closest("details-menu");if(!n)return;const s=function(e){let t=e.querySelector("[data-filterable-notice]");return t||((t=document.createElement("div")).classList.add("sr-only"),t.setAttribute("data-filterable-notice",""),t.setAttribute("aria-live","polite"),e.append(t),t)}(n);s.textContent="",s.textContent=`${t} results found.`}(e,o),e.classList.toggle("filterable-active",t.length>0),e.classList.toggle("filterable-empty",0===o)}r(".js-filterable-field",{constructor:HTMLInputElement,initialize(e){e.autocomplete||(e.autocomplete="off");let t=e.value;async function n(e){t!==e.value&&(t=e.value,await f(),L(e,"filterable:change"))}async function s(){t=e.value,await f(),L(e,"filterable:change")}return{add(e){e.addEventListener("focus",s),M(e,n),document.activeElement===e&&s()},remove(e){e.removeEventListener("focus",s),A(e,n)}}}}),u("filterable:change",".js-filterable-field",async function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/behaviors/filterable.js:88");const n=t.value.trim().toLowerCase(),s=document.querySelectorAll(`[data-filterable-for="${t.id}"]`);for(const o of s){await bo(o,n);const e=new CustomEvent("filterable:change",{bubbles:!0,cancelable:!1,detail:{inputField:t}});o.dispatchEvent(e)}}),u("filterable:change","details-menu .select-menu-list",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/filterable.js:170");const t=e.currentTarget,n=t.querySelector(".js-new-item-form");n&&function(e,t,n){const s=n.length>0&&!function(e,t){for(const n of e.querySelectorAll("[data-menu-button-text]")){const e=n.textContent.toLowerCase().trim();if(e===t.toLowerCase())return!0}return!1}(e,n);if(e.classList.toggle("is-showing-new-item-form",s),!s)return;b(t,".js-new-item-name").textContent=n;const o=t.querySelector(".js-new-item-value");(o instanceof HTMLInputElement||o instanceof HTMLButtonElement)&&(o.value=n)}(t,n,e.detail.inputField.value)}),r("tab-container .select-menu-list .filterable-empty, details-menu .select-menu-list .filterable-empty",{add(e){d(e,".select-menu-list").classList.add("filterable-empty")},remove(e){d(e,".select-menu-list").classList.remove("filterable-empty")}}),u("click",".js-flash-close",function(e){const t=e.currentTarget.closest(".flash-messages"),n=e.currentTarget.closest(".flash");if(!n)throw new Error("invariant: app/assets/modules/github/behaviors/flash.js:19");n.remove(),t&&!t.querySelector(".flash")&&t.remove()});const wo=new WeakMap;function jo(e){if(!(e instanceof CustomEvent))return;const t=e.currentTarget;if(!(t instanceof HTMLElement))return;let n=t.querySelector("[data-filterable-notice]");n||((n=document.createElement("div")).classList.add("sr-only"),n.setAttribute("data-filterable-notice",""),n.setAttribute("aria-live","polite"),t.append(n)),n.textContent="",n.textContent=`${e.detail} results found.`}function yo(e,t){const n=e.currentTarget;if(n instanceof Element){for(const e of n.querySelectorAll("[data-show-on-error]"))e instanceof HTMLElement&&(e.hidden=!t);for(const e of n.querySelectorAll("[data-hide-on-error]"))e instanceof HTMLElement&&(e.hidden=t)}}function Eo(e){yo(e,!1)}function Lo(e){yo(e,!0)}document.addEventListener("focus",function(e){const t=e.target;wo.get(t)||(L(t,"focusin:delay"),wo.set(t,!0))},{capture:!0}),document.addEventListener("blur",function(e){setTimeout(function(){const t=e.target;t!==document.activeElement&&(L(t,"focusout:delay"),wo.delete(e.target))},200)},{capture:!0}),r("fuzzy-list",{constructor:FuzzyListElement,add(e){e.addEventListener("fuzzy-list-sorted",jo)},remove(e){e.removeEventListener("fuzzy-list-sorted",jo)}}),j(".js-immediate-updates",async function(e,t){let n;try{n=(await t.json()).json.updateContent}catch(s){s.response.json&&(n=s.response.json.updateContent)}if(n)for(const o in n){const e=n[o],t=document.querySelector(o);t&&D(t,e)}}),r("include-fragment, poll-include-fragment",{subscribe:e=>z(q(e,"error",Lo),q(e,"loadstart",Eo))}),u("click","include-fragment button[data-retry-button]",({currentTarget:e})=>{const t=d(e,"include-fragment",window.IncludeFragmentElement),n=t.src;t.src="",t.src=n}),r("[data-indeterminate]",{constructor:HTMLInputElement,initialize(e){e.indeterminate=!0}}),j(".js-notice-dismiss",async function(e,t){await t.text(),d(e,".js-notice").remove()});class PasswordStrengthElement extends HTMLElement{connectedCallback(){this.addEventListener("input",To)}disconnectedCallback(){this.removeEventListener("input",To)}}function To(e){const t=e.currentTarget;if(!(t instanceof PasswordStrengthElement))return;const n=e.target;if(!(n instanceof HTMLInputElement))return;const s=function(e,t){const n={valid:!1,hasMinimumCharacterCount:e.length>=t.minimumCharacterCount,hasMinimumPassphraseLength:e.length>=t.passphraseLength,hasLowerCase:/[a-z]/.test(e),hasNumber:/\d/.test(e)};return n.valid=n.hasMinimumPassphraseLength||n.hasMinimumCharacterCount&&n.hasLowerCase&&n.hasNumber,n}(n.value,{minimumCharacterCount:Number(p(t,"minimum-character-count")),passphraseLength:Number(p(t,"passphrase-length"))});if(s.valid){n.setCustomValidity("");const e=t.querySelector("dl.form-group");e&&(e.classList.remove("errored"),e.classList.add("successed"))}else n.setCustomValidity(p(t,"invalid-message"));!function(e,t){const n=b(e,"[data-more-than-n-chars]"),s=b(e,"[data-min-chars]"),o=b(e,"[data-number-requirement]"),r=b(e,"[data-letter-requirement]"),i=p(e,"error-class").split(" ").filter(e=>e.length>0),a=p(e,"pass-class").split(" ").filter(e=>e.length>0);for(const c of[n,s,o,r])c.classList.remove(...i,...a);if(t.hasMinimumPassphraseLength)n.classList.add(...a);else if(t.valid)s.classList.add(...a),o.classList.add(...a),r.classList.add(...a);else{const e=t.hasMinimumCharacterCount?a:i,c=t.hasNumber?a:i,l=t.hasLowerCase?a:i;n.classList.add(...i),s.classList.add(...e),o.classList.add(...c),r.classList.add(...l)}}(t,s)}function ko(e){return null==e.getAttribute("data-pjax-preserve-scroll")&&0}function Mo(e){let t=e;for(;t;){const e=t.getAttribute("data-pjax");if(e&&"true"!==e)return document.querySelector(e);t=t.parentElement&&t.parentElement.closest("[data-pjax]")}return e.closest("[data-pjax-container]")}window.customElements.get("password-strength")||(window.PasswordStrengthElement=PasswordStrengthElement,window.customElements.define("password-strength",PasswordStrengthElement)),u("click",".js-permalink-shortcut",function(e){const t=e.currentTarget;if(!(t instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/behaviors/permalink.js:13");try{H(null,"",t.href+window.location.hash)}catch(n){window.location=t.href+window.location.hash}e.preventDefault()}),u("click","[data-pjax] a, a[data-pjax]",function(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/behaviors/pjax.js:54");const t=e.currentTarget;if(t instanceof HTMLAnchorElement){if(null!=t.getAttribute("data-skip-pjax"))return;if(null!=t.getAttribute("data-remote"))return;const n=Mo(t);n&&U(e,{container:n,scrollTo:ko(t)})}}),u("submit","form[data-pjax]",function(e){if(!(e instanceof Event))throw new Error("invariant: app/assets/modules/github/behaviors/pjax.js:77");const t=e.target,n=Mo(t);n&&V(e,{container:n,scrollTo:ko(t)})}),u("change","select[data-pjax]",function(e){const t=e.currentTarget;if(!(t instanceof HTMLSelectElement))throw new Error("invariant: app/assets/modules/github/behaviors/pjax.js:90");const n=Mo(t);n&&K({url:t.value,container:n})}),async function(){await Y;const e=document.querySelector(".js-pjax-loader-bar");if(!e)return;const t=e.firstElementChild;if(!(t instanceof HTMLElement))return;let n=0,s=null,o=null;function r(e){0===e&&(null==o&&(o=getComputedStyle(t).transition),t.style.transition="none"),n=e,t.style.width=`${n}%`,0===e&&(t.clientWidth,t.style.transition=o||"")}function i(){0===n&&(n=12),r(Math.min(n+3,95)),s=setTimeout(i,500)}document.addEventListener("pjax:start",function(){r(0),e.classList.add("is-loading"),s=setTimeout(i,0)}),document.addEventListener("pjax:end",function(){s&&clearTimeout(s),r(100),e.classList.remove("is-loading")})}();let Ao=null;const xo="last_pjax_request",So="pjax_start",Ho="pjax_end";function Co(e,t){return e.split("/",3).join("/")===t.split("/",3).join("/")}"getEntriesByName"in window.performance&&(document.addEventListener("pjax:start",function(e){e instanceof CustomEvent&&e.detail&&e.detail.url&&(window.performance.mark(So),Ao=e.detail.url)}),document.addEventListener("pjax:end",async function(){if(await f(),!window.performance.getEntriesByName(So).length)return;window.performance.mark(Ho),window.performance.measure(xo,So,Ho);const e=window.performance.getEntriesByName(xo).pop(),t=e?e.duration:null;t&&(Ao&&_({requestUrl:Ao,pjaxDuration:Math.round(t)}),window.performance.clearMarks(So),window.performance.clearMarks(Ho),window.performance.clearMeasures(xo))})),document.addEventListener("pjax:click",function(e){if(window.onbeforeunload)return e.preventDefault()}),u("pjax:click","#js-repo-pjax-container a[href]",function(e){if(!(e.currentTarget instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/behaviors/pjax/exceptions.js:22");const t=e.currentTarget.pathname;Co(t,location.pathname)?function(e){const t=e.split("/")[3];return["projects","releases","tags","wiki","community","security","packages"].includes(t)&&Co(e,location.pathname)}(t)&&e.preventDefault():e.preventDefault()}),u("pjax:click",".js-comment-body",function(e){const t=e.target;t instanceof HTMLAnchorElement&&"files"===t.pathname.split("/")[3]&&e.preventDefault()});const qo={};function Io(e){const t=e.target;if(!(t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/quick-submit.js:13");if((e.ctrlKey||e.metaKey)&&"Enter"===e.key){const n=t.form;if(!(n instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/behaviors/quick-submit.js:17");const s=n.querySelector("input[type=submit], button[type=submit]");if(e.shiftKey){const e=n.querySelector(".js-quick-submit-alternative");(e instanceof HTMLInputElement||e instanceof HTMLButtonElement)&&!e.disabled&&E(n,e)}else(s instanceof HTMLInputElement||s instanceof HTMLButtonElement)&&s.disabled||E(n);e.preventDefault()}}function _o(e){if(null===e.parentNode||!(e.parentNode instanceof HTMLElement))throw new Error;for(var t=e.parentNode.children,n=0;n{await Y,qo[document.location.pathname]=Array.from(document.querySelectorAll("head [data-pjax-transient]"))})(),document.addEventListener("pjax:beforeReplace",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/behaviors/pjax/head.js:12");const t=e.detail.contents;for(let n=0;n /g,">")}var Bo={INPUT:function(e){return e instanceof HTMLInputElement&&e.checked?"[x] ":"[ ] "},CODE:function(e){var t=e.textContent;return e.parentNode&&"PRE"===e.parentNode.nodeName?(e.textContent="```\n".concat(t.replace(/\n+$/,""),"\n```\n\n"),e):t.indexOf("`")>=0?"`` ".concat(t," ``"):"`".concat(t,"`")},STRONG:function(e){return"**".concat(e.textContent,"**")},EM:function(e){return"_".concat(e.textContent,"_")},DEL:function(e){return"~".concat(e.textContent,"~")},BLOCKQUOTE:function(e){var t=e.textContent.trim().replace(/^/gm,"> "),n=document.createElement("pre");return n.textContent="".concat(t,"\n\n"),n},A:function(e){var t=e.textContent,n=e.getAttribute("href");return/^https?:/.test(t)&&t===n?t:n?"[".concat(t,"](").concat(n,")"):t},IMG:function(e){var t=e.getAttribute("alt")||"",n=e.getAttribute("src");if(!n)throw new Error;var s=e.hasAttribute("width")?' width="'.concat(Do(e.getAttribute("width")||""),'"'):"",o=e.hasAttribute("height")?' height="'.concat(Do(e.getAttribute("height")||""),'"'):"";return s||o?' '):".concat(n,")")},LI:function(e){var t=e.parentNode;if(!t)throw new Error;var n,s,o,r="";if(s=(n=e).childNodes[0],o=n.childNodes[1],!(s&&n.childNodes.length<3)||("OL"!==s.nodeName&&"UL"!==s.nodeName||o&&(o.nodeType!==Node.TEXT_NODE||o.textContent.trim())))if("OL"===t.nodeName)if($o>0&&!t.previousSibling){var i=_o(e)+$o+1;r="".concat(i,"\\. ")}else r="".concat(_o(e)+1,". ");else r="* ";var a=r.replace(/\S/g," "),c=e.textContent.trim().replace(/^/gm,a),l=document.createElement("pre");return l.textContent=c.replace(a,r),l},OL:function(e){var t=document.createElement("li");return t.appendChild(document.createElement("br")),e.append(t),e},H1:function(e){var t=parseInt(e.nodeName.slice(1));return e.prepend("".concat(Array(t+1).join("#")," ")),e},UL:function(e){return e}};Bo.UL=Bo.OL;for(var Ro=2;Ro<=6;++Ro)Bo["H".concat(Ro)]=Bo.H1;function No(e){for(var t=document.createNodeIterator(e,NodeFilter.SHOW_ELEMENT,function(e){return e.nodeName in Bo&&!function(e){return e instanceof HTMLAnchorElement&&1===e.childNodes.length&&e.childNodes[0]instanceof HTMLImageElement&&e.childNodes[0].src===e.href}(e)&&(function(e){return"IMG"===e.nodeName||null!=e.firstChild}(e)||function(e){return"INPUT"===e.nodeName&&e instanceof HTMLInputElement&&"checkbox"===e.type}(e))?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),n=[],s=t.nextNode();s;)s instanceof HTMLElement&&n.push(s),s=t.nextNode();n.reverse();for(var o=0;o "),"\n\n");t.value&&(n="".concat(t.value,"\n\n").concat(n));t.value=n,t.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!1})),t.focus(),t.selectionStart=t.value.length,t.scrollTop=t.scrollHeight}(o,r),!0)}function Xo(e,t,n){var s=e.trim();if(s){var o=t.startContainer;if(o&&(o.nodeType!==Node.ELEMENT_NODE&&(o=o.parentNode),o instanceof Element)){var r=Uo(o);if(r){var i=Po.get(r);if(i){if(i.quoteMarkdown&&!Oo)try{var a=function(e,t){var n=e.startContainer;if(!(n&&n.parentNode&&n.parentNode instanceof HTMLElement))throw new Error("the range must start within an HTMLElement");var s=n.parentNode,o=e.cloneContents();if(t){var r=o.querySelector(t);r&&(o=document.createDocumentFragment()).appendChild(r)}$o=0;var i=s.closest("li");if(s.closest("pre")){var a=document.createElement("pre");a.appendChild(o),(o=document.createDocumentFragment()).appendChild(a)}else if(i&&i.parentNode&&("OL"===i.parentNode.nodeName&&($o=_o(i)),!o.querySelector("li"))){var c=document.createElement("li");if(!i.parentNode)throw new Error;var l=document.createElement(i.parentNode.nodeName);c.appendChild(o),l.appendChild(c),(o=document.createDocumentFragment()).appendChild(l)}return o}(t,i.scopeSelector);r.dispatchEvent(new CustomEvent("quote-selection-markdown",{bubbles:!0,cancelable:!1,detail:{fragment:a,range:t,unwrap:n}})),No(a),s=function(e){var t=document.body;if(!t)return"";var n=document.createElement("div");n.appendChild(e),n.style.cssText="position:absolute;left:-9999px;",t.appendChild(n);var s="";try{var o=window.getSelection(),r=document.createRange();r.selectNodeContents(n),o.removeAllRanges(),o.addRange(r),s=o.toString(),o.removeAllRanges(),r.detach()}finally{t.removeChild(n)}return s}(a).replace(/^\n+/,"").replace(/\s+$/,"")}catch(c){setTimeout(function(){throw c})}return{selectionText:s,container:r}}}}}}function Jo(e){var t=e.nodeName.toLowerCase(),n=(e.getAttribute("type")||"").toLowerCase();return"select"===t||"textarea"===t||"input"===t&&"submit"!==n&&"reset"!==n||e.isContentEditable}function Go(e){return"DIV"===e.nodeName&&e.classList.contains("highlight")}r(".js-quote-selection-container",{subscribe:e=>Wo(e,{quoteMarkdown:e.hasAttribute("data-quote-markdown"),scopeSelector:e.getAttribute("data-quote-markdown")||"",copyMarkdown:!1})}),document.addEventListener("quote-selection-markdown",function(e){if(!(e instanceof CustomEvent))return;const t=e.detail,{fragment:n,range:s,unwrap:o}=t,r=s.startContainer.parentElement,i=r&&r.closest("pre");if(i instanceof HTMLElement&&!o){const e=i.parentElement;if(e&&Go(e)){const t=document.createElement("div");t.className=e.className,t.appendChild(n),n.appendChild(t)}}!function(e){const t=document.createNodeIterator(e,NodeFilter.SHOW_ELEMENT,function(e){return e.nodeName in Qo&&function(e){return"IMG"===e.nodeName||null!=e.firstChild}(e)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),n=[];let s=t.nextNode();for(;s;)s instanceof HTMLElement&&n.push(s),s=t.nextNode();for(s of(n.reverse(),n))s.replaceWith(Qo[s.nodeName](s))}(n)});const Qo={PRE(e){const t=e.parentElement;if(t&&Go(t)){const n=t.className.match(/highlight-source-(\S+)/),s=n?n[1]:"",o=e.textContent.replace(/\n+$/,"");e.textContent=`\`\`\`${s}\n${o}\n\`\`\``,e.append("\n\n")}return e},A(e){const t=e.textContent;return e.classList.contains("user-mention")||e.classList.contains("team-mention")?t:e.classList.contains("issue-link")&&/^#\d+$/.test(t)?t:e},IMG(e){const t=e.getAttribute("alt");return t&&e.classList.contains("emoji")?t:e},DIV(e){if(e.classList.contains("js-suggested-changes-blob"))e.remove();else if(e.classList.contains("blob-wrapper-embedded")){const t=e.parentElement;if(!t)throw new Error;const n=b(t,"a[href]",HTMLAnchorElement),s=document.createElement("p");s.textContent=n.href,t.replaceWith(s)}return e}};let Zo,er;function tr(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],s=!0,o=!1,r=void 0;try{for(var i,a=e[Symbol.iterator]();!(s=(i=a.next()).done)&&(n.push(i.value),!t||n.length!==t);s=!0);}catch(c){o=!0,r=c}finally{try{s||null==a.return||a.return()}finally{if(o)throw r}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}u("click",".js-comment-quote-reply",function({currentTarget:e}){const t=d(e,".js-comment"),n=b(t,".js-comment-body");if(er&&"Range"===er.type&&n.contains(er.anchorNode))Yo(er.text,er.range);else{const e=window.getSelection();e.removeAllRanges(),e.selectAllChildren(n),Yo(e.toString(),e.getRangeAt(0))}}),document.addEventListener("selectionchange",y(function(){const e=window.getSelection();let t;try{t=e.getRangeAt(0)}catch(n){return void(Zo=null)}Zo={type:e.type,anchorNode:e.anchorNode,text:e.toString(),range:t}},100)),document.addEventListener("toggle",function(e){const t=e.target;if(!(t instanceof Element&&t.hasAttribute("open")))return;er=Zo;const n=t.querySelector(".js-comment-quote-reply.d-none");if(!n)return;const s=Uo(t);s&&(s.querySelector(".js-inline-comment-form-container")||Vo(s))&&n.classList.remove("d-none")},{capture:!0}),r(".has-removed-contents",function(){let e;return{add(t){e=Array.from(t.childNodes);for(const s of e)t.removeChild(s);const n=t.closest("form");n&&L(n,"change")},remove(t){for(const s of e)t.appendChild(s);const n=t.closest("form");n&&L(n,"change")}}}),j("form[data-replace-remote-form]",async function(e,t){e.classList.remove("is-error"),e.classList.add("is-loading");try{const s=await t.html();(e.closest("[data-replace-remote-form-target]")||e).replaceWith(s.html)}catch(n){e.classList.remove("is-loading"),e.classList.add("is-error")}});var nr=null;function sr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.selector,s=void 0===n?".js-session-resumable":n,o=t.keyPrefix,r="".concat(void 0===o?"session-resume:":o).concat(e),i=[],a=!0,c=!1,l=void 0;try{for(var u,d=document.querySelectorAll(s)[Symbol.iterator]();!(a=(u=d.next()).done);a=!0){var m=u.value;(m instanceof HTMLInputElement||m instanceof HTMLTextAreaElement)&&i.push(m)}}catch(p){c=!0,l=p}finally{try{a||null==d.return||d.return()}finally{if(c)throw l}}var f=i.filter(function(e){return function(e){return e.id&&e.value!==e.defaultValue&&e.form!==nr}(e)}).map(function(e){return[e.id,e.value]});if(f.length)try{sessionStorage.setItem(r,JSON.stringify(f))}catch(g){}}function or(e){var t,n=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).keyPrefix,s="".concat(void 0===n?"session-resume:":n).concat(e);try{t=sessionStorage.getItem(s)}catch(g){}if(t){try{sessionStorage.removeItem(s)}catch(g){}var o=[],r=!0,i=!1,a=void 0;try{for(var c,l=JSON.parse(t)[Symbol.iterator]();!(r=(c=l.next()).done);r=!0){var u=tr(c.value,2),d=u[0],m=u[1],f=new CustomEvent("session:resume",{bubbles:!0,cancelable:!0,detail:{targetId:d,targetValue:m}});if(document.dispatchEvent(f)){var p=document.getElementById(d);p&&(p instanceof HTMLInputElement||p instanceof HTMLTextAreaElement)&&p.value===p.defaultValue&&(p.value=m,o.push(p))}}}catch(h){i=!0,a=h}finally{try{r||null==l.return||l.return()}finally{if(i)throw a}}setTimeout(function(){for(var e=0,t=o;e{const t=e.target;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/behaviors/tag-input.js:61");t.matches(".js-remove")?this.removeTag(e):this.onFocus()}),this.input.addEventListener("focus",this.onFocus.bind(this)),this.input.addEventListener("blur",this.onBlur.bind(this)),this.input.addEventListener("keydown",this.onKeyDown.bind(this)),this.form.addEventListener("submit",this.onSubmit.bind(this)),this.autoComplete.addEventListener("auto-complete-change",()=>{this.selectTag(this.autoComplete.value)})}onFocus(){this.inputWrap.classList.add("focus"),this.input!==document.activeElement&&this.input.focus()}onBlur(){this.inputWrap.classList.remove("focus"),this.autoComplete.open||this.onSubmit()}onSubmit(){this.input.value&&(this.selectTag(this.input.value),this.autoComplete.open=!1)}onKeyDown(e){switch(X(e)){case"Backspace":this.onBackspace();break;case"Enter":case"Tab":this.taggifyValueWhenSuggesterHidden(e);break;case",":case" ":this.taggifyValue(e)}}taggifyValueWhenSuggesterHidden(e){!this.autoComplete.open&&this.input.value&&(e.preventDefault(),this.selectTag(this.input.value))}taggifyValue(e){this.input.value&&(e.preventDefault(),this.selectTag(this.input.value),this.autoComplete.open=!1)}selectTag(e){const t=this.normalizeTag(e),n=this.selectedTags();t&&n.indexOf(t)<0&&(this.selections.appendChild(this.templateTag(t)),this.input.value="",L(this.form,"tags:changed"))}removeTag(e){const t=e.target;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/behaviors/tag-input.js:155");e.preventDefault(),d(t,".js-tag-input-tag").remove(),L(this.form,"tags:changed")}templateTag(e){const t=this.tagTemplate.cloneNode(!0);return b(t,"input",HTMLInputElement).value=e,b(t,".js-placeholder-tag-name").replaceWith(e),t.classList.remove("d-none","js-template"),t}normalizeTag(e){return e.toLowerCase().trim().replace(/[\s,']+/g,"-")}onBackspace(){if(!this.input.value){const e=this.selections.querySelector("li:last-child .js-remove");e&&e.click()}}selectedTags(){const e=v(this.selections,"input",HTMLInputElement);return Array.from(e).map(e=>e.value).filter(e=>e.length>0)}}async function ar(e){const t=e.currentTarget;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/behaviors/team-members.js:8");if((n=t).getAttribute("data-hovercard-url")&&n.closest("[data-team-hovercards-enabled]"))return void t.classList.remove("tooltipped");var n;const s=t.getAttribute("data-url");if(!s)return;const o=W(s),r=p(t,"data-id"),i=document.querySelectorAll(`.js-team-mention[data-id='${r}']`);for(const c of i)c.removeAttribute("data-url");try{const e=await o;0===e.total?e.members.push("This team has no members"):e.total>e.members.length&&e.members.push(`${e.total-e.members.length} more`),cr(i,function(e){if("ListFormat"in Intl){const t=new Intl.ListFormat;return t.format(e)}if(0===e.length)return"";if(1===e.length)return e[0];if(2===e.length)return e.join(" and ");{const t=e[e.length-1];return e.slice(0,-1).concat(`and ${t}`).join(", ")}}(e.members))}catch(a){const e=a.response?a.response.status:500;cr(i,p(t,404===e?"data-permission-text":"data-error-text"))}}function cr(e,t){for(const n of e)n.setAttribute("aria-label",t),n.classList.add("tooltipped","tooltipped-s","tooltipped-multiline")}r(".js-tag-input-container",{constructor:HTMLElement,initialize(e){new ir({container:e,inputWrap:b(e,".js-tag-input-wrapper"),input:b(e,'input[type="text"], input:not([type])',HTMLInputElement),selections:b(e,".js-tag-input-selected-tags"),tagTemplate:b(e,".js-template"),autoComplete:b(e,"auto-complete",k)}).setup()}}),r(".js-team-mention",function(e){e.addEventListener("mouseenter",ar)});let lr=0;const ur="IntersectionObserver"in window?new IntersectionObserver(function(e){for(const t of e)t.isIntersecting&&dr(t.target)},{root:null,rootMargin:"0px",threshold:1}):{observe(e){},unobserve(e){}};function dr(e){return e.classList.remove("js-unread-item","unread-item")}r(".js-unread-item",{constructor:HTMLElement,add(e){lr++,ur.observe(e)},remove(e){lr--,ur.unobserve(e),0===lr&&function(){if(!document.hasFocus())return;const e=document.querySelector(".js-timeline-marker-form");e&&e instanceof HTMLFormElement&&E(e)}()}}),u("socket:message",".js-discussion",function(e){if(e.currentTarget===e.target)for(const t of document.querySelectorAll(".js-unread-item"))dr(t)});let mr=0;const fr=/^\(\d+\)\s+/;function pr(){const e=mr?`(${mr}) `:"";document.title.match(fr)?document.title=document.title.replace(fr,e):document.title=`${e}${document.title}`}function gr(){if(document.querySelector(":target"))return;const e=J(location.hash).toLowerCase(),t=G(document,`user-content-${e}`);t&&t.scrollIntoView()}function hr(e){if(!(e.target instanceof Element))throw new Error("invariant: app/assets/modules/github/behaviors/will-transition-once.js:22");e.target.classList.remove("will-transition-once")}r(".js-unread-item",{add(){mr++,pr()},remove(){mr--,pr()}}),window.addEventListener("hashchange",gr),document.addEventListener("pjax:success",gr),async function(){await Y,gr()}(),u("click","a[href]",function(e){const{currentTarget:t}=e;t instanceof HTMLAnchorElement&&t.href===location.href&&location.hash.length>1&&setTimeout(function(){e.defaultPrevented||gr()})}),r(".will-transition-once",{constructor:HTMLElement,subscribe:e=>q(e,"transitionend",hr)});const vr=new C;async function br(e){const t=e.getAttribute("data-item-name")||"items",n=e.value,s=parseInt(e.getAttribute("data-item-minimum"))||0,o=parseInt(e.getAttribute("data-item-maximum"))||300,r=parseInt(e.getAttribute("data-item-count"))||0,i=Math.max(s,parseInt(n)||0),a=i>o,c=document.querySelector(".js-downgrade-button");c instanceof HTMLButtonElement&&(c.disabled=i===r);const l=new URL(p(e,"data-url"),window.location.origin),u=new URLSearchParams(l.search.slice(1));u.append(t,i.toString()),document.querySelector(".js-transform-user")&&u.append("transform_user","1"),l.search=u.toString();const d=await vr.push(W(l)),m=document.querySelector(".js-contact-us");m&&m.classList.toggle("d-none",!a);const f=document.querySelector(".js-payment-summary");f&&f.classList.toggle("d-none",a);const g=document.querySelector(".js-submit-billing");g&&(g.hidden=a);const h=document.querySelector(".js-billing-section");h&&h.classList.toggle("has-removed-contents",d.free||d.is_enterprise_cloud_trial);const b=document.querySelector(".js-upgrade-info");b&&b.classList.toggle("d-none",i<=0);const w=document.querySelector(".js-downgrade-info");w&&w.classList.toggle("d-none",i>=0);const j=document.querySelector(".js-extra-seats-line-item");j&&j.classList.toggle("d-none",d.no_additional_seats),document.querySelector(".js-seat-field")&&function(e){for(const t of v(document,".js-seat-field",HTMLInputElement))t.value=e}(n);const y=document.querySelector(".js-minimum-seats-disclaimer");y&&(y.classList.toggle("tooltipped",5===d.seats),y.classList.toggle("tooltipped-nw",5===d.seats));const E=d.selectors;for(const p in E)for(const e of document.querySelectorAll(p))e.innerHTML=E[p];H(Q(),"",d.url)}u("click",".js-org-signup-duration-change",e=>{if(e.preventDefault(),!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/billing/addons.js:14");const t=e.currentTarget,n=p(t,"data-plan-duration");!function(e){const t="year"===e?"month":"year";for(const n of v(document,".js-plan-duration-text"))n.innerHTML=e;for(const n of v(document,".unstyled-available-plan-duration-adjective"))n.innerHTML=`${e}ly`;for(const n of v(document,".js-org-signup-duration-change"))n.setAttribute("data-plan-duration",t)}(n),function(e){for(const t of v(document,".js-seat-field",HTMLInputElement)){const n=new URL(p(t,"data-url"),window.location.origin),s=new URLSearchParams(n.search.slice(1));s.delete("plan_duration"),s.append("plan_duration",e),n.search=s.toString(),t.setAttribute("data-url",n.toString())}}(n);for(const s of v(document,".js-seat-field",HTMLInputElement))br(s);!function(){for(const e of v(document,".js-unit-price"))e.hidden=!e.hidden}()}),r(".js-addon-purchase-field",{constructor:HTMLInputElement,add(e){Z(e)&&br(e),M(e,function(){br(e)})}}),r(".js-addon-downgrade-field",{constructor:HTMLInputElement,add(e){Z(e)&&br(e),e.addEventListener("change",function(){br(e)})}}),u("details-menu-selected",".js-organization-container",function(e){const t=document.querySelector(".js-addon-purchase-field"),n=e.target.querySelector("input:checked");if(t instanceof HTMLInputElement&&n instanceof HTMLInputElement){const e=n.getAttribute("data-upgrade-url");e&&(t.setAttribute("data-url",e),t.value="0",br(t))}},{capture:!0}),r(".js-repo-health",function(e){const t=d(e,"form",HTMLFormElement),n=b(t,".js-comment-field",HTMLTextAreaElement),s=b(t,".js-repo-name",HTMLInputElement);function o(){!async function(e,t,n){const s=b(document,".js-repo-health-check",HTMLFormElement);b(s,".js-repo-health-name",HTMLInputElement).value=n,e.classList.remove("d-none"),e.classList.add("is-loading"),t.setCustomValidity("checking"),L(t,"change");const o=await R(document,s.action,{method:"POST",body:new FormData(s)}),r=b(e,".js-repo-health-results");r.innerHTML="",r.appendChild(o),e.classList.remove("is-loading"),t.setCustomValidity(""),L(t,"change")}(e,n,s.value)}"hidden"===s.type?n.addEventListener("focus",o):s.addEventListener("change",o)}),j(".js-audit-log-export-form",async function(e,t){const n=b(document,".js-audit-log-exporting"),s=b(document,".js-audit-log-export-menu");function o(e){s.hidden=e,n.hidden=!e}let r;o(!0);try{r=await t.json()}catch(a){return o(!1),void ee()}const i=r.json;try{await te(i.job_url)}catch(a){return o(!1),void ee()}o(!1),window.location=i.export_url});const wr=new C;function jr(e){const t=document.querySelector(".js-membership-tabs");if(t){const n=e.querySelectorAll(".js-bulk-actions-toggle:checked");t.classList.toggle("d-none",n.length>0)}}function yr(){return b(document,".js-business-saml-provider-settings-form",HTMLFormElement)}function Er(){return yr().querySelector(".js-business-saml-form-inputs")}function Lr(e){e&&e.classList.remove("d-none")}function Tr(){return"1"===b(document,".js-business-saml-currently-enabled",HTMLInputElement).value&&!b(document,".js-business-enable-saml",HTMLInputElement).checked}function kr(){return b(document,".is-submit-button-value",HTMLInputElement)}function Mr(){yr().submit()}function Ar(){const e=document.querySelector(".js-business-enable-saml");e&&e instanceof HTMLInputElement&&(e.checked=!0,Lr(Er()))}function xr(){const e="0"===b(document,".js-business-two-factor-currently-enabled",HTMLInputElement).value;return b(document,".js-business-enable-two-factor",HTMLInputElement).checked&&e}if(u("change",".js-bulk-actions-toggle",function(e){const t=e.currentTarget,n=d(t,".js-bulk-actions-container");L(n,"bulk-actions:update")}),u("bulk-actions:update",".js-bulk-actions-container",y(async function(e){const t=e.target,n=b(t,".js-bulk-actions"),s=!!t.querySelector(".js-bulk-actions-toggle:checked"),o=await wr.push(S(function(e){const t=new URL(p(e,"data-bulk-actions-url"),window.location.origin),n=new URLSearchParams(t.search.slice(1)),s=e.getAttribute("data-bulk-actions-parameter"),o=v(e,".js-bulk-actions-toggle:checked",HTMLInputElement);if(s){const e=o.map(e=>p(d(e,".js-bulk-actions-item"),"data-bulk-actions-id")).sort();for(const t of e)n.append(`${s}[]`,t)}else for(const r of o.sort((e,t)=>e.value>t.value?1:-1))n.append(r.name,r.value);return t.search=n.toString(),t.toString()}(t)));s?(jr(t),n.innerHTML=o):(n.innerHTML=o,jr(t)),L(t,"bulk-actions:updated")},100)),u("click",".js-preview-sign-in-message",function(e){const t=b(document,"#custom_messages_sign_in_message",HTMLTextAreaElement).value;b(document,"#sign_in_message",HTMLInputElement).value=t;const n=e.currentTarget;if(!(n instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/businesses.js:11");if(!n.form)throw new Error("invariant: app/assets/modules/github/businesses.js:12");n.form.submit()}),u("click",".js-preview-sign-out-message",function(e){const t=b(document,"#custom_messages_sign_out_message",HTMLTextAreaElement).value;b(document,"#sign_out_message",HTMLInputElement).value=t;const n=e.currentTarget;if(!(n instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/businesses.js:19");if(!n.form)throw new Error("invariant: app/assets/modules/github/businesses.js:20");n.form.submit()}),u("click",".js-preview-auth-provider-name",function(e){const t=b(document,"#custom_messages_auth_provider_name",HTMLInputElement).value;b(document,"#auth_provider_name",HTMLInputElement).value=t;const n=e.currentTarget;if(!(n instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/businesses.js:27");if(!n.form)throw new Error("invariant: app/assets/modules/github/businesses.js:28");E(n.form)}),u("click",".js-preview-suspended-message",function(e){const t=b(document,"#custom_messages_suspended_message",HTMLTextAreaElement).value;b(document,"#suspended_message",HTMLInputElement).value=t;const n=e.currentTarget;if(!(n instanceof HTMLButtonElement&&n.form))throw new Error("invariant: app/assets/modules/github/businesses.js:35");n.form.submit()}),u("click",".js-admin-settings-policy-input",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/businesses.js:41");const t=e.form;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/businesses.js:43");const n=b(t,'[aria-checked="true"]',HTMLButtonElement);E(t,n)}),u("click",".js-business-enable-saml",function(e){if(!(e.currentTarget instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/businesses.js:116");var t;e.currentTarget.checked?Lr(Er()):(t=Er())&&t.classList.add("d-none")}),u("click",".js-business-saml-submit",function(e){e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/businesses.js:134");E(yr(),t)}),u("submit",".js-business-saml-provider-settings-form",function(e){e.preventDefault(),"test_settings"===kr().name?Mr():"save_settings"===kr().name&&(Tr()?async function(){(await F({content:b(document,"#disable-saml-confirmation",HTMLTemplateElement).content.cloneNode(!0)})).addEventListener("dialog:remove",Ar)}():Mr())}),u("click",".js-enable-enable-saml-provider-button",function(){const e=b(document,".js-enable-saml-provider-button",HTMLButtonElement),t=b(document,".js-enable-saml-provider-instruction",HTMLElement);e.disabled=!1,t.hidden=!0}),u("click",".js-suggested-org",function(e){if(!(e.currentTarget instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/businesses.js:179");if("true"===e.currentTarget.getAttribute("aria-disabled"))return;const t=d(e.currentTarget,"form"),n=b(e.currentTarget,".js-suggested-org-details-source");b(t,".js-suggested-org-details-target").innerHTML=n.innerHTML}),u("change",".js-invite-business-org-auto-complete",function(e){const t=e.currentTarget;if(!(t instanceof k))throw new Error("invariant: app/assets/modules/github/businesses.js:190");const n=d(t,"form"),s=b(n,".js-suggested-org-details-target");t.value||(s.innerHTML="")}),u("click",".js-business-two-factor-submit-button",function(e){xr()||e.preventDefault()}),u("change",".js-repo-types-allowed-radio",()=>{const e=v(document,".js-repo-type-creation-checkbox",HTMLInputElement),t=v(document,".js-repo-type-creation-label",HTMLElement);for(const n of e)n.disabled=!1;for(const n of t)n.classList.remove("text-gray-light")}),u("change",".js-repo-types-disallowed-radio",()=>{const e=v(document,".js-repo-type-creation-checkbox",HTMLInputElement),t=v(document,".js-repo-type-creation-label",HTMLElement);for(const n of e)n.disabled=!0,n.checked=!1;for(const n of t)n.classList.add("text-gray-light")}),top!==window){alert("For security reasons, framing is not allowed.");try{top.location.replace(document.location.href)}catch(Lh){}}const Sr=/\bChrome\//.test(navigator.userAgent)&&!/\bEdge\//.test(navigator.userAgent),Hr=/Macintosh.*Safari/.test(navigator.userAgent);let Cr,qr=!1;function Ir(){Cr=document.activeElement,document.body&&(Sr||Hr)&&document.body.classList.toggle("intent-mouse",qr)}function _r(e){return e.hasAttribute("data-maxlength")?parseInt(e.getAttribute("data-maxlength")||""):e.maxLength}function $r(e){const t=_r(e);!function(e,t,n){const s=n.closest(".js-characters-remaining-container");if(!s)return;const o=b(s,".js-characters-remaining"),r=String(o.getAttribute("data-suffix")),i=t-ne(e);i<=20?(o.textContent=`${i} ${r}`,o.classList.toggle("text-red",i<=5),o.hidden=!1):o.hidden=!0}(e.value,t,e)}function Dr(e){const t=e.querySelectorAll(".js-characters-remaining-container");for(const n of t){$r(b(n,".js-characters-remaining-field",HTMLInputElement))}}document.addEventListener("mousedown",function(){qr=!0,Cr===document.activeElement&&Ir()},{capture:!0}),document.addEventListener("keydown",function(){qr=!1},{capture:!0}),document.addEventListener("focusin",Ir,{capture:!0}),h(".js-characters-remaining-field",function(e){function t(){(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement)&&$r(e)}t(),e.addEventListener("input",t),e.addEventListener("blur",()=>{e.removeEventListener("input",t)},{once:!0})});const Br={}.hasOwnProperty,Rr={host:"collector.githubapp.com",type:"page_view",dimensions:{},measures:{},context:{},actor:{},image:new Image,performance:{},expectedPerformanceTimingKeys:["connectEnd","connectStart","domComplete","domContentLoadedEventEnd","domContentLoadedEventStart","domInteractive","domLoading","domainLookupEnd","domainLookupStart","fetchStart","loadEventEnd","loadEventStart","navigationStart","redirectEnd","redirectStart","requestStart","responseEnd","responseStart","secureConnectionStart","unloadEventEnd","unloadEventStart"],recordPageView(){return this.applyMetaTags(),null!=this.app&&(null==this.host?(console&&console.warn&&console.warn("Host not set, you are doing something wrong"),!1):(this.image.src=this._src(),this._clearPerformance(),!0))},setHost(e){this.host=e},setApp(e){this.app=e},setDimensions(e){this.dimensions=e},addDimensions(e){let t;null==this.dimensions&&(this.dimensions={});const n=[];for(t in e){if(!Br.call(e,t))continue;const s=e[t];n.push(this.dimensions[t]=s)}return n},setMeasures(e){this.measures=e},addMeasures(e){let t;null==this.measures&&(this.measures={});const n=[];for(t in e){if(!Br.call(e,t))continue;const s=e[t];n.push(this.measures[t]=s)}return n},setContext(e){this.context=e},addContext(e){let t;null==this.context&&(this.context={});const n=[];for(t in e){if(!Br.call(e,t))continue;const s=e[t];n.push(this.context[t]=s)}return n},setActor(e){this.actor=e},push(e){return this.applyCall(e)},enablePerformance(){this.performance=this._performanceTiming()},_recordSrc(e,t,n,s){return`//${this.host}/${this.app}/${e}?${this._queryString(t,n,s)}`},_src(){return`//${this.host}/${this.app}/${this.type}?${this._queryString()}`},_queryString(e,t,n){let s,o;const r=this._params(),i=[];for(s in r)o=r[s],i.push(`dimensions[${s}]=${o}`);return i.push(this._encodeObject("dimensions",Object.assign({},this.dimensions,e))),i.push(this._encodeObject("measures",Object.assign({},this.measures,t))),null!=this.performance&&i.push(this._encodeObject("measures",{performance_timing:String(this.performance)})),i.push(this._encodeObject("context",Object.assign({},this.context,n))),i.push(this._actor()),i.push(this._encodeObject("dimensions",{cid:this._clientId()})),i.join("&")},_clearPerformance(){this.performance=null},_performanceTiming(){if(null==window.performance||null==window.performance.timing||null==window.performance.timing.navigationStart)return null;const e=this.expectedPerformanceTimingKeys.reduce((e,t)=>{const n=window.performance.timing[t];return e[t]="number"==typeof n?n:0,e},{}),t=[],n=e.navigationStart;for(const s in e){const o=e[s],r=0===o?null:o-n;t.push(r)}return`1-${t.join("-")}`},_params(){return{page:this._encode(this._page()),title:this._encode(this._title()),referrer:this._encode(this._referrer()),user_agent:this._encode(this._agent()),screen_resolution:this._encode(this._screenResolution()),pixel_ratio:this._encode(this._pixelRatio()),browser_resolution:this._encode(this._browserResolution()),tz_seconds:this._encode(this._tzSeconds()),timestamp:(new Date).getTime()}},_page(){try{const t=document.querySelector("meta[name=octolytics-location]");return t instanceof HTMLMetaElement?document.location.origin+t.content:document.location.href}catch(e){}},_title(){try{return document.title}catch(e){}},_referrer(){let e="";try{e=window.top.document.referrer}catch(t){if(window.parent)try{e=window.parent.document.referrer}catch(t){}}return""===e&&(e=document.referrer),e},_agent(){try{return navigator.userAgent}catch(e){}},_screenResolution(){try{return`${screen.width}x${screen.height}`}catch(e){return"unknown"}},_pixelRatio:()=>window.devicePixelRatio,_browserResolution(){let e=0,t=0;try{return"number"==typeof window.innerWidth?(t=window.innerWidth,e=window.innerHeight):null!=document.documentElement&&null!=document.documentElement.clientWidth?(t=document.documentElement.clientWidth,e=document.documentElement.clientHeight):null!=document.body&&null!=document.body.clientWidth&&(t=document.body.clientWidth,e=document.body.clientHeight),`${t}x${e}`}catch(n){return"unknown"}},_tzSeconds(){try{return-60*(new Date).getTimezoneOffset()}catch(e){return""}},_encodeObject(e,t){const n=[];if(Array.isArray(t))for(const s of t)n.push(this._encodeObject(`${e}[]`,s));else if("object"==typeof t)for(const s in t)n.push(this._encodeObject(`${e}[${s}]`,t[s]));else n.push(`${e}=${this._encode(t)}`);return n.join("&")},_actor(){let e,t,n;const s=[],o=this.actor;for(t in o){const r=o[t],i=`dimensions[actor_${t}]`;if(Array.isArray(r))for(e=0,n=r.length;e1){const e=(t.shift()||"").split("-");1===e.length&&(e[1]="1"),e[0]=Number(e[0]),e[1]=Number(e[1]),n=t.join("."),o.push([e,n])}}return n="",o.length>0&&(n=String(o.sort().reverse()[0][1])),n},_setClientId(){const e=(new Date).getTime(),t=`${Math.round(Math.random()*(Math.pow(2,31)-1))}.${Math.round(e/1e3)}`,n=`GH1.1.${t}`,s=new Date(e+63072e6).toUTCString(),o=document.domain;if(null==o)throw new Error("Unable to get document domain");const r=`.${o.split(".").reverse().slice(0,2).reverse().join(".")}`;return document.cookie=`_octo=${n}; expires=${s}; path=/; domain=${r}`,t},_encode:e=>null!=e?window.encodeURIComponent(e):"",applyQueuedCalls(e){const t=[];for(const n of e)t.push(this.applyCall(n));return t},applyCall(e){const t=e[0],n=e.slice(1);return"function"==typeof this[t]?this[t](...n):console&&console.warn&&console.warn(`${t} is not a valid method`)},applyMetaTags(){const e=this.loadMetaTags();return e.host&&this.setHost(e.host),e.app&&this.setApp(e.app),this._objectIsEmpty(e.actor)||this.setActor(e.actor),this.addDimensions(e.dimensions),this.addMeasures(e.measures),this.addContext(e.context)},loadMetaTags(){let e,t;const n={dimensions:{},measures:{},context:{},actor:{}},s=document.getElementsByTagName("meta");for(e=0,t=s.length;et.length?1:e.localeCompare(t)}function Or(e,t){const n=e.getBoundingClientRect();return(t.getBoundingClientRect().width-n.width)/2}function Wr(e,t){const n=e.querySelector("svg");if(!n)return;const s=n.querySelector(".js-highlight-blob"),o=Math.floor(e.clientWidth),r=Math.max(o,250),i=r,a=n.querySelector(".js-highlight-label-top"),c=n.querySelector(".js-highlight-label-bottom"),l=n.querySelector(".js-highlight-label-right"),u=n.querySelector(".js-highlight-label-left"),d=n.querySelector(".js-highlight-percent-top"),m=n.querySelector(".js-highlight-percent-bottom"),f=n.querySelector(".js-highlight-percent-right"),p=n.querySelector(".js-highlight-percent-left"),g=n.querySelector(".js-highlight-x-axis"),h=n.querySelector(".js-highlight-y-axis"),v=n.querySelector(".js-highlight-top-ellipse"),b=n.querySelector(".js-highlight-right-ellipse"),w=n.querySelector(".js-highlight-bottom-ellipse"),j=n.querySelector(".js-highlight-left-ellipse"),y=e.querySelector(".js-activity-overview-graph-spinner"),E=n.querySelector("g");if(!E)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:69");if(!s)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:70");if(!a)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:71");if(!c)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:72");if(!l)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:73");if(!u)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:74");if(!d)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:75");if(!m)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:76");if(!f)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:77");if(!p)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:78");if(!g)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:79");if(!h)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:80");if(!v)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:81");if(!b)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:82");if(!w)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:83");if(!j)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:84");if(!y)throw new Error("invariant: app/assets/modules/github/contributions-spider-graph.js:85");E.removeAttribute("transform"),n.classList.remove("d-none"),n.classList.add("d-block"),y.classList.remove("d-block"),y.classList.add("d-none"),a.innerHTML="",l.innerHTML="",c.innerHTML="",u.innerHTML="",d.innerHTML=" ",f.innerHTML=" ",m.innerHTML=" ",p.innerHTML=" ";const L=Object.keys(t.percentages).sort(Fr),[T,k]=L.slice(0,2).sort(),[M,A]=L.slice(2,4).sort(),x=t.percentages[M],S=t.percentages[k],H=t.percentages[A],C=t.percentages[T];let q=null;const I=(e,n)=>{const s=t.percentages[e];if(s>0)return q=n,`${s}%`},_=I(M,d);_&&(d.textContent=_);const $=I(k,f);$&&(f.textContent=$);const D=I(A,m);D&&(m.textContent=D);const B=I(T,p);B&&(p.textContent=B);const R=r/2,N=r/2;a.appendChild(document.createTextNode(M)),a.setAttribute("dx",R.toString()),c.appendChild(document.createTextNode(A)),c.setAttribute("dx",N.toString()),d.setAttribute("dx",R.toString()),m.setAttribute("dx",N.toString());const P=a.getBoundingClientRect().height;let F=0;q&&(F=q.getBoundingClientRect().height);let O=i/2+P/4,W=i/2+P/4;C>0&&(O=O+F/2+2.5),S>0&&(W=W+F/2+2.5),u.appendChild(document.createTextNode(T)),u.setAttribute("dy",O.toString()),l.appendChild(document.createTextNode(k)),l.setAttribute("dy",W.toString());const z=O-P,U=W-P;p.setAttribute("dy",z.toString()),f.setAttribute("dy",U.toString());let V=x/100,K=H/100,Y=C/100,X=S/100;const J=Math.max(V,K,Y,X),G=e=>{return 1*e/J+0};V=G(V),K=G(K),Y=G(Y),X=G(X);const Q=function(e){let t=0;for(const n of e){const e=n.getBoundingClientRect();e.width>t&&(t=e.width)}return t}([u,l,a,c])+10,Z=Math.max(Q,P),ee=r/2,te=i/2,ne=ee,se=Z,oe=ee,re=i-Z,ie=Z,ae=te,ce=r-Z,le=te,ue=ee-ie,de=te-se;let me=se+(1-V)*de,fe=Math.max(re-(1-K)*de,te),pe=ie+(1-Y)*ue,ge=ce-(1-X)*ue;g.setAttribute("x1",ie.toString()),g.setAttribute("y1",te.toString()),g.setAttribute("x2",ce.toString()),g.setAttribute("y2",te.toString()),h.setAttribute("x1",ee.toString()),h.setAttribute("y1",se.toString()),h.setAttribute("x2",ee.toString()),h.setAttribute("y2",re.toString()),me+4te&&(fe-=4),pe+4ee&&(ge-=4);const he=se-10,ve=ce+10;let be=re+10+8;H>0&&(be+=F);const we=ie-12;a.setAttribute("dy",he.toString()),l.setAttribute("dx",ve.toString()),c.setAttribute("dy",be.toString()),u.setAttribute("dx",we.toString());const je=we-Or(p,u),ye=ve+Or(f,l);p.setAttribute("dx",je.toString()),f.setAttribute("dx",ye.toString());const Ee=he-P,Le=be-P;d.setAttribute("dy",Ee.toString()),m.setAttribute("dy",Le.toString());0===x?v.classList.add("d-none"):(v.setAttribute("cx",ne.toString()),v.setAttribute("cy",(me-2).toString())),0===S?b.classList.add("d-none"):(b.setAttribute("cx",(ge+2).toString()),b.setAttribute("cy",le.toString())),0===H?w.classList.add("d-none"):(w.setAttribute("cx",oe.toString()),w.setAttribute("cy",(fe+2).toString())),0===C?j.classList.add("d-none"):(j.setAttribute("cx",(pe-2).toString()),j.setAttribute("cy",ae.toString()));const Te=E.getBoundingClientRect(),ke=n.getBoundingClientRect(),Me=0-(Te.top-ke.top),Ae=0-(Te.left-ke.left);E.setAttribute("transform",`translate(${Ae}, ${Me})`);const xe=Math.ceil(Te.width),Se=Math.ceil(Te.height);n.setAttribute("width",xe.toString()),n.setAttribute("height",Se.toString());const He=`M${ne},${me} ${[[ge,le],[oe,fe],[pe,ae]].map(e=>`L${e[0]},${e[1]}`).join(" ")} z`;x+S+H+C!==0&&s.setAttribute("d",He)}document.addEventListener("keydown",e=>{if("Escape"!==e.key)return;if(e.target!==document.body)return;const t=document.querySelector(".js-targetable-comment:target");t&&se(t,()=>{window.location.hash="",window.history.replaceState(null,null,window.location.pathname+window.location.search)})}),document.addEventListener("click",e=>{const t=document.querySelector(".js-targetable-comment:target");t&&(e.target instanceof HTMLAnchorElement||e.target instanceof HTMLElement&&(t.contains(e.target)||se(t,()=>{window.location.hash="",window.history.replaceState(null,null,window.location.pathname+window.location.search)})))}),h(".js-template-form-input",function(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/community.js:26");const t=Nr(e);function n(){Pr(e,t)}function s(e){for(const n of t)n.classList.toggle("CommunityTemplate-highlight--focus",e)}s(!0),e.addEventListener("input",n),e.addEventListener("blur",function t(){s(!1),e.removeEventListener("input",n),e.removeEventListener("blur",t)})}),u("click",".js-template-highlight",function(e){(function(e){const t=p(e,"data-fieldname");return b(document,`input[data-fieldname="${t}"]`,HTMLInputElement)})(e.currentTarget).focus()}),r(".js-templates",function(){for(const e of v(document,".js-template-form-input",HTMLInputElement)){Pr(e,Nr(e))}}),r(".js-activity-overview-graph-container",function(e){const t=p(e,"data-percentages"),n={percentages:JSON.parse(t)};if(Wr(e,n),"true"===e.getAttribute("data-responsive-graph")){const t=oe(Wr.bind(null,e,n),100);return{add(){window.addEventListener("resize",t)},remove(){window.removeEventListener("resize",t)}}}}),u("submit","form.js-post-recovery-token",function(e){const t=e.currentTarget;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/delegated-account-recovery.js:38");e.preventDefault(),async function(e){const t=b(document,".js-delegated-account-recovery-submit",HTMLButtonElement),n=b(document,".js-create-recovery-token-form",HTMLFormElement);e.classList.remove("failed"),e.classList.add("loading"),t.disabled=!0;try{const o=await re(n),r=await o.json();ie(e,{token:r.token,state:r.state_url}),e.submit()}catch(s){e.classList.remove("loading"),e.classList.add("failed"),t.disabled=!1}}(t)}),r("form.js-recovery-provider-auto-redirect",{constructor:HTMLFormElement,initialize:function(e){e.submit()}}),u("click",".js-sub-dependencies",async function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/dependencies.js:8");const t=e,n=t.getAttribute("data-loaded"),s=t.querySelector(".js-expanded"),o=t.querySelector(".js-collapsed"),r=t.closest(".js-details-container");if(s&&s.classList.toggle("d-none"),o&&o.classList.toggle("d-none"),r&&r.classList.toggle("bg-gray-light"),!n){t.setAttribute("data-loaded","true");const e=p(t,"data-sub-dependency-url"),n=t.closest(".js-dependency"),s=await R(document,e);n&&n.after(s)}});let zr=null;function Ur({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/details-element.js:24");e.hasAttribute("open")?(zr&&zr!==e&&zr.removeAttribute("open"),zr=e):e===zr&&(zr=null)}function Vr({currentTarget:e}){if(!(e instanceof Element))return;const t=d(e,"details"),n=p(t,"data-deferred-details-content-url");t.removeAttribute("data-deferred-details-content-url"),b(t,"include-fragment",l).src=n}async function Kr(e){const t=e.getAttribute("data-url");if(await async function(e){const t=e;if(!t)return!1;try{const e=await W(t);return e.has_gravatar}catch(n){return!1}}(t)){const t=e.getAttribute("data-gravatar-text");null!=t&&(e.textContent=t)}}document.addEventListener("keydown",function(e){!e.defaultPrevented&&"Escape"===e.key&&zr&&zr.removeAttribute("open")}),r(".js-dropdown-details",{subscribe:e=>q(e,"toggle",Ur)}),r("[data-deferred-details-content-url]:not([data-details-no-preload-on-hover])",{subscribe:e=>{const t=b(e,"summary");return q(t,"mouseenter",Vr)}}),r("[data-deferred-details-content-url]",{subscribe:e=>q(e,"toggle",Vr)}),u("click","[data-toggle-for]",function(e){const t=e.currentTarget.getAttribute("data-toggle-for")||"",n=document.getElementById(t);n&&(n.hasAttribute("open")?n.removeAttribute("open"):n.setAttribute("open","open"))}),r(".js-license-menu",e=>{const t=b(e,"fuzzy-list input",HTMLInputElement);e.addEventListener("toggle",function(){e.hasAttribute("open")||(t.value="",L(t,"input"))})}),ae(function({target:e}){if(!e||e.closest("summary"))return;let t=e.parentElement;for(;t;)(t=t.closest("details"))&&(t.hasAttribute("open")||t.setAttribute("open",""),t=t.parentElement)}),u("click",".js-anon-download-zip-link",function(e){const t=e.currentTarget,n=d(t,".js-get-repo-modal"),s=b(n,".js-modal-downloading");n.classList.add("is-downloading"),s.hidden=!1}),u("toggle",".js-anon-get-repo-select-menu",function(e){const t=e.target;b(t,".js-modal-downloading").hidden=t.hasAttribute("open")},{capture:!0}),r(".js-detect-gravatar",function(e){Kr(e)});let Yr=!1;const Xr=[];function Jr(){Xr.length?Yr||(window.addEventListener("resize",Gr,{passive:!0}),document.addEventListener("scroll",Gr,{passive:!0}),Yr=!0):(window.removeEventListener("resize",Gr,{passive:!0}),document.removeEventListener("scroll",Gr,{passive:!0}),Yr=!1)}function Gr(){for(const e of Xr)if(e.element.offsetHeight>0){const{element:t,placeholder:n,top:s}=e,o=t.getBoundingClientRect();if(n){const r=n.getBoundingClientRect();t.classList.contains("is-stuck")?r.top>parseInt(s)?Zr(e):ei(e):o.top<=parseInt(s)&&Qr(e)}else o.top<=parseInt(s)?Qr(e):Zr(e)}}function Qr({element:e,placeholder:t,top:n}){if(t){const s=e.getBoundingClientRect();e.style.top=n.toString(),e.style.left=`${s.left}px`,e.style.width=`${s.width}px`,e.style.marginTop="0",e.style.position="fixed",t.style.display="block"}e.classList.add("is-stuck")}function Zr({element:e,placeholder:t}){t&&(e.style.position="static",e.style.marginTop=t.style.marginTop,t.style.display="none"),e.classList.remove("is-stuck")}function ei({element:e,placeholder:t,offsetParent:n,top:s}){if(t){const o=e.getBoundingClientRect(),r=t.getBoundingClientRect();if(e.style.left=`${r.left}px`,e.style.width=`${r.width}px`,n){const t=n.getBoundingClientRect();t.bottom{const{top:t,height:n}=e.getBoundingClientRect();return 0===t?n:0}))+Math.max(0,...Array.from(n).map(e=>{const{top:t,height:n}=e.getBoundingClientRect(),s=parseInt(getComputedStyle(e).top);if(!e.parentElement)return 0;const o=e.parentElement.getBoundingClientRect().top;return t===s&&o<0?n:0}))}function oi(e){const t=ri();if(!t)return;ii(e,t);const n=function(e,t){const n=function(e,t){const n=/^(diff-[0-9a-f]{32})(?:[L|R]\d+)?$/.exec(t);if(!n)return;const s=n[1],o=e.querySelector(`a[name='${s}']`);if(!o)return;const r=o.nextElementSibling;if(r&&!r.querySelector(".js-diff-load-container"))return;return r}(e,t);if(n)return n;return function(e,t){const n=/^(?:r|commitcomment-)(\d+)$/.exec(t);if(!n)return;const s=n[1],o=e.querySelector(`#diff-with-comment-${s}`);if(!o)return;return o.closest(".js-file")}(e,t)}(e,t);n&&(ni(n),ai(n))}function ri(){return window.location.hash.slice(1)}function ii(e,t){const n=G(e.ownerDocument,t);n&&e.contains(n)&&ni(n)}function ai(e){const t=b(e,".js-diff-entry-loader",l),n=b(e,".js-diff-placeholder",Element),s=b(e,"button.js-diff-load",HTMLButtonElement),o=b(e,".js-button-text");n.setAttribute("fill","url('#animated-diff-gradient')"),o.textContent=s.getAttribute("data-disable-with")||"",s.disabled=!0;const r=new URL(t.getAttribute("data-fragment-url")||"",window.location.origin);return t.src=r.toString(),t.data}function ci(e,t){return v(document,".js-details-container.open.Details--on").filter(n=>n.getAttribute(e)===t)}function li(e,t,n,s,o){const r=b(document,".js-file-filter"),i=new URL(window.location.href,window.location.origin);if(!e&&!s){if(t)return;return i.search="",H(le(),"",i.toString())}const a=b(r,".js-file-filter-form",HTMLFormElement),c=new FormData(a),l=n.filter(e=>!c.getAll("file-filters[]").includes(e)),u=o.filter(e=>!c.getAll("owned-by[]").includes(e));for(const m of l)c.append("file-filters[]",m);for(const m of u)c.append("owned-by[]",m);const d=new URLSearchParams(c);d.has("file-filters[]")&&""!==d.toString()||d.set("file-filters[]",""),t&&d.set("w","1"),i.search=d.toString(),H(le(),"",i.toString())}function ui(e){var t;t=e,b(document,".js-file-filter-text",HTMLElement).classList.toggle("text-blue",t),function(e){const t=document.querySelector(".js-reset-filters"),n=document.querySelector(".js-commits-filtered");null==t||n||(t.hidden=!e)}(e),function(){const e=fi(),t=yi();for(const o of e)if(t){const e="0"===p(o,"data-non-deleted-files-count");o.disabled=e}else o.disabled=!1;const n=document.querySelector(".js-deleted-files-container"),s=pi();if(s&&n){const t=function(e){const t=e.find(e=>e.checked&&"0"!==p(e,"data-deleted-files-count"));return Boolean(t)}(e);n.classList.toggle("text-gray",!t),s.disabled=!t}}(),function(){const e=wi(),t=b(document,".js-file-filter-select-all-container",HTMLElement),n=p(t,e?"data-select-all-markup":"data-all-selected-markup");t.textContent=n,t.classList.toggle("text-gray",!e),t.classList.toggle("text-blue",e)}(),function(){const e=document.querySelector(".js-deleted-files-container");if(e){const t=yi()?"data-show-deleted-markup":"data-hide-deleted-markup",n=p(e,t);e.textContent=n}}(),function(){const e=v(document,".js-file-type-count");for(const t of e){const e=yi()?"data-non-deleted-file-count-markup":"data-all-file-count-markup",n=t.getAttribute(e);n&&(t.textContent=n)}}(),li(e,ji(),mi(),vi(),bi())}function di(e){!function(){const e=pi(),t=mi(),n=v(document,".js-file"),s=bi(),o=gi();for(const r of n){let n=!0;const i=r.getAttribute("data-file-type");if(i&&(n=t.includes(i)),o&&n){const e=r.hasAttribute("data-file-user-viewed");e&&(n=!o.checked)}if(s.length>0&&n){const e=(r.getAttribute("data-codeowners")||"").split(",");n=e.filter(e=>s.includes(e)).length>0}if(e&&e.checked&&n){const e="true"===r.getAttribute("data-file-deleted");e&&(n=!1)}Ei(r,n)}}(),ui(e)}function mi(){return fi().filter(e=>e.checked).map(e=>e.value)}function fi(){return v(document,".js-diff-file-type-option",HTMLInputElement)}function pi(){const e=document.querySelector(".js-deleted-files-toggle");if(e instanceof HTMLInputElement)return e}function gi(){const e=document.querySelector(".js-viewed-files-toggle");if(e instanceof HTMLInputElement)return e}function hi(){return wi()||yi()||vi()}function vi(){return bi().length>0}function bi(){return v(document,".js-diff-owner-option",HTMLInputElement).filter(e=>e.checked).map(e=>e.value)}function wi(){return mi().length!==fi().length}function ji(){return new URLSearchParams(window.location.search).has("w")}function yi(){const e=pi();return!!e&&e.checked}function Ei(e,t){const n=d(e,".js-file.js-details-container");n.classList.toggle("open",t),n.classList.toggle("Details--on",t)}function Li(e){const t=fi();for(const n of t)n.checked=e}r(".js-sticky",{constructor:HTMLElement,add(e){!function(e){const t=ti(e),n=window.getComputedStyle(e).position;e.style.position="static";const s=e.offsetParent;e.style.position="fixed";const o=window.getComputedStyle(e).top,r={element:e,placeholder:t,offsetParent:s,top:"auto"===o?0:o};e.style.position=n,Xr.push(r)}(e),Gr(),Jr()},remove(e){!function(e){const t=Xr.map(e=>e.element).indexOf(e);Xr.splice(t,1)}(e),Jr()}}),r(".js-diff-progressive-container",function(e){oi(e);const t=e.querySelector(".js-diff-progressive-loader");t&&t.addEventListener("load",function(){oi(e)})}),r(".js-diff-load-container",function(e){const t=e.querySelector(".js-diff-entry-loader");t&&t.addEventListener("load",function(){d(e,".js-file").classList.remove("hide-file-notes-toggle");const t=ri();t&&ii(e,t)})}),u("click",".js-diff-load",function(e){if(e.target.classList.contains("js-ignore-this"))return;ai(d(e.currentTarget,".js-diff-load-container"))}),u("click",".js-rendered, .js-source",function(e){const t=e.currentTarget;t.classList.contains("selected")?e.preventDefault():(function(e){const t=d(e,".js-file-header"),n=e.classList.contains("js-rendered"),s=e.classList.contains("js-source"),o=p(t,"data-short-path"),r=p(t,"data-anchor"),i=new URL(window.location.href,window.location.origin),a=new URLSearchParams(i.search.slice(1));i.hash=r,n?a.set("short_path",o):s&&a.delete("short_path");i.search=a.toString(),H(null,"",i.toString())}(t),function(e){for(const t of document.querySelectorAll(".js-rendered, .js-source"))t.classList.remove("selected"),t.removeAttribute("aria-current");e.classList.add("selected"),e.setAttribute("aria-current","true")}(t))}),j(".js-prose-diff-toggle-form",async function(e,t){const n=d(e,".js-details-container"),s=b(n,".js-file-content"),o=await t.html();for(;s.lastChild;)s.removeChild(s.lastChild);s.append(o.html),n.classList.toggle("display-rich-diff"),n.classList.toggle("show-inline-notes")}),u("change",".js-diff-style-toggle input",function(e){const t=d(e.target,".js-diff-settings");for(const n of v(t,".js-diff-style-toggle label"))n.classList.toggle("selected")}),u("click",".js-toc-retry",function(e){const t=d(e.target,".select-menu"),n=b(t,"include-fragment"),s=p(n,"src");n.setAttribute("src",""),n.setAttribute("src",s)}),u("change",".js-diff-file-type-option",function(){di(hi())}),u("change",".js-diff-owner-option",function(){di(vi())}),u("click",".js-file-filter-select-all",function(){wi()&&(Li(!0),di(hi()))}),u("change",".js-deleted-files-toggle",function(){di(hi())}),u("change",".js-viewed-files-toggle",function(){di(hi())}),r(".js-file-filter",function(){hi()?ui(!0):li(!1,ji(),mi(),vi(),bi())}),u("click",".js-file-header .js-details-target",function({currentTarget:e}){if(!document.querySelector(".js-file-filter"))return;const t=d(e,".js-details-container"),n=function(e){const t=p(e,"data-file-type"),n=ci("data-file-type",t),s=v(document,".js-diff-file-type-option",HTMLInputElement).find(e=>e.value===t);if(!s)return!1;const o=s.checked!==n.length>0;return o&&(s.checked=n.length>0),o}(t),s=pi();let o=!1;s&&(o=function(e,t){let n=!1;if("true"===p(e,"data-file-deleted")){const e=ci("data-file-deleted","true");(n=t.checked!==(0===e.length))&&(t.checked=0===e.length)}return n}(t,s));const r=gi();let i=!1;r&&(i=function(e,t){let n=!1;if("true"===e.getAttribute("data-file-user-viewed")){const e=ci("data-file-user-viewed","true");(n=t.checked!==(0===e.length))&&(t.checked=0===e.length)}return n}(t,r)),(n||o||i)&&ui(hi())});class Ti{constructor(e){this.files=Array.from(e),this.percentages=this.files.map(()=>0),this.size=this.files.length,this.total=this.files.reduce((e,t)=>e+t.size,0),this.uploaded=0}percent(){const e=this.files.map((e,t)=>e.size*this.percentages[t]/100).reduce((e,t)=>e+t);return Math.round(e/this.total*100)}progress(e,t){const n=this.files.indexOf(e);this.percentages[n]=t}completed(){this.uploaded+=1}isFinished(){return this.uploaded===this.files.length}}const ki=["is-default","is-uploading","is-bad-file","is-duplicate-filename","is-too-big","is-too-many","is-hidden-file","is-failed","is-bad-dimensions","is-empty","is-bad-permissions","is-repository-required","is-bad-format"];function Mi(e,t){e.classList.remove(...ki),e.classList.add(t)}const Ai=new class{constructor(){this.uploads=[],this.busy=!1}upload(e){this.uploads.push(e),this.process()}process(){if(this.busy||0===this.uploads.length)return;const e=this.uploads.shift();this.busy=!0;const t=new XMLHttpRequest;t.open("POST",e.to,!0);for(const s in e.header)t.setRequestHeader(s,e.header[s]);t.onloadstart=function(){e.start()},t.onload=(()=>{204===t.status?e.complete({}):201===t.status?e.complete(JSON.parse(t.responseText)):e.error({status:t.status,body:t.responseText}),this.busy=!1,this.process()}),t.onerror=(()=>{e.error({status:0,body:""}),this.busy=!1,this.uploads=[]}),t.upload.onprogress=function(t){if(t.lengthComputable){const n=Math.round(t.loaded/t.total*100);e.progress(n)}};const n=new FormData;e.sameOrigin&&n.append("authenticity_token",e.csrf);for(const s in e.form)n.append(s,e.form[s]);n.append("file",e.file),t.send(n)}};async function xi(e,t){for(const s of e.files){const o=Si(s,t),r=[];if(!L(t,"upload:setup",{batch:e,file:s,policyRequest:o.options,preprocess:r}))return;try{await Promise.all(r);const i=await W(o.url,o.options);Ai.upload(Hi(e,s,i,t))}catch(n){if(L(t,"upload:invalid",{batch:e,file:s,error:n}),n.response){const e=await n.response.text();Mi(t,qi({status:n.response.status,body:e},s))}else{Mi(t,qi({status:0,body:""}))}}}}function Si(e,t){const n=p(t,"data-upload-policy-url"),s=t.getAttribute("data-upload-repository-id");let o=t.getAttribute("data-upload-policy-authenticity-token");null==o&&(o=Ci(t));const r=new FormData;return r.append("name",e.name),r.append("size",String(e.size)),r.append("content_type",e.type),r.append("authenticity_token",o),s&&r.append("repository_id",s),e._path&&r.append("directory",String(e._path)),{url:n,options:{method:"post",body:r,headers:{}}}}function Hi(e,t,n,s){let o=n.upload_authenticity_token;null==o&&(o=Ci(s));let r=n.asset_upload_authenticity_token;return null==r&&(r=Ci(s)),{file:t,to:n.upload_url,form:n.form,header:n.header,sameOrigin:n.same_origin,csrf:o,start(){Mi(s,"is-uploading"),L(s,"upload:start",{batch:e,file:t,policy:n})},progress(n){e.progress(t,n),L(s,"upload:progress",{batch:e,file:t,percent:n})},complete(o){if(e.completed(),o&&o.href&&(n.asset||(n.asset={}),n.asset.href=o.href),n.asset_upload_url&&n.asset_upload_url.length>0){const e=new FormData;e.append("authenticity_token",r),W(n.asset_upload_url,{method:"put",body:e})}L(s,"upload:complete",{batch:e,file:t,policy:n,result:o}),Mi(s,"is-default")},error(o){L(s,"upload:error",{batch:e,file:t,policy:n});const r=qi(o);Mi(s,r)}}}function Ci(e){const t=d(e,"form",HTMLFormElement);return T(t,"authenticity_token").value}function qi(e,t){if(400===e.status)return"is-bad-file";if(422!==e.status)return"is-failed";const n=JSON.parse(e.body);if(!n||!n.errors)return"is-failed";for(const s of n.errors)switch(s.field){case"size":{const e=t?t.size:null;return null!=e&&0===parseInt(e)?"is-empty":"is-too-big"}case"file_count":return"is-too-many";case"width":case"height":return"is-bad-dimensions";case"name":return"already_exists"===s.code?"is-duplicate-filename":"is-bad-file";case"content_type":return"is-bad-file";case"uploader_id":return"is-bad-permissions";case"repository_id":return"is-repository-required";case"format":return"is-bad-format"}return"is-failed"}function Ii(e,t){return t&&e.getFilesAndDirectories?async function(e){return _i(await async function e(t,n){if(n.getFilesAndDirectories){const t=await n.getFilesAndDirectories(),s=$i(t).map(t=>e(n.path,t));return Promise.all(s)}return n._path=t,Promise.resolve(n)}("",e))}(e):t&&function(e){return e.items&&Array.from(e.items).some(e=>{const t=e.webkitGetAsEntry&&e.webkitGetAsEntry();return t&&t.isDirectory})}(e)?async function(e){const t=$i(Array.from(e.items).map(e=>e.webkitGetAsEntry())).map(e=>(async function e(t,n){if(n.isDirectory){const t=await(s=n,new Promise(function(e,t){s.createReader().readEntries(e,t)})),o=$i(t).map(t=>e(n.fullPath,t));return Promise.all(o)}{const e=await function(e){return new Promise(function(t,n){e.file(t,n)})}(n);return e._path=t,e}var s})("",e));return _i(await Promise.all(t))}(e):Promise.resolve($i(Array.from(e.files)))}function _i(e){return e.reduce((e,t)=>Array.isArray(t)?e.concat(_i(t)):(e.push(t),e),[])}function $i(e){return Array.from(e).filter(e=>!function(e){return e.name.startsWith(".")}(e))}class FileAttachmentElement extends HTMLElement{constructor(){super(),this.addEventListener("dragenter",Pi),this.addEventListener("dragover",Pi),this.addEventListener("dragleave",Fi),this.addEventListener("drop",Oi),this.addEventListener("paste",Wi)}connectedCallback(){}get directory(){return this.hasAttribute("directory")}set directory(e){e?this.setAttribute("directory",""):this.removeAttribute("directory")}upload(e){Di(e,this)}}function Di(e,t){xi(new Ti(e),t)}function Bi(e){return Array.from(e.types).indexOf("Files")>=0}function Ri(e){switch(e){case"image/gif":return"image.gif";case"image/png":return"image.png";case"image/jpeg":return"image.jpg"}}window.customElements.get("file-attachment")||(window.FileAttachmentElement=FileAttachmentElement,window.customElements.define("file-attachment",FileAttachmentElement));let Ni=null;function Pi(e){const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/file-attachment-element.js:77");Ni&&clearTimeout(Ni),Ni=setTimeout(()=>t.classList.remove("dragover"),200);const n=e.dataTransfer;n&&Bi(n)&&(n.dropEffect="copy",t.classList.add("dragover"),e.stopPropagation(),e.preventDefault())}function Fi(e){if(e.dataTransfer&&(e.dataTransfer.dropEffect="none"),!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/file-attachment-element.js:98");e.currentTarget.classList.remove("dragover"),e.stopPropagation(),e.preventDefault()}function Oi(e){const t=e.currentTarget;if(!(t instanceof Element))return;t.classList.remove("dragover");const n=e.dataTransfer;n&&Bi(n)&&(!async function(e,t){const n=await Ii(t,e.hasAttribute("directory"));if(!n.length)return void Mi(e,"is-hidden-file");const s=Di.bind(null,n);!L(e,"upload:drop:setup",{upload:s,files:n})||Di(n,e)}(t,n),e.stopPropagation(),e.preventDefault())}function Wi(e){if(!e.clipboardData)return;if(!e.clipboardData.items)return;const t=e.currentTarget;if(!(t instanceof Element))return;const n=Array.from(e.clipboardData.items).map(e=>[e,Ri(e.type)]).filter(e=>e[1]).shift();if(!n)return;const[s]=n,o=s.getAsFile();o&&(Di([o],t),e.preventDefault())}function zi(){si(document)&&function(e){const t=ce(e);t&&ni(t)}(document)}ae(zi),u("click",'a[href^="#"]',function(e){const{currentTarget:t}=e;t instanceof HTMLAnchorElement&&setTimeout(zi,0)});class Ui{constructor(e){this.name=e.getAttribute("data-theme-name")||"",this.slug=e.getAttribute("data-theme-slug")||"",this.gem=e.getAttribute("data-theme-gem")||"",this.selected=e.classList.contains("selected"),this.baseHref=e.getAttribute("href")||""}}class Vi{constructor(){this.pagePreview=b(document,"#page-preview"),this.contextLoader=b(document,".theme-picker-spinner"),this.fullPicker=b(document,".theme-picker-thumbs"),this.miniPicker=b(document,".theme-picker-controls"),this.scrollBackwardsLink=b(document,".theme-toggle-full-left",HTMLButtonElement),this.scrollForwardsLink=b(document,".theme-toggle-full-right",HTMLButtonElement),this.themeLinksContainer=b(this.fullPicker,".js-theme-selector"),this.themeLinks=v(this.themeLinksContainer,".theme-selector-thumbnail"),this.themes=this.themeLinks.map(e=>{const t=new Ui(e);return t.selected&&(this.selectedTheme=t),t}),this.scrolledPage=0,this.selectedTheme=this.selectedTheme||this.themes[0],this.pagePreview.addEventListener("load",()=>this.onPagePreviewLoad()),this.scrollBackwardsLink.addEventListener("click",()=>this.scrollThemeLinksContainer(-1)),this.scrollForwardsLink.addEventListener("click",()=>this.scrollThemeLinksContainer(1)),b(document,".theme-picker-prev").addEventListener("click",e=>this.onThemeNavPrevClick(e)),b(document,".theme-picker-next").addEventListener("click",e=>this.onThemeNavNextClick(e));for(const t of this.themeLinks)t.addEventListener("click",e=>this.onThemeLinkClick(e));b(document,".theme-picker-view-toggle").addEventListener("click",e=>this.onHideClick(e));const e=document.querySelector("#page-edit");e&&e.addEventListener("click",e=>this.onEditClick(e)),b(document,"#page-publish").addEventListener("click",e=>this.onPublishClick(e)),this.theme(this.selectedTheme),this.updateScrollLinks()}onPagePreviewLoad(){this.contextLoader.classList.remove("visible")}onThemeNavPrevClick(e){this.theme(this.prevTheme()),e.preventDefault()}onThemeNavNextClick(e){this.theme(this.nextTheme()),e.preventDefault()}onThemeLinkClick(e){this.theme(this.themeForLink(e.currentTarget)),e.preventDefault()}onHideClick({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/generated-pages-theme-picker.js:81");this.fullPicker.classList.toggle("d-none"),this.miniPicker.classList.toggle("d-none"),this.scrollToTheme(this.theme(),!1),e.classList.toggle("open")}onEditClick(e){E(b(document,"#page-edit-form",HTMLFormElement)),e.preventDefault()}onPublishClick(e){const t=b(document,"#page-publish-form",HTMLFormElement),n=this.theme();n&&(b(document,'input[name="page[theme_slug]"]',HTMLInputElement).value=n.slug),E(t),e.preventDefault()}scrollThemeLinksContainer(e){this.scrollToTheme(this.themes[e<0?0:6]),this.updateScrollLinks()}updateScrollLinks(){const e=0===this.scrolledPage;this.scrollBackwardsLink.disabled=e,this.scrollBackwardsLink.classList.toggle("disabled",e),this.scrollForwardsLink.disabled=!e,this.scrollForwardsLink.classList.toggle("disabled",!e)}selectedThemeIndex(){return this.themes.indexOf(this.selectedTheme)}prevTheme(){let e=(this.selectedThemeIndex()-1)%this.themes.length;return e<0&&(e+=this.themes.length),this.themes[e]}nextTheme(){return this.themes[(this.selectedThemeIndex()+1)%this.themes.length]}themeForLink(e){return this.themes[this.themeLinks.indexOf(e)]}linkForTheme(e){return this.themeLinks[this.themes.indexOf(e)]}scrollToTheme(e,t=!0){this.scrolledPage=Math.floor(this.themes.indexOf(e)/6);let n=0;if(this.scrolledPage>0){const e=this.linkForTheme(this.themes[6*this.scrolledPage]);n=e.offsetLeft}const s=this.themeLinksContainer,o=n-s.scrollLeft;if(t&&0!==o){const e=150;r=(t=>{if(t<0)return;const r=s.scrollLeft;return s.scrollLeft=Math[n-r>0?"min":"max"](r+o*(t/e),n),r!==s.scrollLeft&&void 0}),new Promise(e=>{let t=performance.now();!function n(){window.requestAnimationFrame(s=>{!1!==r(s-t)?(t=s,n()):e()})}()})}else s.scrollLeft=n;var r}theme(e){if(!e)return this.selectedTheme;this.selectedTheme=e,this.showPreviewFor(e);for(const t of this.themeLinks)t.classList.remove("selected");this.linkForTheme(e).classList.add("selected"),this.scrollToTheme(e),b(this.miniPicker,".js-theme-name").textContent=e.name}showPreviewFor(e){if(this.contextLoader.classList.add("visible"),e.gem)this.pagePreview.setAttribute("src",e.baseHref);else{const t=b(this.fullPicker,"form",HTMLFormElement);b(document,'input[name="theme_slug"]',HTMLInputElement).value=e.slug,E(t)}}}function Ki(){const e=document.querySelector(".js-get-repo-modal");if(e){e.classList.remove("is-downloading");for(const t of e.querySelectorAll(".js-modal-download-mac, .js-modal-download-windows, .js-modal-download-xcode, .js-modal-download-visual-studio"))t.classList.remove("d-block"),t.classList.add("d-none")}}function Yi(e){try{return sessionStorage.getItem(e)}catch(t){return null}}function Xi(e,t){try{sessionStorage.setItem(e,t)}catch(n){}}function Ji(e){try{sessionStorage.removeItem(e)}catch(t){}}function Gi(e){const t=document.querySelectorAll(e);if(t.length>0)return t[t.length-1]}function Qi(){return function(){const e=Gi("meta[name=analytics-location]");return e instanceof HTMLMetaElement?e.content:window.location.pathname}()+function(){let e="";Gi("meta[name=analytics-location-query-strip]")||(e=window.location.search);const t=Gi("meta[name=analytics-location-params]");t instanceof HTMLMetaElement&&(e+=(e?"&":"?")+t.content);for(const n of v(document,"meta[name=analytics-param-rename]",HTMLMetaElement)){const t=n.content.split(":",2);e=e.replace(new RegExp(`(^|[?&])${t[0]}($|=)`,"g"),`$1${t[1]}$2`)}return e}()}function Zi(){const e=`${window.location.protocol}//${window.location.host}${Qi()}`;de(e),me(Gi("meta[name=analytics-location]")?"(masked)":document.title);const t=Gi("meta[name=analytics-ec-payload]");t instanceof HTMLMetaElement&&ea(t.content);const n=Yi("ga-deferred");n&&(ea(n),Ji("ga-deferred"));for(const s of v(document,"meta.js-ga-set",HTMLMetaElement))fe(s.name,s.content)}function ea(e){if(e)for(const t of JSON.parse(e))window.ga.apply(null,t)}function ta(){for(const e of document.querySelectorAll("meta[name=analytics-virtual-pageview]"))e instanceof HTMLMetaElement&&pe(e.content,{title:""});pe()}function na(e){const[t,n,s,o]=e.trim().split(/\s*,\s*/);return o?{category:t,action:n,label:s,value:Number(o)}:{category:t,action:n,label:s}}r("#theme-picker-wrap",function(){new Vi}),u("click",".email-hidden-toggle",function(e){const t=e.currentTarget.nextElementSibling;t instanceof HTMLElement&&(t.style.display="",t.classList.toggle("expanded"),e.preventDefault())}),u("click",".js-git-clone-help-container .js-git-clone-help-switcher",function(e){const t=e.currentTarget,n=d(t,".js-git-clone-help-container"),s=t.getAttribute("data-url")||"";if(b(n,".js-git-clone-help-field",HTMLInputElement).value=s,t.matches(".js-git-protocol-clone-url"))for(const r of n.querySelectorAll(".js-git-clone-help-text"))r.textContent=s;const o=n.querySelector(".js-clone-url-button.selected");o&&o.classList.remove("selected"),d(t,".js-clone-url-button").classList.add("selected")}),u("click",".js-get-repo",function(e){const t=p(e.currentTarget,"data-open-app");!function(e,t){let n;switch(e.classList.add("is-downloading"),t){case"mac":n=e.querySelector(".js-modal-download-mac");break;case"windows":n=e.querySelector(".js-modal-download-windows");break;case"xcode":n=e.querySelector(".js-modal-download-xcode");break;case"visual-studio":n=e.querySelector(".js-modal-download-visual-studio")}n&&(n.classList.remove("d-none"),n.classList.add("d-block"))}(d(e.currentTarget,".js-get-repo-modal"),t)}),u("toggle",".js-get-repo-select-menu",Ki,{capture:!0}),u("click",".js-get-repo-modal-download-back",Ki),ue("octolyticsPlugin",function(e){const t=e.get("sendHitTask");e.set("sendHitTask",function(e){if(t(e),"event"===e.get("hitType")&&window._octo){const t=`//${window._octo.host}/collect`,n=new Blob([e.get("hitPayload")],{type:"application/x-www-form-urlencoded"});navigator.sendBeacon&&navigator.sendBeacon(t,n)}})});const sa=document.querySelector("meta[name=google-analytics]");sa instanceof HTMLMetaElement&&(ge(sa.content,"auto"),he("octolyticsPlugin"),he("ec"),Zi()),async function(){await Y,ta()}(),document.addEventListener("pjax:complete",()=>{setTimeout(()=>{Zi(),ta()},20)},!1),r("[data-ga-load]",function(e){const t=na(e.getAttribute("data-ga-load")||"");t.interactive=!1,ve(t)}),r("meta[name=analytics-event]",{constructor:HTMLMetaElement,initialize(e){const t=na(e.content);t.interactive=!1,ve(t)}}),u("click","[data-ga-click]",function(e){ea(e.currentTarget.getAttribute("data-ga-ec")||"");const t=na(e.currentTarget.getAttribute("data-ga-click")||"");ve(t)},{capture:!0}),u("click","[data-ga-deferred]",function(e){Xi("ga-deferred",e.currentTarget.getAttribute("data-ga-deferred")||"")},{capture:!0}),u("change","[data-ga-change]",function(e){ea(e.currentTarget.getAttribute("data-ga-ec")||"");const t=na(e.currentTarget.getAttribute("data-ga-change")||"");ve(t)},{capture:!0}),u("click",".js-skip-to-content",function(e){const t=document.getElementById("start-of-content");if(t){const e=t.nextElementSibling;e instanceof HTMLElement&&(e.setAttribute("tabindex","-1"),e.focus())}e.preventDefault()});const oa="ontouchstart"in document;for(const n of document.querySelectorAll(".HeaderMenu-details"))n.addEventListener("toggle",ia),oa||(n.addEventListener("mouseover",aa),n.addEventListener("mouseleave",aa));let ra=!1;function ia(e){if(!ra){ra=!0;for(const t of document.querySelectorAll(".HeaderMenu-details"))t!==e.currentTarget&&t.removeAttribute("open");setTimeout(()=>ra=!1)}}function aa(e){const{currentTarget:t}=e;t instanceof HTMLElement&&window.innerWidth>1012&&("mouseover"===e.type?e.target instanceof Node&&e.relatedTarget instanceof Node&&t.contains(e.target)&&!t.contains(e.relatedTarget)&&t.setAttribute("open",""):t.removeAttribute("open"))}function ca(e){if(!window._octo)return;const t=Math.floor((new Date).getTime()/1e3);e.timestamp=t;if(document.head&&document.head.querySelector('meta[name="octolytics-event-url"]')){const t=b(document.head,'meta[name="octolytics-event-url"]',HTMLMetaElement).content,n=JSON.stringify(e);navigator.sendBeacon&&navigator.sendBeacon(t,n)}}u("click",".js-video-play, .js-video-close",function(e){e.preventDefault();const t=e.currentTarget,n=t.classList.contains("js-video-play"),s=d(t,".js-video-container"),o=b(s,".js-video-iframe",HTMLIFrameElement),r=document.querySelector(".js-video-bg");n?o.src=o.getAttribute("data-src")||"":o.removeAttribute("src"),s.classList.toggle("is-expanded",n),null!=r&&r.classList.toggle("is-expanded",n),function(e,t=0){const n=e.getBoundingClientRect(),s=n.top-t,o=n.bottom-window.innerHeight+t;s<0?window.scrollBy(0,s):o>0&&window.scrollBy(0,o)}(o,20)}),u("click","[data-octo-click]",function(e){if(!window._octo)return;const t=e.currentTarget,n=t instanceof HTMLElement&&t.getAttribute("data-octo-click")||"",s={};s.event_type=n;const o={},r={},i={};let a=[];t instanceof HTMLElement&&t.hasAttribute("data-octo-dimensions")&&(a=(t.getAttribute("data-octo-dimensions")||"").split(","));const c=document.head?document.head.querySelectorAll('meta[name^="octolytics-"]'):[];for(const l of c)if(l instanceof HTMLMetaElement)if(l.name.startsWith("octolytics-dimension-")){o[l.name.replace(/^octolytics-dimension-/,"")]=l.content}else if(l.name.startsWith("octolytics-measure-")){r[l.name.replace(/^octolytics-measure-/,"")]=l.content}else if(l.name.startsWith("octolytics-context-")){i[l.name.replace(/^octolytics-context-/,"")]=l.content}else if(l.name.startsWith("octolytics-actor-")){o[l.name.replace(/^octolytics-/,"").replace(/-/g,"_")]=l.content}else if(l.name.startsWith("octolytics-")){s[l.name.replace(/^octolytics-/,"").replace(/-/g,"_")]=l.content}if(t instanceof HTMLElement&&t.hasAttribute("data-ga-click")){const e=(t.getAttribute("data-ga-click")||"").split(",").map(e=>e.trim());o.category=e[0],o.action=e[1]}for(const l of a){const e=l.split(":"),t=e.shift();t&&(o[t]=e.join(":"))}s.dimensions=o,s.measures=r,s.context=i,ca(s)});const la=document.querySelector(".js-hovercard-content"),ua={};let da,ma,fa=null,pa=0;const ga=12,ha=24,va=ha-7,ba=16,wa=100,ja=250;function ya(e){return"Popover-message--"+e}function Ea(){la instanceof HTMLElement&&(la.style.display="none",la.children[0].innerHTML="",fa=null,da=null)}function La(e){if(!(la instanceof HTMLElement))throw new Error("invariant violation, cardContentContainer is not HTMLElement");const{width:t,height:n}=la.getBoundingClientRect(),{left:s,top:o,height:r,width:i}=function(e){const t=e.getClientRects();let n=t[0];for(const s of t)if(s.leftpa){n=s;break}return n}(e),a=o>n;if(e.classList.contains("js-hovercard-left")){const e=o+r/2;return{containerTop:a?e-n+va+ba/2:e-va-ba/2,containerLeft:s-t-ga,contentClassSuffix:a?"right-bottom":"right-top"}}{const e=window.innerWidth-s>t,c=s+i/2;return{containerTop:a?o-n-ga:o+r+ga,containerLeft:e?c-ha:c-t+ha,contentClassSuffix:a?e?"bottom-left":"bottom-right":e?"top-left":"top-right"}}}function Ta(e,t){if(!(la instanceof HTMLElement))return;const n=la.children[0];n.innerHTML="";const s=document.createElement("div");for(const o of e.children)s.appendChild(o.cloneNode(!0));n.appendChild(s),function(e,t){if(!(la instanceof HTMLElement))return;la.style.visibility="hidden",la.style.display="block",t.classList.remove(ya("bottom-left"),ya("bottom-right"),ya("right-top"),ya("right-bottom"),ya("top-left"),ya("top-right"));const{containerTop:n,containerLeft:s,contentClassSuffix:o}=La(e);t.classList.add(ya(o)),la.style.top=`${n+window.pageYOffset}px`,la.style.left=`${s+window.pageXOffset}px`,function(e,t){const n=e.getAttribute("data-hovercard-z-index-override");t.style.zIndex=n||"100"}(e,la),la.style.visibility=""}(t,n),function(e){setTimeout(()=>{if(document.body&&document.body.contains(e)){const t=e.querySelector("[data-hovercard-tracking]");if(t){const e=t.getAttribute("data-hovercard-tracking");if(e){const t={event_type:"user-hovercard-load"};t.dimensions=JSON.parse(e),ca(t)}}const n=e.querySelector("[data-hydro-view]");n instanceof HTMLElement&&be(n)}},500)}(s),la.style.display="block"}function ka(e){const t=e.getAttribute("data-hovercard-url");if(t){const n=function(e){const t=e.closest("[data-hovercard-subject-tag]");if(t)return t.getAttribute("data-hovercard-subject-tag");const n=document.head&&document.head.querySelector('meta[name="hovercard-subject-tag"]');return n?n.getAttribute("content"):null}(e);if(n){const e=new URL(t,window.location.origin),s=new URLSearchParams(e.search.slice(1));return s.append("subject",n),s.append("current_path",window.location.pathname+window.location.search),e.search=s.toString(),e.toString()}return t}return""}async function Ma(e,t){const n=e.currentTarget;if(e instanceof MouseEvent&&(pa=e.clientX),!(n instanceof Element))return;if(da===n)return;if(n.closest(".js-hovercard-content"))return;if(!function(e){const t=e.getAttribute("data-hovercard-type");return"pull_request"===t||"issue"===t?!!e.closest("[data-issue-and-pr-hovercards-enabled]"):"team"===t?!!e.closest("[data-team-hovercards-enabled]"):"repository"===t?!!e.closest("[data-repository-hovercards-enabled]"):"commit"===t?!!e.closest("[data-commit-hovercards-enabled]"):"project"===t?!!e.closest("[data-project-hovercards-enabled]"):"contributors"!==t||!!e.closest("[data-contributors-hovercards-enabled]")}(n))return;Ea(),da=n,fa=document.activeElement;const s=ka(n);let o;try{const e=new Promise(e=>window.setTimeout(e,t,0));o=await async function(e){return ua[e]||(ua[e]=R(document,e)),ua[e]}(s),await e}catch(r){const e=r.response;if(e&&404===e.status){const e="Hovercard is unavailable";return n.setAttribute("aria-label",e),void n.classList.add("tooltipped","tooltipped-ne")}if(e&&410===e.status){const t=await e.clone().json();return n.setAttribute("aria-label",t.message),void n.classList.add("tooltipped","tooltipped-ne")}if(/X-HTML-Safe/.test(r.message))return;throw r}n===da&&(Ta(o,n),e instanceof KeyboardEvent&&la instanceof HTMLElement&&la.focus())}function Aa(e){Ma(e,ja)}function xa(e){if(da){if(e instanceof MouseEvent&&e.relatedTarget instanceof HTMLElement){const t=e.relatedTarget;if(t.closest(".js-hovercard-content")||t.closest("[data-hovercard-url]"))return}else e instanceof KeyboardEvent&&fa instanceof HTMLElement&&fa.focus();Ea()}}function Sa(e){const t=da;ma=window.setTimeout(()=>{da===t&&xa(e)},wa)}function Ha(e){if(e instanceof KeyboardEvent)switch(e.key){case"Escape":xa(e)}}function Ca(){ma&&clearTimeout(ma)}function qa(){return b(document,"input.js-edit-integration-setup-url",HTMLInputElement)}function Ia(e){e&&((function(){const e=d(qa(),".form-group");return b(e,".js-setup-url-hint")}()).textContent=e)}function _a(){const e=document.getElementById("js-update-integration-permissions");e&&e.removeAttribute("disabled")}function $a(){return function(){const e=v(document,'[id^=integration_permission_]:checked:not([data-permission="none"])',HTMLInputElement);return Array.from(e,e=>e.getAttribute("data-resource"))}().map(e=>(function(e){if(e)return v(document,`.js-integration-hook-event[data-resource~="${e}"]:checked`,HTMLInputElement)})(e)).reduce((e,t)=>e.concat(t,[]),[])}function Da(e=!1){const t=b(document,".js-integration-permissions-selector [id=integration_permission_metadata_read]",HTMLInputElement),n=d(t,".js-list-group-item");e&&$(t,!0),b(n,".js-mandatory-label").hidden=!e;for(const s of v(n,"input",HTMLInputElement))s!==t&&(s.disabled=e)}function Ba(){const e=b(document,".js-content-references input",HTMLInputElement),t=b(document,".js-content-references template",HTMLTemplateElement),n=b(document,".js-content-references-domain-list"),s=e.value;if(!s)return;const o=t.content.cloneNode(!0);b(o,"input",HTMLInputElement).value=s,b(o,".js-content-references-domain-url").textContent=s,e.value="",n.appendChild(o),d(n,".Box").hidden=!1,_a()}la&&(r("[data-hovercard-url]",{subscribe:e=>z(q(e,"mouseover",Aa),q(e,"mouseleave",Sa),q(e,"keyup",Ha))}),r("[data-hovercard-url]",{remove(e){da===e&&Ea()}}),r(".js-hovercard-content",{subscribe:e=>z(q(e,"mouseover",Ca),q(e,"mouseleave",xa),q(e,"keyup",Ha))}),r(".js-hovercard-include-fragment",{constructor:HTMLTemplateElement,add(e){da&&Ta(e.content,da)}}),u("menu:activated","details",Ea),window.addEventListener("statechange",Ea)),r(".js-scrollnav-listener",function(e){window.addEventListener("scroll",function(){!function(e){const t=b(e,".js-scrollnav").getBoundingClientRect().height;for(const n of e.querySelectorAll(".js-section")){const s=n.getBoundingClientRect(),o=t>=s.top,r=t<=s.top+s.height;if(o&&r){const t=e.querySelector(`.js-scrollnav-item[href="#${n.id}"]`);if(t&&!t.classList.contains("selected")){for(const t of e.querySelectorAll(".js-scrollnav-item"))t.classList.remove("selected");t.classList.add("selected")}}}}(e)},{passive:!0})}),u("change",".js-edit-integration-request-oauth-on-install",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/integrations/edit.js:24");const n=qa();if(t.checked){n.disabled=!0,n.placeholder=n.getAttribute("data-hint-unavailable-when-install")||"",Ia(n.getAttribute("data-hint-same-as-callback-url")||"")}else{n.disabled=!1,n.placeholder="",n.value=n.getAttribute("data-setup-url")||"",Ia(n.getAttribute("data-hint-setup-url")||"")}}),u("change",".js-integration-permissions-selector [id^=integration_permission_]",function({currentTarget:e}){const t=e.getAttribute("data-permission"),n=e.getAttribute("data-resource")||"",s=v(document,`.js-integration-hook-event[data-resource~="${n}"]`,HTMLInputElement),o=v(document,".js-integration-single-file-resource",HTMLInputElement),r=v(document,`.js-dropdown-container[data-resource~="${n}"]`);if(_a(),"none"!==t){const t=v(document,`.js-integration-hook-event-permission-error[data-resource~='${n}']`);for(const e of t)e.classList.add("d-none");const i=v(document,".js-integration-single-file-permission-error");for(const e of i)e.classList.add("d-none");for(const e of s)e.readOnly=!1;for(const e of o)e.readOnly=!1;d(e,".js-list-group-item").classList.remove("disabled");for(const e of r)e.classList.remove("d-none")}else{for(const e of s)i=e,$a().includes(i)||(e.readOnly=!0,e.checked=!1,d(e,".js-dropdown-container").classList.add("anim-fade-in","d-none"));if(d(e,".js-list-group-item").classList.add("disabled"),"single_file"===n)for(const e of o)e.readOnly=!0,e.value="";else"content_references"===n&&(b(document,`.js-dropdown-container[data-resource~='${n}']`).classList.add("anim-fade-in","d-none"),"none"===t&&(b(document,".js-content-references-domain-list").innerHTML=""))}var i}),u("change",".js-integration-permissions-selector [id^=integration_permission_][data-resource-parent^=repository]",function({currentTarget:e}){const t=e.getAttribute("data-permission");"metadata"!==(e.getAttribute("data-resource")||"")&&("none"!==t?Da(!0):function(){let e=!0;const t=document.querySelectorAll(".js-integration-permissions-selector [id^=integration_permission_][data-resource-parent=repository]:checked");for(const n of t){const t=n.getAttribute("data-permission")||"none";if("metadata"!==(n.getAttribute("data-resource")||"")&&"none"!==t){e=!1;break}}return e}()&&Da())}),u("change",".js-integration-permissions-selector [name^=integration]",_a),u("click",".js-integration-permissions-selector .js-integration-hook-event",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/integrations.js:234");if(t.readOnly){const n=d(t,".js-send-events");b(n,".js-integration-hook-event-permission-error").classList.remove("d-none"),e.preventDefault()}}),u("click",".js-integration-permissions-selector .js-integration-single-file-resource",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/integrations.js:247");if(t.readOnly){const n=d(t,".js-single-file");b(n,".js-integration-single-file-permission-error").classList.remove("d-none"),e.preventDefault()}}),m("keydown",".js-content-references input",function(e){"Enter"===e.key&&(e.preventDefault(),Ba())}),u("click",".js-content-references .js-domain-add",Ba),u("click",".js-content-references .js-close",function(e){const t=d(e.target,"li"),n=t.parentElement;n&&(n.removeChild(t),0===v(n,"li").length&&(d(n,".Box").hidden=!0),_a())}),j(".js-issue-boost-form",async function(e,t){const n=b(e,".js-issue-boost-error");let s;n.hidden=!0;try{s=await t.html()}catch(o){n.hidden=!1;const t=b(e,".js-issue-boost-value"),s=p(t,"data-original-boost-value");return void(t.textContent=s)}d(e,".js-issue-boost-container").replaceWith(s.html)});let Ra=null;function Na(e,t,n){return e>n?n:e{switch(t){case 404:return e.getAttribute("data-permission-text");default:return e.getAttribute("data-error-text")}})()||"")}}function Fa(e,t){for(const s of e)(n=s).getAttribute("data-hovercard-url")&&n.closest("[data-issue-and-pr-hovercards-enabled]")||s.classList.add("tooltipped","tooltipped-ne"),s.setAttribute("aria-label",t);var n}u("click",".js-issue-boost-button",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/issue-boosts.js:41");e.preventDefault();const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/issues/issue-boosts.js:44");const s=b(n,".js-issue-boost-value"),o=parseInt(p(s,"data-original-boost-value"),10),r=parseInt(t.value,10),i=parseInt(p(n,"data-min-modifier"),10),a=parseInt(p(n,"data-max-modifier"),10),c=parseInt(p(n,"data-min-value"),10),l=parseInt(p(n,"data-max-value"),10),u=b(n,".js-issue-boost-modifier",HTMLInputElement),d=Na(parseInt(u.value,10)+r,i,a),m=Na(o+d,c,l);s.textContent=m.toString(),Ra&&clearTimeout(Ra),u.value=d.toString(),t.disabled=m===l&&r>0||m===c&&r<0,Ra=setTimeout(()=>{Ra=null,E(n)},400)}),u("click",".js-new-issue-boost-button",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/issue-boosts.js:71");const n=d(t,".js-new-issue-boost-container"),s=parseInt(p(n,"data-min"),10),o=parseInt(p(n,"data-max"),10),r=parseInt(t.value,10),i=b(n,".js-issue-boost-value",HTMLInputElement),a=Na(parseInt(i.value,10)+r,s,o),c=a===o,l=a===s;if(b(n,".js-issue-boost-value-display").textContent=a.toString(),i.value=a.toString(),t.disabled=c&&r>0||l&&r<0,r<0){b(n,".js-new-issue-increase-boost-button",HTMLButtonElement).disabled=c}else{b(n,".js-new-issue-decrease-boost-button",HTMLButtonElement).disabled=l}}),r(".js-issue-link",{subscribe:e=>q(e,"mouseenter",Pa)});var Oa=n(function(e,t){var n;n=function(){var e=null,t={};r("monochrome",null,[[0,0],[100,0]]),r("red",[-26,18],[[20,100],[30,92],[40,89],[50,85],[60,78],[70,70],[80,60],[90,55],[100,50]]),r("orange",[19,46],[[20,100],[30,93],[40,88],[50,86],[60,85],[70,70],[100,70]]),r("yellow",[47,62],[[25,100],[40,94],[50,89],[60,86],[70,84],[80,82],[90,80],[100,75]]),r("green",[63,178],[[30,100],[40,90],[50,85],[60,81],[70,74],[80,64],[90,50],[100,40]]),r("blue",[179,257],[[20,100],[30,86],[40,80],[50,74],[60,60],[70,52],[80,44],[90,39],[100,35]]),r("purple",[258,282],[[20,100],[30,87],[40,79],[50,70],[60,65],[70,59],[80,52],[90,45],[100,42]]),r("pink",[283,334],[[20,100],[30,90],[40,86],[60,84],[80,80],[90,75],[100,73]]);var n=function(r){if(void 0!==(r=r||{}).seed&&null!==r.seed&&r.seed===parseInt(r.seed,10))e=r.seed;else if("string"==typeof r.seed)e=function(e){for(var t=0,n=0;n!==e.length&&!(t>=Number.MAX_SAFE_INTEGER);n++)t+=e.charCodeAt(n);return t}(r.seed);else{if(void 0!==r.seed&&null!==r.seed)throw new TypeError("The seed value must be an integer or string");e=null}var c,l,u;if(null!==r.count&&void 0!==r.count){var d=r.count,m=[];for(r.count=null;d>m.length;)e&&r.seed&&(r.seed+=1),m.push(n(r));return r.count=d,m}return c=function(e){var n=o(function(e){if("number"==typeof parseInt(e)){var n=parseInt(e);if(n<360&&n>0)return[n,n]}if("string"==typeof e)if(t[e]){var s=t[e];if(s.hueRange)return s.hueRange}else if(e.match(/^#?([0-9A-F]{3}|[0-9A-F]{6})$/i)){var o=function(e){e=3===(e=e.replace(/^#/,"")).length?e.replace(/(.)/g,"$1$1"):e;var t=parseInt(e.substr(0,2),16)/255,n=parseInt(e.substr(2,2),16)/255,s=parseInt(e.substr(4,2),16)/255,o=Math.max(t,n,s),r=o-Math.min(t,n,s),i=o?r/o:0;switch(o){case t:return[(n-s)/r%6*60||0,i,o];case n:return[60*((s-t)/r+2)||0,i,o];case s:return[60*((t-n)/r+4)||0,i,o]}}(e)[0];return[o,o]}return[0,360]}(e.hue));n<0&&(n=360+n);return n}(r),l=function(e,t){if("monochrome"===t.hue)return 0;if("random"===t.luminosity)return o([0,100]);var n=function(e){return s(e).saturationRange}(e),r=n[0],i=n[1];switch(t.luminosity){case"bright":r=55;break;case"dark":r=i-10;break;case"light":i=55}return o([r,i])}(c,r),u=function(e,t,n){var r=function(e,t){for(var n=s(e).lowerBounds,o=0;o=r&&t<=a){var l=(c-i)/(a-r),u=i-l*r;return l*t+u}}return 0}(e,t),i=100;switch(n.luminosity){case"dark":i=r+20;break;case"light":r=(i+r)/2;break;case"random":r=0,i=100}return o([r,i])}(c,l,r),function(e,t){switch(t.format){case"hsvArray":return e;case"hslArray":return a(e);case"hsl":var n=a(e);return"hsl("+n[0]+", "+n[1]+"%, "+n[2]+"%)";case"hsla":var s=a(e),o=t.alpha||Math.random();return"hsla("+s[0]+", "+s[1]+"%, "+s[2]+"%, "+o+")";case"rgbArray":return i(e);case"rgb":var r=i(e);return"rgb("+r.join(", ")+")";case"rgba":var c=i(e),o=t.alpha||Math.random();return"rgba("+c.join(", ")+", "+o+")";default:return function(e){var t=i(e);function n(e){var t=e.toString(16);return 1==t.length?"0"+t:t}return"#"+n(t[0])+n(t[1])+n(t[2])}(e)}}([c,l,u],r)};function s(e){for(var n in e>=334&&e<=360&&(e-=360),t){var s=t[n];if(s.hueRange&&e>=s.hueRange[0]&&e<=s.hueRange[1])return t[n]}return"Color not found"}function o(t){if(null===e)return Math.floor(t[0]+Math.random()*(t[1]+1-t[0]));var n=t[1]||1,s=t[0]||0,o=(e=(9301*e+49297)%233280)/233280;return Math.floor(s+o*(n-s))}function r(e,n,s){var o=s[0][0],r=s[s.length-1][0],i=s[s.length-1][1],a=s[0][1];t[e]={hueRange:n,lowerBounds:s,saturationRange:[o,r],brightnessRange:[i,a]}}function i(e){var t=e[0];0===t&&(t=1),360===t&&(t=359),t/=360;var n=e[1]/100,s=e[2]/100,o=Math.floor(6*t),r=6*t-o,i=s*(1-n),a=s*(1-r*n),c=s*(1-(1-r)*n),l=256,u=256,d=256;switch(o){case 0:l=s,u=c,d=i;break;case 1:l=a,u=s,d=i;break;case 2:l=i,u=s,d=c;break;case 3:l=i,u=a,d=s;break;case 4:l=c,u=i,d=s;break;case 5:l=s,u=i,d=a}var m=[Math.floor(255*l),Math.floor(255*u),Math.floor(255*d)];return m}function a(e){var t=e[0],n=e[1]/100,s=e[2]/100,o=(2-n)*s;return[t,Math.round(n*s/(o<1?o:2-o)*1e4)/100,o/2*100]}return n}(),e&&e.exports&&(t=e.exports=n),t.randomColor=n});Oa.randomColor;function Wa(e,t){const n=function(e){const t="string"==typeof e?parseInt(e.replace("#",""),16):e;return+((299*(t>>16&255)+587*(t>>8&255)+114*(255&t))/1e3/255).toFixed(2)}(t);null!=n&&(n<.6?(e.classList.remove("text-gray-dark"),e.classList.add("text-white")):(e.classList.remove("text-white"),e.classList.add("text-gray-dark")))}function za(e,t){let n=t;"#"!==n.charAt(0)&&(n=`#${n}`),e.style.backgroundColor=n;const s=e.querySelector(".js-new-label-color-icon");s&&Wa(s,t)}function Ua(e,t){e.blur();const n=d(e,"form");b(n,".js-new-label-color-input",HTMLInputElement).value=t,za(b(n,".js-new-label-color",HTMLButtonElement),t)}function Va(e,t,n){const s=t.querySelector(e);s&&(n?function(e,t){d(e,".js-label-error-container").classList.add("errored"),e.textContent=t,e.hidden=!1}(s,n[0]):function(e){d(e,".js-label-error-container").classList.remove("errored"),e.hidden=!0}(s))}function Ka(e,t){Va(".js-label-name-error",e,t.name),Va(".js-label-description-error",e,t.description),Va(".js-label-color-error",e,t.color)}function Ya(e){Va(".js-label-name-error",e,null),Va(".js-label-description-error",e,null),Va(".js-label-color-error",e,null)}async function Xa(e){const t=e.closest(".js-label-preview-container");if(!t)return;const n=d(e,".js-label-form",HTMLFormElement),s=n.querySelector(".js-new-label-error"),o=n.getAttribute("data-label-id"),r=b(t,".js-label-preview",HTMLElement),i=function(e,t){let n=b(e,".js-new-label-name-input",HTMLInputElement).value.trim();return n.length<1&&(n=p(t,"data-default-name")),n}(n,r),a=function(e){const t=b(e,".js-new-label-color-input",HTMLInputElement);return t.checkValidity()?t.value.trim().replace(/^#/,""):"ededed"}(n),c=function(e){let t=null;const n=e.querySelector(".js-new-label-description-input");return n instanceof HTMLInputElement&&n.value.trim().length>0&&(t=n.value.trim()),t}(n),l=function(e,t,n,s,o){const r=new URL(`${e}${encodeURIComponent(t)}`,window.location.origin),i=new URLSearchParams(r.search.slice(1));return i.append("color",n),s&&i.append("description",s),o&&i.append("id",o),r.search=i.toString(),r.toString()}(p(r,"data-url-template"),i,a,c,o);if(t.hasAttribute("data-last-preview-url")){if(l===p(t,"data-last-preview-url"))return}let u;try{u=await R(document,l)}catch(m){const e=await m.response.json();return Ka(n,e),void(s&&(s.textContent=e.message,s.hidden=!1))}s&&(s.textContent="",s.hidden=!0),Ya(n),r.innerHTML="",r.appendChild(u),t.setAttribute("data-last-preview-url",l)}function Ja(e,t){d(e,".js-details-container").classList.toggle("is-empty",t)}function Ga(e){const t=b(document,".js-labels-count"),n=je(t.textContent)+e;t.textContent=ye(n);const s=b(document,".js-labels-label");return Ee(n,s),n}function Qa(e){const t=e.querySelector(".js-new-label-name-input");if(!t)return;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:362");const n=b(e,".js-new-label-color-input",HTMLInputElement);let s=Oa();if(n.value.length>0)for(;n.value===s;)s=Oa();n.value=s;const o=b(e,".js-new-label-color",HTMLButtonElement);za(o,s);const r=b(document,".js-new-label-name").textContent;$(t,r),$r(t),Xa(o)}g(".js-label-filter-field",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:230");const n=d(t,"details-menu").querySelector(".js-new-label-name");if(!n)return;const s=t.value.trim();n.textContent=s}),u("filterable:change",".js-filterable-issue-labels",function(e){const t=d(e.currentTarget,"details-menu"),n=t.querySelector(".js-add-label-button");if(!n)return;if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/issues/labels.js:247");const s=e.detail.inputField.value.trim().toLowerCase(),o=v(t,'input[name="issue[labels][]"]').some(e=>{return(e.getAttribute("data-label-name")||"").toLowerCase()===s});n.hidden=0===s.length||o}),h(".js-new-label-color-input",function(e){const t=d(e,"form"),n=b(t,".js-new-label-swatches");n.hidden=!1,e.addEventListener("blur",function(){n.hidden=!0},{once:!0})}),g(".js-new-label-color-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:272");let n=t.value.trim();if(!(n.length<1))if(0!==n.indexOf("#")&&(n=`#${n}`,t.value=n),t.checkValidity()){t.classList.remove("text-red");const e=d(t,"form");za(b(e,".js-new-label-color",HTMLButtonElement),n)}else t.classList.add("text-red")}),m("keyup",".js-new-label-color-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:296");let n=t.value.trim();if(0!==n.indexOf("#")&&(n=`#${n}`,t.value=n),t.checkValidity()){const e=d(t,"form");za(b(e,".js-new-label-color",HTMLButtonElement),n)}L(t,"change",!1),Ya(d(t,"form",HTMLFormElement))}),m("keyup",".js-new-label-description-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:316");const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/issues/labels.js:318");Ya(n)}),m("keyup",".js-new-label-color-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:323");const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/issues/labels.js:325");Ya(n)}),u("click",".js-new-label-color",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:332");Ua(t,Oa()),Xa(t)}),u("mousedown",".js-new-label-color-swatch",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:339");Ua(t,p(t,"data-color")),Xa(t),d(t,".js-new-label-swatches").hidden=!0}),u("toggle",".js-new-label-modal",function(e){e.target.hasAttribute("open")&&Qa(e.target)},{capture:!0}),j(".js-new-label-modal-form",async function(e,t){const n=b(e,".js-new-label-error");let s;try{s=await t.html()}catch(a){const e=a.response.json;n.textContent=e.message,n.hidden=!1}if(!s)return;n.hidden=!0,b(document,".js-new-label-modal").removeAttribute("open");const o=b(document,".js-filterable-issue-labels"),r=s.html.querySelector("input");o.prepend(s.html),r&&r.dispatchEvent(new Event("change",{bubbles:!0}));const i=b(document,".js-label-filter-field",HTMLInputElement);i.value=i.defaultValue,i.focus()}),u("click",".js-edit-label-cancel",function(e){const t=d(e.target,"form",HTMLFormElement);Ya(t),t.reset();const n=b(t,".js-new-label-color-input",HTMLInputElement),s=n.value;b(t,".js-new-label-color",HTMLButtonElement).style.backgroundColor=s,Dr(t),Xa(n);const o=e.currentTarget.closest(".js-labels-list-item");if(o){b(o,".js-update-label",HTMLElement).classList.add("d-none");const e=o.querySelector(".js-label-preview");if(e){e.classList.add("d-none"),b(o,".js-label-link",HTMLElement).classList.remove("d-none")}const t=o.querySelectorAll(".js-hide-on-label-edit.d-none");for(const n of t)n.classList.remove("d-none")}}),j(".js-update-label",async function(e,t){let n;try{n=await t.html()}catch(s){return void Ka(e,s.response.json)}Ya(e),d(e,".js-labels-list-item").replaceWith(n.html)}),j(".js-create-label",async function(e,t){let n;try{n=await t.html()}catch(o){return void Ka(e,o.response.json)}e.reset(),Ya(e),b(document,".js-label-list").prepend(n.html),Ga(1),Ja(e,!1),Ua(b(e,".js-new-label-color",HTMLButtonElement),Oa()),Xa(b(e,".js-new-label-name-input",HTMLInputElement)),Dr(e);const s=e.closest(".js-details-container");s instanceof HTMLElement&&we(s)}),u("click",".js-details-target-new-label",function(){const e=b(document,".js-create-label");b(e,".js-new-label-name-input",HTMLInputElement).focus()}),u("click",".js-edit-label",function(e){const t=d(e.currentTarget,".js-labels-list-item"),n=b(t,".js-update-label",HTMLElement);n.classList.remove("d-none"),b(n,".js-new-label-name-input",HTMLInputElement).focus();const s=t.querySelector(".js-label-preview");if(s){s.classList.remove("d-none"),b(t,".js-label-link",HTMLElement).classList.add("d-none")}const o=v(t,".js-hide-on-label-edit",HTMLElement);for(const r of o)r.classList.add("d-none")}),j(".js-delete-label",async function(e,t){const n=d(e,".js-labels-list-item");b(n,".js-label-delete-spinner").hidden=!1,await t.text(),Ja(e,0===Ga(-1)),n.remove()});const Za=y(function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:207");Xa(t)},500);function ec(){const e=b(document,".js-reveal-custom-thread-settings",HTMLInputElement).checked,t=!document.querySelector(".js-custom-thread-notification-option:checked"),n=b(document,".js-custom-thread-settings"),s=b(document,"[data-custom-option-required-text]",HTMLInputElement),o=e&&t?p(s,"data-custom-option-required-text"):"";s.setCustomValidity(o),n.hidden=!e}function tc(e){e instanceof HTMLFormElement?E(e):sc(e)}function nc({currentTarget:e}){if(!(e instanceof Element))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:22");const t=e.closest(".js-issue-sidebar-form")||e.querySelector(".js-issue-sidebar-form");if(!t)throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:24");tc(t)}async function sc(e,t="post",n){const s=function(e){const t=d(e,"form",HTMLFormElement),n=ke(t),s=new FormData;for(const[o,r]of n)e.contains(oc(t,o,r))&&s.append(o,r);return s}(e);n&&s.append(n.name,n.value);let o=e.getAttribute("data-authenticity-token");if(null==o){const t=d(e,"form",HTMLFormElement).elements.namedItem("authenticity_token");t instanceof HTMLInputElement&&(o=t.value)}if(!o)throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:120");s.append("authenticity_token",o);const r=p(e,"data-url"),i=await S(r,{method:t,body:s});!function(e,t){e.replaceWith(Me(document,t))}(d(e,".js-discussion-sidebar-item"),i)}function oc(e,t,n){for(const s of e.elements)if((s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement||s instanceof HTMLButtonElement)&&s.name===t&&s.value===n)return s}let rc;function ic(e){if(ac(),!e)return;const t=document.createElement("div");t.innerHTML=e,document.body&&document.body.append(t);const n=t.querySelector("button");n&&n.addEventListener("click",ac,{once:!0}),document.addEventListener("keydown",e=>{"Escape"===e.key&&ac()&&e.stopImmediatePropagation()}),rc=t}function ac(){return!!rc&&(rc.remove(),rc=null,!0)}u("suggester:complete",".js-new-label-name-input",Za),g(".js-new-label-name-input",Za),g(".js-new-label-description-input",Za),g(".js-new-label-color-input",Za),m("keypress",".js-new-label-name-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/labels.js:552");const n=parseInt(t.getAttribute("data-maxlength"));ne(t.value)>=n&&e.preventDefault()}),u("click",".js-issues-label-select-menu-item",function(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/issues/labels.js:561");e.altKey&&(e.preventDefault(),e.stopPropagation(),window.location=p(e.currentTarget,"data-excluded-url"))}),m("keydown",".js-issues-label-select-menu-item",function(e){if(!(e instanceof KeyboardEvent))throw new Error("invariant: app/assets/modules/github/issues/labels.js:568");if("Enter"!==e.key)return;if(!e.altKey)return;const t=e.currentTarget;e.preventDefault(),e.stopPropagation(),t instanceof HTMLAnchorElement&&(window.location=p(t,"data-excluded-url"))}),u("click",".js-open-label-creation-modal",async function(e){e.stopImmediatePropagation(),Qa(await F({content:b(document,".js-label-creation-template",HTMLTemplateElement).content.cloneNode(!0),detailsClass:"js-new-label-modal"}))},{capture:!0}),ae(function({newURL:e}){const t=e.match(/\/issues#issue\/(\d+)$/);if(t){const n=t[1];window.location=e.replace(/\/?#issue\/.+/,`/${n}`)}}),ae(function({newURL:e}){const t=e.match(/\/issues#issue\/(\d+)\/comment\/(\d+)$/);if(t){const n=t[1],s=t[2];window.location=e.replace(/\/?#issue\/.+/,`/${n}#issuecomment-${s}`)}}),r(".js-issue-row .js-issues-list-check:checked",{add(e){d(e,".js-issue-row").classList.add("selected")},remove(e){d(e,".js-issue-row").classList.remove("selected")}}),u("navigation:keydown",".js-issue-row",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/issues/list.js:25");"x"===e.detail.hotkey&&(!function(e){const t=e.querySelector(".js-issues-list-check");t instanceof HTMLInputElement&&$(t,!t.checked)}(e.currentTarget),e.preventDefault(),e.stopPropagation())}),h("#js-issues-search",function(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/list.js:37");e.value=e.value}),u("details-menu-select",".js-saved-reply-menu",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/issues/replies.js:9");const t=b(e.detail.relatedTarget,".js-saved-reply-body").textContent.trim(),n=d(e.target,".js-previewable-comment-form"),s=b(n,"textarea.js-comment-field",HTMLTextAreaElement);Le(s,t),setTimeout(()=>s.focus(),0)},{capture:!0}),m("keydown",".js-saved-reply-shortcut-comment-field",function(e){if("Control+."===X(e)){if(!(e.target instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/issues/replies.js:21");const t=d(e.target,".js-previewable-comment-form");b(t,".js-saved-reply-container").setAttribute("open",""),e.preventDefault(),ve({category:"Markdown Toolbar",action:"shortcut",label:"saved reply"})}}),m("keydown",".js-saved-reply-filter-input",function(e){if(/^Control\+[1-9]$/.test(X(e))){if(!(e.target instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/issues/replies.js:35");const t=d(e.target,".js-saved-reply-container").querySelectorAll('[role="menuitem"]'),n=Number(e.key),s=t[n-1];s&&(s.click(),e.preventDefault(),ve({category:"Saved Replies",action:"shortcut",label:`saved reply number ${n}`}))}}),u("change",".js-thread-notification-setting",ec),u("change",".js-custom-thread-notification-option",ec),u("reset",".js-custom-thread-settings-form",ec),u("details-menu-selected",".js-discussion-sidebar-menu",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:30");const t=e.detail.relatedTarget,n=e.currentTarget,s=d(t,".js-issue-sidebar-form"),o=n.hasAttribute("data-multiple");if(t.hasAttribute("data-clear-assignees")){const e=v(n,'input[name="issue[user_assignee_ids][]"]:checked',HTMLInputElement);for(const t of e)t.disabled=!1,t.checked=!1;tc(s)}else o?d(n,"details").addEventListener("toggle",nc,{once:!0}):tc(s)},{capture:!0}),j(".js-issue-sidebar-form",async function(e,t){const n=await t.html();if(!(e.parentNode instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:63");d(e,".js-discussion-sidebar-item").replaceWith(n.html)}),u("click","div.js-issue-sidebar-form .js-suggested-reviewer",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:69");sc(d(t,".js-issue-sidebar-form"),"post",{name:t.name,value:t.value}),e.preventDefault()}),u("click","div.js-issue-sidebar-form .js-issue-assign-self",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:80");sc(d(t,".js-issue-sidebar-form"),"post",{name:t.name,value:t.value}),e.preventDefault()}),u("click",".js-issue-unassign-self",function(e){sc(d(e.currentTarget,".js-issue-sidebar-form"),"delete"),e.preventDefault()}),j(".js-pages-preview-toggle-form",async function(e,t){const n=await t.json();b(e,"button.btn").textContent=n.json.new_button_value}),u("change",".js-project-menu-checkbox",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/issues/sidebar.js:135");const n=d(t,".js-project-menu-container");for(const s of v(n,".js-project-menu-checkbox",HTMLInputElement))if(s!==t&&s.name===t.name){s.checked=t.checked;const e=s.closest(".js-navigation-item");e&&e.classList.toggle("selected",t.checked);const n=s.closest("label[aria-checked]");n&&n.setAttribute("aria-checked",t.checked.toString())}}),u("click","div.js-project-column-menu-container .js-project-column-menu-item",async function(e){const t=e.currentTarget;!function(e){const t=d(e,".js-project-column-menu-dropdown"),n=b(t,".js-project-column-menu-summary"),s=p(e,"data-column-name");n.textContent=s}(t);const n=p(t,"data-url"),s=p(t,"data-authenticity-token"),o=p(t,"data-card-id"),r=new FormData;r.append("authenticity_token",s),r.append("card_id",o),r.append("use_automation_prioritization","true"),e.preventDefault(),await c(n,{method:"put",body:r});const i=document.activeElement,a=d(t,".js-project-column-menu-dropdown");if(i&&a.contains(i))try{i.blur()}catch(Lh){}}),u("click",".js-prompt-dismiss",function(e){d(e.currentTarget,".js-prompt").remove()}),u("click",".js-dismiss-issue-xrefs-new-feature-notice",async function(e){const t=p(e.currentTarget,"data-url"),n=new FormData;n.append("notice","issue_xrefs_new_feature"),await S(Te(t,{method:"post",body:n}));const s=document.querySelectorAll(".js-issue-xrefs-new-feature-notice");for(const r of s)r.remove();const o=document.querySelector(".js-enable-hovercard");o&&o.setAttribute("data-issue-and-pr-hovercards-enabled","")}),j(".js-new-issue-form",async function(e,t){ic(b(document,".js-logbook-toast").innerHTML);const n=await t.json();n.json.toast?ic(n.json.toast):n.json.url&&(e.reset(),window.location=n.json.url)});const cc=new WeakMap,lc=new WeakMap;u("change",".js-issues-list-check",function(){const e=!!document.querySelector(".js-issues-list-check:checked");b(document,"#js-issues-toolbar").classList.toggle("triage-mode",e);for(const t of document.querySelectorAll(".js-issue-triage-menu"))cc.set(t,!0)}),u("toggle",".js-issue-triage-menu",function(e){const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/issues/triage.js:31");t.hasAttribute("open")?function(e){if(!cc.has(e))return;const t=b(document,".js-triage-loader-template",HTMLTemplateElement),n=b(e,".js-triage-deferred-content");n.innerHTML="",n.append(t.content.cloneNode(!0));const s=function(e,t){const n=new URL(e,window.location.origin),s=new URLSearchParams(n.search);for(const[o,r]of t)s.append(o,r);return n.search=s.toString(),n.toString()}(p(e,"data-url"),v(document,".js-issues-list-check:checked",HTMLInputElement).map(e=>[e.name,e.value]));b(n,"include-fragment").setAttribute("src",s),cc.delete(e)}(t):async function(e){const t=b(e,"form",HTMLFormElement);if(!lc.has(t))return;!function(e,t){const n=d(e,".js-issues-toolbar-triage");b(n,".js-issue-triage-spinner").hidden=!t,b(n,".js-issue-triage-error").hidden=!0}(e,!0);try{const s=await W(t.action,{method:t.method,body:new FormData(t)});lc.delete(t),await te(s.job.url,{headers:{accept:"application/json"}}),K({url:window.location.href,container:b(document,"#js-repo-pjax-container"),replace:!0})}catch(n){!function(e,t){const n=d(e,".js-issues-toolbar-triage");b(n,".js-issue-triage-spinner").hidden=!0,b(n,".js-issue-triage-error").hidden=!t}(e,!0)}}(t)},{capture:!0}),u("details-menu-selected",".js-issue-triage-menu details-menu",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/issues/triage.js:94");const t=e.detail.relatedTarget,n=d(t,"form",HTMLFormElement),s=function(e){const t="true"===e.getAttribute("aria-checked"),n=e.getAttribute("name")||e.getAttribute("data-name"),s=e.getAttribute("value")||e.getAttribute("data-value");if(!n||!s)throw new Error("invariant: app/assets/modules/github/issues/triage.js:115");const o=document.createElement("input");switch(o.type="hidden",o.name=n,e.getAttribute("role")){case"menuitem":case"menuitemradio":o.value=s;break;case"menuitemcheckbox":o.value=t?s:"0"}return o}(t),o=b(n,".js-issues-triage-fields"),r=o.querySelector(`[name='${s.name}']`);r?r.replaceWith(s):o.append(s);lc.set(n,!0)},{capture:!0}),j(".js-undo-issue-event-form",async(e,t)=>{await t.text();const n=p(e,"action");e.remove();const s=document.querySelectorAll(`.js-undo-issue-event-form[action="${n}"]`);for(let o=0;o{r.appendChild(function(e,t,n,s){const o=e.cloneNode(!0);if(!(o instanceof HTMLElement))throw new Error("invariant: el instanceof HTMLElement");o.id=`jump-to-suggestion-${t.type.toLowerCase()}-${t.databaseId}`;const r=b(o,".js-jump-to-suggestion-path",HTMLAnchorElement);r.href=t.path,r.setAttribute("data-target-type",t.type),r.setAttribute("data-target-id",`${t.databaseId}`),r.setAttribute("data-client-rank",`${s}`),r.setAttribute("data-server-rank",`${t.rank}`);const i=b(o,".js-jump-to-suggestion-name");switch(i.textContent=t.name,i.setAttribute("aria-label",t.name),so(i,n.replace(/\s/g,"")),t.type){case"Team":{const e=b(o,".js-jump-to-suggestion-avatar",HTMLImageElement);e.alt=t.name,e.src=t.avatarUrl?t.avatarUrl:"",e.classList.remove("d-none");break}case"Project":qc(o,".js-jump-to-octicon-project");break;case"Repository":qc(o,".js-jump-to-octicon-repo")}return b(o,".js-jump-to-badge-jump").classList.remove("d-none"),o}(s,e,t,n))}),Cc(r))}function Cc(e){const t=b(document,".js-jump-to-suggestions-results-container");for(const n of v(t,".js-jump-to-suggestion")){if(!n.parentNode)throw new Error("invariant: oldResult.parentNode");n.parentNode.removeChild(n)}t.appendChild(e)}function qc(e,t){const n=b(e,".js-jump-to-octicon"),s=b(n,t,SVGElement);n.classList.remove("d-none"),s.classList.remove("d-none")}function Ic(e,t,n,s){const o=e.cloneNode(!0);if(!(o instanceof HTMLElement))throw new Error("invariant: el instanceof HTMLElement");o.id=`jump-to-suggestion-search-${s?"scoped":"global"}`;const r=b(o,".js-jump-to-suggestion-path",HTMLAnchorElement);r.href=n,r.setAttribute("data-target-type","Search");const i=b(o,".js-jump-to-suggestion-name");i.textContent=t,i.setAttribute("aria-label",t),qc(o,".js-jump-to-octicon-search");const a=b(o,".js-jump-to-badge-search");return a.classList.remove("d-none"),s?b(a,".js-jump-to-badge-search-text-default").classList.remove("d-none"):b(a,".js-jump-to-badge-search-text-global").classList.remove("d-none"),o}function _c(e){const t=b(document,".js-jump-to-suggestions-container"),n=b(t,e).firstElementChild;if(!(n instanceof HTMLElement))throw new Error("invariant: template");return n}const $c=new WeakMap,Dc=new WeakMap;function Bc(e,t,n){const s=t.toLowerCase(),o=n.text,r=n.score;let i=e;if(s){i=[];for(const t of e){null==$c.get(t)&&$c.set(t,o(t));const e=r?r($c.get(t)||"",s,t):to($c.get(t)||"",s);Dc.set(t,e),e>0&&i.push(t)}i.sort(Rc)}return null!=n.limit?i.slice(0,n.limit):i}function Rc(e,t){const n=parseFloat(Dc.get(e)),s=parseFloat(Dc.get(t)),o=$c.get(e)||"",r=$c.get(t)||"";return n>s?-1:nr?1:0}const Nc={frequency:.6,recency:.4};function Pc(e,t,n){const s=t.get(e)||0,o=n.get(e)||0;return s*Nc.frequency+o*Nc.recency}function Fc(e){const t=[...Object.keys(e)].reduce((t,n)=>t+e[n].visitCount,0);return new Map(Object.keys(e).map(n=>[n,e[n].visitCount/t]))}function Oc(e){const t=[...Object.keys(e)].sort((t,n)=>e[t].lastVisitedAt-e[n].lastVisitedAt),n=t.length;return new Map(t.map((e,t)=>[e,(t+1)/n]))}function Wc(e){return!!(e?e.closest(".js-jump-to-field"):document.querySelector(".js-jump-to-field"))}function zc(e,t){const n=e.value.trim(),s=function(e,t=null){const n=t||gc(),s=Fc(n),o=Oc(n);return e.map(e=>({suggestion:e,score:Pc(e.pageKey,s,o)})).sort((e,t)=>t.score-e.score).map(e=>e.suggestion)}(function(e,t,n){const s=e.replace(/\s/g,""),o=t.filter(e=>e.path!==n);return s?Bc(o,s,{text:e=>e.name}):o}(n,t,window.location.pathname)),o=s.slice(0,7);Mc({measures:{result_count:s.length,display_count:o.length,filter_count:t.length-s.length},context:{query:n,display_set:o.map(e=>[e.type,e.databaseId])}}),Hc(e,n,o),kc("menu-activation")||kc("query")}const Uc=/^\/orgs\/([a-z0-9-]+)\/teams\/([\w-]+)/,Vc=[/^\/([^\/]+)\/([^\/]+)\/?$/,/^\/([^\/]+)\/([^\/]+)\/blob/,/^\/([^\/]+)\/([^\/]+)\/tree/,/^\/([^\/]+)\/([^\/]+)\/issues/,/^\/([^\/]+)\/([^\/]+)\/pulls?/,/^\/([^\/]+)\/([^\/]+)\/pulse/],Kc=[["organization",/^\/orgs\/([a-z0-9-]+)\/projects\/([0-9-]+)/],["repository",/^\/([^\/]+)\/([^\/]+)\/projects\/([0-9-]+)/]],Yc=100;function Xc(e){return Object.keys(e).length<=Yc?e:function(e){const t=Fc(e),n=Oc(e);return Object.keys(e).map(e=>({pageKey:e,score:Pc(e,t,n)})).sort((e,t)=>t.score-e.score).map(e=>e.pageKey)}(e).slice(0,Yc/2).reduce((t,n)=>(t[n]=e[n],t),{})}function Jc(e,t){const n=gc(t),s=Math.floor(Date.now()/1e3),o=n[e]||{lastVisitedAt:s,visitCount:0};o.visitCount+=1,o.lastVisitedAt=s,n[e]=o,pc(Xc(n),t)}const Gc=()=>{const e="test-storage-availability";try{return window.localStorage.setItem(e,e),window.localStorage.removeItem(e),window.localStorage}catch(t){return null}};let Qc,Zc;async function el(e){const t=function(e){const t=p(e,"data-jump-to-suggestions-path");return window.location.origin+t}(e),n=function(){const e=new FormData;for(const t of Object.keys(gc()))e.append("variables[pageViews][]",t);return e}();try{return function(e){if("errors"in e.data)return[];if(e.data.errors)return[];let t=1;const n=[];for(const s of e.data.suggestions.nodes)null!=s&&(s.rank=t++,s.pageKey=hc(s),"Team"===s.type&&(s.name=`@${s.name}`),n.push(s));return n}(await W(Te(t,{method:"POST",body:n})))}catch(s){if(s.response&&422===s.response.status)return[];throw s}}async function tl(e){const t=e;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/jump-to.js:69");!function(e){e.classList.add("js-navigation-enable"),e.classList.add("jump-to-field-active")}(t),Ac(t),Qc||(Qc=el(t)),Sc(t),nl(t),zc(t,await Qc)}function nl(e){const t=e.value.trim(),n=b(document,".js-jump-to-suggestions-results-container");t?Ae(n):xe(n)}r(".js-jump-to-field",{constructor:HTMLInputElement,add(e){try{!function(e,t=Gc()){if(!t)return;const n=e.match(Uc);if(n)return void Jc(vc(n[1],n[2]),t);let s,o;for(let r=0,i=Kc.length;r{!function(e){e.classList.remove("js-navigation-enable"),e.classList.remove("jump-to-field-active")}(e),xc()},200)}),u("focusin",".js-jump-to",function(){clearTimeout(Zc),Ac(b(document,".js-jump-to-field",HTMLInputElement))}),u("click",".js-jump-to-suggestion-path",function(e){const t=e.currentTarget;if(!(t instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/jump-to.js:132");if("Search"===t.getAttribute("data-target-type")){const e=b(document,".js-jump-to-field",HTMLInputElement);t.href=function(e,t){const n=new URL(t,window.location.origin),s=new URLSearchParams(n.search.slice(1));return s.get("q")&&s.set("q",e),s.get("unscoped_q")&&s.set("unscoped_q",e),n.search=s.toString(),n.toString()}(e.value.trim(),t.href)}Tc(t)}),u("submit",".js-site-search-form",function(e){if(!Wc())return;const t=e.target;t.getAttribute("data-scoped-search-url")&&Mc({scope_type:t.getAttribute("data-scope-type"),scope_id:t.getAttribute("data-scope-id")}),kc("search")});let sl=0,ol=null;const rl=["ArrowUp","ArrowUp","ArrowDown","ArrowDown","ArrowLeft","ArrowRight","ArrowLeft","ArrowRight","b","a","Enter"];function il(e){!function(e){let t=document.getElementById("konami-overlay");t||((t=document.createElement("div")).id="konami-overlay",t.classList.add("konami-overlay"),document&&document.body&&document.body.appendChild(t));if(!t)return;t.style.background=`rgba(0,0,0,${e+.24})`;const n=50*(1+e),s=(e,t)=>e+Math.round(Math.random()*(t-e));for(let o=0;ot&&t.prepend(o),r),setTimeout(()=>o.parentNode&&o.parentNode.removeChild(o),r+s(100,500))}}((sl=e)/rl.length);const t=v(document,".js-konami-key");for(const r of t)r.classList.remove("active"),r.classList.remove("inactive"),r.classList.remove("complete"),r.classList.remove("down");const n=t.slice(0,sl),s=t.slice(sl,sl+1),o=t.slice(sl+2);for(const r of n)r.classList.add("complete");for(const r of s)r.classList.add("active");for(const r of o)r.classList.add("inactive")}function al(e){if(!(e.target instanceof Node&&Se(e.target)||sl>=rl.length||(rl.includes(X(e))&&(e.preventDefault(),e.stopPropagation()),X(e)!==rl[sl]))){const e=document.querySelectorAll(".js-konami-key")[sl];e&&e.classList.add("down")}}function cl(e){if(!(e.target instanceof Node&&Se(e.target)||sl>=rl.length)){if(X(e)===rl[sl])il(sl+1),sl===rl.length-1&&function(){const e=document.querySelector(".js-konami-success");e&&e.removeAttribute("hidden")}(),sl===rl.length&&function(){const e=document.querySelector(".js-konami-form");if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/konami/konami.js:133");E(e)}();else{if(!rl.includes(X(e)))return;il(0)}e.preventDefault(),e.stopPropagation()}}function ll(){ol=null,document.removeEventListener("keydown",al),document.removeEventListener("keyup",cl);const e=document.getElementById("konami-overlay");e&&e.parentNode&&e.parentNode.removeChild(e)}function ul(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/length-limited-input-with-warning.js:33");const n=parseInt(t.getAttribute("data-input-max-length"),10),s=parseInt(t.getAttribute("data-warning-length"),10)||5,o=t.value.replace(/(\r\n|\n|\r)/g,"\r\n");let r=n-o.length;if(r<=0){let e=o.substr(0,n);e.endsWith("\r")?(e=e.substr(0,n-1),r=1):r=0,t.value=e}const i=p(t,"data-warning-text"),a=d(t,".js-length-limited-input-container"),c=b(a,".js-length-limited-input-warning");r<=s?(c.textContent=i.replace(new RegExp("{{remaining}}","g"),`${r}`),c.classList.remove("d-none")):(c.textContent="",c.classList.add("d-none"))}function dl(e){const t=e.currentTarget,n=b(t,".js-milestone-edit-cancel"),s=n.getAttribute("data-confirm-changes");s&&(B(t)?n.setAttribute("data-confirm",s):n.removeAttribute("data-confirm"))}function ml(e,t,n){const s=e.getAttribute("data-direction"),o=fl(t).indexOf(t);"up"===s&&t.previousElementSibling?t.previousElementSibling.insertAdjacentElement("beforebegin",t):"down"===s&&t.nextElementSibling&&t.nextElementSibling.insertAdjacentElement("afterend",t);const r=fl(t).indexOf(t);e.focus(),n({oldIndex:o,newIndex:r,item:t})}function fl(e){const t=e.parentElement;if(!t)throw new Error("invariant: app/assets/modules/github/sortable-button.js:23");return Array.from(t.children)}u("click",".js-konami",async function(e){if(e.preventDefault(),ol)return;il(5),document.addEventListener("keydown",al),document.addEventListener("keyup",cl);const t=`/site/konami?return_to=${e.target.getAttribute("data-return-to")||""}`;ol=await F({content:R(document,t),dialogClass:"kb-konami-dialog container-xl"}),il(sl),ol.addEventListener("dialog:remove",ll,{once:!0})}),u("click",".js-details-target-new-label",function({target:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/labels/maintainer-label-prompt.js:9");const t=Ls(e,"Popover");if(t){const e=b(t,"form",HTMLFormElement);E(e)}}),r(".js-length-limited-input",{add(e){e.addEventListener("input",ul),e.addEventListener("change",ul)},remove(e){e.removeEventListener("input",ul),e.removeEventListener("change",ul)}}),r("link[rel=prefetch-viewed]",{initialize(){requestIdleCallback(()=>{fetch(location.href,{method:"HEAD",credentials:"same-origin",headers:{Purpose:"prefetch-viewed"}})})}}),u("click",".js-manage-requests-tabs-item",function({currentTarget:e}){const t=d(e,".js-manage-memberships-container");b(t,".js-manage-invitations-tabs-item").classList.remove("selected"),e.classList.add("selected");const n=b(t,".js-manage-invitations-list"),s=b(t,".js-manage-requests-list");n.classList.add("d-none"),s.classList.remove("d-none")}),u("click",".js-manage-invitations-tabs-item",function({currentTarget:e}){const t=d(e,".js-manage-memberships-container");b(t,".js-manage-requests-tabs-item").classList.remove("selected"),e.classList.add("selected");const n=b(t,".js-manage-requests-list"),s=b(t,".js-manage-invitations-list");n.classList.add("d-none"),s.classList.remove("d-none")}),u("change",".js-milestone-edit-form",dl),u("click",".js-milestone-edit-form",dl);const pl=new WeakMap;u("socket:message",".js-milestone-issues",async function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/milestone-dragging.js:31");const t=e.currentTarget,n=e.detail.data,s=b(t,".js-milestone-issues-container");if("1"===s.getAttribute("data-is-sorting"))return void s.removeAttribute("data-is-sorting");await O();const o=document.querySelector(".js-client-uid");o instanceof HTMLInputElement&&o.value===n.client_uid||async function(e){if(He(e))return;const t=p(e,"data-url"),n=await R(document,t);Ce(document,()=>{e.replaceWith(n)})}(t)}),j(".js-milestone-sort-form",async function(e,t){const n=(await t.json()).json,s=b(e,".js-milestone-reorder-feedback");s.textContent="",n.error?b(e,".js-milestone-changed").classList.remove("d-none"):(b(e,".js-timestamp",HTMLInputElement).value=n.updated_at,s.textContent=s.getAttribute("data-success-text")||"")});const gl=y(function(e){const{newIndex:t,item:n}=e,s=d(n,".js-milestone-issues-container"),o=n.getAttribute("data-id")||"",r=function(e,t){return e.querySelectorAll(".js-draggable-issue")[t]}(s,t-1),i=r&&r.getAttribute("data-id"),a=d(s,".js-milestone-sort-form",HTMLFormElement);b(a,".js-item-id",HTMLInputElement).value=o,b(a,".js-prev-id",HTMLInputElement).value=i||"",ve({category:"Milestone",action:"reorder",label:"string"==typeof e.trackingLabel?e.trackingLabel:"drag-and-drop"}),s.setAttribute("data-is-sorting","1"),E(a)},200);function hl(e,t){gl({item:t,newIndex:Array.from(e.querySelectorAll(".js-draggable-issue")).indexOf(t),trackingLabel:"keyboard-shortcut"}),qe(d(t,".js-navigation-container"),t)}async function vl(e){if(await function(e){return new Promise(function(t){function n(){e.hasFocus()&&(t(),e.removeEventListener("visibilitychange",n),window.removeEventListener("focus",n),window.removeEventListener("blur",n))}e.addEventListener("visibilitychange",n),window.addEventListener("focus",n),window.addEventListener("blur",n),n()})}(document),await new Promise(e=>setTimeout(e,1e3)),!(e instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/oauth.js:8");e.disabled=!1}function bl(e){const t=d(e,".js-org-insights-hero-container");for(const n of t.querySelectorAll("[role=tab]"))n.setAttribute("aria-selected",(n===e).toString());for(const n of t.querySelectorAll("[role=tabpanel]"))n.hidden=e.id!==n.getAttribute("aria-labelledby");for(const n of v(document,".js-org-insights-period-selector-link",HTMLAnchorElement))n.hash=e.hash}u("click",".js-draggable-issue .js-sortable-button",function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/milestone-dragging.js:102");ml(e,d(e,".js-draggable-issue"),gl)}),u("navigation:keydown",".js-draggable-issues-container .js-draggable-issue",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/milestone-dragging.js:107");const t=e.currentTarget,n=d(t,".js-draggable-issues-container");if("J"===e.detail.hotkey){const s=t.nextElementSibling;s&&(s.after(t),hl(n,t),e.preventDefault(),e.stopPropagation())}else if("K"===e.detail.hotkey){const s=t.previousElementSibling;s&&(s.before(t),hl(n,t),e.preventDefault(),e.stopPropagation())}}),r(".js-draggable-issues-container",{add:function(e){if(pl.has(e))return;const t=Ie.create(e,{animation:150,item:".js-draggable-issue",handle:".js-drag-handle",onUpdate:gl,chosenClass:"is-dragging"});pl.set(e,t)},remove:function(e){const t=pl.get(e);t&&t.destroy()}}),u("submit",".js-mobile-preference-form",({currentTarget:e})=>{b(e,".js-mobile-preference-anchor-field",HTMLInputElement).value=window.location.hash.substr(1)}),r("#js-oauth-authorize-btn",e=>{vl(e)}),async function(){await I,window._octo.push(["enablePerformance"]),window._octo.push(["recordPageView"])}(),r(".js-octo-ga-id",e=>{window.ga(t=>{t&&e.setAttribute("content",t.get("clientId"))})}),r(".js-octo-ga-id-input",e=>{window.ga(t=>{t&&e.setAttribute("value",t.get("clientId"))})}),document.addEventListener("pjax:complete",function(){window._octo.push(["recordPageView"])}),u("change",".js-two-factor-needs-enforced",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/orgs/2fa.js:35");b(document,".js-confirm-2fa-modal").classList.toggle("d-none",!e.checked),b(document,".js-2fa-save-button").classList.toggle("d-none",e.checked)}),r(".js-two-factor-enforcement-poller",function(e){e.addEventListener("load",function(){window.location.reload()})}),u("click",".js-org-insights-hero-container [role=tab]",({currentTarget:e})=>{e instanceof HTMLAnchorElement&&bl(e)}),ae(()=>{const e=document.querySelector(".js-org-insights-hero-container");if(!e)return;const t=e.querySelector(`[href='${document.location.hash||"#insights-prs"}']`);t instanceof HTMLAnchorElement&&bl(t)});const wl=new C;function jl(){const e=document.querySelector(".js-org-reinstate-forms"),t=document.querySelectorAll(".js-org-reinstate-option:checked");if(!e||1!==t.length)return;const n=p(t[0],"data-form"),s=e.getElementsByClassName("js-togglable-form");for(const r of s)r.classList.add("d-none");const o=document.getElementById(n);if(!o)throw new Error("invariant: app/assets/modules/github/orgs/invitations.js:44");o.classList.remove("d-none")}function yl(){const e=b(document,".js-seats");if(!e)return Tl();const t=p(e,"data-filled-seats");return parseInt(t)+Tl()}function El(){!function(){const e=document.querySelector(".js-filled-seats"),t=yl();e&&null!==t&&(e.textContent=t.toString())}(),function(){const e=document.querySelector(".js-seats-remaining");if(e){e.hidden=!0;const t=kl()-yl(),n=b(document,".js-seats-remaining-zero"),s=b(document,".js-seats-remaining-singular"),o=b(document,".js-seats-remaining-plural");n.hidden=0!==t,s.hidden=1!==t,o.hidden=t<=1}}(),function(){const e=document.querySelector(".js-max-seats-warning");e&&(e.hidden=!Ml())}(),function(){const e=yl();return kl()e.checked);if(0===n.length)return null;if(t.every(e=>e.checked))return p(e,"data-everyday");const s=t.filter(e=>e.classList.contains("js-delivery-day-weekday"));if(s.every(e=>e.checked)&&n.length===s.length)return p(e,"data-weekdays");const o=t.filter(e=>e.classList.contains("js-delivery-day-weekend"));return o.every(e=>e.checked)&&n.length===o.length?p(e,"data-weekends"):2===n.length?`${n[0].value} and ${n[1].value}`:n.map(e=>e.value).join(", ")}(e);const n=e.querySelector(".js-delivery-day-summary");if(null==n)return;null==t&&(t=p(n,"data-default-label"));const s=n.querySelector(".js-delivery-day-summary-text");s&&(s.textContent=t)}function _l(e){const t=b(e,".js-delivery-time-summary"),n=function(e){const t=v(e,"input.js-delivery-time-input:checked",HTMLInputElement);return 0===t.length?null:t.map(e=>e.value).join(", ")}(e)||p(t,"data-default-label"),s=b(t,".js-delivery-time-summary-text");s.textContent=n,s.setAttribute("title",n)}function $l(e){const t=e.querySelector("input.js-delivery-time-zone-input:checked");if(t instanceof HTMLInputElement){const n=t.getAttribute("data-display-name")||"";b(e,".js-delivery-time-zone-summary-text",HTMLSpanElement).textContent=n}else!function(e){const t=Intl.DateTimeFormat().resolvedOptions().timeZone||"",n=e.querySelector(`input.js-delivery-time-zone-input[data-browser-name="${t}"`);n instanceof HTMLInputElement&&$(n,!0)}(e)}function Dl(){return b(document,".js-saml-provider-settings-form",HTMLFormElement)}function Bl(){return Dl().querySelector(".js-saml-form-inputs")}function Rl(){return b(document,".js-org-saml-confirm-enforcement-hidden",HTMLInputElement)}function Nl(e){e&&e.classList.remove("d-none")}function Pl(){return"1"===b(document,".js-org-saml-currently-enabled",HTMLInputElement).value&&!b(document,".js-org-enable-saml",HTMLInputElement).checked}function Fl(){return b(document,".is-submit-button-value",HTMLInputElement)}function Ol(){return b(document,".js-org-saml-enforce",HTMLInputElement).checked&&"0"===Rl().value&&!("1"===b(document,".js-org-saml-previously-enforced",HTMLInputElement).value)&&"1"===b(document,".js-org-has-unlinked-saml-members",HTMLInputElement).value}function Wl(){Dl().submit()}function zl(){const e=document.querySelector(".js-org-enable-saml");e&&e instanceof HTMLInputElement&&(e.checked=!0,Nl(Bl()))}function Ul(e,t){b(e,".js-add-child-team-loading-state").hidden=!t,b(e,".js-add-child-team-modal-content").hidden=t}u("click",".js-invitations-team-suggestions-view-all",async function(e){const t=e.currentTarget,n=p(t,"data-url"),s=v(document,".js-invitation-toggle-team:checked",HTMLInputElement).map(e=>e.value),o=await R(document,n),r=d(t,"ul");r.innerHTML="",r.appendChild(o);for(const i of s)b(r,`.js-invitation-toggle-team[value="${i}"]`,HTMLInputElement).checked=!0}),u("change",".js-org-reinstate-option",jl),r(".js-org-reinstate-forms",jl),r(".js-member-suggestion",function(){const e=v(document,".js-badge").map(e=>b(e,"input",HTMLInputElement).value);if(0!==e.length)for(const t of v(document,".js-member-suggestion",HTMLLIElement)){const n=p(t,"data-autocomplete-value");if(e.includes(n)){t.classList.add("disabled"),t.setAttribute("aria-disabled","true");const e=t.querySelector(".js-non-member-warning-reason"),n=t.querySelector(".js-non-member-warning-action");if(e&&n)for(const t of[e,n])t.textContent=p(t,"data-markup"),t.hidden=!1}}}),u("combobox-commit",".js-badge-container .js-new-org-members-complete-results",e=>{const t=b(document,".js-badge-input",HTMLInputElement),n=b(document,".js-badges"),s=e.target,o=b(s,".js-badge-template",HTMLTemplateElement).cloneNode(!0).content;n.append(o),El(),function(e){const t=e.currentTarget;if(t.hasAttribute("data-ga-event")){const e=t.getAttribute("data-ga-event-category"),n=t.getAttribute("data-ga-event-action"),s=t.getAttribute("data-ga-event-label");window.ga("send","event",e,n,s)}const n=e.target;if(!(n instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/orgs/invitations.js:282");_e(n)}(e),t.value=""}),u("click",".js-badge-search-container .js-badge",e=>{const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/orgs/invitations.js:92");"true"===p(t,"aria-pressed")?t.setAttribute("aria-pressed","false"):t.setAttribute("aria-pressed","true")}),u("click",".js-badge-search-container",e=>{const t=e.currentTarget;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/orgs/invitations.js:105");b(t,"input",HTMLInputElement).focus()}),u("click",".js-badge-container .js-member-suggestion",()=>{b(document,".js-badge-input",HTMLInputElement).focus()}),m("keydown",".js-badge-search-container .js-badge-input",e=>{const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/orgs/invitations.js:115");const n=d(t,".js-badge-search-container"),s=v(n,'.js-badges .js-badge[aria-pressed="true"]'),o=n.getAttribute("data-allow-plan-increase"),r="Backspace"!==e.key||""!==t.value;if(!o&&Ml()&&r)e.preventDefault();else if(!r){if(0!==s.length)for(const e of s)e.remove(),Al(e);else{const e=v(n,".js-badges .js-badge");if(0===e.length)return;const t=e[e.length-1];t.remove(),Al(t)}El()}}),u("click",".js-private-repo-creation-allowed",function(e){const t=e.currentTarget;if(t instanceof HTMLInputElement){const e="true"===t.getAttribute("data-private-only-policy-allowed"),n=b(document,".js-public-repo-creation-allowed",HTMLInputElement),s=b(document,".js-public-disabled-doc-link");e||(t.checked?(n.disabled=!0,n.checked=!0,s.hidden=!1):(n.disabled=!1,s.hidden=!0))}}),u("click",".js-membership-tab",function(e){const t=p(e.currentTarget,"data-membership"),n=b(document,".js-member-filter-field",HTMLInputElement),s=n.value,o=new RegExp("membership:[a-z-]+"),r=s.toString().trim().replace(o,"");n.value=`${r} ${t}`.replace(/\s\s/," "),n.focus(),$e(n),b(document,".js-membership-tabs").classList.remove("selected"),e.currentTarget.classList.add("selected")}),u("click",".js-member-search-filter",function(e){e.preventDefault();const t=p(e.currentTarget,"data-filter"),n=d(e.currentTarget,"[data-filter-on]"),s=p(n,"data-filter-on"),o=b(document,".js-member-filter-field",HTMLInputElement),r=o.value,i=new RegExp(`${s}:[a-z]+`),a=r.toString().trim().replace(i,"");o.value=`${a} ${t}`.replace(/\s\s/," "),o.focus(),$e(o)}),u("submit",".js-needs-interstitial .js-approve-membership-request",function(e){const t=e.currentTarget;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/orgs/members.js:41");const n=p(b(t,"[data-member-name]"),"data-member-name"),s=p(t,"data-action-type"),o=d(t,".js-add-members-container");e.preventDefault(),xl(o,n,s,null)}),u("submit",".js-needs-interstitial.js-add-team-member-form",function(e){const t=e.currentTarget;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/orgs/members.js:50");const n=T(t,"member");if(!n.value)return;const s=p(t,"data-action-type"),o=b(document,".js-add-members-container");e.preventDefault();const r=t.getAttribute("data-return-to");xl(o,n.value,s,r)}),r("#add-team-member",function(e){const t=b(e,"details-dialog"),n=t.innerHTML;e.addEventListener("toggle",function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/orgs/members.js:91");e.hasAttribute("open")||(t.innerHTML=n)})}),j(".js-add-org-member-form",async function(e,t){const n=b(document,".js-member-list");e.classList.add("is-sending");const s=document.querySelector(".flash-messages");let o;s&&s.remove();try{o=await t.json()}catch(a){if(!a.response&&!a.response.json)return;return void n.insertAdjacentHTML("beforebegin",a.response.json.message_html||"")}e.classList.remove("is-sending"),b(e,"auto-complete",k).value="";const r=b(Me(document,o.json.list_item_html),"*"),i=r.getAttribute("data-login");if(i)for(const c of n.children)if(c.getAttribute("data-login")===i){c.remove();break}n.prepend(r)}),u("auto-check-success",".js-new-organization-name",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/orgs/new.js:10");for(const s of v(document,".js-enterprise-trial-link",HTMLAnchorElement))Hl(s,t.value);const n=d(t,"dd").querySelector(".js-field-hint-name");n&&(n.textContent=t.value)}),g(".js-company-name-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/orgs/new.js:45");const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/orgs/new.js:47");const s=n.querySelectorAll(".js-company-name-text");if(0===s.length)return;const o=n.querySelector(".js-corp-tos-link"),r=n.querySelector(".js-tos-link");r&&(r.classList.add("d-none"),r.setAttribute("aria-hidden","true"),o&&(o.classList.remove("d-none"),o.setAttribute("aria-hidden","false")));for(const i of s)if(t.value){if(i.hasAttribute("data-wording")){const e=p(i,"data-wording");i.textContent=` ${e} ${t.value}`}else i.textContent=t.value}else i.textContent=""}),r(".js-company-owned:not(:checked)",{constructor:HTMLInputElement,add(e){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/orgs/new.js:95");const n=b(t,".js-company-name-input",HTMLInputElement),s=b(document,".js-company-name-text"),o=b(document,".js-corp-tos-link"),r=b(document,".js-tos-link");e.getAttribute("data-optional")&&n.removeAttribute("required"),$(n,""),r.classList.remove("d-none"),r.setAttribute("aria-hidden","false"),o.classList.add("d-none"),o.setAttribute("aria-hidden","true"),s.textContent=""}}),r(".js-company-owned:checked",{constructor:HTMLInputElement,add(e){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/orgs/new.js:124");const n=t.querySelector(".js-company-name-input");n&&(n.setAttribute("required",""),L(n,"focus"),L(n,"input"))}}),r(".js-company-owned-autoselect",{constructor:HTMLInputElement,add(e){const t=e;function n(){if(t.checked&&t.form){const e=b(t.form,".js-company-owned",HTMLInputElement);$(e,!0)}}t.addEventListener("change",n),n()}}),j(".js-org-list-item .js-org-remove-item",async function(e,t){d(e,".js-org-list-item").classList.add("d-none");try{await t.text()}catch(Lh){d(e,".js-org-list-item").classList.remove("d-none");const n=e.getAttribute("data-error-message");if(n)return void alert(n)}d(e,".js-org-list-item").remove()}),u("click",".js-plan-choice",e=>{const t=document.querySelector(".SignUpContinueActions"),n=e.target.value;if(Cl(n),null!=t&&t.classList.remove("has-removed-contents"),"business_plus"===n)for(const o of v(document,".js-after-plan-choice"))o.classList.add("has-removed-contents");else for(const o of v(document,".js-after-plan-choice"))o.classList.remove("has-removed-contents");const s=!(n&&"business_plus"===n);for(const o of v(document,".js-enterprise-choice",HTMLInputElement))o.disabled=s}),u("click",".js-enterprise-choice",e=>{const t=document.querySelector(".js-enterprise-plan-seat-selection"),n=document.querySelector(".js-billing-section"),s=document.querySelector(".SignUpContinueActions"),o=document.querySelector(".js-enterprise-contact"),r=document.querySelector(".js-enterprise-trial-link"),i=e.target.value,a=[n,s,t];if(o&&o.classList.toggle("has-removed-contents","server"!==i),r&&r.classList.toggle("has-removed-contents","server"===i),"cloud-trial"===i)n&&n.classList.add("has-removed-contents");else for(const c of a)null!=c&&c.classList.toggle("has-removed-contents","cloud"!==i);Cl("business_plus")}),u("change",".js-enterprise-trial-industry",function(e){if(!(e instanceof Event))throw new Error("invariant: app/assets/modules/github/orgs/new.js:272");const t=e.target;if(!(t instanceof HTMLSelectElement))throw new Error("invariant: app/assets/modules/github/orgs/new.js:274");const n=t.value,s=document.querySelector(".js-enterprise-trial-other-industry-field");s&&(s.hidden=n!==p(s,"data-trigger-option-value"))}),r(".js-enterprise-trial-ga-id",{constructor:HTMLInputElement,initialize(e){const t=p(e,"data-field");window.ga(function(n){n&&$(e,n.get(t))})}}),u("change",".js-delivery-day-input",function(e){const t=e.target.closest(".js-orgs-reminders-day-menu");null!=t&&Il(t)}),u("change",".js-orgs-ignore-approvals-input",function(e){const t=p(e.target,"data-title");b(document,".js-orgs-ignore-approvals-summary-text").textContent=t}),u("change",".js-orgs-ignore-approvals-check",function(e){const t=b(document,".js-orgs-ignore-approvals-menu"),n=b(document,".js-default-orgs-ignore-approvals-input",HTMLInputElement),s=e.target;s instanceof HTMLInputElement&&(t.classList.toggle("has-removed-contents",!s.checked),n.classList.toggle("has-removed-contents",s.checked))}),u("change",".js-delivery-time-input",function(e){_l(d(e.target,".js-orgs-reminders-time-menu"))}),u("change",".js-delivery-time-zone-input",function(e){$l(d(e.target,".js-orgs-reminders-time-zone-menu"))}),r(".js-orgs-reminders-time-menu",_l),r(".js-orgs-reminders-time-zone-menu",$l),j(".js-select-repo-permission",async function(e,t){const n=b(e,".js-permission-success"),s=b(e,".js-permission-error");let o;n.hidden=!0,s.hidden=!0,e.classList.add("is-loading");try{o=await t.json()}catch(Lh){return e.classList.remove("is-loading"),void(s.hidden=!1)}e.classList.remove("is-loading"),n.hidden=!1;const r=e.closest(".js-org-repo");if(r){const e=o.json;r.classList.toggle("with-higher-access",e.members_with_higher_access)}}),j(".js-per-seat-invite-field, .js-per-seat-invite .js-org-remove-item",async function(e,t){!function(e){for(const n in e.selectors){const t=e.selectors[n],s=document.querySelector(n);t&&s&&(s.textContent=t)}const t=100===e.filled_seats_percent;b(document,".js-live-update-seats-percent").style.width=`${e.filled_seats_percent}%`,b(document,".js-need-more-seats").classList.toggle("d-none",!t),b(document,".js-add-org-member-form").classList.toggle("d-none",t)}((await t.json()).json)}),u("click",".js-org-enable-saml",function(e){if(!(e.currentTarget instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/orgs/security.js:113");var t;e.currentTarget.checked?Nl(Bl()):(t=Bl())&&t.classList.add("d-none")}),u("click",".js-saml-submit",function(e){e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/orgs/security.js:131");E(Dl(),t)}),u("click",".js-org-saml-confirm-enforce-button",function(){Rl().value="true",E(Dl())}),u("submit",".js-saml-provider-settings-form",function(e){e.preventDefault(),"test_settings"===Fl().name?Wl():"save_settings"===Fl().name&&(Pl()?async function(){(await F({content:b(document,"#disable-saml-confirmation",HTMLTemplateElement).content.cloneNode(!0)})).addEventListener("dialog:remove",zl)}():Ol()?F({content:b(document,"#enforce-saml-confirmation",HTMLTemplateElement).content.cloneNode(!0)}):Wl())}),u("click",".js-team-remove-user",function(e){e.preventDefault();for(const t of document.querySelectorAll(".js-team-add-user-form"))t.classList.remove("d-none");b(document,".js-team-add-user-name").focus(),d(e.currentTarget,"li").remove()}),u("click",".js-team-add-user-button",function(e){e.preventDefault(),async function(e){const t=d(e,".js-team-add-user-form"),n=b(t,".js-team-add-user-name",HTMLInputElement),s=n.value;n.value="";const o=b(document,".js-team-user-logins");for(const c of o.querySelectorAll("li"))if(c.getAttribute("data-login")===s)return;if(!(await De("low")))return;const r=new URL(t.getAttribute("data-template-url")||"",window.location.origin),i=new URLSearchParams(r.search.slice(1));i.append("member",s),r.search=i.toString(),n.focus();const a=await R(document,r);o.appendChild(a);for(const c of v(document,".js-login-field",HTMLInputElement))c.disabled=!1;t.classList.add("d-none")}(e.currentTarget)}),u("click",".js-rename-owners-team-next-btn",function(){const e=b(document,".js-rename-owners-team-about-content");e.hidden=!e.hidden;const t=b(document,".js-rename-owners-team-rename-form");t.hidden=!t.hidden}),u("auto-complete-change",".js-add-child-team-completer",async function({target:e}){if(!(e instanceof k))throw new Error("invariant: app/assets/modules/github/orgs/team-add-child.js:15");if(!e.value)return;const t=d(e,".js-add-team-container");Ul(t,!0);const n=d(e,".js-add-child-team-form"),s=p(n,"data-change-parent-summary-path"),o=await R(document,s);b(n,".js-add-team-search").hidden=!0,b(n,".js-add-team-warning").append(o),Ul(t,!1)}),u("submit",".js-add-child-team-form",function(e){const t=e.currentTarget,{value:n}=b(t,".js-add-child-team-completer",k);n||e.preventDefault()}),u("details-dialog-close",".js-add-team-dialog",function(e){const t=e.currentTarget,n=b(t,".js-add-team-container");b(t,".js-add-team-search").hidden=!1,b(t,".js-add-team-warning").innerHTML="",Ul(n,!1)}),u("click",".js-expandable-team-breadcrumbs .js-team-breadcrumb-trigger",async function(e){const t=d(e.target,".js-expandable-team-breadcrumbs");t.classList.add("is-loading");try{await Be(t)}catch(Lh){}t.classList.remove("is-loading")});class Vl{constructor(e,t,n){this.diffId=e,this.side=t,this.lineNumber=n,this.element=G(document,this.anchor())}sideForCommenting(){return this.element&&this.element.classList.contains("blob-num-context")?"right":{R:"right",L:"left"}[this.side]}anchor(){return`${this.diffId}${this.anchorSuffix()}`}anchorSuffix(){return`${this.side}${this.lineNumber}`}is(e){return this.diffId===e.diffId&&this.side===e.side&&this.lineNumber===e.lineNumber}}class Kl{constructor(e,t,n,s,o){this.elements=new Set,this.isParsed=!1,this.isSplit=!1,this._rows=new Set,this._isAcrossHunks=!1,this._isContextOnly=!0,this._includesExpandedLine=!1,this.diffId=e,this.diffTable=document.querySelector(`.js-diff-table[data-diff-anchor="${e}"]`),this.diffTable&&(this.isSplit=this.diffTable.classList.contains("js-file-diff-split")),this.start=new Vl(e,t,n),this.end=new Vl(e,s,o),this.parse()}anchor(){const e=[];return e.push(this.start.anchor()),this.start.is(this.end)||e.push(this.end.anchorSuffix()),e.join("-")}parse(){if(!this.diffTable)return;let e=this.diffTable.querySelectorAll(".js-linkable-line-number");e=this.unify(e),e=this.filterInRange(e),this.lineCount=e.length,this.elements=this.expandRelatedElements(e),this.isParsed=!0}unify(e){if(!this.isSplit)return Array.from(e);const t=[];let n=[],s=[];for(const o of e)o.classList.contains("blob-num-addition")?n.push(o):o.classList.contains("blob-num-deletion")?s.push(o):(t.push(...s,...n,o),n=[],s=[]);return t.push(...s,...n),t}filterInRange(e){if(!this.start.element||!this.end.element)return[];let t=e.indexOf(this.start.element),n=e.indexOf(this.end.element);if(t>n){[t,n]=[n,t];const[e,s]=[this.end,this.start];this.start=e,this.end=s}return e.slice(t,n+1)}isContextOnly(){return this.isParsed||this.parse(),this._isContextOnly}isAcrossHunks(){return this.isParsed||this.parse(),this._isAcrossHunks}includesExpandedLine(){return this.isParsed||this.parse(),this._includesExpandedLine}rows(){return this.isParsed||this.parse(),this._rows}expandRelatedElements(e){const t=this.isSplit,n=e[0],s=e[e.length-1];if(n&&s){const e=n.closest("[data-hunk]"),t=s.closest("[data-hunk]");if(e&&t){e.getAttribute("data-hunk")!==t.getAttribute("data-hunk")&&(this._isAcrossHunks=!0)}}return e.reduce((e,n)=>{!this._includesExpandedLine&&n.closest(".blob-expanded")&&(this._includesExpandedLine=!0);const s=n.parentElement;s instanceof HTMLElement&&this._rows.add(s);const o=n.classList.contains("blob-num-deletion")||n.classList.contains("blob-num-addition");if(o&&(this._isContextOnly=!1),!s)return e;if(t&&o)return Array.from(s.children).indexOf(n)<2?e.add(s.children[0]).add(s.children[1]):e.add(s.children[2]).add(s.children[3]);for(const t of Array.from(s.children))e.add(t);return e},new Set)}}function Yl(e){const t=e.match(/^#?(diff-[a-f0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);if(null!=t&&6===t.length)return t;const n=e.match(/^#?(discussion-diff-[0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);return null!=n&&6===n.length?n:null}let Xl,Jl,Gl=null,Ql=!1;function Zl(e){return!!e.closest(".js-multi-line-comments-enabled")}function eu(e,t){if(!Zl(e))return!1;const{start:{lineNumber:n},end:{lineNumber:s}}=t;return(n!==s||!t.isContextOnly())&&(!t.isAcrossHunks()&&!t.includesExpandedLine())}function tu(e){return d(e,".js-diff-table").classList.contains("is-selecting")}function nu(e,t){cu();let n=e.id;if(t){const t=Yl(n);if(!t)return;const s=t[1],o=t[2],r=t[3];if(Gl&&Gl.diffId===s){if(o===Gl.start.side&&r1&&e.preventDefault()}),u("mousedown",".js-linkable-line-number",function(e){const t=d(e.target,".js-diff-table");t.classList.add("is-selecting"),iu(t),document.addEventListener("mouseup",function(){d(e.target,".js-diff-table").classList.remove("is-selecting"),au(t)},{once:!0}),nu(e.target,e instanceof MouseEvent&&e.shiftKey),e.preventDefault()}),ae(lu),r(".blob-expanded",lu),r(".js-diff-progressive-loader",function(e){e.addEventListener("load",lu)}),r(".js-diff-entry-loader",function(e){e.addEventListener("load",lu)}),u("click",".js-toggle-inline-comment-form",function(e){uu(d(e.currentTarget,".js-line-comments"))}),u("quote-selection",".js-line-comments",function(e){uu(e.currentTarget)}),m("keydown",".js-inline-comment-form-container form .js-comment-field",function(e){const t=e.target;if(!(t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/behaviors/inline-comment.js:33");if(!t.classList.contains("js-navigation-enable")&&"Escape"===e.key&&0===t.value.length){du(d(t,"form",HTMLFormElement)),e.preventDefault()}}),u("click",".js-hide-inline-comment-form",function(e){const t=d(e.currentTarget,"form",HTMLFormElement);!B(t)||confirm(p(e.target,"data-confirm-cancel-text"))?du(t):e.preventDefault()}),u("click",".js-team-discussions-team-description-toggle",function(){b(document,".js-team-discussions-team-description").classList.toggle("d-none"),b(document,".js-team-discussions-team-description-form").classList.toggle("d-none")}),u("click",".js-team-discussions-post-toggle",function(e){const t=d(e.target,".js-teams-write-a-post");t.classList.contains("active")||(t.classList.add("active"),b(t,".js-team-discussions-post-compose").classList.remove("d-none"),b(t,".js-post-placeholder").classList.add("d-none"),b(t,".js-title-field").focus())}),u("click",".js-hide-post-form",function(e){const t=d(e.target,".js-new-comment-form",HTMLFormElement);!B(t)||confirm(p(e.target,"data-confirm-cancel-text"))?mu(e.target):e.preventDefault()}),u("click",".js-hide-inline-comment-form",function(e){fu(e.target)}),j(".js-new-comment-form",async function(e,t){await t.text(),mu(e),fu(e)}),j(".js-team-discussions-team-description-form",async function(e,t){try{await t.text()}catch(Lh){}const n=b(document,".js-team-discussions-team-description"),s=b(n,".description"),o=b(document,".js-team-discussions-team-description-field",HTMLTextAreaElement);n.classList.toggle("d-none"),e.classList.toggle("d-none"),o.value.trim()?(s.textContent=o.value,o.defaultValue=o.value):(s.textContent="This team has no description",o.defaultValue="")}),j(".js-comment-pin",async function(e,t){const n=b(e,"button[type=submit]");n.blur(),await t.text();const s=b(e,".js-pinned-discussion-input",HTMLInputElement),o=document.querySelector("#pinned_posts_counter"),r=p(n,"aria-label"),i=p(n,"data-alternate-aria-label");n.setAttribute("data-alternate-aria-label",r),n.setAttribute("aria-label",i),n.classList.toggle("pinned");const a=n.classList.contains("pinned");if(o){pu(o,a?1:-1);const t=d(o,".js-pinned-post-tab");if(!a&&t.classList.contains("selected")){const t=d(e,".js-comment-delete-container");(c=t).addEventListener("transitionend",function(e){"opacity"===e.propertyName&&c.remove()},{once:!0}),c.classList.add("fade-out")}}var c;s.value=a?"0":"1"}),j(".js-comment-delete",async function(e,t){await t.text();const n=e.closest(".discussion-post"),s=n&&n.querySelector(".js-comment-pin button[type=submit]");if(s&&s.classList.contains("pinned")){const e=document.querySelector("#pinned_posts_counter");e&&pu(e,-1)}}),u("quote-selection",".js-discussion-post",function(e){const t=b(e.target,".js-inline-comment-form-container");t.classList.add("open"),b(t,".js-write-tab").click(),b(t,".js-comment-field").focus()}),j(".js-comment-subscribe",async function(e,t){await t.text(),gu(e,".js-comment-unsubscribe")}),j(".js-comment-unsubscribe",async function(e,t){await t.text(),gu(e,".js-comment-subscribe")}),j(".js-discussion-post-update",async function(e,t){const n=e.closest(".js-comment");if(!n)return;const s=n.querySelector(".js-comment-title");if(!s)return;const o=await t.json();s.textContent=o.json.title}),async function(){await I;const e=document.querySelector(".js-show-discussion .js-mark-notification-form");e instanceof HTMLFormElement&&E(e)}();let hu=!1;function vu(e){b(document,".js-selected-group-mappings-container").hidden=e}function bu(e){const t=d(e,"form",HTMLFormElement),n=t.querySelector(".js-selected-team-id"),s=n instanceof HTMLInputElement&&n.value,o=b(t,".js-team-privacy-closed"),r=b(t,".js-team-privacy-secret"),i=b(o,"input",HTMLInputElement),a=b(r,"input",HTMLInputElement);r.classList.toggle("text-gray",!!s),a.disabled=!!s,s&&(i.checked=!0)}function wu(e,t){const n=e.value;e.value=t.textContent,t.textContent=n}function ju(e){const t=e.match(/#?(?:L)(\d+)((?:C)(\d+))?/g);if(t){if(1===t.length){const e=Lu(t[0]);if(!e)return;return Object.freeze({start:e,end:e})}if(2===t.length){const e=Lu(t[0]),n=Lu(t[1]);if(!e||!n)return;return ku(Object.freeze({start:e,end:n}))}}else;}function yu(e){return{blobRange:ju(e),anchorPrefix:function(e){const t=e.match(/(file-.+?-)L\d+?/i);return t?t[1]:""}(e)}}function Eu({anchorPrefix:e,blobRange:t}){return t?`#${e}${function(e){const{start:t,end:n}=ku(e);return null!=t.column&&null!=n.column?`L${t.line}C${t.column}-L${n.line}C${n.column}`:t.line===n.line?`L${t.line}`:`L${t.line}-L${n.line}`}(t)}`:"#"}function Lu(e){const t=e.match(/L(\d+)/),n=e.match(/C(\d+)/);return t?Object.freeze({line:parseInt(t[1]),column:n?parseInt(n[1]):null}):null}function Tu(e,t,n){const s=[null,0],o=n(e.line);if(!o)return s;if(null==e.column)return[o,-1];let r=e.column-1;const i=function e(t){if(t.nodeType===Node.TEXT_NODE)return[t];if(!t.childNodes||!t.childNodes.length)return[];let n=[];for(const s of t.childNodes)n=n.concat(e(s));return n}(o);for(let a=0;axu(t,e));if(n){const e=document.createElement("span");e.classList.add("highlighted"),function(e,t){t.appendChild(e.extractContents()),e.insertNode(t)}(n,e)}}}function Hu(){const e=yu(window.location.hash);Su(e),function(){const e=document.querySelector(".js-file-line-actions");if(!e)return;const t=document.querySelectorAll(".js-file-line.highlighted"),n=t[0];if(n){!function(e){const t=[];for(const s of e)t.push(s.textContent);const n=document.getElementById("js-copy-lines");if(n instanceof ClipboardCopyElement){n.textContent=`Copy ${w(e.length,"line")}`,n.value=t.join("\n");const s=`Blob, copyLines, numLines:${e.length.toString()}`;n.setAttribute("data-ga-click",s)}}(t),function(e){const t=document.getElementById("js-view-git-blame");if(!t)return;t.setAttribute("data-ga-click",`Blob, viewGitBlame, numLines:${e.toString()}`)}(t.length);const s=function(e){const t=document.querySelector(".js-permalink-shortcut");if(t instanceof HTMLAnchorElement){const n=`${t.href}${window.location.hash}`,s=document.getElementById("js-copy-permalink");if(s instanceof ClipboardCopyElement){s.value=n;const t=`Blob, copyPermalink, numLines:${e.toString()}`;s.setAttribute("data-ga-click",t)}return n}}(t.length);s&&function(e,t){const n=document.getElementById("js-new-issue");if(n instanceof HTMLAnchorElement){if(!n.href)return;const s=new URL(n.href,window.location.origin),o=new URLSearchParams(s.search.slice(1));o.set("permalink",e),s.search=o.toString(),n.href=s.toString(),n.setAttribute("data-ga-click",`Blob, newIssue, numLines:${t.toString()}`)}}(s,t.length),e.style.top=`${n.offsetTop-2}px`,e.classList.remove("d-none")}else e.classList.add("d-none")}();const{blobRange:t,anchorPrefix:n}=e,s=t&&xu(n,t.start.line);if(!Au&&s){s.scrollIntoView(),d(s,".blob-wrapper, .js-blob-wrapper").scrollLeft=0}Au=!1}function Cu(e){Re(e),ni(e)}async function qu(e,t){let n;if(t){const s="R"===t.slice(-1)?"data-right-range":"data-left-range",o=e.getAttribute(s)||"";n=t+parseInt(o.split("-")[0],10)}else n=e.hash.slice(1);const s=p(e,"data-url"),o=new URL(s,window.location.origin),r=new URLSearchParams(o.search.slice(1));r.append("anchor",n),o.search=r.toString();const i=await R(document,o),a=d(e,".js-expandable-line"),c=function(e,t){const n=e.nextElementSibling;return n instanceof HTMLElement&&n.matches(t)?n:null}(a,".file-diff-line");c?se(c,()=>{a.replaceWith(i)}):a.replaceWith(i)}function Iu(e,t,n,s){const o=parseInt(n,10),r=parseInt(s,10);return v(e,".js-expand",HTMLAnchorElement).filter(e=>{const n="R"===t?"data-right-range":"data-left-range",s=(e.getAttribute(n)||"").split("-"),i=parseInt(s[0],10),a=parseInt(s[1],10);return i<=o&&o<=a||(o<=i&&a<=r||i<=r&&r<=a)})}function _u(e,t){const n=e.nextElementSibling;return n&&n.matches(t)?n:null}function $u(e){const t=e.querySelector(".js-toggle-file-notes");t instanceof HTMLInputElement&&$(t,!0)}function Du(){for(const e of document.querySelectorAll(".file .js-inline-comments-container")){const t=e.querySelectorAll(".js-comments-holder > *").length>0,n=e.querySelector(".js-inline-comment-form-container"),s=!!n&&n.classList.contains("open");t||s||e.remove()}}function Bu(e){const t=b(document,e).firstElementChild;if(!t)throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:200");const n=t.cloneNode(!0),s=n.querySelector("textarea");return s instanceof HTMLTextAreaElement&&(s.value=""),n}function Ru(e,t){const n=["type","path","position","line","side","original-line","start_line","start_position","start_side"];for(const a of n){const n=e.elements.namedItem(a);if(n instanceof HTMLInputElement){const e=t.getAttribute(`data-${a}`)||"";n.value=e}}const s=t.getAttribute("data-position")||"",o=t.getAttribute("data-anchor")||"",r=b(e,".js-comment-field"),i=r.id.replace(/^r\d+ /,"").replace("${anchor}",o).replace("${position}",s);for(const a of e.querySelectorAll(`[for="${r.id}"]`))a.setAttribute("for",i);r.id=i}function Nu(e){return Math.floor(e/2)}function Pu(e,t){const n=e.parentElement;if(!n)return;const s=n.children;let o;if(4===s.length)for(let r=0,i=s.length;r0&&n===s)}function Wu(e){const t=v(document,".js-hook-event-checkbox",HTMLInputElement);for(const n of t)n.checked=n.matches(e)}ae(function(){if(document.querySelector(".js-file-line-container")){setTimeout(Hu,0);const e=window.location.hash;for(const t of document.querySelectorAll(".js-update-url-with-hash"))if(t instanceof HTMLAnchorElement)t.hash=e;else if(t instanceof HTMLFormElement){const n=new URL(t.action,window.location.origin);n.hash=e,t.action=n.toString()}}}),u("click",".js-line-number",function(e){if(!(e instanceof MouseEvent))throw new Error("invariant: expected click event to be MouseEvent -- app/assets/modules/github/pages/blob/lines.js:184");const t=yu(e.currentTarget.id),{blobRange:n}=t;if(!n)throw new Error("invariant: expected line number clicks to match range -- app/assets/modules/github/pages/blob/lines.js:189");const s=ju(window.location.hash);s&&e.shiftKey&&(t.blobRange={start:s.start,end:n.end}),function(e){const t=window.scrollY;Au=!0,e(),window.scrollTo(0,t)}(()=>{window.location.hash=Eu(t)})}),u("submit",".js-jump-to-line-form",function(e){const t=b(e.currentTarget,".js-jump-to-line-field",HTMLInputElement).value.replace(/[^\d-]/g,"").split("-").map(e=>parseInt(e,10)).filter(e=>e>0).sort((e,t)=>e-t);t.length&&(window.location.hash=`L${t.join("-L")}`),e.preventDefault()}),g(".js-csv-filter-field",function(e){if(!(e.target instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pages/blob/csv.js:4");const t=e.target.value.toLowerCase();for(const n of document.querySelectorAll(".js-csv-data tbody tr"))n.hidden=!!t&&!n.textContent.toLowerCase().includes(t)}),u("navigation:keydown",".js-commits-list-item",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pages/commits.js:6");"c"===e.detail.hotkey&&b(e.target,".js-navigation-open").click()}),ae(function(){const e=function(e){if(!e)return;const t=Yl(e);if(!t)return;const n=t[1],s=t[2],o=t[3],r=t[5];return{anchor:n,side:s,line:o,lastLine:r,hashFragment:n+s+o,partialHashFragment:n+s}}(window.location.hash);e&&(G(document,e.hashFragment)&&!e.lastLine||async function e(t,n){const{anchor:s,side:o,line:r,lastLine:i,hashFragment:a,partialHashFragment:c}=t;const l=G(document,s);if(!l)return;const u=l.nextElementSibling;if(!u)return;const d=Iu(u,o,r,i);if(!d.length){const e=G(document,a);if(e)return void Cu(e);const t=u.querySelector(".js-diff-load-container");if(!t)return;try{await ai(t);const e=G(document,a);e instanceof HTMLElement&&Cu(e)}catch(Lh){Cu(u)}return}await function(e,t){return Promise.all(e.map(e=>qu(e,t)))}(d,c);const m=G(document,a);const f=Iu(u,o,r,i);f.length?e(t,n):m?Cu(m):n<1&&e(t,n+1)}(e,0))}),u("click",".js-expand",function(e){if(e.preventDefault(),!(e.currentTarget instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/pages/diffs/expander.js:123");qu(e.currentTarget,null)}),u("click",".js-add-single-line-comment",function(e){const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:15");$u(d(t,".file"));const n=function(e){const t=d(e,"tr"),n=_u(t,".js-inline-comments-container");if(n instanceof Element){const e=b(t,"button.js-add-line-comment"),s=Array.from(n.querySelectorAll(".js-inline-comment-form")).pop();return s instanceof HTMLFormElement&&Ru(s,e),n}}(t)||function(e){const t=d(e,"tr"),n=Bu("#js-inline-comments-single-container-template"),s=n.querySelector(".js-inline-comment-form");s instanceof HTMLFormElement&&Ru(s,e);return t.after(n),n}(t);uu(Array.from(n.querySelectorAll(".js-line-comments")).pop())}),u("click",".js-add-split-line-comment",function(e){const t=e.currentTarget;$u(d(t,".file"));const n=d(t,"tr"),s="addition"===t.getAttribute("data-type")?"js-addition":"js-deletion",o=function(e,t,n){const s=e.querySelector(`.js-line-comments.${t}`);if(s){const e=Array.from(s.querySelectorAll(".js-inline-comment-form")).pop();if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:225");return Ru(e,n),s}const o=Bu("#js-inline-comments-split-form-container-template");o.classList.add(t);const r=o.querySelector(".js-inline-comment-form");r instanceof HTMLFormElement&&Ru(r,n);const i=e.querySelectorAll(`.${t}`);i[i.length-1].after(o);for(const a of i)a.remove();return o}(function(e){let t=_u(e,".js-inline-comments-container");return t||(t=Bu("#js-inline-comments-split-container-template"),e.after(t),t)}(n),s,t);uu(Array.from(o.querySelectorAll(".js-line-comments")).pop())}),j(".js-inline-comment-form",async function(e,t){let n;try{n=await t.json()}catch(a){if(a.response){let t;try{t=a.response.json}catch(c){}if(t)return void function(e,t){const n=b(e,".js-comment-form-error");let s;s=t.errors?Array.isArray(t.errors)?t.errors.join(", "):t.errors:"There was an error posting your comment.";n.textContent=s,n.style.display="block",n.classList.remove("d-none")}(e,t)}throw a}const s=n.json,o=s.inline_comment,r=e.closest(".js-line-comments");if(o){if(!r)throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:105");b(r,".js-comments-holder").append(Me(document,o))}const i=s.inline_comment_thread;if(i){if(!r)throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:113");r.replaceWith(Me(document,i))}du(e)}),document.addEventListener("session:resume",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pages/diffs/line-comments.js:167");!function(e){const[t,n]=e.match(/^new_inline_comment_(?:discussion|diff)_(?:[\w-]+)_(\d+)_(\d+)$/)||[];if(!t)return;const s=document.querySelector(`.js-inline-comment-form input[name='in_reply_to'][value='${n}']`);if(!s)return;const o=s.closest(".js-line-comments");o&&uu(o)}(e.detail.targetId),function(e){const[t,n]=e.match(/^new_inline_comment_diff_(?:[\w-]+)_(\d+)$/)||[];if(!t)return;const s=document.querySelector(`.js-add-line-comment[data-anchor='${t}'][data-position='${n}']`);s&&s.click()}(e.detail.targetId)}),r(".js-comment",{remove:Du}),document.addEventListener("inlinecomment:collapse",()=>{Du()}),r(".diff-table",function(e){let t=null;function n(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/pages/diffs/line-highlight.js:41");t&&Pu(t,!1),t=null}function s(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/pages/diffs/line-highlight.js:51");t&&Pu(t,!1),e.target instanceof HTMLElement&&(t=e.target.closest("td.blob-code"))&&Pu(t,!0)}return{add:function(){e.addEventListener("mouseenter",n),e.addEventListener("mouseleave",n),e.addEventListener("mouseover",s)},remove:function(){e.removeEventListener("mouseenter",n),e.removeEventListener("mouseleave",n),e.removeEventListener("mouseover",s)}}}),u("click",".js-rich-diff.collapsed .js-expandable",function(e){e.preventDefault();const t=e.target.closest(".js-rich-diff");if(!t)throw new Error("invariant: app/assets/modules/github/pages/diffs/prose-diff.js:6");t.classList.remove("collapsed")}),u("click",".js-show-rich-diff",function(e){const t=e.currentTarget.closest(".js-warn-no-visible-changes");if(!t)return;t.classList.add("d-none");const n=t.parentElement;if(!n)throw new Error("invariant: app/assets/modules/github/pages/diffs/prose-diff.js:16");const s=n.querySelector(".js-no-rich-changes");s&&s.classList.remove("d-none")}),r("meta[name=diff-view]",{add:Fu,remove:Fu}),r(".js-file-diff-split",{add:Fu,remove:Fu}),r(".js-compare-tab.selected",{add:Fu,remove:Fu}),r(".wants-full-width-container",{add:Fu,remove:Fu}),u("change",".js-toggle-file-notes",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pages/diffs/toggle-file-notes.js:11");d(t,".file").classList.toggle("show-inline-notes",t.checked)}),u("click",".js-toggle-all-file-notes",function(e){const t=v(document,".js-toggle-file-notes",HTMLInputElement),n=t.some(e=>e.checked);for(const s of t)$(s,!n);e.preventDefault()}),r(".js-inline-comments-container",function(e){let t;const n=e.closest(".file");if(n){return{add:t=function(){const e=null!=n.querySelector(".js-inline-comments-container");n.classList.toggle("has-inline-notes",e)},remove:t}}}),u("change",".js-toggle-file-check-annotations",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pages/diffs/toggle-check-annotations.js:9");const n=d(t,".file").querySelectorAll(".js-inline-annotations");for(const s of n)s.hidden=!t.checked}),r("td.js-line-comments.is-collapsed",{add:Ou,remove:Ou}),r(".js-hook-url-field",{constructor:HTMLInputElement,add(e){function t(){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/pages/hooks.js:16");let n;try{n=new URL(e.value)}catch(Lh){}const s=t.querySelector(".js-invalid-url-notice");s&&(s.hidden=!!(""===e.value||n&&/^https?:/.test(n.protocol)));const o=t.querySelector(".js-insecure-url-notice");o&&n&&e.value&&(o.hidden=/^https:$/.test(n.protocol)),b(t,".js-ssl-hook-fields").hidden=!(n&&"https:"===n.protocol)}M(e,t),t()}}),u("change",".js-hook-event-choice",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pages/hooks.js:58");const n=t.checked&&"custom"===t.value,s=t.closest(".js-hook-events-field");if(s&&s.classList.toggle("is-custom",n),t.checked)if(n){b(document,".js-hook-wildcard-event",HTMLInputElement).checked=!1}else"push"===t.value?Wu('[value="push"]'):"all"===t.value&&Wu(".js-hook-wildcard-event")}),u("details:toggled",".js-hook-secret",function(e){const t=e.currentTarget,n=b(t,"input[type=password]",HTMLInputElement);t.classList.contains("open")&&n.focus()}),u("click",".js-hook-deliveries-pagination-button",async function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/pages/hooks.js:88");t.disabled=!0;const n=t.parentElement;if(!n)throw new Error("invariant: app/assets/modules/github/pages/hooks.js:91");const s=p(t,"data-url");n.before(await R(document,s)),n.remove()}),j(".js-redeliver-hook-form",async function(e,t){let n;try{n=await t.html()}catch(i){if(!e.parentElement)throw new Error("invariant: app/assets/modules/github/pages/hooks.js:104");return void e.classList.add("failed")}const s=e.getAttribute("data-delivery-guid")||"",o=b(document,`.js-hook-delivery-container[data-delivery-guid="${s}"]`),r=o.parentElement;if(!r)throw new Error("invariant: app/assets/modules/github/pages/hooks.js:112");o.replaceWith(n.html),b(r,"poll-include-fragment").addEventListener("load",function(){const e=b(r,".js-hook-delivery-container"),t=b(r,".js-item-status"),n=e.getAttribute("data-status-class");t.classList.remove("success","pending","failure"),n&&t.classList.add(n);const s=r.querySelector(".js-item-status-tooltip"),o=e.getAttribute("data-status-message");s&&o&&s.setAttribute("aria-label",o)})}),j(".js-test-hook-form",async function(e,t){const n=b(document,".js-test-hook-message");n.classList.remove("error","success");try{await t.text()}catch(s){n.classList.add("error");const e=b(n,".js-test-hook-message-errors");if(null!=s.response){const t=await s.response.json();e.textContent=t.errors}else e.textContent=e.getAttribute("data-network-error-message")||"";return}n.classList.add("success")}),j(".js-toggler-container .js-set-approval-state",async function(e,t){const n=d(e,".js-toggler-container");n.classList.add("loading");const s=await t.json();"approved"===s.json.approval_state?n.classList.add("on"):"denied"===s.json.approval_state&&(n.classList.add("revoked"),n.classList.remove("on")),n.classList.remove("loading")}),j(".js-request-access-approval-form",async function(e,t){await t.text();const n=p(e,"data-container-id");b(document,`#${n}`).classList.add("on")}),r(".js-suggested-usernames-container",function(e){const t=v(e,".js-suggested-username",HTMLInputElement),n=document.querySelector(".js-signup-form");if(n&&0!==t.length)for(const s of t)n.appendChild(s)}),h(".js-email-notice-trigger",function(e){const t=v(document,".js-email-notice");for(const n of t)n.classList.add("notice-highlight");e.addEventListener("blur",function(){for(const e of t)e.classList.remove("notice-highlight")})}),r(".js-plan-choice:checked",{add(e){const t=e.closest(".plan-row");t&&t.classList.add("selected")},remove(e){const t=e.closest(".plan-row");t&&t.classList.remove("selected")}}),r(".js-setup-organization:checked",{add(){const e=b(document,".js-choose-plan-submit");e.getAttribute("data-default-text")||e.setAttribute("data-default-text",e.textContent),e.textContent=e.getAttribute("data-org-text")||""},remove(){const e=b(document,".js-choose-plan-submit");e.textContent=e.getAttribute("data-default-text")||""}});const zu=new WeakMap;function Uu({target:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/pages/signup.js:84");const t=d(e,"form");if(e.closest("input[type=text]")&&!zu.get(t)){const e=b(t,".js-signup-source",HTMLInputElement);ve({category:"Signup",action:"Attempt",label:e.value}),zu.set(t,!0)}}function Vu(){const e=b(document,".js-password-with-confirmation",HTMLInputElement),t=b(document,".js-password-confirm",HTMLInputElement);t.value!==e.value?function(e){const t=d(e,".js-form-group");t.classList.add("errored");const n=e.getAttribute("data-validity-message");if(n){e.setCustomValidity(n);const t=d(e,"form",HTMLFormElement);Ms(t)}const s=t.querySelector(".error"),o=e.getAttribute("data-error-message");if(!s&&o){const e=document.createElement("dd");e.classList.add("error"),e.innerHTML=o,t.appendChild(e)}}(t):function(e){const t=d(e,".js-form-group");e.setCustomValidity(""),t.classList.remove("errored"),Ms(d(e,"form",HTMLFormElement));const n=t.querySelector(".error");n&&t.removeChild(n)}(t)}let Ku;r(".js-signup-form",{subscribe:e=>q(e,"input",Uu)}),r(".js-octocaptcha-parent",function(e){if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/pages/signup.js:99");const t=b(e,".js-octocaptcha-spinner"),n=b(e,".js-octocaptcha-success"),s=b(e,".js-octocaptcha-token",HTMLInputElement),o=b(e,".js-octocaptcha-form-submit",HTMLButtonElement),r=b(e,".js-octocaptcha-frame-container"),i=b(e,".js-octocaptcha-frame"),a=s.getAttribute("data-octocaptcha-url");let c="true"===e.getAttribute("data-redirect-after-solved"),l=!1;const u=()=>{l||(l=!0,t.classList.add("d-none"),n.classList.remove("d-none"),m())},d=()=>{if(l)return;const t=document.createElement("input");t.type="hidden",t.id="error_loading_captcha",t.name="error_loading_captcha",t.value="1",c=!1,e.appendChild(t),u()},m=()=>{e.checkValidity()&&(o.disabled=!1,c&&o.click())};setTimeout(d,2e4),i.addEventListener("error",d),window.addEventListener("message",e=>{if(e.origin!==a)return;const n=e.data&&e.data.event;"captcha-loaded"===n?l||(l=!0,t.classList.add("d-none"),r.classList.remove("v-hidden","zero-height")):"captcha-complete"===n?(s.value=e.data.sessionToken,(()=>{const e=r.getAttribute("data-ga-event-category");e&&ve({category:e,action:"success",label:"captcha verified"})})(),m()):"captcha-suppressed"===n&&u()})}),r(".js-survey-answer-choice:checked",{add(e){const t=e.closest(".js-answer-choice");t&&(t.classList.remove("border-black-fade","bg-gray-light"),t.classList.add("border-blue","bg-white"))},remove(e){const t=e.closest(".js-answer-choice");t&&(t.classList.remove("border-blue","bg-white"),t.classList.add("border-black-fade","bg-gray-light"))}}),r(".js-other-field:checked",{add(e){const t=d(e,".js-answer");b(t,".js-specify-field",HTMLInputElement).hidden=!1},remove(e){const t=d(e,".js-answer");b(t,".js-specify-field",HTMLInputElement).hidden=!0}}),r(".js-allow-multiple:checked",{constructor:HTMLInputElement,add(e){const t=parseInt(e.getAttribute("data-max-choices")),n=d(e,".js-question"),s=v(n,".js-allow-multiple",HTMLInputElement);if(s.filter(e=>!0===e.checked).length>=t)for(const o of s)!1===o.checked&&(o.disabled=!0)},remove(e){const t=d(e,".js-question");for(const n of v(t,".js-allow-multiple",HTMLInputElement))n.disabled=!1}}),m("keyup",".js-password-with-confirmation",()=>{""!==b(document,".js-password-confirm",HTMLInputElement).value&&Vu()}),m("keyup",".js-password-confirm",Vu);let Yu=null;function Xu(e){const{item:t,oldIndex:n}=e,{parentNode:s}=t;if(!(s instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/pinned-issue-reordering.js:19");Yu=s.children[n+1]}async function Ju(e){const{oldIndex:t,newIndex:n,item:s}=e;if(t===n)return;const o=d(s,".js-pinned-issues-reorder-form",HTMLFormElement),r=d(o,".js-pinned-issues-reorder-container"),i=b(r,".js-pinned-issues-spinner");i.style.display="inline-block",Ku.option("disabled",!0);try{await S(o.action,{method:o.method,body:new FormData(o)}),i.style.display="none",Ku.option("disabled",!1)}catch(Lh){const t=s.parentNode;if(!t)throw new Error("invariant: app/assets/modules/github/pinned-issue-reordering.js:49");Yu?t.insertBefore(s,Yu):t.appendChild(s)}}r(".js-pinned-issues-reorder-list",function(e){Ku=Ie.create(e,{animation:150,item:".js-pinned-issue-list-item",handle:".js-pinned-issue-reorder",onUpdate:Ju,onStart:Xu,chosenClass:"is-dragging"})}),u("submit",".js-pinned-issues-reorder-form",function(e){e.preventDefault()}),u("click",".js-pinned-issue-list-item .js-sortable-button",function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/pinned-issue-reordering.js:75");ml(e,d(e,".js-pinned-issue-list-item"),Ju)});let Gu=null;u("pjax:click",".js-pjax-capture-input",function(){Gu=function(e){const t=e.createElement("textarea");if(t.style.position="fixed",t.style.top="0",t.style.left="0",t.style.opacity="0",!e.body)throw new Error("unconstructed document.body");return e.body.appendChild(t),t.focus(),()=>(t.blur(),t.remove(),t.value)}(document)}),u("pjax:end","#js-repo-pjax-container",function(){if(Gu){const e=Gu(),t=document.querySelector(".js-pjax-restore-captured-input");t instanceof HTMLInputElement&&e&&$(t,e),Gu=null}}),u("pjax:click",".js-pjax-history-navigate",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pjax/history-navigate.js:11");e.currentTarget.href===Ne()?(history.back(),e.detail.relatedEvent.preventDefault(),e.preventDefault()):e.currentTarget.href===Pe()&&(history.forward(),e.detail.relatedEvent.preventDefault(),e.preventDefault())}),r("link[rel=pjax-prefetch]",{constructor:HTMLLinkElement,initialize(e){const t=Fe(e,{headers:{Purpose:"prefetch"}});Oe(e,t)}});class PreciseTimeAgoElement extends RelativeTimeElement{connectedCallback(){Qu.push(this),Zu||(ed(),Zu=setInterval(ed,1e3))}disconnectedCallback(){const e=Qu.indexOf(this);-1!==e&&Qu.splice(e,1),Qu.length||(clearInterval(Zu),Zu=null)}getFormattedDate(){const e=this.date;if(!e)return;if(!(e instanceof Date))throw new Error("invariant: app/assets/modules/github/precise-time-ago-element.js:39");const t=(new Date).getTime()-e.getTime(),n=Math.floor(t/1e3),s=Math.floor(n/60),o=Math.floor(s/60),r=Math.floor(o/24),i=n-60*s,a=s-60*o;return s<1?`${n}s`:o<1?`${s}m ${i}s`:r<1?`${o}h ${a}m ${i}s`:`${r}d ${o-24*r}h ${a}m ${i}s`}}const Qu=[];let Zu;function ed(){for(const e of Qu)e.textContent=e.getFormattedDate()||""}window.customElements.get("precise-time-ago")||(window.PreciseTimeAgoElement=PreciseTimeAgoElement,window.customElements.define("precise-time-ago",PreciseTimeAgoElement)),r("body.js-print-popup",()=>{window.print(),setTimeout(window.close,1e3)}),u("click",".js-new-user-contrib-example",async function(e){const t=b(document,".js-calendar-graph");if(t.classList.contains("sample-graph"))return;t.classList.add("sample-graph");const n=p(e.currentTarget,"data-url");let s;try{s=await S(n)}catch(Lh){return void t.classList.remove("sample-graph")}const o=document.createElement("div");o.innerHTML=s;const r=t.querySelector(".js-calendar-graph-svg");if(!r)throw new Error("invariant: app/assets/modules/github/profile/calendar-sample.js:29");r.replaceWith(o.children[0])});let td=null;function nd(){const e=b(document,".js-calendar-graph"),t=p(e,"data-url");return new URL(t,window.location.origin)}function sd(e){const{target:t}=e;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/profile/contributions.js:56");t.matches("rect.day")&&(od(),function(e){const t=document.body;if(!t)throw new Error("invariant: app/assets/modules/github/profile/contributions.js:87");const n=p(e,"data-date"),s=function(e,t){const n=`${rd[t.getUTCMonth()].slice(0,3)} ${t.getUTCDate()}, ${t.getUTCFullYear()}`,s=0===e?"No":ye(e),o=document.createElement("div");o.classList.add("svg-tip","svg-tip-one-line"),o.style.pointerEvents="none";const r=document.createElement("strong");return r.textContent=`${s} ${w(e,"post")}`,o.append(r,` on ${n}`),o}(parseInt(e.getAttribute("data-count")),pd(n));t.appendChild(s);const o=e.getBoundingClientRect(),r=o.left+window.pageXOffset-s.offsetWidth/2+o.width/2,i=o.bottom+window.pageYOffset-s.offsetHeight-2*o.height;s.style.top=`${i}px`,s.style.left=`${r}px`}(t))}function od(){const e=document.querySelector(".svg-tip");e&&e.remove()}r(".js-calendar-graph-svg",function(e){const t=d(e,".js-calendar-graph");t.addEventListener("mouseover",sd),t.addEventListener("mouseout",od);let n=t.getAttribute("data-from");n&&(n=td=pd(n));let s=t.getAttribute("data-to");s&&(s=pd(s))}),u("click",".js-calendar-graph rect.day",function(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/profile/contributions.js:37");const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/profile/contributions.js:39");const n=d(t,".js-calendar-graph"),s=p(n,"data-org"),o=p(t,"data-date");t.classList.contains("active")?vd(hd()):function(e,t,n){let s,o;if(td&&t){const t=td.getTime(),n=26784e5,r=t-n,i=t+n;[s,o]=e>td?[td,e]:[e,td],s=new Date(Math.max(s.getTime(),r)),o=new Date(Math.min(o.getTime(),i)),td=null}else td=o=s=e;ld(s,o);const r=nd(),i=ad(r.search.slice(1),{from:s,to:o,org:n});i.append("tab","overview"),r.search=i.toString(),id(r.toString())}(pd(o),e.shiftKey,s)});const rd=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];async function id(e){const t=document.getElementById("js-contribution-activity");if(!t)return;t.classList.add("loading");const n=await R(document,e);t.classList.remove("loading"),t.innerHTML="",t.append(n)}function ad(e,t){const n=new URLSearchParams(e);n.delete("from"),n.delete("to"),n.delete("org");let s=t.fromStr;t.from&&(s=fd(t.from)),s&&n.append("from",s);let o=t.toStr;t.to&&(o=fd(t.to)),o&&n.append("to",o);const r=t.org;return r&&n.append("org",r),n}async function cd(e,t,n){const s=b(document,".js-calendar-graph"),o=p(s,"data-graph-url"),r=new URL(o,window.location.origin),i=ad(r.search.slice(1),{from:e,to:t,org:n});r.search=i.toString();const a=await R(document,r.toString());b(document,".js-yearly-contributions").replaceWith(a)}function ld(e,t){const n=b(document,".js-calendar-graph"),s=n.querySelectorAll("rect.day");for(const r of s)r.classList.remove("active");if(n.classList.remove("days-selected"),e||t){n.classList.add("days-selected");for(const e of s)o(e)&&e.classList.add("active")}function o(n){const s=pd(n.getAttribute("data-date")||"").getTime();return e&&t?e.getTime()<=s&&s<=t.getTime():e?s===e.getTime():void 0}}function ud(){const e=b(document,".js-calendar-graph").querySelectorAll("rect.active"),t=e[0],n=e[e.length-1],s=t&&p(t,"data-date"),o=n&&p(n,"data-date");if(s&&o)return{first:s,last:o}}function dd(){const e=ud()||function(){const e=new URLSearchParams(window.location.search.slice(1)),t=e.get("from"),n=e.get("to");if(t&&n)return{first:t,last:n}}()||function(){const e=new URL(hd(),window.location.origin),t=new URLSearchParams(e.search.slice(1)),n=t.get("from"),s=t.get("to");if(n&&s)return{first:n,last:s}}();if(!e)throw new Error("invariant: app/assets/modules/github/profile/contributions.js:259");return e}function md(e){return`0${e}`.slice(-2)}function fd(e){return`${e.getUTCFullYear()}-${md(e.getUTCMonth()+1)}-${md(e.getUTCDate())}`}function pd(e){const[t,n,s]=e.split("-").map(e=>parseInt(e,10));return new Date(Date.UTC(t,n-1,s))}async function gd(e){const t=ud(),n=function(){const e=b(document,".js-calendar-graph");return{first:p(e,"data-from"),last:p(e,"data-to")}}(),s=new Date(n.first),o=new Date(n.last);if(await cd(s,o,e),t){ld(new Date(t.first),new Date(t.last))}}function hd(){return b(document,".js-profile-timeline-year-list .js-year-link.selected",HTMLAnchorElement).href||""}function vd(e){const t=new URL(e,window.location.origin).search,n=new URLSearchParams(t.slice(1)),s=n.get("org"),o=n.get("from"),r=n.get("to");if(!o||!r)throw new Error("invariant: app/assets/modules/github/profile/contributions.js:408");const i=new Date(o),a=new Date(r);cd(i,a,s);const c=new nd,l=ad(c.search.slice(1),{from:i,to:a,org:s});l.append("tab","overview"),c.search=l.toString(),id(c.toString())}function bd(e){const t=e.closest(".js-details-container");t&&t.classList.add("open");const n=e.getBoundingClientRect(),s=window.scrollY+n.top-62-10;window.scrollTo(0,s)}function wd(e){b(document,".js-profile-editable-area").hidden=e,b(document,".js-profile-editable-form").hidden=!e,b(document,".js-profile-editable-error").textContent=""}u("click",".js-org-filter-link",function(e){e.stopPropagation(),e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/profile/contributions.js:342");const n=d(t,".js-org-filter-links-container").querySelector(".js-org-filter-link.selected"),s=new URL(t.href,window.location.origin),o=new URLSearchParams(s.search.slice(1)),r=o.get("org"),i=dd(),a=new Date(i.first),c=new Date(i.last);n&&n.classList.remove("selected"),t!==n&&t.classList.add("selected"),gd(r);const l=nd(),u={org:r,from:null,to:null};o.has("from")&&(u.from=a),o.has("to")&&(u.to=c);const m=ad(l.search.slice(1),u);l.search=m.toString(),id(l.toString()),async function(e,t){const n=document.getElementById("year-list-container");if(!n)return;t.append("year_list","1"),e.search=t.toString();const s=await R(document,e.toString());n.innerHTML="",n.append(s)}(l,m),We(null,"",l.toString())}),u("click",".js-year-link",function(e){e.stopPropagation(),e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/profile/contributions.js:387");const n=d(t,"ul");b(n,".js-year-link.selected").classList.remove("selected"),t.classList.add("selected"),vd(t.href),We(null,"",t.href)}),function(){const e=window.location.hash;if(!e||e.indexOf("#event-")<0)return;const t=e.slice(1,e.length),n=document.getElementById(t);n&&bd(n)}(),window.addEventListener("hashchange",function(e){const t=e.newURL||window.location.href,n=t.slice(t.indexOf("#")+1,t.length),s=document.getElementById(n);s&&(e.stopPropagation(),bd(s))}),j(".js-show-more-timeline-form",async function(e,t){await t.text();const n=document.querySelector(".js-show-more-timeline-form");if(n){const t=p(n,"data-year"),s=b(document,".js-year-link.selected"),o=b(document,`#year-link-${t}`);if(s.classList.remove("selected"),o.classList.add("selected"),t!==e.getAttribute("data-year")){const e=p(n,"data-from"),t=new Date(e),s=p(n,"data-to");cd(t,new Date(s),n.getAttribute("data-org"))}}document.title=e.getAttribute("data-title")||"",We(null,"",e.getAttribute("data-url")||"")});let jd=null;u("click",".js-profile-editable-edit-button",function(){!function(){const e=b(document,".js-user-profile-bio").textContent;"string"==typeof e&&(b(document,".js-user-profile-bio-edit",HTMLTextAreaElement).value=e)}(),wd(!0)}),u("click",".js-profile-editable-cancel",function(){wd(!1)}),u("change",".js-profile-editable-pro-badge",function(e){if(!(e.target instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/profile/inline-editable-profile.js:33");jd={preference:e.target.checked}}),j(".js-profile-editable-form",async(e,t)=>{let n;try{n=await t.html()}catch(s){if(422===s.response.status){b(document,".js-profile-editable-error").textContent=s.response.json.message}return}if(function(e){b(document,".js-profile-editable-area").replaceWith(e)}(n.html),wd(!1),jd){b(document,".js-pro-badge").classList.toggle("d-none",!jd.preference)}});const yd=new WeakMap,Ed=100;async function Ld(e,t){if(t){if((yd.get(e)||0)>Ed)return}const n=e.querySelector(".js-more-pinnable-items-button");if(!n)return;if(!(n instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/profile/pinned-items.js:30");if(n.textContent=p(n,"data-disable-with"),n.disabled=!0,t){const t=yd.get(e)||0;yd.set(e,t+1)}const s=p(n,"data-url"),o=await R(document,s);n.replaceWith(o),function(e){const t=e.querySelector(".js-pinned-items-filter");t&&L(t,"filterable:change")}(e)}async function Td({currentTarget:e}){const t=b(e,".js-pinned-items-selection-list");await f();const n=v(t,"input[type=checkbox]",HTMLInputElement),s=n.filter(e=>e.checked).length,o=parseInt(t.getAttribute("data-max-repo-count"),10);for(const r of n)r.disabled=s===o&&!r.checked;!function(e,t,n){const s=b(e,".js-remaining-pinned-items-count"),o=p(s,"data-remaining-label"),r=n-t;s.textContent=`${r} ${o}`,s.classList.toggle("text-red",r<1)}(d(t,".js-pinned-items-selection-form",HTMLFormElement),s,o)}function kd(e){const t=b(e,".js-pinnable-item");return{name:t.textContent.toLowerCase().trim(),isPinned:b(e,'input[type="checkbox"]',HTMLInputElement).checked,element:e,isRepository:t.classList.contains("js-pinnable-repo"),isGist:t.classList.contains("js-pinnable-gist")}}function Md(e,t,n){if(e.isPinned)return!0;const s=!t||e.name.indexOf(t)>-1,o=e.isRepository&&n.includeRepositories,r=e.isGist&&n.includeGists;return s&&(o||r)}function Ad(e){const t=e.target;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/profile/pinned-items.js:181");const n=d(t,".js-pinned-items-selection-form");let s=null;if(t.classList.contains("js-pinned-items-search")){if(!((s=t)instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/profile/pinned-items.js:187")}else s=b(n,".js-pinned-items-search",HTMLInputElement);const o=s.value.toLowerCase().trim(),r=function(e){if(!function(e){return!!e.querySelector(".js-pinned-items-type-filter")}(e))return{includeRepositories:!0,includeGists:!0};const t=v(e,".js-pinned-items-type-filter:checked",HTMLInputElement),n=t.map(e=>e.value),s=n.indexOf("repository")>-1,o=n.indexOf("gist")>-1;for(const r of t)r.disabled=s!==o;return{includeRepositories:s,includeGists:o}}(n);let i=!1;const a=Array.from(n.querySelectorAll(".js-pinned-items-selection"));for(const c of a){const e=kd(c),t=Md(e,o,r);t&&(i=!0),e.element.hidden=!t}b(n,".js-no-repos-message").hidden=i}let xd;r(".js-more-pinnable-items-button",function(e){const t=d(e,".js-pinned-items-selection-form");(function(e){const t=e.querySelector(".js-pinned-items-filter");if(!t)return!1;if(document.activeElement===t)return!0;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/profile/pinned-items.js:63");return t.defaultValue.trim().length>0})(t)&&Ld(t,!0)}),u("click",".js-more-pinnable-items-button",function(e){const t=e.target;Ld(d(t,".js-pinned-items-selection-form"),!1)}),m("keydown",".js-pinned-items-search",function(e){if(!(e instanceof KeyboardEvent))throw new Error("invariant: app/assets/modules/github/profile/pinned-items.js:214");"Enter"===X(e)&&e.preventDefault()}),h(".js-pinned-items-search",function(e){Ld(d(e,".js-pinned-items-selection-form"),!0)}),g(".js-pinned-items-search",Ad),u("change",".js-pinned-items-filter",Ad),u("search",".js-pinned-items-search",Ad),u("change",".js-pinned-items-selection-form",Td),u("reset",".js-pinned-items-selection-form",Td);let Sd=null;function Hd(e){const{item:t,oldIndex:n}=e,{parentNode:s}=t;if(!(s instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/profile/pinned-item-reordering.js:19");Sd=s.children[n+1]}async function Cd(e){const{oldIndex:t,newIndex:n,item:s}=e;if(t===n)return;const o=d(s,".js-pinned-items-reorder-form",HTMLFormElement),r=d(o,".js-pinned-items-reorder-container"),i=b(r,".js-pinned-items-spinner"),a=b(r,".js-pinned-items-reorder-message");a.textContent="",i.style.display="inline-block",xd.option("disabled",!0);try{await S(o.action,{method:o.method,body:new FormData(o)}),a.textContent=a.getAttribute("data-success-text")||"",i.style.display="none",xd.option("disabled",!1)}catch(Lh){a.textContent=a.getAttribute("data-error-text")||"",i.style.display="none";const t=s.parentNode;if(!t)throw new Error("invariant: app/assets/modules/github/profile/pinned-item-reordering.js:54");Sd?t.insertBefore(s,Sd):t.appendChild(s)}}function qd(e,t){t>0&&(e.textContent=function(e){return e>999?`${(e/1e3).toFixed(1)}k`:e.toLocaleString()}(t))}r(".js-pinned-items-reorder-list",function(e){xd=Ie.create(e,{animation:150,item:".js-pinned-item-list-item",handle:".js-pinned-item-reorder",onUpdate:Cd,onStart:Hd,chosenClass:"is-dragging"})}),u("submit",".js-pinned-items-reorder-form",function(e){e.preventDefault()}),u("click",".js-pinned-item-list-item .js-sortable-button",function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/profile/pinned-item-reordering.js:80");ml(e,d(e,".js-pinned-item-list-item"),Cd)}),r(".js-user-profile-sticky-fields.is-stuck",function(){const e=b(document,".js-user-profile-sticky-bar");return{add(){e.classList.add("is-stuck")},remove(){e.classList.remove("is-stuck")}}}),r(".js-user-profile-follow-button.is-stuck",function(){const e=b(document,".js-user-profile-sticky-bar");return{add(){e.classList.add("is-follow-stuck")},remove(){e.classList.remove("is-follow-stuck")}}}),r(".js-user-profile-following-toggle .js-toggler-container.on",function(){return{add(){const e=document.querySelector(".js-user-profile-following-mini-toggle .js-toggler-container");e&&e.classList.add("on")},remove(){const e=document.querySelector(".js-user-profile-following-mini-toggle .js-toggler-container");e&&e.classList.remove("on")}}}),r(".js-user-profile-following-mini-toggle .js-toggler-container.on",function(){const e=b(document,".js-user-profile-following-toggle .js-toggler-container");return{add(){e.classList.add("on")},remove(){e.classList.remove("on")}}}),r(".js-profile-tab-count-container",function(e){!async function(e){const t=new URL(p(e,"data-url"),window.location.origin),n=new URLSearchParams(t.search.slice(1)),s=e.querySelector(".js-profile-repository-count"),o=e.querySelector(".js-profile-project-count"),r=e.querySelector(".js-profile-package-count"),i=e.querySelector(".js-profile-team-count"),a=e.querySelector(".js-profile-member-count");s&&n.append("repo","1"),o&&n.append("project","1"),r&&n.append("package","1"),i&&n.append("team","1"),a&&n.append("member","1"),t.search=n.toString();const l=await c(t.toString()),u=(await l.json()).data;s&&u.repositories&&qd(s,u.repositories.totalCount),o&&u.projects&&qd(o,u.projects.totalCount),r&&u.registryPackages&&qd(r,u.registryPackages.totalCount),i&&u.teams&&qd(i,u.teams.totalCount),a&&u.members&&qd(a,u.members.totalCount)}(e)});const Id=document.querySelector("meta[name=js-proxy-site-detection-payload]"),_d=document.querySelector("meta[name=expected-hostname]");if(Id instanceof HTMLMetaElement&&_d instanceof HTMLMetaElement&&s(document)){const e={url:window.location.href,expectedHostname:_d.content,documentHostname:document.location.hostname,proxyPayload:Id.content},n=new Error,s={};s.$__=btoa(JSON.stringify(e)),t(n,s)}function $d(e,t,n){const s=Array.from(e.querySelectorAll('[role="menuitem"]'));let o=s.indexOf(t),r=s.indexOf(n);if(-1===o)throw new Error("Couldn't find startIndex in container");if(-1===r)throw new Error("Couldn't find endItem in container");Dd(e),s[r].classList.add("is-last-in-range"),o>r&&([o,r]=[r,o]);for(const i of s.slice(o,r+1))i.classList.add("is-range-selected")}function Dd(e){for(const t of e.querySelectorAll('[role="menuitem"]'))t.classList.remove("is-range-selected","is-last-in-range")}let Bd;function Rd(e){const t=document.querySelector("head .js-site-favicon");t instanceof HTMLLinkElement&&(null==Bd&&(Bd=t.href),t.href=e)}u("details-menu-select",".js-pull-base-branch-menu",function(){const e=b(document,".js-change-base-template",HTMLTemplateElement).content.cloneNode(!0);F({content:e})},{capture:!0}),r(".js-diffbar-commits-menu .js-diffbar-commits-list",{subscribe:function(e){const t=d(e,"details-menu");let n=!1;function s(e){n=e.shiftKey,e.shiftKey&&e.preventDefault()}function o(t){if(!n)return;if(t.preventDefault(),!(t instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/commits-range-selection.js:81");const s=t.detail.relatedTarget;if(!(s instanceof Element))throw new Error("invariant: app/assets/modules/github/pulls/commits-range-selection.js:83");if(s.classList.contains("is-range-selected")){t.stopPropagation();const n=e.querySelectorAll(".is-range-selected"),s=n[0],o=n[n.length-1],r=p(e,"data-range-url"),i=s.getAttribute("data-parent-commit"),a=p(o,"data-commit"),c=i&&a?`${i}..${a}`:a,l=r.replace("$range",c);K({url:l,container:b(document,"#js-repo-pjax-container")})}else t.stopImmediatePropagation(),async function(e,t){function n(n){if(!(n.target instanceof Element))throw new Error("invariant: app/assets/modules/github/pulls/commits-range-selection.js:39");$d(e,t,d(n.target,'[role="menuitem"]'))}$d(e,t,t),e.addEventListener("mouseover",n),await new Promise(e=>window.addEventListener("keyup",e,{once:!0})),e.removeEventListener("mouseover",n),Dd(e)}(e,s)}return e.addEventListener("click",s,{capture:!0}),t.addEventListener("details-menu-select",o),{unsubscribe:()=>{e.removeEventListener("click",s,{capture:!0}),t.removeEventListener("details-menu-select",o)}}}}),u("toggle",".js-diffbar-commits-menu",function(e){const t=e.currentTarget;if(!t.hasAttribute("open"))return;const n=t.querySelector(".in-range");n&&n.focus()},{capture:!0}),u("click",".js-compare-tab",function(e){for(const n of document.querySelectorAll(".js-compare-tab.selected"))n.classList.remove("selected");e.currentTarget.classList.add("selected");for(const n of document.querySelectorAll("#commits_bucket, #files_bucket, #commit_comments_bucket"))n.classList.add("d-none");if(!(e.currentTarget instanceof HTMLAnchorElement))throw new Error("invariant: app/assets/modules/github/pulls/compare.js:19");const t=e.currentTarget.hash;b(document,t).classList.remove("d-none"),e.preventDefault()}),ae(function({target:e}){if(!(e instanceof HTMLElement))return;const t=e.closest("#commits_bucket, #files_bucket, #commit_comments_bucket");t&&t instanceof HTMLElement&&!Z(t)&&b(document,`.js-compare-tab[href="#${t.id}"]`).click()}),u("click",".js-toggle-range-editor-cross-repo",function(){b(document,".js-range-editor").classList.toggle("is-cross-repo")}),u("pjax:click",".js-range-editor",function(e){const t=document.querySelector(".js-compare-pr");if(t&&t.classList.contains("open")){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/compare.js:51");const t=e.detail.options,n=new URL(t.url,window.location.origin);n.search.match(/expand=1/)||(n.search+=`${n.search?"&":""}expand=1`,t.url=n.toString())}}),r(".js-compare-pr.open",{add(){const e=document.body;if(!e)throw new Error("invariant: app/assets/modules/github/pulls/compare.js:64");e.classList.add("is-pr-composer-expanded")},remove(){const e=document.body;if(!e)throw new Error("invariant: app/assets/modules/github/pulls/compare.js:70");e.classList.remove("is-pr-composer-expanded")}}),u("change",".js-collab-checkbox",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pulls/composer.js:8");const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/pulls/composer.js:10");for(const o of t.querySelectorAll(".errored"))o.classList.remove("errored");const n=d(e,".js-collab-option"),s=b(n,".js-status-indicator");s.classList.remove("status-indicator-success","status-indicator-failed"),s.classList.add("status-indicator-loading")}),j(".js-collab-form",async function(e,t){try{await t.text()}catch(n){for(const t of e.querySelectorAll(".status-indicator-loading")){t.classList.remove("status-indicator-loading"),t.classList.add("status-indicator-failed");const e=d(t,".js-collab-option");e.classList.add("errored");const n=b(e,".js-collab-checkbox",HTMLInputElement);n.checked=!n.checked}for(const t of e.querySelectorAll(".status-indicator-success"))t.classList.remove("status-indicator-success");return}for(const s of e.querySelectorAll(".errored"))s.classList.remove("errored");for(const s of e.querySelectorAll(".status-indicator-loading"))s.classList.remove("status-indicator-loading"),s.classList.add("status-indicator-success")}),u("details-menu-selected",".js-pull-request-menu",function(e){const t=b(document,".js-pull-request-button");if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/composer.js:58");const n=b(e.detail.relatedTarget,"span[data-menu-button-text]").textContent;t.textContent=n,t.focus()},{capture:!0}),r(".js-timeline-item > .js-commit-group",{constructor:HTMLElement,add(e){if(e.querySelector(".js-commit-group-header"))return;const t=e.closest(".js-timeline-item");if(!(t instanceof HTMLElement))return;let n=t.previousElementSibling;n instanceof HTMLElement&&(n.classList.contains("js-timeline-item")||(n=n.previousElementSibling)instanceof HTMLElement)&&n.querySelector(".js-commit-group")&&function(e,t){const n=b(e,".js-commit-group-commits"),s=t.querySelectorAll(".js-commit-group-commits > .js-commit");for(const r of s)r.classList.toggle("py-3"),n.appendChild(r);const o=e.querySelector(".js-commit-group-count");o instanceof HTMLElement&&(o.textContent=`${n.querySelectorAll(".js-commit").length}`),t.remove()}(n,t)}}),r("[data-favicon-override]",{add(e){const t=p(e,"data-favicon-override");setTimeout(()=>Rd(t))},remove(){null!=Bd&&Rd(Bd)}}),u("click",".js-file-header .js-details-target",function(e){if(!(e instanceof MouseEvent&&e.altKey&&e.currentTarget instanceof HTMLElement)){const t=d(e.currentTarget,".js-file");return void(t.getBoundingClientRect().top<0&&ni(t))}const{currentTarget:t}=e,n=d(t,".js-details-container");n.addEventListener("details:toggled",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/file-collapsing.js:27");const{open:t}=e.detail;se(n,()=>{for(const e of document.querySelectorAll(".js-file.js-details-container"))e!==n&&(e.classList.toggle("open",t),e.classList.toggle("Details--on",t))}),function(e){if(!document.querySelector(".js-file-filter"))return;Li(e);const t=pi();t&&(t.checked=!e),ui(hi())}(t)},{once:!0})}),ae(()=>{const e=window.location.hash.slice(1);if(!e)return;const t=document.getElementsByName(e)[0];if(!t)return;const n=t.nextElementSibling;n&&n.matches(".js-file.js-details-container")&&(n.classList.add("open"),n.classList.add("Details--on"))}),r(".js-file-header-dropdown",{subscribe:e=>q(e,"toggle",function({currentTarget:e}){if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/pulls/file-collapsing.js:65");const t=e,n=t.hasAttribute("open"),s=d(t,".js-file-header");if(!(s instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/pulls/file-collapsing.js:69");s.classList.toggle("has-open-dropdown",n)})}),u("click",".js-fork-cleanup-select-item",function({currentTarget:e}){const t=d(e,".js-fork-cleanup-select-menu");for(const o of v(t,".js-fork-cleanup-select-item"))o.classList.remove("selected");e.classList.add("selected");const n=d(t,".js-fork-cleanup-button-group"),s=e.getAttribute("data-toggles-button");"branch"===s?(b(n,".js-fork-cleanup-branch-button").classList.remove("d-none"),b(n,".js-fork-cleanup-fork-button").classList.add("d-none")):"fork"===s&&(b(n,".js-fork-cleanup-branch-button").classList.add("d-none"),b(n,".js-fork-cleanup-fork-button").classList.remove("d-none"))});const Nd=["work in progress","draft","wip"];m("keyup",".js-keyword-listener",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pulls/keyword-listener.js:8");const n=t.value.trim().toLowerCase(),s=document.querySelector(".js-upgrade-popover");if(s)for(const o of Nd)if(n.includes(o)){s.hidden=!1;break}}),j(".js-upgrade-dismiss-popover-form",async function(e,t){b(document,".js-upgrade-popover").hidden=!0,await t.text()}),u("details:toggled",".js-pull-merging",function({currentTarget:e}){const t=v(e,".js-merge-pull-request"),n=t.some(Z);for(const s of t)s.classList.toggle("is-dirty",n)}),u("click",".js-merge-box-try-again",async function({currentTarget:e}){const t=b(d(e,".js-pull-merging"),".js-tryable-again",HTMLFormElement);L(t,"submit")}),document.addEventListener("session:resume",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/merge.js:32");const t=document.getElementById(e.detail.targetId);if(t){const e=t.closest(".js-merge-pull-request");if(e){const t=e.closest(".js-details-container");t&&t.classList.add("open")}}}),u("change",".js-merge-button-toggle",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/pulls/merge.js:47");const t=d(e,".js-merge-pr"),n=!e.checked;for(const s of v(t,".js-merge-commit-button",HTMLButtonElement))s.disabled=n}),u("details-menu-selected",".js-merge-method-menu",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/merge.js:60");const t=e.detail.relatedTarget,n=d(t,".js-merge-pr"),s=b(n,".js-merge-pull-request",HTMLFormElement),o=b(n,".js-merge-method-menu-button"),r=o.getAttribute("data-merge-button-class");o.classList.toggle("btn-danger",t.hasAttribute("data-merge-commit-warning")),r&&o.classList.toggle(r,!t.hasAttribute("data-unsafe-rebase"));const i=b(n,".js-merge-title",HTMLInputElement),a=b(n,".js-merge-message",HTMLTextAreaElement);i.defaultValue===i.value&&(i.defaultValue=i.value=p(t,"data-input-title-value"));a.defaultValue===a.value&&(a.defaultValue=a.value=p(t,"data-input-message-value"));n.classList.toggle("is-merging","merge"===t.value),n.classList.toggle("is-squashing","squash"===t.value),n.classList.toggle("is-rebasing","rebase"===t.value);const c=s.classList.contains("js-admin-override-merge")&&"merge"===t.value||s.classList.contains("js-admin-override-squash")&&"squash"===t.value||s.classList.contains("js-admin-override-rebase")&&"rebase"===t.value,l=v(n,".js-admin-override");for(const d of l)d.hidden=!c;const u=c&&!b(n,".js-merge-button-toggle",HTMLInputElement).checked,m=v(n,".js-merge-pull-request .js-merge-commit-button",HTMLButtonElement);for(const d of m)d.type=t.value===d.value?"submit":"button",d.disabled=u;s.classList.toggle("text-red",c);const f=d(n,".js-pull-merging"),g=new URL(p(f,"data-url"),window.location.origin),h=new URLSearchParams(g.search);h.set("merge_type",t.value),g.search=h.toString(),f.setAttribute("data-url",g.toString())},{capture:!0}),u("details:toggled",".js-merge-pr",function(e){const t=e.currentTarget.querySelector(".js-merge-message");t&&L(t,"change")}),r(".branch-action-item.js-details-container.open",{add(e){for(const t of e.querySelectorAll(".js-merge-review-section"))t.setAttribute("open","")},remove(e){for(const t of e.querySelectorAll(".js-merge-review-section"))t.removeAttribute("open")}}),u("toggle",".js-details-container .js-merge-review-section",function({currentTarget:e}){const t=d(e,".js-details-container"),n=t.querySelectorAll(".js-merge-review-section").length,s=t.querySelectorAll(".js-merge-review-section[open]").length,o=s===n;0===s?we(t,!1):o&&we(t,!0)},{capture:!0});let Pd=!1;document.addEventListener("keydown",function(e){"Alt"===e.key&&(Pd=!0)}),document.addEventListener("keyup",function(e){"Alt"===e.key&&(Pd=!1)}),u("click",".js-toggle-outdated-comments",function(e){if(!((e instanceof MouseEvent&&e.altKey||Pd)&&e.currentTarget instanceof HTMLElement))return;const t=e.currentTarget,n=d(t,"details");function s(){const e=n.hasAttribute("open");for(const n of document.querySelectorAll(".js-toggle-outdated-comments"))if(n!==t){d(n,"details").toggleAttribute("open",e)}}setTimeout(()=>{se(t,s)})});const Fd=1e4,Od={};function Wd(e){const t=b(e,".js-presence-users"),n=document.createElement("span");n.classList.add("js-presence-users"),n.classList.add("float-left");for(const s in Od){const e=document.createElement("img");e.alt=s,e.classList.add("avatar"),e.classList.add("participant-avatar"),e.height=26,e.width=26,e.src=`/${s}.png`,n.append(e)}t.replaceWith(n)}let zd,Ud;function Vd(){const e=document.querySelectorAll(".pull-request-ref-restore");for(let t=0;t(function(e){const t=d(e,".js-review-state-classes"),n=t.querySelectorAll(".js-pending-review-comment").length,s=b(document,".js-review-changes");t.classList.toggle("is-review-pending",n>0);for(const o of document.querySelectorAll(".js-pending-review-comment-count"))o.textContent=String(n);for(const o of document.querySelectorAll(".js-pending-comment-count-type"))Ee(n,o);if(n>0){s.textContent=s.getAttribute("data-pending-message")||"";const t=b(e,".js-reviews-toggle");t.classList.add("anim-pulse-in"),t.addEventListener("animationend",()=>t.classList.remove("anim-pulse-in"),{once:!0})}else s.textContent=s.getAttribute("data-message")||""})(e))}function Xd(e){const t=e.getAttribute("ratio");if(!t)throw new Error("invariant: app/assets/modules/github/pulls/reviews.js:129");return t.split("/")}function Jd(e){if(e){const[t,n]=Xd(e),s=parseInt(t)/parseInt(n),o=e.querySelector(".js-review-progress"),r=e.querySelector(".js-review-count");o&&r&&(o.style.width=`${100*s}%`,r.textContent=`${t} / ${n}`)}}u("socket:message",".js-pr-presence",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/pulls/presence.js:58");const t=e.detail.data.who;if(!t)throw new Error("invariant: app/assets/modules/github/pulls/presence.js:60");const n=e.target,s=n.getAttribute("data-me");if(null===s)throw new Error("invariant: app/assets/modules/github/pulls/presence.js:65");const o=n.hasAttribute("data-collab");if(t!==s&&e.detail.data.broadcast&&o){const e=b(n,".js-presence-reply-form");b(e,".js-reply-to").value=t,L(e,"submit")}s!==t&&(Od[t]=e.detail.data.timestamp,Od[t]||Wd(n))}),r(".js-pr-presence",{add(e){zd=setInterval(function(){!function(e){const t=new Date;for(const n in Od){const e=Od[n];t-new Date(1e3*e)>Fd&&delete Od[n]}Wd(e)}(e)},5e3)},remove(){clearInterval(zd);for(const e in Od)delete Od[e]}}),r(".js-presence-announce-form",{add(e){L(e,"submit"),Ud=setInterval(function(){L(e,"submit")},5e3)},remove(){clearInterval(Ud)}}),r(".pull-request-ref-restore",{add:Vd,remove:Vd}),r("#js-pull-restorable",{add:Kd,remove:Kd}),j(".js-inline-comment-form",async function(e,t){await t.text(),Yd()}),j(".js-pending-review-comment .js-comment-delete",async function(e,t){await t.text(),Yd()}),j(".js-resolvable-timeline-thread-form",async function(e,t){try{const s=await t.html();d(e,".js-resolvable-timeline-thread-container").replaceWith(s.html)}catch(n){ee()}}),u("click",".js-resolvable-thread-toggler",function(e){const t=d(e.target,".js-resolvable-timeline-thread-container");d(e.target,".js-resolvable-thread-toggler-container").classList.toggle("border-bottom"),b(t,".js-resolvable-thread-contents").classList.toggle("d-none");for(const n of t.querySelectorAll(".js-resolvable-thread-toggler"))n.classList.toggle("d-none")}),j(".js-toggle-user-reviewed-file-form",async function(e,t){const n=d(e,".js-details-container"),s=!!n.querySelector(".js-reviewed-file"),o=n.classList.contains("open"),r=n.querySelector(".js-file-header"),i=!!r&&60===r.getBoundingClientRect().top;(!s&&o||s&&!o)&&(we(n),i&&ni(n));const a=b(e,".js-reviewed-toggle");s?(a.classList.remove("bg-blue-2","border-blue-light"),a.classList.add("text-gray","border-gray-dark")):(a.classList.remove("text-gray","border-gray-dark"),a.classList.add("bg-blue-2","border-blue-light")),b(a,".js-reviewed-checkbox",HTMLInputElement).disabled=!0;const c=document.querySelector("progress-bar");c instanceof ProgressBarElement&&(s?c.decrement():c.increment());const l=await t.html(),u=e.closest(".js-replace-file-header-review");u&&(u.replaceWith(l.html),n.hasAttribute("data-file-user-viewed")?n.removeAttribute("data-file-user-viewed"):n.setAttribute("data-file-user-viewed","true"))});class ProgressBarElement extends HTMLElement{static get observedAttributes(){return["ratio"]}attributeChangedCallback(e){"ratio"===e&&Jd(this)}connectedCallback(){Jd(this)}increment(){const[e,t]=Xd(this),n=Math.min(parseInt(e)+1,parseInt(t));this.setAttribute("ratio",`${n}/${t}`)}decrement(){const[e,t]=Xd(this),n=Math.min(parseInt(e)-1,parseInt(t));this.setAttribute("ratio",`${n}/${t}`)}}window.customElements.get("progress-bar")||(window.ProgressBarElement=ProgressBarElement,window.customElements.define("progress-bar",ProgressBarElement)),document.addEventListener("pjax:end",function(){for(const e of document.querySelectorAll(".js-pull-refresh-on-pjax"))L(e,"socket:message",{})}),r(".js-multi-line-callout",function(e){const t=document.querySelector(".js-linkable-line-number");if(!t)return;if(d(t,".js-diff-table").offsetHeight<343)return;const n=t.closest("tr");if(!n)return;const s=n.lastElementChild;s&&(e.remove(),s.prepend(e),e.removeAttribute("hidden"))}),u("submit",".js-multi-line-callout",function(e){d(e.target,".js-multi-line-callout").hidden=!0}),r(".js-updating-pull-request-commits-count",{add(e){const t=e.textContent,n=v(document,".js-updateable-pull-request-commits-count");for(const s of n)s.textContent=t}}),(async()=>{if(await Y,window.performance&&window.performance.navigation&&window.performance.navigation.type===window.performance.navigation.TYPE_RELOAD){const e=document.getElementById("js-report-pull-request-refresh");e&&be(e)}})();const Gd="```suggestion",Qd="```",Zd=new RegExp(`${Gd}(?:.*)\n`,"i"),em=new RegExp(`${Qd}(\n|$)`);function tm(e,t){const n=e.slice(0,t).split("\n");return e.split("\n")[n.length-1]}function nm(e){const t=/^(\s+)/.exec(e);return t&&t[0]||""}function sm(e,t,n=0){const s=t.substring(n,t.length),o=e.exec(s);return o?o.index+n:-1}function om(e,t){const n=[];let s=0,o=-1;for(;(o=sm(Zd,e,s))>-1;){s=o+Gd.length;const t=sm(em,e,s);if(-1===t)return!1;s=t+Qd.length,n.push([o,t])}return n.some(e=>t>e[0]&&t{const t=e.classList;return!t.contains("blob-code-marker-cell")&&(t.contains("code-review")||t.contains("blob-code"))}),a="right"===s?i.pop():i.shift();if(a)return b(a,".blob-code-inner").textContent}(e);if(null!=t){const n=d(e,".js-suggested-changes-container");rm(t,b(n,".js-comment-field",HTMLTextAreaElement))}}function hm(e,t){const n=document.querySelectorAll(".js-apply-suggestion-button"),s=b(e,".js-disabled-apply-suggestion-button");for(const o of n){const e=s.cloneNode(!0);bm(e,t),d(o,"details").replaceWith(e)}}function vm(e){const t=document.querySelector(".js-batched-suggested-changes-container");t&&t.classList.add("d-none");for(const n of v(document,".js-apply-single-suggestion",HTMLInputElement))n.classList.remove("d-none"),n.disabled=!0,n.setAttribute("aria-label",e);for(const n of v(document,".js-batched-suggested-changes-add",HTMLInputElement))n.classList.remove("d-none"),n.disabled=!0,n.setAttribute("aria-label",e);for(const n of document.querySelectorAll(".js-batched-suggested-changes-remove"))n.classList.add("d-none");for(const n of document.querySelectorAll(".js-focus-commit-suggestions-form-button"))n.classList.add("d-none");for(const n of document.querySelectorAll(".pending-batched-suggestion-label"))n.classList.add("d-none")}function bm(e,t){e.setAttribute("aria-label",t),e.classList.remove("d-none")}function wm(e,t){const n=b(document,".js-suggested-changes-inline-validation-template").cloneNode(!0);n.classList.remove("js-suggested-changes-inline-validation-template"),b(n,".js-suggested-changes-inline-error-message").textContent=e.trim();const s=t.parentNode;if(!s)throw new Error("invariant: app/assets/modules/github/pulls/suggested-changes.js:142");s.insertBefore(n,t.nextSibling)}function jm(){const e=document.querySelector(".js-batched-suggested-changes-container");e&&setTimeout(()=>(function(e){const t=d(e,".js-review-state-classes").querySelectorAll("[data-pending-batched-suggestion]").length;for(const s of document.querySelectorAll(".js-pending-batched-suggested-changes-count"))s.textContent=String(t);const n=b(document,".js-reenable-add-to-batch").textContent;for(const s of document.querySelectorAll("[data-batched-suggestion-reenable-sibling]"))s.removeAttribute("data-batched-suggestion-reenable-sibling"),s.removeAttribute("disabled"),s.setAttribute("aria-label",n);if(t>0){e.hidden=!1;const t=b(e,".js-batched-suggested-changes-toggle");t.classList.add("anim-pulse-in"),t.addEventListener("animationend",()=>t.classList.remove("anim-pulse-in"),{once:!0});for(const e of document.querySelectorAll(".js-apply-single-suggestion"))e.classList.add("d-none");for(const e of document.querySelectorAll(".js-batched-suggested-changes-add")){const t=d(e,".js-suggested-change-form-container");if("true"===t.getAttribute("data-pending-batched-suggestion")||"true"===t.getAttribute("data-comment-pending")||"true"===t.getAttribute("data-outdated-comment")?e.classList.add("d-none"):e.classList.remove("d-none"),"true"===e.getAttribute("data-batched-suggestion-disabled-by-sibling")){e.removeAttribute("data-batched-suggestion-disabled-by-sibling"),e.setAttribute("disabled","disabled");const t=b(document,".js-one-suggestion-per-line").textContent;e.setAttribute("aria-label",t)}}for(const e of document.querySelectorAll(".js-batched-suggested-changes-remove"))"true"===d(e,".js-suggested-change-form-container").getAttribute("data-pending-batched-suggestion")?e.classList.remove("d-none"):e.classList.add("d-none");for(const e of document.querySelectorAll(".js-focus-commit-suggestions-form-button")){const t=d(e,".js-suggested-change-form-container"),n="true"===t.getAttribute("data-comment-pending"),s="true"===t.getAttribute("data-outdated-comment"),o="true"===t.getAttribute("data-resolved-comment"),r=d(e,".js-inline-comments-container"),i="left"===b(r,'input[name="side"]',HTMLInputElement).value;n||s||o||i?e.classList.add("d-none"):e.classList.remove("d-none")}for(const e of document.querySelectorAll(".pending-batched-suggestion-label"))"true"===d(e,".js-suggested-change-form-container").getAttribute("data-pending-batched-suggestion")?e.classList.remove("d-none"):e.classList.add("d-none")}else{e.hidden=!0;for(const e of document.querySelectorAll(".js-apply-single-suggestion"))e.classList.remove("d-none");for(const e of document.querySelectorAll(".js-batched-suggested-changes-add"))e.classList.remove("d-none");for(const e of document.querySelectorAll(".js-batched-suggested-changes-remove"))e.classList.add("d-none");for(const e of document.querySelectorAll(".js-focus-commit-suggestions-form-button"))e.classList.add("d-none");for(const e of document.querySelectorAll(".pending-batched-suggestion-label"))e.classList.add("d-none")}})(e))}function ym(e,t){const n=b(e,"input[name=commit_title]",HTMLInputElement),s=b(e,"textarea[name=commit_message]",HTMLTextAreaElement);let o=n.value.trim();""===o&&(o=n.defaultValue);const r=s.value.trim();""!==r&&(o=`${o}\n\n${r}\n`),n.disabled=!0,s.disabled=!0;const i=document.createElement("input");i.setAttribute("type","hidden"),i.setAttribute("name","message"),i.value=o,e.appendChild(i);const a=document.createElement("input");a.setAttribute("type","hidden"),a.setAttribute("name","changes"),a.value=JSON.stringify(t),e.appendChild(a)}function Em(e){const t=e.target;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/reactions.js:20");const n=p(t,"data-reaction-label"),s=d(t,".js-add-reaction-popover"),o=b(s,".js-reaction-description");o.hasAttribute("data-default-text")||o.setAttribute("data-default-text",o.textContent),o.textContent=n}function Lm(e){if(!(e.target instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/reactions.js:33");const t=d(e.target,".js-add-reaction-popover"),n=b(t,".js-reaction-description"),s=n.getAttribute("data-default-text");s&&(n.textContent=s)}function Tm(e,t){e&&e.postMessage&&e.postMessage(JSON.stringify(t),"*")}u("click",".js-suggested-change-toolbar-item",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&!t.disabled&&gm(t)}),u("click",".js-refresh-after-suggestion",function(){window.location.reload()}),r(".js-inline-comments-container",{add(e){const t=e.querySelector('input[name="side"]'),n=document.querySelector(".js-suggested-changes-subset-files"),s=t instanceof HTMLInputElement&&"left"===t.value;if(!n&&!s)return;const o=v(e,".js-suggested-change-toolbar-item",HTMLButtonElement),r=b(document,n?lm:um).textContent.trim();for(const i of o)i.disabled=!0,i.setAttribute("aria-label",r)}}),r(".js-preview-body .js-apply-changes",{add(e){const t=e.closest(".js-suggested-changes-container");if(!t)return e.remove();const n=b(document,dm).textContent,s=b(document,um).textContent,o=d(e,".js-suggested-changes-blob");if(""!==t.getAttribute("data-thread-side")){if("left"===t.getAttribute("data-thread-side"))return wm(s,o),e.remove()}else{const t=d(e,".js-inline-comment-form"),n=b(t,'input[name="side"]',HTMLInputElement);if(!t||!n)return e.remove();if(t&&"left"===n.value)return wm(s,o),e.remove()}const r=e.previousElementSibling;if(!r)throw new Error("invariant: app/assets/modules/github/pulls/suggested-changes.js:211");const i=r.querySelector(".js-blob-code-deletion"),a=r.querySelectorAll(".js-blob-code-addition");return i&&0!==a.length?i.textContent===Array.from(a).map(e=>e.textContent).join("\n")?(wm(n,o),e.remove()):void e.remove():void 0}}),r(".js-comment-body .js-apply-changes",{add(e){const t=e.closest(".js-suggested-changes-container");if(!t)return e.remove();const n=t.querySelector(".js-suggested-changes-template");if(!(n instanceof HTMLTemplateElement))return e.remove();const s=n.content.cloneNode(!0),o=b(s,".js-disabled-apply-suggestion-button");let r;try{r=b(s,".js-batched-suggested-changes-add")}catch(h){if("QueryError"!==h.name)throw h}if(v(document,".js-suggested-changes-files-tab").length){const e=b(document,im).textContent;r&&(r.removeAttribute("disabled"),r.setAttribute("aria-label",e))}const i=b(document,".js-pull-header-details"),a=i&&"true"===i.getAttribute("data-pull-is-open"),c=e.closest(".js-resolvable-timeline-thread-container"),l="true"===n.getAttribute("data-comment-pending");if(c&&"true"===c.getAttribute("data-resolved")){const t=b(document,fm).textContent,n=s.querySelector("details");return n&&n.remove(),bm(o,t),r&&(r.setAttribute("disabled","disabled"),r.setAttribute("aria-label",t)),e.replaceWith(s)}if(!a){const t=b(document,cm).textContent;return bm(o,t),r&&(r.setAttribute("disabled","disabled"),r.setAttribute("aria-label",t)),e.replaceWith(s)}if(l){const t=b(document,pm).textContent;return b(s,"details").remove(),bm(o,t),r&&(r.setAttribute("disabled","disabled"),r.setAttribute("aria-label",t)),e.replaceWith(s)}const u="left"===d(e,".js-suggested-changes-contents").getAttribute("data-thread-side"),m=document.querySelector(".js-suggested-changes-subset-files"),f="true"===n.getAttribute("data-outdated-comment");if(u||m||f){let t;return m?t=b(document,lm).textContent:u?t=b(document,um).textContent:f&&(t=b(document,mm).textContent),b(s,"details").remove(),bm(o,t),r&&(r.setAttribute("disabled","disabled"),r.setAttribute("aria-label",t)),e.replaceWith(s)}const p=b(s,".js-single-suggested-change-form"),g=e.closest(".js-suggested-changes-blob");if(g){const e=g.querySelector(".js-blob-code-deletion"),t=g.querySelectorAll(".js-blob-code-addition");if(!e)return;const n=e.textContent,i=Array.from(t).map(e=>e.textContent);if(i.length>0&&n===i.join("\n")){const e=b(document,am).textContent;b(s,"details").remove(),bm(o,e),r&&(r.setAttribute("disabled","disabled"),r.setAttribute("aria-label",e))}else for(const s of i){const e=document.createElement("input");e.setAttribute("type","hidden"),e.setAttribute("name","value[]"),e.value=s,p.appendChild(e)}}e.replaceWith(s)}}),r(".js-pull-header-details",{add(e){const t="true"===e.getAttribute("data-pull-is-open"),n=document.querySelector(".js-suggested-changes-template");if(t||!(n instanceof HTMLTemplateElement))return;const s=n.content,o=b(document,cm).textContent;hm(s,o),vm(o)}}),r(".js-suggested-changes-subset-files",{add(){const e=document.querySelector(".js-suggested-changes-template");if(!(e instanceof HTMLTemplateElement))return;const t=e.content,n=b(document,lm).textContent;hm(t,n),vm(n)}}),u("click",".js-apply-suggestion-button",async function(e){const t=e.currentTarget.parentElement;if(t){const e=b(t,".js-suggestion-commit-title");setTimeout(()=>e.focus(),1)}}),u("click",".js-dismiss-suggested-change-onboarding-notice",async function(e){const t=p(e.currentTarget,"data-url"),n=new FormData;n.append("notice","suggested_changes_onboarding_prompt"),await S(Te(t,{method:"post",body:n}));const s=document.querySelectorAll(".js-suggested-change-onboarding-notice");for(const o of s)o.remove()}),m("keypress",".js-comment-field",function(e){if("Enter"===e.key){const t=e.target;if(!(t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/pulls/suggested-changes.js:444");(function(e){const t=e.selectionStart;if(!om(e.value,t))return!1;const n=e.value,s=tm(n,t);if(null===s)return!1;const o=`\n${nm(s)}`,r=n.substr(0,t)+o+n.substr(t);$(e,r);const i=t+o.length;return e.setSelectionRange(i,i),!0})(t)&&e.preventDefault()}}),m("keypress",".js-suggestion-commit-message",function(e){const t=e.currentTarget;if(!(t instanceof HTMLTextAreaElement))throw new Error("invariant: app/assets/modules/github/pulls/suggested-changes.js:453");"Enter"===e.key&&t.setAttribute("rows","3")}),u("click",".js-batched-suggested-changes-add",function(e){const t=d(e.target,".js-suggested-change-form-container");if("true"===t.getAttribute("data-comment-pending")||"true"===t.getAttribute("data-outdated-comment")||"true"===e.target.getAttribute("data-batched-suggestion-disabled-by-sibling"))return;t.setAttribute("data-pending-batched-suggestion","true");const n=d(e.target,".js-inline-comments-container");for(const s of n.querySelectorAll(".js-batched-suggested-changes-add"))s.setAttribute("data-batched-suggestion-disabled-by-sibling","true");e.target.removeAttribute("data-batched-suggestion-disabled-by-sibling"),jm()}),u("click",".js-batched-suggested-changes-remove",function(e){d(e.currentTarget,".js-suggested-change-form-container").removeAttribute("data-pending-batched-suggestion");const t=d(e.currentTarget,".js-inline-comments-container");for(const n of t.querySelectorAll(".js-batched-suggested-changes-add"))n.setAttribute("data-batched-suggestion-reenable-sibling","true");jm()}),u("click",".js-focus-commit-suggestions-form-button",function(e){e.preventDefault(),window.location="#clear-commit-suggestions",window.location="#commit-suggestions"}),u("click",".js-dismiss-batched-suggested-changes-onboarding-notice",async function(e){const t=p(e.currentTarget,"data-url"),n=new FormData;n.append("notice","batched_suggested_changes_onboarding_prompt"),await S(Te(t,{method:"post",body:n}));for(const s of document.querySelectorAll(".js-batched-suggested-change-onboarding-notice"))s.remove()}),u("click",".js-single-suggested-change-form .js-suggested-changes-submit",function(e){try{const n=e.currentTarget,s=d(n,".js-single-suggested-change-form",HTMLFormElement),o=v(s,'input[name="value[]"]',HTMLInputElement).map(e=>e.value);ym(s,[{commentId:b(s,"input[name=comment_id]",HTMLInputElement).value,path:b(s,"input[name=path]",HTMLInputElement).value,suggestion:o}])}catch(Lh){t(Lh)}}),j(".js-single-suggested-change-form",async function(e,t){const n=d(e,".js-suggested-change-form-container"),s=d(e,"details"),o=b(n,".js-suggestion-applied"),r=d(e,".js-suggested-changes-contents"),i=b(r,".js-error-message-placeholder");try{await t.json(),o.classList.remove("d-none"),b(n,".js-batched-suggested-changes-add").classList.add("d-none"),s.remove(),window.location.reload()}catch(a){if("QueryError"!==a.name){const t=a.response.json&&a.response.json.error,o=b(i,".js-error-message");i.hidden=!1,o.textContent=t,n.prepend(i);const r=d(e,".js-suggested-change-form-container");b(r,".js-batched-suggested-changes-add").classList.add("d-none"),s.remove()}}}),u("click",".js-suggestion-batch-submit",function(e){const n=d(e.currentTarget,".js-batched-suggested-changes-form",HTMLFormElement),s=[];try{for(const e of document.querySelectorAll("[data-pending-batched-suggestion]")){const t=b(e,".js-single-suggested-change-form",HTMLFormElement),n=v(t,'input[name="value[]"]',HTMLInputElement).map(e=>e.value);s.push({commentId:b(t,"input[name=comment_id]",HTMLInputElement).value,path:b(t,"input[name=path]",HTMLInputElement).value,suggestion:n})}ym(n,s)}catch(Lh){t(Lh)}}),j(".js-batched-suggested-changes-form",async function(e,t){try{await t.json(),d(e,".js-batched-suggested-changes-container",HTMLElement).hidden=!0,window.location.reload()}catch(n){const t=n.response.json&&n.response.json.error,s=d(e,".js-batched-suggested-changes-container"),o=b(s,".js-error-message-container");b(o,".js-error-message").textContent=t,o.hidden=!1}}),r(".js-files-tab-stale",{add(){const e=document.querySelector(".js-batched-suggested-changes-container");e&&setTimeout(()=>{e.hidden=!0})}}),j(".js-pick-reaction",async function(e,t){const n=await t.json(),s=d(e,".js-comment"),o=b(s,".js-reactions-container"),r=b(s,".js-comment-header-reaction-button"),i=Me(document,n.json.reactions_container.trim()),a=Me(document,n.json.comment_header_reaction_button.trim());o.replaceWith(i),r.replaceWith(a),s.classList.remove("is-reacting")}),u("toggle",".js-reaction-popover-container",function(e){const t=e.currentTarget.hasAttribute("open");for(const n of e.target.querySelectorAll(".js-reaction-option-item"))t?(n.addEventListener("mouseenter",Em),n.addEventListener("mouseleave",Lm)):(n.removeEventListener("mouseenter",Em),n.removeEventListener("mouseleave",Lm));d(e.target,".js-comment").classList.toggle("is-reacting",t)},{capture:!0});const km={Message:"render:hook:message",AfterReady:"render:hook:afterready"},Mm=["is-render-pending","is-render-ready","is-render-loading","is-render-loaded"],Am=new WeakMap;function xm(e){if(null==e)return;const t=Am.get(e);null!=t&&(t.load=t.hello=null,t.helloTimer&&(clearTimeout(t.helloTimer),t.helloTimer=null),t.loadTimer&&(clearTimeout(t.loadTimer),t.loadTimer=null))}function Sm(e){if(null!=e)return e.classList.remove(...Mm),e.classList.add("is-render-failed"),xm(e)}function Hm(e,t=function(){return!0}){return function(){if(Z(e)&&!e.classList.contains("is-render-ready")&&!e.classList.contains("is-render-failed")&&!e.classList.contains("is-render-failed-fatally")&&(!t||t()))return Sm(e)}}r(".js-render-target",{constructor:HTMLElement,initialize:function(e){const t=Am.get(e);null!=t&&t.load||(xm(e),function(e){if(Am.get(e))return;const t={load:null,hello:null,helloTimer:null,loadTimer:null};t.load=Date.now(),t.helloTimer=setTimeout(Hm(e,function(){return!t.hello}),1e4),t.loadTimer=setTimeout(Hm(e),45e3),Am.set(e,t)}(e),e.classList.add("is-render-automatic"),e.classList.add("is-render-requested"))}}),window.addEventListener("message",function(e){const t=e.data;if(!t)return;const n=function(e){if("string"==typeof e)try{return JSON.parse(e)}catch(t){return}}(t)||t;if("string"!=typeof n.type&&"render"!==n.type)return;const s=n.type;if("string"!=typeof n.identity)return;const o=n.identity;if("string"!=typeof n.body)return;const r=n.body,i=function(e){return Array.from(document.querySelectorAll(".js-render-target")).filter(t=>!e||t.getAttribute("data-identity")===e)[0]}(o);i&&e.origin===i.getAttribute("data-host")&&function(e,t,n,s,o){switch(s){case"hello":{const t=Am.get(e)||{untimed:!0};t.hello=Date.now();const n={type:"render:cmd",body:{cmd:"ack",ack:!0}},s={type:"render:cmd",body:{cmd:"branding",branding:!1}},o=function(e){const t=e.querySelector("iframe");return t instanceof HTMLIFrameElement?t.contentWindow:null}(e);if(Tm(o,n),Tm(o,s),e.classList.contains("is-local")&&o&&"function"==typeof o.postMessage){const t=o,n=e.closest(".js-code-editor"),s=n instanceof HTMLElement?ze(n):null;if(s){let e=null;const n=(n,o)=>{if(function(e){return e&&"setValue"===e.origin}(o))return;const r=s.code();r!==e&&(e=r,Tm(t,{type:"render:data",body:r}))};s.editor.on("change",n),n()}}}break;case"error":return Sm(e);case"error:fatal":return Sm(e),e.classList.add("is-render-failed-fatal");case"error:invalid":return Sm(e),e.classList.add("is-render-failed-invalid");case"loading":return e.classList.remove(...Mm),e.classList.add("is-render-loading");case"loaded":return e.classList.remove(...Mm),e.classList.add("is-render-loaded");case"ready":e.classList.remove(...Mm),e.classList.add("is-render-ready"),o&&"number"==typeof o.height&&(e.style.height=`${o.height}px`),L(e,km.AfterReady,{container:e,payload:o});break;case"resize":o&&"number"==typeof o.height&&(e.style.height=`${o.height}px`);break;case"data":L(e,"edit:visual",o);break;default:L(e,km.Message,{type:t,body:s,payload:o})}}(i,s,0,r,null!=n.payload?n.payload:void 0)});let Cm=null;const qm=new C;function Im(e){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/repositories/branches.js:41");const n=d(t,".js-branches"),s=n.querySelectorAll(".js-branches-subnav .js-subnav-item"),o=n.querySelector(".js-branches-subnav .js-subnav-item.selected"),r=b(n,".js-branches-subnav .js-branches-all"),i=t.getAttribute("data-results-container");Cm||(Cm=o);const a=e.value.trim().length>0,c=function(e){const t=e.form;if(!t)throw new Error("invariant: app/assets/modules/github/repositories/branches.js:20");if(e.value.trim()){const n=new URL(t.action,window.location.origin),s=new URLSearchParams(n.search.slice(1)),o=t.elements.namedItem("utf8");return o instanceof HTMLInputElement&&s.append("utf8",o.value),s.append("query",e.value),n.search=s.toString(),n.toString()}return p(t,"data-reset-url")}(e);function l(){n.classList.remove("is-loading")}qm.push(R(document,c)).then(function(e){H(null,"",c);const t=i?document.getElementById(i):null;t&&(t.innerHTML="",t.appendChild(e))}).then(l,l),n.classList.toggle("is-search-mode",a),n.classList.add("is-loading");for(const u of s)u.classList.remove("selected");a?r.classList.add("selected"):Cm&&(Cm.classList.add("selected"),Cm=null)}r(".js-branch-search-field",{constructor:HTMLInputElement,initialize(e){M(e,Im)},subscribe:e=>q(e,"keyup",function(t){if(!(t instanceof KeyboardEvent))throw new Error("invariant: app/assets/modules/github/repositories/branches.js:101");"Escape"===X(t)&&(!function(e){const t=e.value.trim();e.value="",t&&Im(e)}(e),e.blur())})}),u("submit",".js-branch-search",e=>e.preventDefault()),u("click",".js-clear-branch-search",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/repositories/branches.js:115");if(!t.form)throw new Error("invariant: app/assets/modules/github/repositories/branches.js:116");const n=b(t.form,".js-branch-search-field",HTMLInputElement);n.focus(),n.value="",L(n,"input")}),j(".js-branch-destroy, .js-branch-restore",async function(e,t){b(e,"button[type=submit]").blur();const n=function(e){const t=d(e,".js-branch-row").getAttribute("data-branch-name"),n=d(e,".js-branches").querySelectorAll(".js-branch-row");return Array.from(n).filter(e=>e.getAttribute("data-branch-name")===t)}(e);for(const r of n){const e=r.querySelector(".js-branch-delete-target"),t=r.querySelector(".js-loading-spinner");t&&(t.hidden=!1),e&&(e.hidden=!0)}let s=!1;try{await t.text()}catch(o){s=!0,location.reload()}finally{for(const e of n){const t=e.querySelector(".js-branch-delete-target"),n=e.querySelector(".js-loading-spinner");t&&(t.hidden=!1),n&&(n.hidden=!0)}}if(!s){const t=e.classList.contains("js-branch-destroy");for(const e of n)e.classList.toggle("Details--on",t)}}),u("socket:message",".repository-import",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/repositories/import.js:7");const t=e.detail.data;t.redirect_to&&(document.location.href=t.redirect_to,e.stopImmediatePropagation())}),u("change","input.js-repository-import-lfs-opt",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/import.js:18");const t=parseInt(e.getAttribute("data-percent-used")),n=d(e,".js-repository-import-lfs-container"),s=e.getAttribute("data-used")||"";b(n,".js-repository-import-lfs-warn").classList.toggle("d-none",!(t>100)),b(n,".js-usage-bar").classList.toggle("exceeded",t>=100),b(n,".js-usage-bar").setAttribute("aria-label",`${t}%`),b(n,".js-repository-import-lfs-progress").style.width=`${t}%`,b(n,"span.js-usage-text").textContent=s}),j(".js-repository-import-author-form",async function(e,t){const n=await t.html();d(e,".js-repository-import-author").replaceWith(n.html)}),u("click",".js-repository-import-projects-cancel-button",function(){const e=b(document,".js-repository-import-projects-cancel-form",HTMLFormElement);E(e)});let _m=!1;function $m(){return"private"===b(document,".js-privacy-toggle:checked",HTMLInputElement).value}function Dm(){const e=b(document,".js-repo-name");L(e,"change");const t=b(document,'.js-owner-container [aria-checked="true"]'),n="false"!==t.getAttribute("data-org-allow-public-repos"),s=b(document,".js-privacy-toggle[value=public]",HTMLInputElement);Bm(n,s,document.querySelector(".js-privacy-toggle-label-public"),document.querySelector(".js-public-description"),document.querySelector(".js-public-restricted-by-policy-description"));const o=function(e,t){let n=!1;const s=document.querySelectorAll(".js-new-repo-internal-visibility");for(const o of s){o.hidden=!0;const e=o.querySelector(".js-privacy-toggle[value=internal]");e instanceof HTMLInputElement&&e.checked&&(n=!0)}if(e){const s=document.querySelector(`#new-repo-internal-visibility-${e}`);if(s){s.hidden=!1;const e=s.querySelector(".js-privacy-toggle-label-internal"),o=s.querySelector(".js-internal-description"),r=s.querySelector(".js-internal-restricted-by-policy-description"),i=s.querySelector(".js-privacy-toggle[value=internal]");if(i instanceof HTMLInputElement)return"false"===t.getAttribute("data-org-allow-internal-repos")?(i.disabled=!0,e&&e.classList.add("text-gray-light"),o&&(o.hidden=!0),r&&(r.hidden=!1)):(n&&(i.checked=!0,L(i,"change")),i.disabled=!1,e&&e.classList.remove("text-gray-light"),o&&(o.hidden=!1),r&&(r.hidden=!0)),i}}}(t.getAttribute("data-business-id"),t),r="false"!==t.getAttribute("data-org-allow-private-repos"),i=b(document,".js-privacy-toggle[value=private]",HTMLInputElement),a=document.querySelector(".js-privacy-toggle-label-private"),c=document.querySelector(".js-private-description"),l=document.querySelector(".js-private-restricted-by-policy-description");Bm(r,i,a,c,l),function(){const e=document.querySelectorAll('.js-org-upgrade-link:not([hidden=""]');for(const t of e)t.hidden=!0}();const u="false"!==t.getAttribute("data-org-private-restricted-by-plan"),d=document.querySelector(".js-upgrade-private-description"),m="false"!==t.getAttribute("data-org-show-upgrade"),f=t.getAttribute("data-org-name"),p=f?document.querySelector(`a[data-upgrade-link="${f}"]`):null,g=document.querySelector(".js-ask-owner-message");r||!u?(d&&(d.hidden=!0),p&&(p.hidden=!0),g&&(g.hidden=!0)):(l&&(l.hidden=u),d&&(d.hidden=!1),p&&(p.hidden=!m),g&&(g.hidden=m));const h="true"===t.getAttribute("data-org-show-trade-controls"),v="true"===t.getAttribute("data-user-show-trade-controls"),w=document.querySelector(".js-trade-controls-description"),j=document.querySelector(".js-individual-trade-controls-description");(v||h&&!r)&&(i.disabled=!0,c&&(c.hidden=!0),l&&(l.hidden=!0),d&&(d.hidden=!0),p&&(p.hidden=!0),g&&(g.hidden=!0)),v?(w&&(w.hidden=!0),j&&(j.hidden=!1)):!r&&h&&w&&(w.hidden=!1),function(e,t,n,s){let o=null;"private"!==e.getAttribute("data-default")||s.disabled?t.disabled?n&&!n.disabled&&(o=n):o=t:o=s;if(!o)return;const r=t.disabled&&t.checked||s.disabled&&s.checked||n&&n.disabled&&n.checked,i=!(t.checked||n&&n.checked||s.checked);!1!==_m&&!0!==r&&!0!==i||(o.checked=!0,L(o,"change"))}(t,s,o,i),function(e){for(const s of document.querySelectorAll(".js-with-permission-fields"))s.hidden=!e;for(const s of document.querySelectorAll(".js-without-permission-fields"))s.hidden=e;const t=document.querySelector(".errored"),n=document.querySelector("dl.warn");t&&(t.hidden=!e);n&&(n.hidden=!e)}("yes"===t.getAttribute("data-permission")),function(){const e=document.querySelector("#js-upgrade-container");if(!e)return;const t=b(document,"#js-payment-methods-form");e.firstElementChild&&t.appendChild(e.firstElementChild);const n=b(document,"input[name=owner]:checked",HTMLInputElement).value,s=t.querySelector(`.js-upgrade[data-login="${n}"]`);s&&e.appendChild(s)}(),Rm();const y=document.querySelector(".js-quick-install-container");if(y){const e=b(y,".js-quick-install-divider");e.hidden=!0;const t=b(document,"input[name=owner]:checked",HTMLInputElement).parentElement;if(t){const n=t.querySelector(".js-quick-install-list-template");if(n instanceof HTMLTemplateElement){const t=b(y,".js-account-apps");t.innerHTML="",t.append(n.content.cloneNode(!0)),n.children.length>0&&(e.hidden=!1)}}}}function Bm(e,t,n,s,o){e?(t.disabled=!1,n&&n.classList.remove("text-gray-light"),s&&(s.hidden=!1),o&&(o.hidden=!0)):(t.disabled=!0,n&&n.classList.add("text-gray-light"),s&&(s.hidden=!0),o&&(o.hidden=!1))}function Rm(e){const t=document.querySelector("#js-upgrade-container");if(!t)return;const n=t.querySelector(".js-billing-section"),s=t.querySelector(".js-confirm-upgrade-checkbox");let o=e?e.target:null;if(o||(o=document.querySelector(".js-privacy-toggle:checked")),!(o instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/new.js:218");if("false"===o.value){if(t.hidden=!1,n&&n.classList.remove("has-removed-contents"),s){if(!(s instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/new.js:225");s.checked=!0}}else if(t.hidden=!0,n&&n.classList.add("has-removed-contents"),s){if(!(s instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/new.js:233");s.checked=!1}Nm()}function Nm(){const e=b(document,"#new_repository");let t=b(e,".js-repo-name").classList.contains("is-autocheck-successful");$m()&&(t=t&&function(){const e=document.querySelector("#js-upgrade-container");if(!e)return!0;if(e.querySelector(".js-ofac-sanction-notice"))return!1;const t=e.querySelector(".js-confirm-upgrade-checkbox");if(t instanceof HTMLInputElement&&!t.checked)return!1;const n=e.querySelector(".js-zuora-billing-info");if(n&&n.classList.contains("d-none"))return!1;return!0}()),b(e,"button[type=submit]",HTMLButtonElement).disabled=!t}async function Pm(e){const t=e.form;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/repositories/releases.js:11");b(t,"#release_draft",HTMLInputElement).value="1",Om(e,"saving");try{const s=await W(t.action,{method:t.method,body:new FormData(t)});return Om(e,"saved"),setTimeout(Om,5e3,e,"default"),L(t,"release:saved",{release:s}),s}catch(n){throw Om(e,"failed"),n}}function Fm(e){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/releases.js:40");const t=d(e,".js-releases-marketplace-publish-container"),n=b(t,".js-releases-marketplace-publish-preview");e.checked?n.classList.remove("d-none"):n.classList.add("d-none")}function Om(e,t){for(const n of e.querySelectorAll(".js-save-draft-button-state"))n.hidden=n.getAttribute("data-state")!==t;e.disabled="saving"===t}function Wm(e){const t=document.querySelector(".js-release-target-wrapper");if(null!=t){switch(e){case"valid":t.classList.add("d-none");break;case"loading":break;default:t.classList.remove("d-none")}for(const t of document.querySelectorAll(".js-tag-status-message"))t.hidden=t.getAttribute("data-state")!==e}}r("#js-upgrade-container .js-zuora-billing-info:not(.d-none)",Nm),r(".page-new-repo",function(){_m=$m();const e=document.querySelector("#js-upgrade-container");e&&(e.hidden=!0),Dm();const t=document.querySelector(".js-owner-select");t&&t.focus()}),u("click",".js-reponame-suggestion",function(e){const t=b(document,".js-repo-name",HTMLInputElement);t.value=e.currentTarget.textContent,L(t,"input",!1)}),u("click",".js-privacy-toggle",function(){_m=!0}),u("change",".js-privacy-toggle",Rm),u("details-menu-selected",".js-owner-container",Dm,{capture:!0}),u("change","#js-upgrade-container input",Nm),g("#js-upgrade-container input",Nm),u("auto-check-send",".js-repo-name-auto-check",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/repositories/new.js:328");const t=e.currentTarget.form;if(!t)throw new Error("invariant: app/assets/modules/github/repositories/new.js:331");const n=b(t,"input[name=owner]:checked",HTMLInputElement).value;e.detail.body.append("owner",n)}),u("auto-check-complete","#repository_name",function(){Nm()}),u("click",".js-packages-learn-more-dismiss",function(){const e=b(document,".js-packages-popover-form",HTMLFormElement);E(e)}),r(".js-pulse-contribution-data",e=>{!async function(e){const t=e.getAttribute("data-pulse-diffstat-summary-url");let n;try{t&&function(e,t){t.innerHTML="",t.appendChild(e)}(n=await async function(e){return R(document,e)}(t),e)}catch(s){const t=b(e,".js-blankslate-loading"),n=b(e,".js-blankslate-error");t.classList.add("d-none"),n.classList.remove("d-none")}}(e)}),u("change",".js-releases-marketplace-publish-field",function(e){Fm(e.currentTarget)}),r(".js-releases-marketplace-publish-field",function(e){Fm(e)}),u("click",".js-save-draft",function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/repositories/releases.js:55");Pm(t),e.preventDefault()}),u("click",".js-timeline-tags-expander",function(e){const t=e.currentTarget;d(t,".js-timeline-tags").classList.remove("is-collapsed")}),u("release:saved",".js-release-form",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/repositories/releases.js:76");const t=e.detail.release,n=e.currentTarget,s=n.getAttribute("data-repo-url"),o=t.update_url||Vm("tag",s,t.tag_name);if(n.setAttribute("action",o),t.update_authenticity_token){n.querySelector("input[name=authenticity_token]").value=t.update_authenticity_token}const r=t.edit_url||Vm("edit",s,t.tag_name);H(Q(),document.title,r);const i=document.querySelector("#delete_release_confirm form");if(i){const e=t.delete_url||Vm("tag",s,t.tag_name);if(i.setAttribute("action",e),t.delete_authenticity_token){b(i,"input[name=authenticity_token]",HTMLInputElement).value=t.delete_authenticity_token}}const a=n.querySelector("#release_id");if(!a.value){a.value=t.id;const e=document.createElement("input");e.type="hidden",e.name="_method",e.value="put",n.appendChild(e)}}),u("click",".js-publish-release",function(){b(document,"#release_draft",HTMLInputElement).value="0"});const zm=new WeakMap;async function Um(e){if(!e.value)return;if(e.value===zm.get(e))return;Wm("loading"),zm.set(e,e.value);const t=p(e,"data-url"),n=new URL(t,window.location.origin),s=new URLSearchParams(n.search.slice(1));s.append("tag_name",e.value),n.search=s.toString();try{const t=await W(n);"duplicate"===t.status&&parseInt(e.getAttribute("data-existing-id"))===parseInt(t.release_id)?Wm("valid"):(b(document,".js-release-tag .js-edit-release-link").setAttribute("href",t.url),Wm(t.status))}catch(Lh){Wm("invalid")}}function Vm(e,t,n){return`${t}/releases/${e}/${n}`}function Km(e){const t=d(e,"form",HTMLFormElement).querySelector(".js-previewable-comment-form");if(!t)return;let n=t.getAttribute("data-base-preview-url");n||(n=String(t.getAttribute("data-preview-url")),t.setAttribute("data-base-preview-url",n));const s=v(e,'input[name="release[tag_name]"], input[name="release[target_commitish]"]:checked',HTMLInputElement),o=new URL(n,window.location.origin),r=new URLSearchParams(o.search.slice(1));for(const i of s)i.value&&r.append(i.name,i.value);o.search=r.toString(),t.setAttribute("data-preview-url",o.toString())}r("input.js-release-tag-field",{constructor:HTMLInputElement,initialize(e){Um(e),e.addEventListener("blur",function(){Um(e)})}}),u("change",".js-release-tag",function(e){Km(e.currentTarget)}),r(".js-release-form .js-previewable-comment-form",function(e){Km(b(d(e,"form"),".js-release-tag"))}),u("change",".js-repository-code-search-query",e=>{const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/code-search.js:7");const n=t.value;for(const s of v(document,".js-repository-code-search-option",HTMLInputElement)){const e=!!n.match(new RegExp(`\\b${s.value}:true\\b`));$(s,e)}}),u("click",".js-repository-code-search-option",async e=>{const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/code-search.js:18");const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/repositories/code-search.js:20");setTimeout(()=>E(n),0)}),u("change",".js-repository-code-search-option",e=>{const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/repositories/code-search.js:25");const n=b(document,".js-repository-code-search-query",HTMLInputElement),s=new RegExp(`\\b${t.value}:\\w*\\s*`,"g"),o=n.value.replace(s,"").trim();t.checked?n.value=`${o} ${t.value}:true`:n.value=o}),m("keydown",".js-tree-finder-field",e=>{"Escape"===e.key&&(e.preventDefault(),history.back())});function Ym(e,t){if(Wc(e))return;const n=b(document,".js-site-search-form",HTMLFormElement);let s,o;b(document,".js-site-search").classList.toggle("scoped-search",t),t?(s=p(n,"data-scoped-search-url"),o=p(e,"data-scoped-placeholder")):(s=p(n,"data-unscoped-search-url"),o=p(e,"data-unscoped-placeholder")),n.setAttribute("action",s),e.setAttribute("placeholder",o)}function Xm(e){if(!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/search/results.js:13");const t=e.currentTarget.querySelector(".js-search-result-feedback");t&&t.classList.add("show")}function Jm(e){if(!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/search/results.js:23");const t=e.currentTarget.querySelector(".js-search-result-feedback");t&&t.classList.remove("show")}function Gm(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/search/results.js:35");t.classList.add("text-gray-dark"),t.classList.remove("link-gray");const n=d(t,".js-search-result-feedback");for(const s of v(n,".js-search-rating",HTMLButtonElement))s.disabled=!0;b(n,".js-search-feedback-form").classList.add("show")}function Qm(e){const t=e.value.slice(0,e.selectionEnd),n=e.value.slice(e.selectionEnd),s=0===e.value.trim().length,o=t.match(/(^|\s+)[^\s:]+$/)&&n.match(/^(\s|$)/);return s||o}async function Zm(e){const t=e.getAttribute("data-contents-url"),n=Ec("SEARCH_SUGGESTIONS");if(!t)return;const s=b(document,".js-search-suggester"),o=e.value.slice(0,e.selectionEnd).match(/\S*$/),r=o?o[0]:"",i=new URL(t,window.location.origin),a=new URLSearchParams;a.append("query",r),i.search=a.toString();const c=await S(i.toString());if(""===c.trim())return void ef();s.innerHTML=c,n&&s.classList.remove("d-none"),xe(b(s,".js-navigation-container"));const l=b(s,".js-search-suggester-helper"),u=e.value.match(/(^|\s)[^\s:]+$/),d=l.parentElement;if(!(d instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/search-suggester.js:49");u&&(l.textContent=e.value),d.classList.toggle("d-none",n&&!u)}function ef(){b(document,".js-search-suggester").classList.add("d-none")}function tf(e){const t=e.target,n=d(t,".js-navigation-item"),s=b(document,".js-search-suggester-field",HTMLInputElement),o=b(document,".js-search-suggester"),r=n.getAttribute("data-value")||"",i=s.value.slice(0,s.selectionEnd).replace(/\S+$/,""),a=s.value.slice(s.selectionEnd);o.classList.contains("d-none")?E(b(document,"#search_form",HTMLFormElement)):(e.preventDefault(),s.value=i+r+a,Qm(s)?Zm(s):ef())}function nf(){const e=document.body;if(!e)throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:11");e.classList.add("is-sending"),e.classList.remove("is-sent","is-not-sent")}function sf(){const e=document.body;if(!e)throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:18");e.classList.add("is-sent"),e.classList.remove("is-sending")}function of(e){const t=document.body;if(!t)throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:25");e&&(b(document,".js-sms-error").textContent=e),t.classList.add("is-not-sent"),t.classList.remove("is-sending")}function rf(e){const t=b(document,".js-stale-session-flash"),n=b(t,".js-stale-session-flash-signed-in"),s=b(t,".js-stale-session-flash-signed-out");t.hidden=!1,n.hidden="false"===e,s.hidden="true"===e,window.addEventListener("popstate",function(e){e.state&&null!=e.state.container&&location.reload()}),document.addEventListener("submit",function(e){e.preventDefault()})}let af;if(r(".js-tree-finder",e=>{const t=b(e,".js-tree-finder-field",HTMLInputElement),n=b(e,".js-tree-browser-results");n.childElementCount>0||((async e=>{if(!(e instanceof FuzzyListElement))return;const t=p(e,"data-url"),n=b(e,".js-tree-browser-result-template",HTMLTemplateElement),{paths:s}=await W(t);e.addLazyItems(s,e=>{const t=n.content.cloneNode(!0).firstElementChild;if(!t)throw new Error("invariant: app/assets/modules/github/repositories/tree-finder.js:25");const s=b(t,".js-tree-browser-result-anchor",HTMLAnchorElement),o=b(s,".js-tree-browser-result-path"),r=new URL(s.href,window.location.origin);return r.pathname=`${r.pathname}/${encodeURI(e)}`,s.href=String(r),o.textContent=e,t}),e.sort()})(e),dn(t,n),e.addEventListener("fuzzy-list-will-sort",()=>{vn(t,n)}),e.addEventListener("fuzzy-list-sorted",()=>{hn(t,n)}))}),r(".js-codesearch-nav",function(e){const t=e.querySelector(".selected");if(!t)return;const n=t.offsetLeft,s=t.offsetWidth,o=n+s,r=window.innerWidth;(o-e.scrollLeft>r||oz(q(e,"mouseover",Xm),q(e,"mouseleave",Jm))}),r(".js-search-rating",{subscribe:e=>q(e,"click",Gm)}),r(".js-search-suggester-field",{constructor:HTMLInputElement,initialize(e){Zm(e),M(e,function(){Qm(e)?Zm(e):ef()})}}),u("focusin",".js-search-suggester-field",function(e){const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/search-suggester.js:80");Qm(t)?Zm(t):ef()}),u("focusout",".js-search-suggester-field",function(){ef()}),u("mousedown",".js-search-suggester",tf),u("navigation:keydown",".js-search-suggester",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/search-suggester.js:108");const t=e.currentTarget.querySelector('.js-search-suggester .js-navigation-item[aria-selected="true"]');switch(e.detail.hotkey){case"Enter":t?tf(e):E(b(document,"#search_form",HTMLFormElement));break;case"Tab":t&&tf(e);break;case"ArrowLeft":case"ArrowRight":case"Escape":ef()}}),u("click",".js-segmented-nav-button",function(e){e.preventDefault();const t=e.currentTarget,n=p(t,"data-selected-tab"),s=d(t,".js-segmented-nav"),o=s.parentElement;if(!o)throw new Error("invariant: app/assets/modules/github/segmented-nav.js:10");for(const r of v(s,".js-segmented-nav-button"))r.classList.remove("selected");t.classList.add("selected");for(const r of v(o,".js-selected-nav-tab"))r.parentElement===o&&r.classList.remove("active");b(document,`.${n}`).classList.add("active")}),j(".js-send-auth-code",async(e,t)=>{let n;nf();try{n=await t.text()}catch(s){of(s.response.text)}n&&sf()}),u("click",".js-send-two-factor-code",async function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:54");const n=t.form;if(!n)throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:56");const s=`${b(n,".js-country-code-select",HTMLSelectElement).value} ${b(n,".js-sms-number",HTMLInputElement).value}`;nf();let o=t.getAttribute("data-authenticity-token");null==o&&(o=T(n,"authenticity_token").value);const r=new FormData;r.append("number",s),r.append("authenticity_token",o);try{const e=p(t,"data-url");await c(e,{method:"post",body:r}),sf();for(const t of n.querySelectorAll(".js-2fa-enable"))(t instanceof HTMLInputElement||t instanceof HTMLButtonElement)&&(t.disabled=!1);b(n,".js-2fa-otp").focus()}catch(i){if(i.response){of(await i.response.text())}for(const e of n.querySelectorAll(".js-2fa-enable"))(e instanceof HTMLInputElement||e instanceof HTMLButtonElement)&&(e.disabled=!0)}}),u("click",".js-enable-enable-two-factor-auth-button",function(){const e=b(document,".js-enable-two-factor-auth-button",HTMLButtonElement);e.disabled=!1,e.removeAttribute("aria-label"),e.classList.remove("tooltipped")}),r(".js-two-factor-sms-fallback-button",function(e){e.addEventListener("toggle",function(e){const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/sessions/two-factor.js:111");for(const n of t.querySelectorAll(".flash"))n.hidden=!0;b(t,".js-configure-sms-fallback").hidden=!1,b(t,".js-verify-sms-fallback").hidden=!0})}),j(".js-two-factor-set-sms-fallback",async(e,t)=>{let n;try{n=await t.text()}catch(s){const t=b(e,".js-configure-sms-fallback"),n=b(e,".js-verify-sms-fallback"),o=t.hidden?n:t,r=b(o,".flash");switch(s.response.status){case 422:case 429:r.textContent=s.response.text,r.hidden=!1}}if(n)switch(n.status){case 200:case 201:window.location.reload();break;case 202:b(e,".js-configure-sms-fallback").hidden=!0,b(e,".js-verify-sms-fallback").hidden=!1,b(e,".js-fallback-otp").focus()}}),"function"==typeof BroadcastChannel)try{(af=new BroadcastChannel("stale-session")).onmessage=(e=>{"string"==typeof e.data&&rf(e.data)})}catch(Th){}if(!af){let e=!1;af={postMessage(t){e=!0;try{window.localStorage.setItem("logged-in",t)}finally{e=!1}}},window.addEventListener("storage",function(t){if(!e&&t.storageArea===window.localStorage&&"logged-in"===t.key)try{"true"!==t.newValue&&"false"!==t.newValue||rf(t.newValue)}finally{window.localStorage.removeItem(t.key)}})}const cf=document.querySelector(".js-stale-session-flash[data-signedin]");if(cf){const e=cf.getAttribute("data-signedin");af.postMessage(e)}document.addEventListener("pjax:end",function(){const e=document.querySelector('meta[name="selected-link"]'),t=e&&e.getAttribute("value");if(t)for(const n of document.querySelectorAll(".js-sidenav-container-pjax .js-selected-navigation-item")){const e=(n.getAttribute("data-selected-links")||"").split(" ").indexOf(t)>=0;n.classList.toggle("selected",e)}}),r(".js-contact-javascript-flag",{constructor:HTMLInputElement,add(e){e.value="true"}}),u("socket:message",".js-notification-indicator",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/site/header-notifications.js:6");const t=e.currentTarget,n=e.detail.data;t.setAttribute("aria-label",n.aria_label),t.setAttribute("data-ga-click",n.ga_click),t.querySelector("span").setAttribute("class",n.span_class)});let lf=!1;async function uf(){if(lf)return;lf=!0;const e=`/site/keyboard_shortcuts?url=${window.location.pathname}`;(await F({content:R(document,e),dialogClass:"hx_Box--overlay--wide container-xl"})).addEventListener("dialog:remove",function(){lf=!1},{once:!0})}u("click",".js-keyboard-shortcuts",uf),document.addEventListener("keydown",e=>{e.target instanceof Node&&Se(e.target)||"?"===X(e)&&uf()}),r(".js-site-status-container",{initialize(e){!async function(e){const t=o(document,"site-status-api-url"),n=await window.fetch(t),s=await n.json(),r=s.status.indicator;if("none"!==r&&e instanceof HTMLElement){b(e,".js-site-status-message").textContent=s.status.description,b(e,".js-site-status-time").setAttribute("datetime",s.page.updated_at);const t="minor"===r?"flash-warn":"flash-error";b(e,".flash").classList.add(t),e.hidden=!1}}(e)}});const df=[{sectionName:"actions-events",percent:95},{sectionName:"actions-workflow",percent:100},{sectionName:"actions-workflow-logs",percent:100},{sectionName:"actions-templates",percent:100},{sectionName:"security-vulnerability",percent:60},{sectionName:"security-workspace",percent:70},{sectionName:"security-alerts-graph",percent:60},{sectionName:"security-alerts",percent:60},{sectionName:"security-dependabot",percent:50},{sectionName:"security-patches-graph",percent:70},{sectionName:"security-token-scanning",percent:70},{sectionName:"security-lgtm",percent:60}];function mf(e){e.map(({sectionName:e,percent:t})=>{!function(e,t,n,s){const o=window.innerHeight||document.documentElement&&document.documentElement.clientHeight;e.map(e=>{const r=v(document,`.${t}`),i=e.getBoundingClientRect().top,a=Math.round(i/o*100);a<=s?e.classList.contains(t)?e.classList.add(n):r.map(e=>e.classList.add(n)):(e.classList.remove(n),e.classList.contains(t)||r.map(e=>e.classList.remove(n)))})}(v(document,`.section-${e}`),`section-${e}`,`animate-section-${e}`,t)})}let ff;window.addEventListener("scroll",()=>mf(df),!1),window.addEventListener("resize",()=>mf(df),!1),window.addEventListener("load",()=>mf(df),!1),h(".js-skip-password-autofill",e=>{if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/skip-autofill.js:6");e.type="password"}),u("click",".js-smoothscroll-anchor",function(e){const t=e.currentTarget;if(!(t instanceof HTMLAnchorElement))return;const n=ce(document,t.hash);n&&(n.scrollIntoView({behavior:"smooth"}),e.preventDefault())}),async function(){Ec("SERVICE_WORKER")&&navigator.serviceWorker&&(ff=await navigator.serviceWorker.register("/service-worker.js"))}(),u("click",".js-subscribe-to-web-push",async function(e){if(!window.PushManager)return;e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLButtonElement))throw new Error("invariant: app/assets/modules/github/service-worker-registration.js:24");if(!t.form)throw new Error("invariant: app/assets/modules/github/service-worker-registration.js:25");const n=b(t.form,"[name=authenticity_token]",HTMLInputElement).value,s=await fetch("/web-push/public-key",{credentials:"same-origin"}),o=(await s.json()).vapid_public_key,r=new Uint8Array(o),i=(await ff.pushManager.subscribe({userVisibleOnly:!0,applicationServerKey:r})).toJSON(),a=new FormData;a.append("authenticity_token",n),a.append("endpoint",i.endpoint),a.append("p256dh",i.keys.p256dh),a.append("auth",i.keys.auth),await fetch("/web-push-subscription",{method:"POST",body:a,credentials:"same-origin"})});const pf={},gf={},hf={};let vf=null,bf=0,wf=null;const jf=1e3,yf=1008,Ef=1011,Lf=1012,Tf=1013,kf=[],Mf=36e5;function Af(e){const t=Date.now();let n=pf[e]||0;const s=hf[e];s&&(n=Math.max(n,s[1])),n>0&&t-n=5||n===yf||n===Ef)return window.removeEventListener("online",Hf),void(t&&(t.removeEventListener("close",Hf),t.close(jf,"give-up-reconnects"),t===vf&&(vf=null)));let s=0;n===Lf||n===Tf?s=100:bf>0&&(s=1e3*Math.pow(2,bf)),bf+=1,wf&&clearTimeout(wf),wf=setTimeout(Sf,s)}function Cf(e){const t=e.getAttribute("data-channel");return t?t.split(/\s+/):[]}function qf(e,t){let{wait:n}=e;return null!=n&&(n-=t)<=0&&(n=null),n===e.wait?e:Object.assign({},e,{wait:n})}function If(e,t,n){const s=e.getBoundingClientRect().height,o=t.getBoundingClientRect(),r=n.getBoundingClientRect();let i=r.top;i+o.height+10>=s&&(i=Math.max(s-o.height-10,0));let a=r.right;null!=n.closest(".js-build-status-to-the-left")&&(a=Math.max(r.left-o.width-10,0)),t.style.top=`${i}px`,t.style.left=`${a}px`,t.style.right="auto"}async function _f(e){const t=e.querySelector(".js-dropdown-details"),n=e.querySelector(".js-status-dropdown-menu")||e.closest(".js-status-dropdown-menu");if(!(n instanceof HTMLElement))return;const s=b(n,".js-status-loader"),o=b(n,".js-status-loading"),r=b(n,".js-status-error"),i=p(s,"data-contents-url");let a;o.classList.remove("d-none"),r.classList.add("d-none");try{await O(),a=await R(document,i)}catch(c){o.classList.add("d-none"),r.classList.remove("d-none")}if(a){s.replaceWith(a),b(n,".js-details-container").classList.add("open");const e=document.body;e&&t&&n.classList.contains("js-append-menu-to-body")&&If(e,n,t)}}function $f({currentTarget:e}){if(!(e instanceof Element))throw new Error("invariant: app/assets/modules/github/statuses.js:129");_f(e)}async function Df(e){const t=e.currentTarget;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/sudo-required.js:15");const n=t.getAttribute("data-sudo-required");n&&(e.stopPropagation(),e.preventDefault(),await De(n)&&(t.removeAttribute("data-sudo-required"),t instanceof HTMLFormElement?E(t):t.click()))}function Bf(e){const t=new Map;return function(...n){const s=JSON.stringify(n),o=t.get(s);if(void 0!==o)return o;const r=e(...n);return t.set(s,r),r}}window.WebSocket&&(r(".js-socket-channel[data-channel]",{add:function(e){const t=vf||Sf();if(t){for(const t of Cf(e))Af(t),null==gf[t]&&(gf[t]=[]),gf[t].push(e);t.readyState===WebSocket.OPEN&&xf(t)}},remove:function(e){for(const t of Cf(e)){const n=gf[t];if(n){const t=n.indexOf(e);-1!==t&&n.splice(t,1)}}}}),window.addEventListener("online",Hf),window.addEventListener("offline",function(){vf&&vf.close(jf,"navigator-offline")})),document.addEventListener("pjax:popstate",function(e){if(!(e instanceof CustomEvent))return;const t=e.target;if(!(t instanceof Element))return;const n=e.detail.cachedAt;n&&setTimeout(()=>{const e=Date.now();for(const s of t.querySelectorAll(".js-socket-channel[data-channel]"))for(const t of Cf(s)){if(!(t in hf))continue;const[o,r]=hf[t];r{_f(e)}),r(".js-build-status",{add(e){e.addEventListener("mouseenter",$f,{once:!0})},remove(e){e.removeEventListener("mouseenter",$f)}}),u("click","button[data-sudo-required], summary[data-sudo-required]",Df),r("form[data-sudo-required]",{constructor:HTMLFormElement,subscribe:e=>q(e,"submit",Df)});const Rf={"actor:":"ul.js-user-suggestions","user:":"ul.js-user-suggestions","operation:":"ul.js-operation-suggestions","org:":"ul.js-org-suggestions","action:":"ul.js-action-suggestions","repo:":"ul.js-repo-suggestions","country:":"ul.js-country-suggestions"};function Nf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/audit-log-suggester.js:22");const{key:t,item:n}=e.detail;if(!Ff(t))return;const s=p(n,"data-value");e.detail.value=`${t}${s}`}function Pf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/audit-log-suggester.js:33");const{key:t,provide:n}=e.detail;if(!Ff(t))return;const s=e.target;if(!(s instanceof Element))throw new Error("invariant: app/assets/modules/github/suggesters/audit-log-suggester.js:40");n(async function(e,t,n){const s=(await Of(e)).querySelector(function(e){const t=Rf[e];if(!t)throw new Error(`Unknown audit log expander key: ${e}`);return t}(t));if(!s)return{matched:!1};const o=co(s,n,{limit:5});return{fragment:s.cloneNode(!0),matched:o>0}}(p(s,"data-audit-url"),t,e.detail.text))}function Ff(e){return Object.getOwnPropertyNames(Rf).includes(e)}r("text-expander[data-audit-url]",{subscribe:e=>z(q(e,"text-expander-change",Pf),q(e,"text-expander-value",Nf))});const Of=Bf(async function(e){const t=await R(document,e),n=document.createElement("div");return n.append(t),n});const Wf={};function zf(e){const t=e.getAttribute("data-emoji-name")||"";return Wf[t]=` ${function(e){return(e.getAttribute("data-text")||"").trim().toLowerCase()}(e).replace(/_/g," ")}`,t}function Uf(e,t){const n=Wf[e].indexOf(t);return n>-1?1e3-n:0}function Vf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/emoji-suggester.js:62");":"===e.detail.key&&(e.detail.value=function(e){if(e.hasAttribute("data-use-colon-emoji"))return e.getAttribute("data-value");const t=e.firstElementChild;return t&&"G-EMOJI"===t.tagName&&!t.firstElementChild?t.textContent:e.getAttribute("data-value")}(e.detail.item))}function Kf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/emoji-suggester.js:68");const{key:t,provide:n}=e.detail;if(":"!==t)return;const s=e.target;if(!(s instanceof Element))throw new Error("invariant: app/assets/modules/github/suggesters/emoji-suggester.js:75");n(async function(e,t){const n=await Yf(e),s=function(e,t){return co(t,` ${e.toLowerCase().replace(/_/g," ")}`,{limit:5,text:zf,score:Uf})}(t,n);return{fragment:n,matched:s>0}}(p(s,"data-emoji-url"),e.detail.text))}r("text-expander[data-emoji-url]",{subscribe:e=>z(q(e,"text-expander-change",Kf),q(e,"text-expander-value",Vf))});const Yf=Bf(async function(e){const t=(await R(document,e)).firstElementChild;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/suggesters/emoji-suggester.js:92");return t});function Xf(e,t,n){const s=new RegExp(`\\b${o=e,o.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}`);var o;const r=/^\d+$/.test(e)?e=>(function(e,t){const n=e.search(t);return n>-1?1e3-n:0})(e,s):t=>to(t,e),i=Bc(n,e,{limit:5,text:e=>`${e.number} ${e.title.trim().toLowerCase()}`,score:r});return function(e,t){const n=e=>Ve`
-
- #${e.number} ${e.title}
-
- `;Ue((e=>Ve`
-
- `)(e),t)}(i,t),i.length}function Jf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/issue-suggester.js:62");if("#"!==e.detail.key)return;const t=p(e.detail.item,"data-value");e.detail.value=`#${t}`}function Gf(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/suggesters/issue-suggester.js:69");const{key:t,provide:n}=e.detail;if("#"!==t)return;const s=e.target;if(!(s instanceof Element))throw new Error("invariant: app/assets/modules/github/suggesters/issue-suggester.js:76");n(async function(e,t){const n=await Qf(e),s=document.createElement("div"),o=Xf(t,s,n),r=s.firstElementChild;if(!(r instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/suggesters/issue-suggester.js:86");return{fragment:r,matched:o>0}}(p(s,"data-issue-url"),e.detail.text))}r("text-expander[data-issue-url]",{subscribe:e=>z(q(e,"text-expander-change",Gf),q(e,"text-expander-value",Jf))});const Qf=Bf(W);function Zf(e,t,n){const s=Bc(n,e,{limit:5,score:ep(e).score,text:e=>e.description?`${e.name} ${e.description}`.trim().toLowerCase():`${e.login} ${e.name}`.trim().toLowerCase()});return function(e,t){const n=e=>{const t="user"===e.type?e.login:e.name,n="user"===e.type?e.name:e.description;return Ve`
-
- ${t}
- ${n}
-
- `};Ue((e=>Ve`
-
- `)(e),t)}(s,t),s.length}function ep(e){let t;if(e){const n=e.toLowerCase().split("");t=function(t){if(!t)return 0;const s=function(e,t){let n,s,o,r;const i=function(e,t){let n=0;const s=[];for(;(n=e.indexOf(t,n))>-1;)s.push(n++);return s}(e,t[0]);if(0===i.length)return;if(1===t.length)return[i[0],1,[]];for(r=null,s=0,o=i.length;s2);return{score:t}}function tp(e,t,n){let s=n;const o=[];for(let r=1;r0}}(p(s,"data-mention-url"),e.detail.text))}r("text-expander[data-mention-url]",{subscribe:e=>z(q(e,"text-expander-change",sp),q(e,"text-expander-value",np))});const op=Bf(W);function rp(e,t){const n=d(e,".js-survey-question-form"),s=b(n,"input.js-survey-other-text",HTMLInputElement);n.classList.toggle("is-other-selected",t),s.hidden=!t,t?(s.required=!0,s.focus()):s.required=!1,L(s,"change")}u("change","select.js-survey-select",function({currentTarget:e}){if(!(e instanceof HTMLSelectElement))throw new Error("invariant: app/assets/modules/github/survey.js:24");rp(e,e.options[e.selectedIndex].classList.contains("js-survey-option-other"))}),u("change","input.js-survey-radio",function({currentTarget:e}){if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/survey.js:31");rp(e,e.classList.contains("js-survey-radio-other"))}),u("click",".js-tagsearch-nav-item",e=>{d(e.currentTarget,".js-tagsearch-popover-content").scrollTop=0}),r(".js-file-line-container, .js-code-block-container",{constructor:HTMLElement,subscribe(e){const t=document.querySelector(".js-tagsearch-popover");if(!t)return{unsubscribe(){}};const n=b(t,".js-tagsearch-popover-content"),s=new WeakMap,o=new WeakMap;let r;async function i(n){const r=function(e,t,n){let s,o;if(document.caretPositionFromPoint){const e=document.caretPositionFromPoint(t,n);e&&(s=e.offsetNode,o=e.offset)}else if(document.caretRangeFromPoint){const e=document.caretRangeFromPoint(t,n);e&&(s=e.startContainer,o=e.startOffset)}if(!s||"number"!=typeof o||s.nodeType!==Node.TEXT_NODE)return;const r=s.textContent;if(!r)return null;const i=function(e,t,n){let s;for(;s=t.exec(e);){const e=s.index+s[0].length;if(s.index0}function lp(){return document.querySelectorAll(".js-template-form.is-loading").length>0?"loading":document.querySelectorAll(".js-template-form.is-errored").length>0?"error":"ok"}function up(){const e=b(document,".js-commit-templates-form",HTMLFormElement),t=b(e,".js-blob-submit",HTMLButtonElement),n=b(document,".js-template-commit-form-error-message"),s=b(document,".js-template-commit-form-loading-message");switch(lp()){case"loading":n.classList.add("d-none"),s.classList.remove("d-none"),e.setAttribute("disabled","disabled"),t.setAttribute("disabled","disabled");break;case"error":n.classList.remove("d-none"),s.classList.add("d-none"),e.setAttribute("disabled","disabled"),t.setAttribute("disabled","disabled");break;default:n.classList.add("d-none"),s.classList.add("d-none"),e.removeAttribute("disabled"),t.removeAttribute("disabled")}}async function dp(e){e.classList.add("is-loading"),up();const t=b(e,'[name="filename"]',HTMLInputElement).value,n={};for(const c of v(document,".js-template-form",HTMLFormElement)){const e=b(c,'[name="filename"]',HTMLInputElement).value;n[e]={};for(const[t,s]of ke(c))n[e][t]=s}const s=new FormData(e);s.append("current",t),s.append("templates",JSON.stringify(n));const o=await W(e.action,{method:"POST",body:s}),r=Me(document,o.html);d(e,".js-template-preview").replaceWith(r);const i=b(document,".js-hidden-template-fields");let a=i.querySelector(`[data-filename="${o.filename}"]`);a instanceof HTMLInputElement?a.value=o.markdown:((a=document.createElement("input")).type="hidden",a.name=`templates[][${o.filename}]`,a.setAttribute("data-filename",o.filename),a.value=o.markdown,i.append(a)),e.classList.remove("is-loading"),up()}function mp(){for(const e of v(document,".js-template-form",HTMLFormElement))dp(e)}function fp(e){if(function(e){let t;try{t=new URL(e.url)}catch(n){return!0}return t.host!==window.location.host}(e)||function(e){return/[?&]_pjax=/.test(e.url)}(e))return;const t=function(){const e=document.querySelector(".js-timeline-marker");return null!=e?e.getAttribute("data-last-modified"):null}();t&&e.headers.set("X-Timeline-Last-Modified",t)}function pp(e){!function(e){const t=e.closest("details, .js-details-container");if(!t)return;if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/timeline/progressive.js:69");"DETAILS"===t.nodeName?t.setAttribute("open","open"):Ke(t)||we(t)}(e);const t=e.querySelector(`[href='#${e.id}']`);t&&t.click()}function gp(){return window.location.hash.slice(1)}r(".js-template-form .js-issue-labels",{add(e){const t=e.closest(".js-issue-template-labels-container");if(!t)return;const n=b(t,".js-issue-template-labels",HTMLInputElement);n.value="";for(const s of e.children){const e=s.getAttribute("data-name");e&&!n.value.includes(e)&&(""===n.value?n.value=e:n.value=`${n.value}, ${e}`)}}}),r(".js-template-form .js-issue-assignees",{add(e){const t=e.closest(".js-issue-template-assignees-container");if(!(t instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/template-editor.js:103");const n=b(t,".js-issue-template-assignees",HTMLInputElement);n.value="";for(const s of e.children){const e=s.querySelector("span");if(e){const t=e.getAttribute("data-assignee-name");t&&!n.value.includes(t)&&(""===n.value?n.value=t:n.value=`${n.value}, ${t}`)}}}}),u("change",".js-quick-pull-choice-option",function(e){if(!cp())return;const t=e.currentTarget;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/template-editor.js:131");b(document,".js-commit-branch-name").classList.toggle("d-none","quick-pull"!==t.value),b(document,".js-quick-pull-new-branch-name").toggleAttribute("required","quick-pull"===t.value)}),g(".js-quick-pull-new-branch-name",function(e){if(!cp())return;const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/template-editor.js:145");const n=t.value;b(document,".js-quick-pull-target-branch",HTMLInputElement).value=n,n.length&&ap()}),g(".js-synced-template-input",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/template-editor.js:156");const n=t.getAttribute("data-sync");if(!n)return;const s=d(t,".js-sync-container"),o=v(s,`[data-sync-with="${n}"]`),r=t.value;if(""!==r.trim()){for(const e of o)e.textContent=t.value;if("name"===n){b(s,".js-sync-filename",HTMLInputElement).value=`${r.replace(/[^\w]/g,"-")}.md`.toLowerCase()}}else for(const i of o){const e=i.getAttribute("data-sync-blank");e&&(i.innerHTML=`${e} `)}}),u("submit",".js-template-form",function(e){e.preventDefault();const t=e.currentTarget;if(!(t instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/template-editor.js:305");dp(t)}),u("click",".js-toggle-template-commit",function(){const e=b(document,".js-template-commit-pane");e.classList.toggle("d-none"),e.classList.contains("d-none")||mp()}),u("submit",".js-commit-templates-form",function(e){"ok"!==lp()&&e.preventDefault(),up()}),u("click",".js-refresh-template-content",async function(e){const t=e.currentTarget,n=d(t,".js-template-form"),s=b(n,".js-template-content-preview");s.innerHTML='Loading preview... ';const o=b(n,".js-template-content-textarea",HTMLTextAreaElement).value,r=t.getAttribute("data-markdown-preview-url"),i=t.getAttribute("data-markdown-preview-token");if(!r||!i)return;const a=new FormData;a.append("markdown",o),a.append("authenticity_token",i);const c=await S(r,{method:"POST",body:a});s.innerHTML=c}),u("click",".js-custom-template-toggle",e=>{const t=e.target,n=d(t,".js-template-preview"),s=!n.classList.contains("expand-preview");if(function(){const e=document.querySelectorAll(".js-template-preview");for(const t of e)t.classList.remove("expand-preview")}(),s)n.classList.add("expand-preview"),n.scrollIntoView({behavior:"smooth",block:"start"});else{dp(b(n,".js-template-form",HTMLFormElement))}}),u("click",".js-remove-template-button",function(e){const t=d(e.target,".js-template-preview"),n=p(t,"data-filename"),s=b(document,".js-hidden-template-fields"),o=b(document,".js-toggle-template-commit",HTMLButtonElement),r=s.querySelector(`[data-filename="${n}"]`);r&&r.remove(),o.disabled=!1,t.remove(),mp()}),u("click",".js-edit-custom-field-header",function(e){d(e.target,".js-custom-field-header").classList.toggle("section-focus"),b(document,".js-toggle-template-commit",HTMLButtonElement).disabled=!1}),u("details-menu-selected",".js-add-template",function(e){const t=b(document,".js-templates-container"),n=b(document,".js-toggle-template-commit",HTMLButtonElement);if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/template-editor.js:389");const s=e.detail.relatedTarget.getAttribute("data-source");if(!s)return;n.disabled=!1;const o=b(document,`#${s}`);t.insertAdjacentHTML("beforeend",o.innerHTML)},{capture:!0}),u("change",".js-template-repository-choice",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/template-repositories.js:6");const n=t.checked&&""!==t.value,s=t.form;if(!s)throw new Error("invariant: app/assets/modules/github/template-repositories.js:9");b(s,".js-repository-auto-init-options").hidden=n;const o=v(s,".js-template-repository-setting"),r=v(s,".js-template-repository-name-display");if(n){const e=d(t,".js-template-repository-choice-container"),n=b(e,".js-template-repository-name");b(s,".js-repository-readme-choice",HTMLInputElement).checked=!1;const o=b(s,".js-repository-no-gitignore-choice",HTMLInputElement);o.checked=!0,L(o,"change");const i=b(s,".js-repository-no-license-choice",HTMLInputElement);i.checked=!0,L(i,"change");const a=p(t,"data-owner"),c=s.querySelector(`.js-repository-owner-choice[value="${a}"]`);if(c){if(!(c instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/template-repositories.js:30");c.checked=!0,L(c,"change")}else{const e=b(s,".js-repository-owner-choice.js-repository-owner-is-viewer",HTMLInputElement);e.checked=!0,L(e,"change")}for(const t of r)t.textContent=n.textContent}else for(const i of r)i.textContent="";for(const i of o)i.hidden=!n}),r(".js-discussion",function(){let e;function t(){e=new WeakSet(document.querySelectorAll(".js-timeline-item"))}t(),document.addEventListener("pjax:end",t),r(".js-timeline-item",t=>{e.has(t)||_s(t)})}),j(".js-needs-timeline-marker-header",function(e,t,n){fp(n)}),u("deprecatedAjaxSend","[data-remote]",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/timeline/marker.js:46");const{request:t}=e.detail;fp(t)}),ae(function({target:e}){const t=gp();t&&!e&&async function(e){const t=document.getElementById("js-timeline-progressive-loader");if(!t)return;const n=t.getAttribute("data-timeline-item-src");if(!n)return;const s=new URL(n,window.location.origin),o=new URLSearchParams(s.search.slice(1));let r;o.append("anchor",e),s.search=o.toString();try{r=await R(document,s)}catch(l){return}const i=r.querySelector(".js-timeline-item");if(!i)return;const a=i.getAttribute("data-gid");if(!a)return;const c=document.querySelector(`.js-timeline-item[data-gid='${a}']`);if(c){c.replaceWith(i);const t=document.getElementById(e);t&&pp(t)}else{const t=document.getElementById("js-progressive-timeline-item-container");t&&t.replaceWith(r);const n=document.getElementById(e);n&&pp(n)}}(t)}),r(".js-timeline-progressive-focus-container",function(e){const t=gp();if(!t)return;const n=document.getElementById(t);n&&e.contains(n)&&pp(n)});const hp="navigationStart";function vp(){const e={};e.crossBrowserLoadEvent=Date.now();const t=window.performance&&window.performance.timing;if(t)e.connectEnd=t.connectEnd,e.connectStart=t.connectStart,e.domComplete=t.domComplete,e.domContentLoadedEventEnd=t.domContentLoadedEventEnd,e.domContentLoadedEventStart=t.domContentLoadedEventStart,e.domInteractive=t.domInteractive,e.domLoading=t.domLoading,e.domainLookupEnd=t.domainLookupEnd,e.domainLookupStart=t.domainLookupStart,e.fetchStart=t.fetchStart,e.loadEventEnd=t.loadEventEnd,e.loadEventStart=t.loadEventStart,e.navigationStart=t.navigationStart,e.redirectEnd=t.redirectEnd,e.redirectStart=t.redirectStart,e.requestStart=t.requestStart,e.responseEnd=t.responseEnd,e.responseStart=t.responseStart,e.secureConnectionStart=t.secureConnectionStart,e.unloadEventEnd=t.unloadEventEnd,e.unloadEventStart=t.unloadEventStart;else{const t=function(){const e=Yi(hp);if(e)return parseInt(e,10)}();null!=t&&(e.simulatedNavigationStart=t)}const n=function(){if(window.performance&&"timeOrigin"in window.performance&&window.performance.getEntriesByType){const e=window.performance.getEntriesByType("paint");if(e.length){const t=e.find(e=>"first-paint"===e.name);if(t)return Math.round((performance.timeOrigin+t.startTime)/1e6)}}}();return null!=n&&(e.chromeFirstPaintTime=n),e}function bp(e){const t=d(e,".js-topic-save-notice-container"),n=b(t,".js-repo-topics-save-notice");n.classList.remove("d-none"),n.classList.add("d-inline-block","anim-fade-in"),setTimeout(()=>{n.classList.remove("d-inline-block"),n.classList.add("d-none")},1900)}function wp(e){const t=b(e,".js-topic-suggestions-box");t.querySelector(".js-topic-suggestion")||t.remove()}async function jp(e){const t=e.querySelector(".js-topic-suggestions-container");if(!t)return;const n=p(t,"data-url"),s=await R(document,n);t.innerHTML="",t.appendChild(s)}window.performance&&window.performance.timing||window.addEventListener("pagehide",function(){Xi(hp,Date.now().toString())}),async function(){await I,await new Promise(e=>setTimeout(e));const e=function(){const e=[],t=window.performance;if(t&&t.getEntriesByType)for(const n of t.getEntriesByType("resource")){const t={};e.push(t),"string"==typeof n.name&&(t.name=n.name),"string"==typeof n.entryType&&(t.entryType=n.entryType),"number"==typeof n.startTime&&(t.startTime=n.startTime),"number"==typeof n.duration&&(t.duration=n.duration)}return e}();e.length&&_({resourceTimings:e});const t=function(){const e=[],t=window.performance;if(t&&t.getEntriesByType)for(const s of t.getEntriesByType("navigation")){const t={};e.push(t),"string"==typeof s.entryType&&(t.entryType=s.entryType),"number"==typeof s.startTime&&(t.startTime=s.startTime),"number"==typeof s.duration&&(t.duration=s.duration)}const n=vp();return n&&0===e.length&&e.push({name:location.href,entryType:"navigation",startTime:0,duration:n.loadEventEnd-n.navigationStart,initiatorType:"navigation",nextHopProtocol:"http/1.1",type:"navigate",redirectStart:n.redirectStart,redirectEnd:n.redirectEnd,fetchStart:n.fetchStart,domainLookupStart:n.domainLookupStart,domainLookupEnd:n.domainLookupEnd,connectStart:n.connectStart,connectEnd:n.connectEnd,secureConnectionStart:n.secureConnectionStart,requestStart:n.requestStart,responseStart:n.responseStart,responseEnd:n.responseEnd,unloadEventStart:n.unloadEventStart,unloadEventEnd:n.unloadEventEnd,domInteractive:n.domInteractive,domContentLoadedEventStart:n.domContentLoadedEventStart,domContentLoadedEventEnd:n.domContentLoadedEventEnd,domComplete:n.domComplete,loadEventStart:n.loadEventStart,loadEventEnd:n.loadEventEnd}),e}();t.length&&_({navigationTimings:t})}(),u("click",".js-toggler-container .js-toggler-target",function(e){if(!(e instanceof MouseEvent))throw new Error("invariant: app/assets/modules/github/toggler.js:37");if(!e.currentTarget)throw new Error("invariant: app/assets/modules/github/toggler.js:38");if(0!==e.button)return;const t=e.currentTarget.closest(".js-toggler-container"),n=e.currentTarget.closest(".js-toggler-container-secondary");t.classList.toggle("on"),n&&n.classList.toggle("on")}),j(".js-toggler-container",async(e,t)=>{e.classList.remove("success","error"),e.classList.add("loading");try{await t.text(),e.classList.add("success")}catch(n){e.classList.add("error")}finally{e.classList.remove("loading")}}),j(".js-accept-topic-form",async function(e,t){await t.html();const n=d(e,".js-topic-form-area"),s=d(e,".js-topic-suggestion"),o=b(n,".js-template"),r=b(n,".js-tag-input-selected-tags"),i=o.cloneNode(!0),a=b(s,'input[name="input[name]"]',HTMLInputElement).value;b(i,"input",HTMLInputElement).value=a,b(i,".js-placeholder-tag-name").replaceWith(a),i.classList.remove("d-none","js-template"),r.appendChild(i),s.remove(),jp(n),wp(n),bp(e)}),u("click",".js-repo-topics-form-done",function(){!async function(){const e=b(document,".js-topics-list-container"),t=p(e,"data-url"),n=await R(document,t);e.innerHTML="",e.appendChild(n)}()}),j(".js-decline-topic-form",async function(e,t){await t.html(),bp(e);const n=d(e,".js-topic-form-area");d(e,".js-topic-suggestion").remove(),jp(n),wp(n)}),j(".js-repo-topics-edit-form",async function(e,t){const n=d(e,".js-topic-form-area");n.classList.remove("errored"),b(n,".js-topic-error").textContent="";for(const o of n.querySelectorAll(".js-tag-input-tag.invalid-topic"))o.classList.remove("invalid-topic");try{await t.json(),bp(e),jp(n)}catch(s){const t=s.response.json;if(t.message&&(n.classList.add("errored"),b(n,".js-topic-error").textContent=t.message),t.invalidTopics){const n=v(e,".js-topic-input",HTMLInputElement);for(const e of t.invalidTopics)for(const t of n)if(t.value===e){d(t,".js-tag-input-tag").classList.add("invalid-topic")}}}}),u("tags:changed",".js-repo-topics-edit-form",function({target:e}){if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/topics.js:128");E(e)}),u("click",".js-reveal-hidden-topics",function(e){const t=e.target,n=d(t,".js-hidden-topics-container").querySelector(".js-hidden-topics");n&&(n.classList.remove("d-none"),t.remove())}),u("click",".js-hide-content-attachment",function(e){e.preventDefault(),function(e){const t=d(e,".js-content-attachment"),n=p(d(e,"[data-unfurl-hide-url]"),"data-unfurl-hide-url"),s=p(d(e,"[data-unfurl-authenticity-token]"),"data-unfurl-authenticity-token"),o=p(e,"data-id"),r=new XMLHttpRequest;r.onload=function(){r.status>=200&&r.status<300&&t.remove()},r.open("POST",n);const i=new FormData;i.append("id",o),i.append("authenticity_token",s),r.send(i)}(e.currentTarget)}),r(".js-content-attachment .max--md",function(e){const t=b(e,".markdown-body");var n;(t.clientHeight<188||""===((n=t).textContent||"").trim()&&1===(n.querySelectorAll("img")||[]).length)&&(e.classList.remove("max--md"),b(e,".Details-content--closed").hidden=!0,b(e,".Details-content--open").hidden=!0)}),window.requestIdleCallback(()=>{const e=function(){if("Intl"in window)try{return(new window.Intl.DateTimeFormat).resolvedOptions().timeZone}catch(Lh){if(!(Lh instanceof RangeError))throw Lh}}();if(e){const t="https:"===location.protocol?"secure":"";document.cookie=`tz=${encodeURIComponent(e)}; path=/; ${t}`}});class yp extends Error{constructor(e){super(e),this.name="LoginRequestDataError"}}function Ep(){return b(document,".js-use-security-key",HTMLButtonElement)}function Lp(e,t){for(const n of document.querySelectorAll(".js-u2f-message"))n instanceof HTMLElement&&(n.hidden=!0);if(b(document,e).hidden=!1,Ge()&&t){const e=Ep();e.textContent=p(e,"data-retry-message")}}function Tp(e,t){Lp(t,!0),et.report(e)}function kp(){return b(document,".js-u2f-auth-form",HTMLFormElement)}function Mp(e){const t=kp();b(t,".js-u2f-auth-response",HTMLInputElement).value=JSON.stringify(e),E(t)}class Ap{constructor(){const e=kp(),t=e.getAttribute("data-app-id"),n=e.getAttribute("data-challenge"),s=e.getAttribute("data-sign-requests");if(null==t||null==n||null==s)throw new yp("Missing data needed for security key request.");this.appId=t,this.challenge=n;try{this.signRequests=JSON.parse(s)}catch(Lh){throw new yp("Invalid data for security key request.")}}}function xp(e){e&&e.preventDefault(),Je()&&(Ge()?async function(){try{Lp(".js-webauthn-auth-waiting",!1);const t=JSON.parse(p(kp(),"data-webauthn-sign-request")),n=await Ze(t);Lp(".js-webauthn-auth-success",!1),Ep().disabled=!0,Mp(n)}catch(e){Tp(new Error(e),".js-webauthn-auth-error")}}():async function(){try{const t=new Ap;Lp(".js-u2f-auth-waiting",!1),Mp(await Qe(t.appId,t.challenge,t.signRequests))}catch(e){switch(e.code){case"4":return Tp(e,".js-u2f-auth-not-registered-error");case"5":return Tp(e,".js-u2f-auth-timeout");default:return Tp(e,".js-u2f-other-error")}}}())}function Sp(e){if(!(e instanceof Event))throw new Error("invariant: app/assets/modules/github/u2f-login.js:21");xp(e)}r(".js-webauthn-support",{constructor:HTMLInputElement,add:function(e){$(e,Ye())}}),r(".js-webauthn-iuvpaa-support",{constructor:HTMLInputElement,add:function(e){!async function(){$(e,await Xe())}()}}),r(".js-u2f-auth-form-body",function(e){if(!e)return;const t=Je();if(e.classList.toggle("unavailable",!t),t)if(Ge()){const e=Ep();e.hidden=!1,e.classList.contains("js-webauthn-autofocus")&&e.focus()}else xp()}),u("click",".js-u2f-auth-retry",Sp),u("click",".js-use-security-key",Sp),et.report=function(e){t(e)},u("socket:message",".js-updatable-content",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/updatable-content-observer.js:14");const{gid:t,wait:n}=e.detail.data||{};let s;if(t&&e.target.getAttribute("data-gid")===t?s=e.target:t?s=e.target.querySelector(`[data-url][data-gid="${t}"]`):e.currentTarget===e.target&&(s=e.target),!(s instanceof HTMLElement))return;const o=Be.bind(null,s);null==n?o("live-update"):setTimeout(o,n,"delayed-live-update")}),u("upload:setup",".js-upload-avatar-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/avatar.js:6");const t=e.detail.policyRequest,n=e.currentTarget.getAttribute("data-alambic-organization"),s=e.currentTarget.getAttribute("data-alambic-owner-type"),o=e.currentTarget.getAttribute("data-alambic-owner-id");n&&t.body.append("organization_id",n),s&&t.body.append("owner_type",s),o&&t.body.append("owner_id",o)}),u("upload:complete",".js-upload-avatar-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/avatar.js:25");const t=`/settings/avatars/${e.detail.result.id}`;F({content:R(document,t)})});const Hp=2303741511,Cp=4;class qp{static fromFile(e){return new Promise(function(t,n){const s=new FileReader;s.onload=function(){if(!(s.result instanceof ArrayBuffer))throw new Error("invariant: app/assets/modules/github/png-scanner.js:32");t(new qp(s.result))},s.onerror=function(){n(s.error)},s.readAsArrayBuffer(e)})}constructor(e){this.dataview=new DataView(e),this.pos=0}advance(e){this.pos+=e}readInt(e){const t=this,n=function(){switch(e){case 1:return t.dataview.getUint8(t.pos);case 2:return t.dataview.getUint16(t.pos);case 4:return t.dataview.getUint32(t.pos);default:throw new Error("bytes parameter must be 1, 2 or 4")}}();return this.advance(e),n}readChar(){return this.readInt(1)}readShort(){return this.readInt(2)}readLong(){return this.readInt(4)}readString(e){const t=[];for(let n=0;n=0}(t))return;if(!Np(t))return;const n=Pp(t);if(!n.some(Op))return;e.stopPropagation(),e.preventDefault();const s=e.currentTarget;s instanceof HTMLTextAreaElement&&_p(s,n.map(Rp).join(""))}function Dp(e){const t=e.dataTransfer;t&&(t.dropEffect="link")}function Bp(e){const t=e.clipboardData;if(!t||!Np(t))return;const n=Pp(t);if(!n.some(Op))return;e.stopPropagation(),e.preventDefault();const s=e.currentTarget;s instanceof HTMLTextAreaElement&&_p(s,n.map(Rp).join(""))}function Rp(e){return Op(e)?`\n\n`:e}function Np(e){return Array.from(e.types).indexOf("text/uri-list")>=0}function Pp(e){return(e.getData("text/uri-list")||"").split("\r\n")}const Fp=/\.(gif|png|jpe?g)$/i;function Op(e){return Fp.test(e)}function Wp(e){const t=e.dataTransfer;if(!t)return;if(function(e){return Array.from(e.types).indexOf("Files")>=0}(t))return;const n=Yp(t);if(!n)return;e.stopPropagation(),e.preventDefault();const s=e.currentTarget;s instanceof HTMLTextAreaElement&&_p(s,Kp(n))}function zp(e){const t=e.dataTransfer;t&&(t.dropEffect="copy")}function Up(e){if(!e.clipboardData)return;const t=Yp(e.clipboardData);if(!t)return;e.stopPropagation(),e.preventDefault();const n=e.currentTarget;n instanceof HTMLTextAreaElement&&_p(n,Kp(t))}function Vp(e){return e.textContent.trim().replace(/\|/g,"\\|").replace(/\n/g," ")||" "}function Kp(e){const t=Array.from(e.querySelectorAll("tr")),n=(s=t.shift(),Array.from(s.querySelectorAll("td, th")).map(Vp));var s;const o=n.map(()=>"--");return`\n${`${n.join(" | ")}\n${o.join(" | ")}\n`}${t.map(e=>Array.from(e.querySelectorAll("td")).map(Vp).join(" | ")).join("\n")}\n\n`}function Yp(e){if(-1===Array.from(e.types).indexOf("text/html"))return;const t=e.getData("text/html");if(!/=0}(t))return;const n=e.currentTarget;if(!(n instanceof HTMLTextAreaElement))return;const s=t.getData("text/x-gfm");s&&(e.stopPropagation(),e.preventDefault(),_p(n,s))}function Jp(e){return`${Gp(e)?"!":""}[Uploading ${e.name}…]()`}function Gp(e){return["image/gif","image/png","image/jpg","image/jpeg"].indexOf(e.type)>-1}r(".js-paste-markdown",{subscribe:function(e){return function(e){e.addEventListener("dragover",zp),e.addEventListener("drop",Wp),e.addEventListener("paste",Up)}(e),function(e){e.addEventListener("dragover",Dp),e.addEventListener("drop",$p),e.addEventListener("paste",Bp)}(e),function(e){e.addEventListener("paste",Xp)}(e),{unsubscribe:()=>{!function(e){e.removeEventListener("dragover",zp),e.removeEventListener("drop",Wp),e.removeEventListener("paste",Up)}(e),function(e){e.removeEventListener("dragover",Dp),e.removeEventListener("drop",$p),e.removeEventListener("paste",Bp)}(e),function(e){e.removeEventListener("paste",Xp)}(e)}}}});const Qp=144;function Zp(e){const t=d(e,"form",HTMLFormElement);return b(t,"#release_id",HTMLInputElement).value}u("upload:setup",".js-upload-markdown-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/markdown.js:48");const t=b(e.currentTarget,".js-comment-field",HTMLTextAreaElement);t.setCustomValidity("uploading"),Le(t,`${Jp(e.detail.file)}\n`)}),u("upload:complete",".js-upload-markdown-image",async function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/markdown.js:54");const t=e.detail,n=e.currentTarget,s=b(n,".js-comment-field",HTMLTextAreaElement),o=Jp(t.file);function r(e){let n=`[${t.file.name}](${t.policy.asset.href})`;if(Gp(t.file)){const s=function(e){return e.replace(/[[\]\\"<>&]/g,".").replace(/\.{2,}/g,".").replace(/^\.|\.$/gi,"")}(t.file.name).replace(/\.[^.]+$/,"").replace(/\./g," "),o=t.policy.asset.href;if(e&&e.ppi===Qp){n=` `}else n=``}s.setCustomValidity(""),tt(s,o,n)}try{r(await async function(e){if("image/png"!==e.type)return null;const t=e.slice(0,10240,e.type),n=await qp.fromFile(t),s={width:0,height:0,ppi:1};return n.scan(function(e){switch(e){case"IHDR":return s.width=this.readLong(),s.height=this.readLong(),!0;case"pHYs":{const e=this.readLong(),t=this.readLong();let n;return 1===this.readChar()&&(n=Ip),n&&(s.ppi=Math.round((e+t)/2*n)),!1}case"IDAT":return!1}return!0}),s}(t.file))}catch(i){r(),setTimeout(function(){throw i})}}),u("upload:error",".js-upload-markdown-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/markdown.js:90");const t=b(e.currentTarget,".js-comment-field",HTMLTextAreaElement),n=Jp(e.detail.file);t.setCustomValidity(""),tt(t,n,"")}),u("upload:invalid",".js-upload-markdown-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/markdown.js:97");const t=b(e.currentTarget,".js-comment-field",HTMLTextAreaElement),n=Jp(e.detail.file);t.setCustomValidity(""),tt(t,n,"")}),u("upload:setup",".js-upload-marketplace-listing-screenshot",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/marketplace-listing-screenshot.js:6");const t=e.detail.policyRequest,n=e.currentTarget.getAttribute("data-marketplace-listing-id");n&&t.body.append("marketplace_listing_id",n)}),u("upload:complete",".js-upload-marketplace-listing-screenshot",async function(e){const t=p(e.currentTarget,"data-screenshots-url"),n=b(document,".js-marketplace-listing-screenshots-container"),s=await R(document,t);n.innerHTML="",n.appendChild(s)}),u("upload:setup",".js-upload-marketplace-listing-hero-card-background",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/marketplace-listing-hero-card-background.js:5");const t=e.detail.policyRequest,n=e.currentTarget.getAttribute("data-marketplace-listing-id");n&&t.body.append("marketplace_listing_id",n)}),u("upload:complete",".js-upload-marketplace-listing-hero-card-background",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/marketplace-listing-hero-card-background.js:14");const t=e.detail,n=t.policy;b(document,".js-marketplace-listing-hero-card-background-id",HTMLInputElement).value=n.asset.id||t.result.id;const s=b(document,".js-hero-listing-container"),o=n.asset.href||t.result.href;s.style.backgroundImage=`url(${o})`}),u("click",".js-release-remove-file",function(e){const t=d(e.currentTarget,".js-release-file");t.classList.add("delete"),b(t,"input.destroy",HTMLInputElement).value="true"}),u("click",".js-release-undo-remove-file",function(e){const t=d(e.currentTarget,".js-release-file");t.classList.remove("delete"),b(t,"input.destroy",HTMLInputElement).value=""});let eg=null;function tg(e,t){const n=t.body;if(!(n instanceof FormData))throw new Error("invariant: app/assets/modules/github/upload/release-file.js:44");n.append("release_id",Zp(e));const s=v(document,".js-releases-field .js-release-file.delete .id",HTMLInputElement);if(s.length){const e=s.map(e=>e.value);n.append("deletion_candidates",e.join(","))}}u("release:saved",".js-release-form",function(e){const t=e.currentTarget;eg=null;let n=!1;for(const o of t.querySelectorAll(".js-releases-field .js-release-file"))o.classList.contains("delete")?o.remove():o.classList.contains("js-template")||(n=!0);const s=b(t,".js-releases-field");s.classList.toggle("not-populated",!n),s.classList.toggle("is-populated",n)}),u("upload:setup",".js-upload-release-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/release-file.js:55");const{policyRequest:t,preprocess:n}=e.detail,s=e.currentTarget;if(Zp(s))return void tg(s,t);if(!eg){const e=b(document,".js-save-draft",HTMLButtonElement);eg=Pm(e)}const o=tg.bind(null,s,t);n.push(eg.then(o))}),u("upload:start",".js-upload-release-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/release-file.js:78");const t=e.detail.policy;b(e.currentTarget,".js-upload-meter").classList.remove("d-none");const n=t.asset.replaced_asset;if(n)for(const s of v(document,".js-releases-field .js-release-file .id",HTMLInputElement))Number(s.value)===n&&d(s,".js-release-file").remove()}),u("upload:complete",".js-upload-release-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/release-file.js:94");const t=e.detail,n=t.policy,s=b(document,".js-releases-field"),o=b(s,".js-template").cloneNode(!0);o.classList.remove("d-none","js-template"),b(o,"input.id",HTMLInputElement).value=n.asset.id||t.result.id;const r=n.asset.name||n.asset.href.split("/").pop();for(const a of o.querySelectorAll(".js-release-asset-filename"))a instanceof HTMLInputElement?a.value=r:a.textContent=r;const i=n.asset.size?`(${(n.asset.size/1048576).toFixed(2)} MB)`:"";b(o,".js-release-asset-filesize").textContent=i,s.appendChild(o),s.classList.remove("not-populated"),s.classList.add("is-populated"),b(e.currentTarget,".js-upload-meter").classList.add("d-none")}),u("upload:progress",".js-upload-release-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/release-file.js:126");b(e.currentTarget,".js-upload-meter").style.width=`${e.detail.percent}%`}),u("upload:setup",".js-upload-repository-image",function(){b(document,".js-remove-repository-image-button").hidden=!0}),u("upload:complete",".js-upload-repository-image",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/repository-image.js:9");const t=e.detail,n=t.policy,s=n.asset.id||t.result.id,o=n.asset.href||t.result.href;b(document,".js-repository-image-id",HTMLInputElement).value=s,b(document,".js-remove-repository-image-button").hidden=!1,b(document,".js-repository-image-container").style.backgroundImage=`url(${o})`});let ng=null;const sg=new WeakMap;function og(e){e.classList.remove("is-progress-bar");const t=d(e,".js-upload-manifest-file-container");b(t,".js-upload-progress").classList.remove("active"),b(t,".js-upload-meter-text .js-upload-meter-filename").textContent=""}function rg(e){return e._path?`${e._path}/${e.name}`:e.name}function ig(e){og(e.currentTarget)}function ag(e){return Array.from(e.types).indexOf("Files")>=0}function cg(e,t){xi(new Ti(e),t)}function lg(e){switch(e){case"image/gif":return"image.gif";case"image/png":return"image.png";case"image/jpeg":return"image.jpg"}}function ug(e){const t=e.dataTransfer;t&&ag(t)&&e.preventDefault()}function dg(e){const t=e.dataTransfer;t&&ag(t)&&e.preventDefault()}u("upload:drop:setup",".js-upload-manifest-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:36");const t=e.detail.files,n=parseInt(e.currentTarget.getAttribute("data-directory-upload-max-files"),10);t.length>n&&(e.preventDefault(),e.currentTarget.classList.add("is-too-many"))}),u("upload:drop:setup",".js-upload-manifest-tree-view",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:46");e.preventDefault();const t=e.detail.upload,n=b(document,"#js-repo-pjax-container");n.addEventListener("pjax:success",()=>{t(b(n,".js-upload-manifest-file"))},{once:!0});const s=p(e.currentTarget,"data-drop-url");K({url:s,container:n})}),u("upload:setup",".js-upload-manifest-file",async function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:63");const{policyRequest:t,preprocess:n}=e.detail,s=e.currentTarget;function o(){t.body.append("upload_manifest_id",sg.get(s))}if(function(e,t){const n=d(e,".js-upload-manifest-file-container"),s=b(n,".js-upload-progress");s.classList.add("active"),e.classList.add("is-progress-bar");const o=b(s,".js-upload-meter-text");b(o,".js-upload-meter-range-start").textContent=String(t.batch.uploaded+1),b(o,".js-upload-meter-range-end").textContent=String(t.batch.size)}(s,e.detail),sg.get(s))return void o();if(ng)return void n.push(ng.then(o));const r=d(s,".js-upload-manifest-file-container").querySelector(".js-upload-manifest-form");ng=W(r.action,{method:r.method,body:new FormData(r)});const[i,a]=function(){let e,t;const n=new Promise((n,s)=>{e=n,t=s});if(!e)throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:116");if(!t)throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:117");return[n,e,t]}();n.push(i.then(o));const c=await ng,l=b(document,".js-manifest-commit-form",HTMLFormElement).elements.namedItem("manifest_id");if(!(l instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:101");l.value=c.upload_manifest.id,sg.set(s,c.upload_manifest.id),ng=null,a()}),u("upload:start",".js-upload-manifest-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:130");const t=e.detail,n=d(e.currentTarget,".js-upload-manifest-file-container"),s=b(n,".js-upload-progress"),o=b(s,".js-upload-meter-text");b(o,".js-upload-meter-range-start").textContent=t.batch.uploaded+1,b(o,".js-upload-meter-filename").textContent=rg(t.file)}),u("upload:complete",".js-upload-manifest-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:141");const t=e.detail,n=b(document,".js-manifest-commit-file-template",HTMLTableElement).rows[0].cloneNode(!0);b(n,".name").textContent=rg(t.file);const s=t.policy.asset.id||t.result.id,o=b(n,".js-remove-manifest-file-form",HTMLFormElement).elements.namedItem("file_id");if(!(o instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:154");o.value=s;const r=b(document,".js-manifest-file-list");r.classList.remove("d-none"),e.currentTarget.classList.add("is-file-list"),b(document,".js-upload-progress").classList.add("is-file-list"),b(r,".js-manifest-file-list-root").appendChild(n),t.batch.isFinished()&&og(e.currentTarget)}),u("upload:progress",".js-upload-manifest-file",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/upload-manifest-file.js:171");const t=e.detail,n=d(e.currentTarget,".js-upload-manifest-file-container");b(n,".js-upload-meter").style.width=`${t.batch.percent()}%`}),u("upload:error",".js-upload-manifest-file",ig),u("upload:invalid",".js-upload-manifest-file",ig),j(".js-remove-manifest-file-form",async function(e,t){await t.html();const n=d(e,".js-manifest-file-list-root");if(d(e,".js-manifest-file-entry").remove(),!n.hasChildNodes()){d(n,".js-manifest-file-list").classList.add("d-none"),b(document,".js-upload-manifest-file").classList.remove("is-file-list"),b(document,".js-upload-progress").classList.remove("is-file-list")}}),r(".js-manifest-ready-check",{initialize(e){!async function(e){const t=p(e,"data-redirect-url");try{await te(p(e,"data-poll-url")),window.location=t}catch(Lh){b(document,".js-manifest-ready-check").classList.add("d-none"),b(document,".js-manifest-ready-check-failed").classList.remove("d-none")}}(e)}}),u("upload:setup",".js-upload-enterprise-installation-user-accounts-upload",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/enterprise-installation-user-accounts-upload.js:5");const t=e.detail.policyRequest,n=e.currentTarget.getAttribute("data-business-id");n&&t.body.append("business_id",n);const s=e.currentTarget.getAttribute("data-enterprise-installation-id");s&&t.body.append("enterprise_installation_id",s)}),u("upload:complete",".js-upload-enterprise-installation-user-accounts-upload",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/upload/enterprise-installation-user-accounts-upload.js:20");const t=e.detail,n=t.policy,s=b(e.currentTarget,".js-enterprise-installation-user-accounts-upload-id",HTMLInputElement);s.value=n.asset.id||t.result.id;const o=b(e.currentTarget,".js-enterprise-installation-id",HTMLInputElement),r=e.currentTarget.getAttribute("data-enterprise-installation-id");r&&(o.value=r);const i=s.form;i&&i.submit()});let mg=null;function fg(e){if(yg)return;const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/uploads.js:70");mg&&clearTimeout(mg),mg=setTimeout(()=>t.classList.remove("dragover"),200);const n=e.dataTransfer;n&&ag(n)&&(n.dropEffect="copy",t.classList.add("dragover"),e.stopPropagation(),e.preventDefault())}function pg(e){if(e.dataTransfer&&(e.dataTransfer.dropEffect="none"),!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/uploads.js:91");e.currentTarget.classList.remove("dragover"),e.stopPropagation(),e.preventDefault()}function gg(e){if(e.target instanceof Element&&e.target.classList.contains("js-document-dropzone")){if(!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/uploads.js:102");e.currentTarget.classList.remove("dragover")}}function hg(e){const t=document.body;if(!t)throw new Error("invariant: app/assets/modules/github/uploads.js:130");const n=e.currentTarget;if(!(n instanceof Element))throw new Error("invariant: app/assets/modules/github/uploads.js:132");n.classList.remove("dragover"),t.classList.remove("dragover");const s=e.dataTransfer;s&&ag(s)&&(!async function(e,t){const n=await Ii(t,e.hasAttribute("data-directory-upload"));if(!n.length)return void Mi(e,"is-hidden-file");const s=cg.bind(null,n);!L(e,"upload:drop:setup",{upload:s,files:n})||cg(n,e)}(n,s),e.stopPropagation(),e.preventDefault())}function vg(e){if(!e.clipboardData)return;if(!e.clipboardData.items)return;const t=Array.from(e.clipboardData.items).map(e=>[e,lg(e.type)]).filter(e=>e[1]).shift();if(!t)return;const[n]=t,s=n.getAsFile();if(!(e.currentTarget instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/uploads.js:163");if(!s)throw new Error("invariant: app/assets/modules/github/uploads.js:164");cg([s],e.currentTarget),e.preventDefault()}function bg(e){const t=e.target;if(t instanceof HTMLInputElement&&t.classList.contains("js-manual-file-chooser")){if(e.currentTarget instanceof FileAttachmentElement)e.currentTarget.upload(t.files);else{if(!(e.currentTarget instanceof Element))throw new Error("invariant: app/assets/modules/github/uploads.js:181");cg(t.files,e.currentTarget)}t.value=""}}function wg({currentTarget:e}){let t;if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/uploads.js:196");Mi(t=e.classList.contains("js-uploadable-container")?e:b(e,".js-uploadable-container, file-attachment"),"is-default")}let jg=0,yg=!1;function Eg(){yg=!0}function Lg(){yg=!1}function Tg(e){return b(e,'[role="tablist"] [role="tab"][aria-selected="true"]')}function kg(e){const t=v(e,'[role="tablist"] [role="tab"]'),n=Tg(e);return v(e,'[role="tabpanel"]',HTMLElement)[Array.from(t).indexOf(n)]}function Mg(e){const t=e.querySelector(".js-emoji-picker-filter"),n=b(e,".js-emoji-picker-filter-tab-button"),s=b(e,".js-emoji-picker-all-emoji");t instanceof HTMLInputElement&&(t.value=""),s.setAttribute("value",""),n.hidden=!0}function Ag(e){e.classList.add("selected-emoji")}function xg(e){if(!(e.target instanceof HTMLElement))return;const t=e.target.closest(".js-emoji-picker");if(t&&t instanceof HTMLElement&&!t.hidden)switch(e.key){case"ArrowRight":case"ArrowLeft":case"ArrowUp":case"ArrowDown":e.preventDefault(),function(e,t){const n=kg(e),s=Array.from(n.querySelectorAll(".js-emoji-button")),o=n.querySelector(".selected-emoji.js-emoji-button"),r=function(e){let t,n=0;const s=e[0].getBoundingClientRect().top;for(const o of e){if(s<(t=o.getBoundingClientRect()).top)break;n+=1}return n}(s),i=function(e,t){const n=[[]];let s=0;for(let o=0;o0&&o%t==0&&(s+=1,n.push([])),n[s].push(r)}return n}(s,r);let a=0,c=0;if(o){const e=function(e,t){let n=0,s=0,o=[],r=-1;for(let i=0;i-1){s=r;break}n+=1}return{row:n,col:s}}(i,o);switch(a=e.row,c=e.col,o.classList.remove("selected-emoji"),t){case"ArrowRight":c+=1;break;case"ArrowDown":a+=1;break;case"ArrowLeft":c-=1;break;case"ArrowUp":a-=1}}const l=i.length-1,u=c>i[l].length-1,d=a===l;a<0?(a=l,u&&(a-=1)):(a>l||d&&u&&"ArrowDown"===t)&&(a=0);const m=i[a].length-1;c<0?c=m:c>m&&(c=0);const f=i[a][c];Ag(f),f.focus()}(t,e.key)}}function Sg(e){e.hidden=!0,document.removeEventListener("keydown",xg)}function Hg(e){document.addEventListener("click",t=>{if(t.target instanceof HTMLElement){t.target.closest(".js-emoji-picker")!==e&&Sg(e)}});const t=b(e,".js-emoji-picker-all-emoji"),n=b(e,".js-emoji-picker-no-results"),s=b(e,".js-emoji-picker-results-header");t.addEventListener("fuzzy-list-sorted",e=>{if(!(e instanceof CustomEvent))return;const o=Number(e.detail)>0;n.hidden=o,t.hidden=!o,s.hidden=!o});const o=e.querySelector(".js-emoji-picker-filter");o instanceof HTMLInputElement&&o.addEventListener("input",()=>(function(e){const t=d(e,".js-emoji-picker"),n=Tg(t),s=b(t,".js-emoji-picker-filter-tab-button",HTMLButtonElement);if(b(t,".js-emoji-picker-all-emoji").setAttribute("value",e.value),n.classList.contains("js-emoji-picker-filter-tab-button")||n.classList.add("emoji-picker-prior-selected-tab-button"),e.value)s.hidden=!1,"true"===s.getAttribute("aria-selected")||(s.click(),e.focus());else{s.hidden=!0;const e=t.querySelector(".emoji-picker-prior-selected-tab-button");e instanceof HTMLButtonElement&&e.click()}})(o))}function Cg(e){return b(e,".js-user-status-details").hasAttribute("open")}function qg(e){const t=e.querySelector(".js-emoji-picker");t instanceof HTMLElement&&(!function(e){const t=b(e,".js-original-emoji-category"),n=b(e,".js-original-emoji-category-tab",HTMLElement),s=Tg(e),o=kg(e),r=e.querySelector(".js-originally-selected-emoji");if(r){const t=e.querySelector(".selected-emoji");t&&t.classList.remove("selected-emoji"),r.classList.add("selected-emoji")}s.removeAttribute("aria-selected"),t.setAttribute("aria-selected","true"),o.hidden=!0,n.hidden=!1}(t),Mg(t),Sg(t))}function Ig(e){const t=b(e,".js-user-status-original-emoji"),n=b(e,".js-user-status-custom-emoji"),s=b(e,".js-user-status-no-emoji-icon");n.innerHTML=t.innerHTML,s.hidden=n.hasChildNodes()}function _g(e,t){Ig(e),function(e,t){const n=e.querySelector(".js-user-status-emoji-picker");if(!(n instanceof window.IncludeFragmentElement))return;const s=p(n,"data-url");if(t){const e=new URL(s,window.location.origin),t=new URLSearchParams(e.search.slice(1));t.append("show_picker","1"),e.search=t.toString()}n.setAttribute("src",s.toString())}(e,t),function(e){const t=e.querySelector(".js-user-status-org-picker");if(!(t instanceof window.IncludeFragmentElement))return;const n=p(t,"data-url");t.src=n.toString()}(e)}function $g(e){const t=b(e,".js-user-status-suggestions"),n=b(e,".js-user-status-message-field",HTMLInputElement).value.trim().length>0;t.classList.toggle("collapsed",n),t.setAttribute("aria-expanded",n.toString())}function Dg(e,t){Cg(e)?function(e){const t=b(e,".js-user-status-message-field",HTMLInputElement);Ig(e),qg(e),t.value=t.defaultValue,Dr(e)}(e):_g(e,t),Pg(e)}function Bg(e,t){b(e,".js-user-status-custom-emoji").innerHTML=t.innerHTML,b(e,".js-user-status-no-emoji-icon").hidden=!0}function Rg(e,t){b(e,".js-user-status-emoji-field",HTMLInputElement).value=t.value}function Ng(e,t){if("Escape"===X(t)){const t=e.closest(".js-user-status-container");if(!(t instanceof HTMLElement))return;e.value=e.defaultValue,Dg(t,!1)}}function Pg(e){const t=b(e,".js-user-status-submit",HTMLButtonElement),n=b(e,".js-clear-user-status-button",HTMLButtonElement),s=b(e,".js-user-status-message-field",HTMLInputElement),o=b(e,".js-user-status-emoji-field",HTMLInputElement),r=s.value.trim(),i=o.value.trim();let a=!1,c=!1;var l;_r(l=s)-ne(l.value)<0&&(a=!0),r.length<1&&i.length<1&&(a=!0,n.classList.contains("js-user-status-exists")||(c=!0)),t.disabled=a,n.disabled=c}function Fg(e){return d(e,".js-user-status-container")}function Og(e,t){if(Cg(e))return;const n=e.querySelectorAll(".js-toggle-user-status-edit.Details-content--closed");for(const s of n)s.classList.toggle("text-blue",t),s.classList.toggle("link-gray-dark",!t)}function Wg(e){if(!(e.target instanceof Element))return;Og(d(e.target,".js-user-status-container"),!0)}function zg(e){if(!(e.target instanceof Element))return;Og(d(e.target,".js-user-status-container"),!1)}function Ug({currentTarget:e}){if(!(e instanceof Element))throw new Error("invariant: app/assets/modules/github/warn-unsaved-changes.js:40");B(e)?function(e){const t=e.getAttribute("data-warn-unsaved-changes")||"Changes you made may not be saved.";window.onbeforeunload=function(e){return e.returnValue=t,t}}(e):Vg()}function Vg(){window.onbeforeunload=null}function Kg({currentTarget:e}){if(!(e instanceof Element))throw new Error("invariant: app/assets/modules/github/warn-unsaved-changes.js:67");e.hasAttribute("open")||Vg()}function Yg(e){const t=e.currentTarget;if(!(t instanceof Element))throw new Error("invariant: app/assets/modules/github/warn-unsaved-changes.js:77");if(!t.closest("details[open]"))return;let n=!0;const s=v(t,"form[data-warn-unsaved-changes]",HTMLFormElement);for(const o of s)if(B(o)){const e=p(o,"data-warn-unsaved-changes");n=confirm(e);break}n||e.preventDefault()}function Xg(e,t,n){const s=e[n];let o={position_in_list:n,number_of_related_issues:e.length,title_length:t.length};return s.repository.isPrivate||(o=Object.assign({},o,{title_string_at_time_of_click:t,id_of_clicked_result:s.databaseId,results_shown_at_time_of_click:e.map(e=>e.databaseId)})),o}r(".js-document-dropzone",{add(e){const t=document.body;if(!t)throw new Error("invariant: app/assets/modules/github/uploads.js:224");t.addEventListener("dragstart",Eg),t.addEventListener("dragend",Lg),t.addEventListener("dragenter",fg),t.addEventListener("dragover",fg),t.addEventListener("dragleave",gg),e.addEventListener("drop",hg)},remove(e){const t=document.body;if(!t)throw new Error("invariant: app/assets/modules/github/uploads.js:235");t.removeEventListener("dragstart",Eg),t.removeEventListener("dragend",Lg),t.removeEventListener("dragenter",fg),t.removeEventListener("dragover",fg),t.removeEventListener("dragleave",gg),e.removeEventListener("drop",hg)}}),r(".js-uploadable-container, file-attachment",{add(e){0==jg++&&(document.addEventListener("drop",ug),document.addEventListener("dragover",dg)),e.addEventListener("change",bg);const t=e.closest("form");t&&t.addEventListener("reset",wg)},remove(e){0==--jg&&(document.removeEventListener("drop",ug),document.removeEventListener("dragover",dg)),e.removeEventListener("change",bg);const t=e.closest("form");t&&t.removeEventListener("reset",wg)}}),r(".js-uploadable-container",{add(e){e.addEventListener("dragenter",fg),e.addEventListener("dragover",fg),e.addEventListener("dragleave",pg),e.addEventListener("drop",hg),e.addEventListener("paste",vg)},remove(e){e.removeEventListener("dragenter",fg),e.removeEventListener("dragover",fg),e.removeEventListener("dragleave",pg),e.removeEventListener("drop",hg),e.removeEventListener("paste",vg)}}),u("click",".js-user-status-expire-button",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&function(e,t){const n=b(e,".js-user-status-expiration-interval-selected"),s=b(e,".js-user-status-expire-drop-down"),o=b(e,".js-user-status-expiration-date-input",HTMLInputElement);n.textContent=t.title,o.value=t.value,s.removeAttribute("open")}(Fg(t),t)}),u("click",".js-toggle-user-status-edit",function(e){if(!(e.currentTarget instanceof HTMLElement))return;const t=Fg(e.currentTarget);e.target instanceof HTMLElement&&Dg(t,!!e.target.closest(".js-toggle-user-status-emoji-picker"))}),u("click",".js-toggle-user-status-emoji-picker",function(e){if(!(e.currentTarget instanceof HTMLElement))return;const t=Fg(e.currentTarget).querySelector(".js-emoji-picker");t instanceof HTMLElement&&t.hidden&&setTimeout(()=>(function(e){const t=e.querySelector(".js-emoji-picker-filter"),n=!e.hidden;e.hidden=n,n?(t instanceof HTMLInputElement&&(t.value=""),document.removeEventListener("keydown",xg)):(t instanceof HTMLInputElement&&t.focus(),document.addEventListener("keydown",xg))})(t),50)}),u("click",".js-emoji-button",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&function(e){const t=d(e,".js-user-status-container"),n=b(t,".js-emoji-picker");Rg(t,e),function(e){const t=e.querySelector(".selected-emoji");t&&t.classList.remove("selected-emoji")}(t),Ag(e),Bg(t,e),Pg(t),Sg(n)}(t)}),u("click",".js-user-status-emoji-tab",function(e){const t=e.currentTarget;t instanceof HTMLElement&&function(e){const t=d(e,".js-emoji-picker"),n=t.querySelector(".js-emoji-picker-filter");Mg(t),!t.hidden&&n instanceof HTMLInputElement&&n.focus()}(t)}),h(".js-user-status-message-field",function(e){$g(Fg(e))}),m("keyup",".js-user-status-message-field",e=>{const t=e.target;t instanceof HTMLInputElement&&e instanceof KeyboardEvent&&Ng(t,e)}),m("keyup",".js-emoji-picker-filter",e=>{const t=e.target;t instanceof HTMLInputElement&&e instanceof KeyboardEvent&&Ng(t,e)}),u("click",".js-clear-user-status-button",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&function(e){e.hidden=!0,b(e,".js-user-status-emoji-field",HTMLInputElement).value="",b(e,".js-user-status-no-emoji-icon").hidden=!1,b(e,".js-user-status-custom-emoji").innerHTML="";const t=b(e,".js-user-status-message-field",HTMLInputElement);t.value="",t.classList.contains("js-characters-remaining-field")&&$r(t);const n=e.querySelector(".selected-emoji.js-emoji-button");n&&n.classList.remove("selected-emoji"),b(e,".js-user-status-limited-availability-checkbox",HTMLInputElement).checked=!1;const s=e.querySelector(".js-user-status-expiration-date-input");s&&s instanceof HTMLInputElement&&(s.value=""),Pg(e),$g(e);const o=b(e,".js-user-status-form",HTMLFormElement);E(o)}(d(t,".js-user-status-container"))}),u("click",".js-predefined-user-status",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&function(e){const t=d(e,".js-user-status-container"),n=b(e,".js-predefined-user-status-emoji"),s=b(e,".js-predefined-user-status-message"),o=b(t,".js-user-status-message-field",HTMLInputElement);o.value=(s.textContent||"").trim(),Bg(t,n),Rg(t,e),Pg(t),$g(t),o.classList.contains("js-characters-remaining-field")&&$r(o)}(t)}),g(".js-user-status-message-field",function(e){const t=e.target;if(!(t instanceof HTMLElement))return;const n=d(t,".js-user-status-form");Pg(n),$g(n)}),u("click",".js-user-status-org-button",function(e){const t=e.currentTarget;t instanceof HTMLButtonElement&&function(e){const t=d(e,".js-user-status-container"),n=b(t,".js-user-status-org-id-field",HTMLInputElement),s=b(t,".js-user-status-org-details"),o=b(t,".js-user-status-selected-org"),r=b(e,".js-user-status-org-display"),i=b(t,".js-user-status-org-message"),a=e.value,c=""!==a,l=b(t,".js-user-status-message-field",HTMLInputElement),u=t.querySelector(".js-user-status-org-button.selected");let m="";u&&u.classList.remove("selected"),e.classList.add("selected"),n.value=a,o.innerHTML="";const f=r.cloneNode(!0);if(f instanceof HTMLElement&&(f.hidden=!1),o.appendChild(f),s.removeAttribute("open"),c){const t=p(i,"data-prefix"),n=p(i,"data-suffix"),s=p(e,"data-org");i.textContent=`${t}${s}${n}`,i.hidden=!1;const o=new URL(p(l,"data-org-url"),window.location.origin),r=new URLSearchParams(o.search.slice(1));r.append("global_id",a),o.search=r.toString(),m=o.toString()}else i.textContent=p(i,"data-none"),i.hidden=!0,m=p(l,"data-no-org-url");d(l,"text-expander").setAttribute("data-mention-url",m)}(t)}),u("change",".js-user-status-limited-availability-checkbox",function(e){const t=e.target;if(!(t instanceof HTMLInputElement))return;const n=d(t,".js-user-status-form"),s=t.checked,o=p(t,"data-default-message"),r=b(n,".js-user-status-message-field",HTMLInputElement);s&&r.value.length<1?r.value=o:s||r.value!==o||(r.value=""),Pg(n),$g(n)}),j(".js-user-status-form",async function(e,t){const n=b(e,".js-user-status-form-group");let s;n.classList.remove("errored");try{s=await t.html()}catch(a){return void n.classList.add("errored")}const o=d(e,".js-user-status-container"),r=s.html.querySelector(".js-user-status-container");o.replaceWith(s.html);const i=document.querySelectorAll(".js-user-status-container");for(const c of i)if(r!==c){const e=c.closest(".js-user-status-context");if(e){const t=p(e,"data-url"),n=await R(document,t);c.replaceWith(n)}}}),r(".js-toggle-user-status-edit",function(e){e.addEventListener("mouseenter",Wg),e.addEventListener("mouseleave",zg)}),r(".js-emoji-picker",e=>{if(!(e instanceof HTMLElement))throw new Error("invariant: app/assets/modules/github/user-status-submit.js:69");Hg(e)}),r("[data-warn-unsaved-changes]",{add(e){e.addEventListener("input",Ug),e.addEventListener("change",Ug),e.addEventListener("submit",Vg);const t=e.closest("details-dialog");t&&(d(t,"details").addEventListener("toggle",Kg),t.addEventListener("details-dialog-close",Yg))},remove(e){e.removeEventListener("input",Ug),e.removeEventListener("change",Ug),e.removeEventListener("submit",Vg);const t=e.closest("details-dialog");t&&(d(t,"details").removeEventListener("toggle",Kg),t.removeEventListener("details-dialog-close",Yg),Vg())}});const Jg="related-issues-hidden";let Gg;async function Qg(e){const t=e.value;if(Gg=t,!t)return[];!function(e){const t=b(document,".js-related-issues-spinner");"true"===e.getAttribute("data-user-has-opted-in")&&(t.hidden=!1)}(e);const n=p(e,"data-related-issues-path"),s=await W(Te(n,{method:"POST",body:rh(t,e.getAttribute("data-repository-id"))}));if(ih(),!s.data)throw new Error("invariant: app/assets/modules/github/related-issues.js:107");return s.data.errors?[]:s.data.repository.similarIssues.nodes}function Zg(e,t){if(0===t.length)return ih(),eh(),void(b(document,".js-related-issues-suggestions-results-wrapper").hidden=!0);b(document,".js-number-of-related-issues",HTMLInputElement).value=`${t.length}`,function(e){const t=b(document,".js-related-issues-suggestions-results-container");t.innerHTML="",t.appendChild(e),function(){if(Yi(Jg))return;oh(!0),th(!0),b(document,".js-related-issues-results-display").setAttribute("open","")}(),b(document,".js-related-issues-suggestions-results-wrapper").hidden=!1}(function(e,t){const n=b(document,".js-related-issues-suggestions-template",HTMLTemplateElement),s=document.createDocumentFragment();for(let o=0;o{Zg(e,await Qg(e))},{wait:500}),u("change",".js-related-issues-search",async()=>{e.value!==Gg&&Zg(e,await Qg(e))})}}),u("submit","form#new_issue",e=>{e.defaultPrevented||Ji(Jg)}),u("click",".js-toggle-related-results",()=>{oh(),th(),b(document,".js-related-issues-results-display").hasAttribute("open")?Xi(Jg,"true"):(Ji(Jg),window.localStorage.removeItem(Jg))}),u("navigation:keydown",".js-issue-title-input-container",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/related-issues.js:57");const t=document.querySelector('.js-issue-title-input-container .js-navigation-item[aria-selected="true"]'),n=b(document,".js-related-issues-results-display").hasAttribute("open");switch(e.detail.hotkey){case"Enter":if(!t){const t=d(e.currentTarget,"form",HTMLFormElement);t.querySelector("input[type=submit], button[type=submit]").disabled||E(t)}break;case"Escape":n&&b(document,".js-hide-related-results").click()}}),m("keydown",".js-related-issues-search",function(e){document.querySelector('.js-issue-title-input-container .js-navigation-item[aria-selected="true"]')||Io(e)});let nh,sh=!1;function oh(e){let t;t=void 0===e?!b(document,".js-related-issues-results-display").hasAttribute("open"):!!e,!sh&&t?(xe(b(document,".js-related-issues-suggestions-results-container")),b(document,".js-related-issues-search").classList.add("js-navigation-enable")):(nt(b(document,".js-related-issues-suggestions-results-container")),b(document,".js-related-issues-search").classList.remove("js-navigation-enable"))}function rh(e,t){if(!t)throw new Error("invariant: app/assets/modules/github/related-issues.js:235");const n=new FormData;return n.append("variables[query]",e),n.append("variables[repository_id]",t),n}function ih(){const e=document.querySelector(".js-related-issues-spinner");e&&(e.hidden=!0)}function ah(e,t,n){const s=e.content.cloneNode(!0);"OPEN"===t.state?ch(s,".js-related-issues-octicon-issue-opened"):ch(s,".js-related-issues-octicon-issue-closed");const o=b(s,".js-related-issue-suggestion-link",HTMLAnchorElement);if(o.href=t.url,o.setAttribute("data-hydro-client-context",JSON.stringify(n)),b(s,".js-related-issue-suggestion-title",HTMLElement).textContent=t.title,b(s,".js-related-issue-number",HTMLElement).textContent=`#${t.number}`,b(s,".js-related-issue-opened-at",HTMLElement).setAttribute("datetime",t.createdAt),t.author){const e=b(s,".js-related-issue-author",HTMLElement);e.textContent=`${t.author.login}`,e.hidden=!1}return b(s,".js-related-issue-updated-at",HTMLElement).setAttribute("datetime",t.updatedAt),b(s,".js-related-issue-suggestion-comment-count").textContent=t.comments.totalCount,s}function ch(e,t){const n=b(e,".js-related-issue-octicon"),s=b(n,t,SVGElement);n.classList.remove("d-none"),s.classList.remove("d-none")}function lh(e,t,n){const s=e[n];let o={position_in_list:n,number_of_similar_issues:e.length,title_length:t.length};return s.repository.isPrivate||(o=Object.assign({},o,{title_string_at_time_of_click:t,id_of_clicked_result:s.databaseId,results_shown_at_time_of_click:e.map(e=>e.databaseId)})),o}async function uh(e){const t=e.value;if(nh=t,!t)return[];mh(),function(){const e=b(document,".js-similar-issues-spinner");e&&(e.hidden=!1)}();const n=p(e,"data-similar-issues-path"),s=await W(Te(n,{method:"POST",body:hh(t,e.getAttribute("data-repository-id"))}));if(vh(),!s.data)throw new Error("invariant: app/assets/modules/github/similar-issues.js:111");return s.data.errors?[]:s.data.repository.similarIssues.nodes}function dh(e,t){if(0===t.length)return fh(),void mh();b(document,".js-number-of-similar-issues",HTMLInputElement).value=`${t.length}`,function(e){const t=b(document,".js-similar-issues-suggestions-results-container");t.innerHTML="",t.appendChild(e)}(function(e,t){const n=b(document,".js-similar-issues-suggestions-template",HTMLTemplateElement),s=document.createDocumentFragment();for(let o=0;o{oh(!1),sh=!0}),u("compositionend",".js-related-issues-search",()=>{sh=!1,oh()}),u("click",".js-markdown-link-button",async function({currentTarget:e}){const t=b(document,".js-markdown-link-dialog",HTMLTemplateElement);(await F({content:t.content.cloneNode(!0)})).setAttribute("data-selection-end",function(e){const t=d(e,"markdown-toolbar",MarkdownToolbarElement).field;if(!t)throw new Error("invariant: app/assets/modules/github/responsive-markdown-toolbar.js:9");return t}(e).selectionEnd.toString())}),u("click",".js-markdown-link-insert",({currentTarget:e})=>{const t=d(e,"details-dialog"),n=b(document,`#${p(e,"data-for-textarea")}`,HTMLTextAreaElement),s=Number(p(t,"data-selection-end")),o=b(t,"#js-dialog-link-href",HTMLInputElement).value,r=`[${b(t,"#js-dialog-link-text",HTMLInputElement).value}](${o}) `,i=n.value.slice(0,s),a=n.value.slice(s);n.value=i+r+a,n.focus(),n.selectionStart=n.selectionEnd=s+r.length}),j(".js-repository-advisory-title-update",async function(e,t){d(e,".js-details-container").classList.remove("open");const n=(await t.json()).json;document.title=n.page_title;for(const s of e.elements)(s instanceof HTMLInputElement||s instanceof HTMLTextAreaElement)&&(s.defaultValue=s.value)}),j(".js-repository-advisory-update",async function(e){d(e,".previewable-edit").classList.remove("is-comment-editing");for(const t of e.elements)(t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement)&&(t.defaultValue=t.value)}),j(".js-add-repository-advisory-collaborator",async function(e,t){t.html(),e.reset()}),r(".js-similar-issues-search",{constructor:HTMLInputElement,add(e){M(e,async()=>{dh(e,await uh(e))},{wait:500})}}),u("change",".js-similar-issues-search",async({currentTarget:e})=>{if(!(e instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/similar-issues.js:32");e.value!==nh&&dh(e,await uh(e))}),u("click",".js-show-similar-issues",()=>{b(document,".js-similar-issues-suggestions-results-wrapper").hasAttribute("hidden")?b(document,".js-similar-issues-suggestions-results-wrapper").hidden=!1:fh()}),u("click",".js-hide-similar-issues",()=>{fh()}),u("navigation:keydown",".js-issue-title-input-container",function(e){if(!(e instanceof CustomEvent))throw new Error("invariant: app/assets/modules/github/similar-issues.js:54");const t=document.querySelector(".js-similar-issues-suggestions-results-wrapper");if(!t)return;const n=document.querySelector('.js-issue-title-input-container .js-navigation-item[aria-selected="true"]'),s=t.hasAttribute("hidden");switch(e.detail.hotkey){case"Enter":if(!n){const t=d(e.currentTarget,"form",HTMLFormElement);t.querySelector("input[type=submit], button[type=submit]").disabled||E(t)}break;case"Escape":s&&b(document,".js-hide-similar-issues").click()}}),m("keydown",".js-similar-issues-search",function(e){document.querySelector('.js-issue-title-input-container .js-navigation-item[aria-selected="true"]')||Io(e)});let ph=!1;function gh(e){const t=document.querySelector(".js-similar-issues-suggestions-results-wrapper");if(!t)return;let n;n=void 0===e?!t.hasAttribute("hidden"):!!e,!ph&&n?(xe(b(document,".js-similar-issues-suggestions-results-container")),b(document,".js-similar-issues-search").classList.add("js-navigation-enable")):(nt(b(document,".js-similar-issues-suggestions-results-container")),b(document,".js-similar-issues-search").classList.remove("js-navigation-enable"))}function hh(e,t){if(!t)throw new Error("invariant: app/assets/modules/github/similar-issues.js:220");const n=new FormData;return n.append("variables[query]",e),n.append("variables[repository_id]",t),n}function vh(){const e=document.querySelector(".js-similar-issues-spinner");e&&(e.hidden=!0)}function bh(e,t,n){const s=e.content.cloneNode(!0);"OPEN"===t.state?wh(s,".js-similar-issues-octicon-issue-opened"):wh(s,".js-similar-issues-octicon-issue-closed");const o=b(s,".js-similar-issue-suggestion-link",HTMLAnchorElement);if(o.href=t.url,o.setAttribute("data-hydro-client-context",JSON.stringify(n)),b(s,".js-similar-issue-suggestion-title",HTMLElement).textContent=t.title,b(s,".js-similar-issue-number",HTMLElement).textContent=`#${t.number}`,b(s,".js-similar-issue-opened-at",HTMLElement).setAttribute("datetime",t.createdAt),t.author){const e=b(s,".js-similar-issue-author",HTMLElement);e.textContent=`${t.author.login}`,e.hidden=!1}return b(s,".js-similar-issue-updated-at",HTMLElement).setAttribute("datetime",t.updatedAt),b(s,".js-similar-issue-suggestion-comment-count").textContent=t.comments.totalCount,s}function wh(e,t){const n=b(e,".js-similar-issue-octicon");b(n,t,SVGElement).removeAttribute("hidden")}u("compositionstart",".js-similar-issues-search",()=>{gh(!1),ph=!0}),u("compositionend",".js-similar-issues-search",()=>{ph=!1,gh()});let jh=!1;function yh(e){const t=document.importNode(e.content,!0),n=b(document,"#js-flash-container");for(const s of n.children)n.removeChild(s);n.appendChild(t)}function Eh(){for(const e of document.querySelectorAll(".js-selected-check-run"))e.remove();b(document,".js-zen-blankslate").hidden=!1,jh=!0}j(".js-check-suite-rerequest-form",async function(e,t){d(e,"details").removeAttribute("open");const n=document.querySelector("#js-selected-check-run");if(null!==n){const t="true"===b(e,"input[name=only_failed_check_runs]",HTMLInputElement).value,s="true"===p(n,"data-failed");t&&!s||Eh()}try{await t.text(),yh(b(document,"#js-check-suite-rerequest-form-success",HTMLTemplateElement))}catch(s){throw yh(b(document,"#js-check-suite-rerequest-form-error",HTMLTemplateElement)),s}}),j(".js-check-run-rerequest-form",async function(e,t){jh=!0,b(document,"#js-selected-check-run").contains(e)&&Eh();try{await t.text(),yh(b(e,".js-check-run-rerequest-form-success",HTMLTemplateElement))}catch(n){throw yh(b(e,".js-check-run-rerequest-form-error",HTMLTemplateElement)),n}}),r(".js-latest-run-link",{constructor:HTMLElement,add(e){jh&&e.click()}}),u("click",".js-timeout-flash-close",function(e){d(e.target,".js-interactive-component-timeout").hidden=!0}),u("click",".js-interactive-component-button",function(e){const t=e.target;if(t instanceof HTMLButtonElement){const e=t.querySelector(".js-loading-spinner");e&&(e.hidden=!1)}}),j(".js-interactive-component-form",async function(e,t){const n=b(e,".js-interactive-component-timeout"),s=d(e,".js-component-container");if(n){n.hidden=!0;const t=v(s,".js-interactive-component-button",HTMLButtonElement);for(const e of t)e.disabled=!0;const o=parseInt(p(e,"data-timeout"));setTimeout(()=>{if(n){n.hidden=!1;const e=v(s,".js-interactive-component-button[disabled]",HTMLButtonElement);for(const t of e){t.disabled=!1;const e=t.querySelector(".loading-spinner");e&&(e.hidden=!0)}}},o)}await t.text()}),u("click",["form button:not([type])","form button[type=submit]","form input[type=submit]"].join(", "),function(e){const t=e.currentTarget;if(!(t instanceof HTMLButtonElement||t instanceof HTMLInputElement))throw new Error("invariant: app/assets/modules/github/remote.js:161");t.form&&!e.defaultPrevented&&st(t)}),j("form[data-remote]",function(e,t,n){"json"===e.getAttribute("data-type")&&n.headers.set("Accept","application/json"),L(e,"deprecatedAjaxSend",{request:n}),t.text().catch(e=>{if(e.response)return e.response;throw e}).then(t=>{t.status<300?L(e,"deprecatedAjaxSuccess"):L(e,"deprecatedAjaxError",{error:t.statusText,status:t.status,text:t.text})},t=>{L(e,"deprecatedAjaxError",{error:t.message,status:0,text:null})}).then(()=>{L(e,"deprecatedAjaxComplete")})}),u("deprecatedAjaxComplete","form",function({currentTarget:e}){if(!(e instanceof HTMLFormElement))throw new Error("invariant: app/assets/modules/github/remote.js:173");const t=ot(e);t&&t.remove()}),P(e=>{const t=ot(e);t&&t.remove()}),rt(O),window.v="1"}}});
diff --git a/static/js/github-style.js b/static/js/github-style.js
new file mode 100644
index 0000000..5a2c364
--- /dev/null
+++ b/static/js/github-style.js
@@ -0,0 +1,26 @@
+function switchTheme() {
+ const currentStyle = currentTheme();
+
+ if (currentStyle == 'light') {
+ setTheme('dark');
+ }
+ else {
+ setTheme('light');
+ }
+}
+
+function setTheme(style) {
+ console.log(`set theme ${style}`);
+ document.documentElement.setAttribute('data-theme', style);
+ localStorage.setItem('data-theme', style);
+}
+
+function currentTheme() {
+ const localStyle = localStorage.getItem('data-theme');
+ const systemStyle = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
+ return localStyle || systemStyle;
+}
+
+(() => {
+ setTheme(currentTheme());
+})();
\ No newline at end of file
diff --git a/static/js/stop.js b/static/js/stop.js
deleted file mode 100644
index 8758258..0000000
--- a/static/js/stop.js
+++ /dev/null
@@ -1,13 +0,0 @@
-function stopClickEvent(selector) {
- const elements = document.querySelectorAll(selector);
- for (const current of elements) {
- current.onclick = (event) => {
- event.stopPropagation();
- }
- }
-}
-
-(() => {
- stopClickEvent('.day');
- stopClickEvent('.js-year-link');
-})();