1
0
mirror of synced 2026-01-08 12:01:53 -05:00

Merge pull request #12803 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2021-12-09 13:19:17 -06:00
committed by GitHub
77 changed files with 228 additions and 179 deletions

4
.github/CODEOWNERS vendored
View File

@@ -19,8 +19,8 @@ package.json @github/docs-engineering
/.github/workflows/create-translation-batch-pr.yml @github/docs-localization
/.github/workflows/crowdin.yml @github/docs-localization
/crowdin*.yml @github/docs-engineering @github/docs-localization
/translations/ @github/docs-engineering @github/docs-localization @github-actions
/translations/log/ @github/docs-localization @github-actions
/translations/ @github/docs-engineering @github/docs-localization @github-actions[bot]
/translations/log/ @github/docs-localization @github-actions[bot]
# Site Policy
/content/github/site-policy/ @github/site-policy-admins

View File

@@ -43,3 +43,11 @@
.headerSearchResults {
max-height: 80vh;
}
.searchWording {
margin: 0.6rem 0 0.5rem 0.5rem;
}
.selectWording {
margin: 0.64rem 0.5rem 0 0;
}

View File

@@ -2,12 +2,13 @@ import React, { useState, useEffect, useRef, ReactNode, RefObject } from 'react'
import { useRouter } from 'next/router'
import useSWR from 'swr'
import cx from 'classnames'
import { ActionList, Label, Overlay } from '@primer/components'
import { ActionList, DropdownMenu, Label, Overlay } from '@primer/components'
import { ItemInput } from '@primer/components/lib/ActionList/List'
import { useTranslation } from 'components/hooks/useTranslation'
import { sendEvent, EventType } from 'components/lib/events'
import { useMainContext } from './context/MainContext'
import { useVersion } from 'components/hooks/useVersion'
import { DEFAULT_VERSION, useVersion } from 'components/hooks/useVersion'
import { useQuery } from 'components/hooks/useQuery'
import { Link } from 'components/Link'
import { useLanguages } from './context/LanguagesContext'
@@ -294,6 +295,8 @@ function ShowSearchResults({
const { currentVersion } = useVersion()
const { allVersions } = useMainContext()
const searchVersion = allVersions[currentVersion].versionTitle
const [selectedVersion, setSelectedVersion] = useState<ItemInput | undefined>()
const latestVersions = new Set(
Object.keys(allVersions)
.map((version) => allVersions[version].latestVersion)
@@ -307,13 +310,39 @@ function ShowSearchResults({
}
})
const searchVersions: ItemInput[] = versions.map(({ title, version }) => {
return {
text: title,
key: version,
}
})
const redirectParams: {
query: string
debug?: string
} = { query }
if (debug) redirectParams.debug = JSON.stringify(debug)
const redirectQuery = `?${new URLSearchParams(redirectParams).toString()}`
useEffect(() => {
if (selectedVersion) {
const params = new URLSearchParams(redirectParams)
let asPath = `/${router.locale}`
if (params.toString()) {
asPath += `?${params.toString()}`
}
if (selectedVersion.key === DEFAULT_VERSION) {
router.push(`/?${params.toString()}`, asPath)
} else {
router.push(`/${router.locale}/${selectedVersion.key}${redirectQuery}`)
}
}
}, [selectedVersion])
if (results) {
if (results.length === 0) {
// When there results, but exactly 0, it matters if this is the overlay or not.
@@ -341,22 +370,23 @@ function ShowSearchResults({
isHeaderSearch && 'overflow-auto'
)}
>
<div className="my-4">
<p className="mx-4">
You're searching the <span className="color-fg-attention">{searchVersion}</span>{' '}
version. Didn't find what you're looking for? Click a different version to try again.
<div className="mt-4 pb-6 width-full border-bottom">
<p className={cx(styles.searchWording, 'f6 ml-4 d-inline-block')}>
You're searching the <strong>{searchVersion}</strong> version.
</p>
{versions.map(({ title, version }) => {
return (
<button key={version} className="btn mr-2 mt-4 ml-4" type="button">
<a href={`/${router.locale}/${version}${redirectQuery}`}>{title}</a>
</button>
)
})}
<div className="float-right mr-4">
<p className={cx(styles.selectWording, 'f6 d-inline-block')}>Select version:</p>
<DropdownMenu
placeholder={searchVersion}
items={searchVersions}
selectedItem={selectedVersion}
onChange={setSelectedVersion}
/>
</div>
</div>
{/* We might have results AND isLoading. For example, the user typed
a first word, and is now typing more. */}
<p className="d-block mt-4">
<p className="d-block ml-4 mt-4">
{isLoading ? <span>{t('loading')}...</span> : <span>&nbsp;</span>}
</p>
@@ -368,7 +398,10 @@ function ShowSearchResults({
renderItem: () => (
<ActionList.Item as="div">
<Link href={url} className="no-underline color-fg-default">
<li data-testid="search-result" className={cx('list-style-none')}>
<li
data-testid="search-result"
className={cx('list-style-none', styles.resultsContainer)}
>
<div className={cx('py-2 px-3')}>
{/* Breadcrumbs in search records don't include the page title. These fields may contain <mark> elements that we need to render */}
<Label variant="small" sx={{ bg: 'accent.emphasis' }}>
@@ -425,9 +458,6 @@ function ShowSearchResults({
<div>
{!isHeaderSearch && !isMobileSearch ? (
<>
{/* Only if you're going to use an <Overlay> do you need
to specify a portal div tag. */}
<div id="__primerPortalRoot__" />
<Overlay
initialFocusRef={anchorRef}
returnFocusRef={anchorRef}
@@ -436,17 +466,26 @@ function ShowSearchResults({
onClickOutside={() => closeSearch()}
aria-labelledby="title"
sx={
(isHeaderSearch && {
background: 'none',
boxShadow: 'none',
position: 'static',
overflowY: 'auto',
maxHeight: '80vh',
maxWidth: '96%',
margin: '1.5em 2em 0 0.5em',
scrollbarWidth: 'none',
}) ||
{}
isHeaderSearch
? {
background: 'none',
boxShadow: 'none',
position: 'static',
overflowY: 'auto',
maxHeight: '80vh',
maxWidth: '96%',
margin: '1.5em 2em 0 0.5em',
scrollbarWidth: 'none',
}
: window.innerWidth < 1012
? {
marginTop: '28rem',
marginLeft: '5rem',
}
: {
marginTop: '15rem',
marginLeft: '5rem',
}
}
>
{ActionListResults}

View File

@@ -5,7 +5,7 @@ type VersionInfo = {
isEnterprise: boolean
isEnterpriseServer: boolean
}
const DEFAULT_VERSION = 'free-pro-team@latest'
export const DEFAULT_VERSION = 'free-pro-team@latest'
export const useVersion = (): VersionInfo => {
const router = useRouter()
const currentVersion = (router.query.versionId as string) || DEFAULT_VERSION

View File

@@ -1,3 +1,8 @@
.header {
display: unset;
}
// Need children of portal root to be higher z-index to show dropdown
.portalRoot * {
z-index: 3 !important;
}

View File

@@ -128,6 +128,8 @@ export const Header = () => {
</div>
</div>
</header>
{/* Adding Portal Root here for DropdownMenu and ActionList Search Results */}
<div id="__primerPortalRoot__" className={cx(styles.portalRoot)} />
</div>
)
}

View File

@@ -14,16 +14,11 @@ export type BumpLinkPropsT = {
export const BumpLink = ({ as, children, href, title, className }: BumpLinkPropsT) => {
const Component = as || 'a'
const symbol = <span className={styles.symbol}></span>
let extendedTitle: ReactNode
if (typeof title === 'string') {
extendedTitle = (
<span className="h4">
{title} {symbol}
</span>
)
extendedTitle = <span className="h4">{title}</span>
} else {
extendedTitle = cloneElement(title, title.props, title.props.children, symbol)
extendedTitle = cloneElement(title, title.props, title.props.children)
}
return (

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4d7f912c32acbacc820bb0c417fa1df7de41b67f072d9237f3c913f332711e1a
size 609489
oid sha256:2d856fefcea1754920a6e4348a08888a378039af01ebd13d4fabc9cc6be6e7af
size 609559

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26b189615d8143df14319df1fba5d441280320cea0e0316a87682d6e6aedaf09
size 1457922
oid sha256:1e88ae8b315eef8d099366dd6af933cddf3abdfce1fabdb19eb1cbd02a9b7c89
size 1458052

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e8cb7b425945298089e833a4c1f2a6c5cca5b021ec2bde8cce0cedaeb6b596d7
size 947205
oid sha256:f3023a6b4fd1329485dc64f364e254cf265fa222dd6987d8629b363d72fd18b4
size 947319

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c6e649fc63da4939d0faa5b6a749877a283bb941036efaeb0712a8df55b32eae
size 3862610
oid sha256:f5377d93ecc4dc7bb1d950232ab479f2093b45758d88bca357672ced6fd13d9d
size 3863980

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ceaf6cb31d205a29697437451383a5216299a7b0d8f9feca7929e86e1b77338b
size 592317
oid sha256:1dc04d4a37c8354419333dafb5052e8308743493c08e53354267d473cb55b803
size 592142

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:075258d9f34e39203eb7425d67185fb21719f7784d0d9578ccb17e5ac83d8b34
size 2605829
oid sha256:cb3aa9f7e0960210a44f57e4318b009656d36e97a03fac1f0dd96bd591e5e8fd
size 2605833

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de9b7aaf4457f893f3372079f89088dc28cd35971d983bc4d5a409b6a3ddbe9d
size 621786
oid sha256:710daf70e3d84cd3e620d80eef3dee6116b65af4c9a58a5a79064a8ca2b70a48
size 621773

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc7000684630bd63c9cba6a2dffb918f6e4fe3dbd7ec23a972b1cd1448b52627
size 3366986
oid sha256:7dbb7b026fb55c97d5771a5d0d522264c44fdf02682454b3432f7db37259c569
size 3366853

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f621f7d9e6c82c14f7959880990f50a30661ed1b295be2a8d1a793a90961a742
size 588044
oid sha256:32cf214db4c4ff80f9e176b583ad64d367c03ea014f79268b44675e9a3c842ca
size 587981

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb8ac07afd4dd41776b0f7b7b079aa3070725c14fddcecf4e97fe62b49a2fd4a
size 2583077
oid sha256:72831b07e709867a5cb54374ecba88a35fa337e7ffe3f8fc6558b2d1745fdaa6
size 2583125

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:198b8c987706bd53442e943733e2a3cdb8cfed998724603811faabf988f12dc7
size 622850
oid sha256:eaaba7bc5d8105566f28af8954d3feed14ef900ff5c4c4546be328ad6f8dec88
size 622688

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a074f415cd1232943064b8232646e45192d19f14fd1b6ec2ba0e345c92afbba
size 1499884
oid sha256:519ae5aaba1f2a71a1cacca826910ca11e32d7c6eaf8191f5826c0866dbd58e7
size 1499577

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc03c26aa8105bb95a015aa2fac2e23cda8e83cc5f7c807a14e49ecb034eaaa4
size 971778
oid sha256:311526b9730af87976dfd679756ae5783b562655291953eb957022754dff988d
size 972137

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:729112ba1d1be14dfd97b6c96126d07942bd8daf71848f389e8e58857836fad9
size 3952329
oid sha256:7020535083293e7aa7c64c5d85ba7202753d833c79a25314bdf47386e0a0e598
size 3953116

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:34562544bd6b56c14ceebcc8e19d85a9025a0ab8b7adf2d7e1f1b7cc44b758e3
size 604784
oid sha256:767d428fdc3384f97a66caa64fcec05c9549259d3dbea2f6b82e61a00214db29
size 604711

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:109daeeac79a503a8cd743510a47231b5385ec5d9f16e45d6d8a5cd7b199a458
size 2666697
oid sha256:919736fd20e73e58d72695ea679028a58f97a854611af72a3f85166eb560989c
size 2667569

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a56d0f64c0d3842203da4a8738d45eb7d2bdf78ca2a571bca5398b66a1a34dbf
size 635559
oid sha256:f27803ed6866c80436c40ec061f1ff54f6c35806a53f6d3718413bc98d06e545
size 635379

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86f3f31657e3fe3e8e7231dd9b8a50a8e636536de401bc6b614dbee6b2421a75
size 3446702
oid sha256:072e9d3516e9a1712f099dcff74461abdea9173e25f30441f4018dbf22347662
size 3446892

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b20a7ace0d82ffc9b3aa1f18f4fd95ad489fa8a8da161b936eda5fd40b6e7121
size 600373
oid sha256:2dade9da964cc16062533d4d6b019a9e049c0ab9e458942444573b7183d9c0a6
size 600474

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e127afd37a982959ab41e10493c6b26eef72034fe8329a529c9e8437ccec5e1
size 2646736
oid sha256:f053b6fedef80b8775ee26c15f9bc5919064e982e3c6450ba9fadc9603fa6b12
size 2646914

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e80a3e96f914d0516ab59053cc1f6525d3bcab654c089784e6d0eb0bc816e69
size 634103
oid sha256:f78017fdd985bdf0d413e724961d84986fc8cbb6eda1f9c083772cc78f6f1205
size 634094

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec6549b57d51592ae5834db5b483f84a9152e04990ac25107d0fb85c6a8cc12c
size 1524976
oid sha256:94fd8eb242526bef04e6d81db2f3d65ddba59c2c5b3c654b9e3d6746f552b6e5
size 1525368

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f06cd8b91908cd5e38d7f67e2bc63fbbbed721c4c5fbb210e842e2cb494ea30
size 1006610
oid sha256:db75b6332a4c70b18661134aab7dc19936a83e48f064f700e7d77a068d7c88e8
size 1002919

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:19f7269735fea938eae84630f6d3ce53bc646a2a1130efa4898f4289ad18e07b
size 4075427
oid sha256:bc2070a1d42e10b10b9b05233330696364d30e8839a88d7a3da8b2f5dbe06375
size 4074971

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b46709e7a80ab5efc9a1680dc799110007cfd83c9cb18069ff657d578b13e8a4
size 615366
oid sha256:bdef65d032a147c93f16be380190851b968ab0ff633f66fbdfc02585957b1104
size 615331

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9195f0a35bb409aeef62970682378c1ad7f5e36721e7dc3ea45b3128c74e5c5
size 2722411
oid sha256:92266c7861d419ae16534bc0462069e1898392c092ae511143f38745f54b6b8f
size 2721278

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f112fb25336a8e37adaf8767419c1cae75b541596d57a4c4ffb14cb12d4f4590
size 646809
oid sha256:f3fa39b8b0b19169b9f1cf950758dc141f250416aa8a92e4f8ccafec309983ea
size 646585

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76ab2c712f347b996290a25739f86140388bda23c5f175cd5f59f83bf1321d48
size 3514518
oid sha256:e421df751c8ba23a09898e54a1c583fb1e5a74fc97d5fbe8b4b6e7435c40603a
size 3514040

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a952942e5365beae48a7e7aeed3158ae9ef1afb0f1467be066c57f6b2826587
size 611300
oid sha256:9795098940e948ca61577692683444a48bd565633be3a3feb5f36cc83bbe9e61
size 611183

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:644b3f4c654b2cdf1ef3633454c0bcfc90736ffd00ea3271dd3396fd30b9ba77
size 2694871
oid sha256:b40b0bc92d412bc1b4de3308a10a0040f77f7d1a359b2c08f15f2c3bf62a74f2
size 2695366

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ed95f25f471334be501330470d50e61497eaa59683bd92aba11fd466b0b08274
size 655069
oid sha256:e187cf8bedc26aa729aa9e0cf696a05a1e9d41d65a4fc4e632d25c89bb256fb3
size 655054

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ddd181e41304f86d9aef7862dcbe7e32b3d2e01b9ad057a3d262f0ef03ce9edc
size 1585649
oid sha256:0744b10f219be8cb3a7120751eb0ef60fbbf9fa6f4e58a39e107460c628e121b
size 1584894

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d51a183d5412d1065807fd0b36f14ed02e1ea022a597ee88dfdc52a858d4fea4
size 1036863
oid sha256:52f54b08e6b779663be631e57aa629df708ee72a1da4aad0520d0965b3331377
size 1037051

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e40007e564d6c5dd3116882f1cbe98cb9797b5f0fc1a0d9e4f078c9564b3301
size 4175924
oid sha256:4dc43e9de01166e4f58506cd1d6542ba9846a2c528245088f7896f2f5c899e3c
size 4176771

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57be43028447e5c98a65dc99b81076db5108477eedd949adbec3c00a6904e2b7
size 633668
oid sha256:b0b2ac93c0d71d6f9dbe6548f992ad37f823ac54923426a8322a125a442a3778
size 633740

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0848e0460ea705813148d8cf2a88ede8e841e51f5783878f89d339238d4ae6ef
size 2820225
oid sha256:47e6f316f30feb58f0854c76147a58d72d3c602535492ada8bf89e23c5a280a6
size 2820082

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aa543e858ac3ce9046ed8da7730c17569c0b6eba009e525c126117a07d829083
size 668586
oid sha256:de802d2dc709d6eecffb4ba55500510a1ad9825fa384af76b045a2ca629402cd
size 668663

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2b70f81ae093a88e779c6f854986c7ef5e9129b8bb0a8078e6cf23e8ea1ee03
size 3632768
oid sha256:c221ce0cea6759afa67ca4d39687f46ed80d8757437d991e0cff015318b32b36
size 3633966

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf1f6483714b6b2271b417db2d2bbcf90b78d95336b4bd5f8651e8f107c6f9be
size 630553
oid sha256:51cb43c9b887213643e3ff415460ce617e2b10f719f2048405f5c1dad66521db
size 630422

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3861f289b142584fb75b227a0365fad717b99dbc261dd19270e37234d6849a4c
size 2783335
oid sha256:77d7bc1d3dedf1e90733a28601a9ab57ea76e137177d838811c785a2738ac0dc
size 2782440

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0734c255b0b3c434a283e33a1aed8bfb94f7259e7b7a93ef957af3cbbae9ffd6
size 862066
oid sha256:b225e837e5e49ac3e0f37f9e35c3c10c79a21d186fd19784fdef52a9e3759b33
size 862054

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7d3fc1bc86d42bab0586ec46888d0c83cf6896ce65f3d29c2b0ed74ddf0d683
size 1774522
oid sha256:8f444c2acefd7dc4941d3d6900cff981dd1435bfa2cc1ab6a2ef5f9c95d1a6f2
size 1774346

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e153e59b52926587b33fa8ad63f2c0c0250cc99a73e4e5e81bcb275fa7b4f7c6
size 1326168
oid sha256:2b3abab2c1aa68527cfff089c85043f7dc8725fa61956ad350029f83b7a16577
size 1320547

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6f6581835eb8318fea902e293d58a59bb26eeca0c5bbed21ad2054cd997ec58
size 5052664
oid sha256:40cf06e600d04e44fa6faf4d3f012cc3768dec4eab827af638bbb5db4a15106a
size 5052328

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb96334e49e73e2dcb78bee78326255fb9ef9ded9f9e7d1df27712318405a8c2
size 810093
oid sha256:5993b919cbc1c4be491e17d254fcae2053cce51a2df797aae4ce8ecf09c56ad6
size 809889

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b609459c9af20c3f463068caa814a1f6e951146e544e9fcecea4a4dc8947d8d
size 3425932
oid sha256:e5a9ea39052cfd89a12804c3d5920f9548a0b5b460337261fd06f1807232dc4c
size 3425722

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8b0f856044c6701f3dc51efe4ae71490cba9382c04a0f9288c897f7d15de81b
size 877391
oid sha256:4519c0bd77dfbaf70027032d07b8b5a9a6d29e79574d4b16c1d7f5c26590e089
size 877436

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a150fc8170c5da308783109ab0395a7291ce3afc81c25d9a913ce4b694d85894
size 4533428
oid sha256:301873bc6bb07e7abec3d06791a78cb5b3a60d3a4099aa99805f0c6bc12f357b
size 4533896

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f02ab14690daa8c0d6df07f3e44136856bcbdcabad2656e614c2813e47da236
size 808002
oid sha256:3767f16a133b3969644c105e643a6b5690093155066bc2cd086d9fef1494e4ae
size 808145

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90f3999ccb46fcfe95a3947c190c69a17adc2fefb93411fb136aa62b96f4f17e
size 3378460
oid sha256:f7aae01d8cf89fc006ae7844787893065036cbc42fc37b9d7a6c227ffd72eedf
size 3378277

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c50a4bf2677158683d853328737e0492831efca05cd9d52804da875aeefddc95
size 508344
oid sha256:bafd69ab91cf19feb1b24bacf355a800003117bbe8c9d651737ac5c2038de636
size 508383

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:770d1724ac1e5fd734ddcdfc866c8158c11c98669d9777f9ab5303c07b4f9264
size 1206012
oid sha256:fb1da54f49e369dc05e89abe10eb2458d434f9a3feca180ab28cc52328854c21
size 1205942

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd0c8ac4a239992cb4b231609aabc9ea9f8e5ecc50e772c04e62db2f796f5b1c
size 826111
oid sha256:bbba00ceb6a7c8e84f7f73d7efa1631292ccecfa7c548b1039b80627d333abfa
size 826269

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:470f3a54db62319a7606167e6501ec6e5016f1abcbbce7c4ac0fa15add517c7b
size 3295771
oid sha256:871d705f6f9773c9e74ce5f083b41831443e44f9ebc58f31549aedccdde0300f
size 3297432

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5846549a631d934527479ff3b0f09a9c2f572eca734b0ff8f4a100dee9af3e57
size 477430
oid sha256:66369cb69fa38d662921043bdf13cb0e7dfb4b82666d70b7b972ede243e6ef71
size 477507

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:77570bce291b4f8df45bb3397a73f7fa3d7700d4d2332ad9be55bbac10a43b77
size 2027248
oid sha256:423cbcca15e2d1f929e896f2ddd3b4fb06a0b607eee988fbd391ef8f73e95144
size 2027755

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:06e8365da214d81aa5cbff3278bcd62ec3b6653904ce179e42510d0ff35f0c9d
size 517661
oid sha256:138082cdd74ac9b9e1ed235925e7536ef2e8429b5b1a51d1dbd654785d1d93ce
size 517668

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79d7b8b9328119356d919c08b335aa0a6e9ad650c9b04dcf0ff8f39a912b23c7
size 2706317
oid sha256:4eeffa073c7a9cd54ed7cdf29faf6e62d5ec28ce1922ca270256fe87ef3811b3
size 2706738

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b1d3cc554565ce7fb2d30a09c468c454102e4eda0f8ed54bdadffd9e987f0543
size 492880
oid sha256:b3b9453ef3f58e39473e3229b3c0a428aaf4a02d4c21a58a4e7d70e5e75bcd6c
size 492980

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82cad39885fa5f4d2b55392bd1f6f41e0efb5de1cb411562fe70f0bd7d939176
size 2111998
oid sha256:ca03c872999c9153f0cfd57d9b81032999035408992fe51b762cd78598bb2fb8
size 2112285

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b0e255113741e15cedf527458c893ccc173f4bff2c067aaa1c7d37dde5c2ef29
size 767339
oid sha256:e36ee0428140f001a272ecf068273ddd9125fc06ffcc3afcb2ca9f5edd065ea8
size 767404

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d63a2c9d3860161d177e068edd70361ebaefac52fb28bb6558d37a8dec6aae2
size 1778541
oid sha256:e3094eaedba1a7cd3c0d28ea48d57d4b2107af2484951d3a1768665fd99fc0b9
size 1778432

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae0c048d55bb7e1ca8f3b81477b8937df52073c70387c4307295d903b4542c03
size 1178414
oid sha256:4e04efb9c941c0548a2cc1932d434ba82033d89cf17ee6fecaf8645e725cc573
size 1179740

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:257f0bb3d583251434a4848e8eed930b3b577627c75e8083d5eaf84d04bdd0e0
size 4738731
oid sha256:cdb6dd541f8411a89e35602c94a475da8062f19804e2deed6bf2fd71a350a01a
size 4741112

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea717d66e1d47cfa5543688555ca2218fe9524e2e55b74573ccf92d52dca9101
size 746480
oid sha256:5a888a0e2f1f730399b65e8453f4974ec12131fe86f208498cd800071d94aa59
size 746512

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:222e2a1f502237834e145af9107ef36cccc16692a5f9d7b46713953ff98f6ff0
size 3329639
oid sha256:d1eb0bf29b72fe3cd89e0f7d9dda922799a4a944f4998be214f03e6ff141107d
size 3329764

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b13519eac4a6e3df4ae01ebbdb02a9ed892f41c1c5f7df13e9a6dbb61ab6945b
size 787198
oid sha256:fb4b1b1facb567bbb7218bbe50e7667e55b2fb2138a2a047c7f033f31f219a16
size 787321

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c57b59f478a6838e1a5b25098635d737d66edc1e4c8ce4e6d2fbe5f0f808a109
size 4284246
oid sha256:a798b29feb9e6582c0e7462871dc90726ca5f382adb0026cc6f9884401005181
size 4284022

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b1e28acc4f424bcaa7c2e97a6ee0bdc40344d6491a29fad032fc2aab9d0b758
size 746099
oid sha256:a0887c5d7fc082867f75150d02489421f69efa4620cd11b5df18e5d98330c2c0
size 746100

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:411dfe3b0e5fa32adfdb0feed22136eaa20b21565edcb1121a2baadc71ce0e87
size 3274071
oid sha256:1b4856fff1894f586df7e5c1564ce4723159893c3b6275d57d71600136be945f
size 3274953