1
0
mirror of synced 2026-01-10 09:02:35 -05:00

Merge branch 'main' into fix-unsub-pic

This commit is contained in:
PSJ
2021-10-04 20:46:38 +05:30
committed by GitHub
80 changed files with 181 additions and 189 deletions

View File

@@ -25,7 +25,7 @@ topics:
{% data variables.product.company_short %} performs {% data variables.product.prodname_secret_scanning %} on {% ifversion fpt %}public and private{% endif %} repositories for secret patterns provided by {% data variables.product.company_short %} and {% data variables.product.company_short %} partners. For more information on the {% data variables.product.prodname_secret_scanning %} partner program, see "<a href="/developers/overview/secret-scanning-partner-program" class="dotcom-only">Secret scanning partner program</a>."
However, there can be situations where you want to scan for other secret patterns in your {% ifversion fpt %}private{% endif %} repositories. For example, you might have a secret pattern that is internal to your organization. For these situations, you can define custom {% data variables.product.prodname_secret_scanning %} patterns in your enterprise, organization, or {% ifversion fpt %}private{% endif %} repository on {% data variables.product.product_name %}. You can define up to 20 custom patterns for each {% ifversion fpt %}private{% endif %} repository, organization, or enterprise account.
However, there can be situations where you want to scan for other secret patterns in your {% ifversion fpt %}private{% endif %} repositories. For example, you might have a secret pattern that is internal to your organization. For these situations, you can define custom {% data variables.product.prodname_secret_scanning %} patterns in your enterprise, organization, or {% ifversion fpt %}private{% endif %} repository on {% data variables.product.product_name %}. You can define up to 100 custom patterns for each organization or enterprise account, and up to 20 custom patterns per {% ifversion fpt %}private{% endif %} repository.
{% ifversion ghes < 3.3 or ghae %}
{% note %}

View File

@@ -1,6 +1,6 @@
---
title: About GitHub Copilot telemetry
intro: '{% data variables.product.prodname_dotcom %} Copilot collects and relies on additional telemetry data beyond what other {% data variables.product.prodname_dotcom %} products and services collect.'
intro: '{% data variables.product.prodname_copilot %} collects and relies on additional telemetry data beyond what other {% data variables.product.company_short %} products and services collect.'
redirect_from:
- /early-access/github/copilot/about-github-copilot-telemetry
versions:
@@ -8,36 +8,21 @@ versions:
---
## What data is collected
The {% data variables.product.prodname_dotcom %} Copilot collects activity from the users Visual Studio Code editor, tied to a timestamp, and metadata. This metadata consists of the extension settings and the standard metadata collected by the [Visual Studio Code extension telemetry package](https://www.npmjs.com/package/vscode-extension-telemetry):
* Visual Studio Code machine ID (pseudonymized identifier)
* Visual Studio Code session ID (pseudonymized identifier)
* Visual Studio Code version
* [Geolocation from IP address](https://docs.microsoft.com/en-us/azure/azure-monitor/app/ip-collection?tabs=net) (country, state/province and city, but not the IP address itself)
* Operating system and version
* Extension version
* The VS Code UI (web or desktop)
Data collected is described in the "[{% data variables.product.prodname_copilot %} Telemetry Terms](/github/copilot/github-copilot-telemetry-terms)." In addition, the {% data variables.product.prodname_copilot %} extension/plugin collects activity from the user's Integrated Development Environment (IDE), tied to a timestamp, and metadata collected by the extension/plugin telemetry package. When used with Visual Studio Code, IntelliJ, NeoVIM, or other IDEs, {% data variables.product.prodname_copilot %} collects the standard metadata provided by those IDEs.
The activity collected consists of events that are triggered when:
## How the data is used by {% data variables.product.company_short %}
* An error occurs (it records the error kind and relevant background; e.g. if its an authentication error the key expiry date is recorded)
* Our models are accessed to ask for code suggestions (it records editor state like position of cursor and snippets of code)—this includes cases when the user takes an action to request code suggestions
* Code suggestions are received or displayed (it records the suggestions, post-processing, and metadata like model certainty and latency)
* Code suggestions are redacted due to filters that ensure AI safety
* The user acts on code suggestions (e.g. to accept or reject them)
* The user has acted on code suggestions and then it records whether or how they persisted in the code
{% data variables.product.company_short %} will use this data for:
## How the data is used
This data will only be used by {% data variables.product.company_short %} for:
* Directly improving the product, including assessing different strategies in processing and predicting which suggestions users may find helpful
* Directly evaluating the product, e.g. by measuring the positive impact it has on the user
* Improving the underlying code generation models, e.g. by providing positive and negative examples (but always so that your private code is not used as input to suggest code for other users of {% data variables.product.prodname_dotcom %} Copilot)
* Guiding closely related {% data variables.product.prodname_dotcom %} products
* Investigating and detecting potential abuse of the {% data variables.product.prodname_dotcom %} Copilot service
* Other purposes related to improving the {% data variables.product.prodname_dotcom %} Copilot service
- Directly improving the product, including assessing different strategies in processing and predicting which suggestions users may find helpful
- Evaluating the product, e.g. by measuring the positive impact it has on the user
- Improving the underlying code generation models, e.g. by providing positive and negative examples (but always so that your private code is not used as input to suggest code for other users of {% data variables.product.prodname_copilot %})
- Guiding closely related {% data variables.product.company_short %} products
- Investigating and detecting potential abuse of the {% data variables.product.prodname_copilot %} service
- Other purposes related to improving the {% data variables.product.prodname_copilot %} service, including sharing as described in the next section
## How the data is shared
The telemetry data is stored securely on {% data variables.product.prodname_dotcom %} systems, with appropriate encryption in place.
We know user edit actions and source code snippets are very sensitive data, and access is strictly controlled. The data can only be accessed by (1) named {% data variables.product.company_short %} personnel (employees and contractors) working on the {% data variables.product.company_short %} Copilot team or on the {% data variables.product.company_short %} platform health team, (2) select Microsoft personnel (employees and contractors) working on or with the {% data variables.product.company_short %} Copilot team, and (3) select employees of OpenAI who work on {% data variables.product.company_short %} Copilot.
The telemetry data is stored securely on {% data variables.product.company_short %} systems, with appropriate encryption in place. We know user edit actions, source code snippets, and URLs of repositories and file paths are sensitive data. Consequently, access is strictly controlled. The data can only be accessed by (1) named {% data variables.product.company_short %} personnel (employees and contractors) working on the {% data variables.product.prodname_copilot %} team or on the {% data variables.product.company_short %} platform health team, (2) Microsoft personnel (employees and contractors) working on or with the Azure and/or {% data variables.product.prodname_copilot %} teams, and (3) employees of OpenAI who work on {% data variables.product.prodname_copilot %}.

View File

@@ -0,0 +1,16 @@
---
title: GitHub Copilot Telemetry Terms
intro: 'Acceptance of the additional telemetry described below is a condition to joining the wait list for the technical preview of {% data variables.product.prodname_copilot %} and using {% data variables.product.prodname_copilot %} during the technical preview.'
redirect_from:
- /early-access/github/copilot/telemetry-terms
- /github/copilot/telemetry-terms
versions:
fpt: '*'
---
## Additional telemetry
If you use {% data variables.product.prodname_copilot %}, the {% data variables.product.prodname_copilot %} extension/plugin will collect usage information about events generated by interacting with the integrated development environment (IDE). These events include {% data variables.product.prodname_copilot %} performance, features used, and suggestions accepted, modified and accepted, or dismissed. This information may include personal data, including your User Personal Information, as defined in the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
This usage information is used by {% data variables.product.company_short %}, and shared with Microsoft and OpenAI, to develop and improve the extension/plugin and related products. OpenAI also uses this usage information to perform other services related to {% data variables.product.prodname_copilot %}. For example, when you edit files with the {% data variables.product.prodname_copilot %} extension/plugin enabled, file content snippets, suggestions, and any modifications to suggestions will be shared with {% data variables.product.company_short %}, Microsoft, and OpenAI, and used for diagnostic purposes to improve suggestions and related products. {% data variables.product.prodname_copilot %} relies on file content for context, both in the file you are editing and potentially other files open in the same IDE instance. When you are using {% data variables.product.prodname_copilot %}, it may also collect the URLs of repositories or file paths for relevant files. {% data variables.product.prodname_copilot %} does not use these URLs, file paths, or snippets collected in your telemetry as input to suggest code for other users of {% data variables.product.prodname_copilot %}. This information is treated as confidential information and accessed on a need-to-know basis. You are prohibited from collecting telemetry data about other users of {% data variables.product.prodname_copilot %} from the {% data variables.product.prodname_copilot %} extension/plugin. For more details about {% data variables.product.prodname_copilot %} telemetry, please see "[About {% data variables.product.prodname_copilot %} telemetry](/github/copilot/about-github-copilot-telemetry)." You may revoke your consent to the telemetry and personal data processing operations described in this paragraph by contacting GitHub and requesting removal from the technical preview.

View File

@@ -5,7 +5,7 @@ versions:
fpt: '*'
children:
- /about-github-copilot-telemetry
- /telemetry-terms
- /github-copilot-telemetry-terms
- /research-recitation
---

View File

@@ -1,13 +0,0 @@
---
title: Telemetry terms
intro: 'Acceptance of the additional telemetry described below is a condition to joining the wait list for the technical preview of {% data variables.product.prodname_dotcom %} Copilot and using {% data variables.product.prodname_dotcom %} Copilot during the technical preview.'
redirect_from:
- /early-access/github/copilot/telemetry-terms
versions:
fpt: '*'
---
## Additional telemetry
If you are admitted to the technical preview and use {% data variables.product.prodname_dotcom %} Copilot, the {% data variables.product.prodname_dotcom %} Copilot Visual Studio Code extension will collect usage information about events in Visual Studio Code that are tied to your user account on {% data variables.product.prodname_dotcom %}. These events include {% data variables.product.prodname_dotcom %} Copilot performance, features used, or suggestions accepted or dismissed. {% data variables.product.prodname_dotcom %} collects this information using [Azure Application Insights](https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview). This information may include your User Personal Information, as defined in the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement).
This usage information is used by {% data variables.product.prodname_dotcom %}, and shared with OpenAI, to develop and improve the {% data variables.product.prodname_dotcom %} Copilot Visual Studio Code extension and related {% data variables.product.prodname_dotcom %} products. OpenAI also uses this usage information to perform other services related to {% data variables.product.prodname_dotcom %} Copilot, such as abuse monitoring. Please note that the usage information may include snippets of code that you use, create, or generate while using {% data variables.product.prodname_dotcom %} Copilot. When you edit files with the {% data variables.product.prodname_dotcom %} Copilot plugin enabled, file content snippets and suggestion results will be shared with {% data variables.product.prodname_dotcom %} and OpenAI and used for diagnostic purposes and to improve suggestions. {% data variables.product.prodname_dotcom %} Copilot relies on file content, for context, both in the file you are editing and potentially other files in the same Visual Studio Code workspace. {% data variables.product.prodname_dotcom %} Copilot does not use your private code as input to suggest code for other users of {% data variables.product.prodname_dotcom %} Copilot. The code snippets are treated as confidential information and accessed on a need-to-know basis. You are prohibited from collecting telemetry data about other users of {% data variables.product.prodname_dotcom %} Copilot from the Visual Studio Code extension. For more details about {% data variables.product.prodname_dotcom %} Copilot telemetry, please see "[About GitHub Copilot telemetry](/github/copilot/about-github-copilot-telemetry)." If you are admitted to the technical preview, you may revoke your consent to the additional telemetry and personal data processing operations described in this paragraph by contacting {% data variables.product.company_short %} and requesting removal from the technical preview.

View File

@@ -38,7 +38,7 @@ In order to prevent violations of these limitations and abuse of GitHub Actions,
## Advanced Security
GitHub makes extra security features available to customers under an Advanced Security license. These features include code scanning, secret scanning, and dependency review. The [Advanced Security documentation](/github/getting-started-with-github/about-github-advanced-security) provides more details.
Advanced Security is licensed on a "Unique Committer" basis. A "Unique Committer" is a licensed user of GitHub Enterprise, GitHub Enterprise Cloud, GitHub Enterprise Server, or GitHub AE, who has made a code commit in the last 90 days to any repository with any GitHub Advanced Security functionality activated. You must acquire a GitHub Advanced Security User license for each of your Unique Committers. You may only use GitHub Advanced Security on codebases that are developed by or for you. For GitHub Enterprise Cloud users, some Advanced Security features also require the use of GitHub Actions.
Advanced Security is licensed on a "Unique Committer" basis. A "Unique Committer" is a licensed user of GitHub Enterprise, GitHub Enterprise Cloud, GitHub Enterprise Server, or GitHub AE, who has made a commit in the last 90 days to any repository with any GitHub Advanced Security functionality activated. You must acquire a GitHub Advanced Security User license for each of your Unique Committers. You may only use GitHub Advanced Security on codebases that are developed by or for you. For GitHub Enterprise Cloud users, some Advanced Security features also require the use of GitHub Actions.
## Advisory Database
The GitHub Advisory Database allows you to browse or search for vulnerabilities that affect open source projects on GitHub.

View File

@@ -19,7 +19,7 @@ topics:
- Repositories
---
## About repositories
## About repositories
You can own repositories individually, or you can share ownership of repositories with other people in an organization.
@@ -74,7 +74,7 @@ All enterprise members have read permissions to the internal repository, but int
{% data reusables.repositories.internal-repo-default %}
If a user is removed from all organizations owned by the enterprise, that user's forks of internal repositories are removed automatically.
Any member of the enterprise can fork any internal repository owned by an organization in the enterprise. The forked repository will belong to the member's user account, and the visibility of the fork will be private. If a user is removed from all organizations owned by the enterprise, that user's forks of internal repositories are removed automatically.
{% endif %}
## Limits for viewing content and diffs in a repository
@@ -107,6 +107,7 @@ The compare view and pull requests pages display a list of commits between the `
## Further reading
- "[Creating a new repository](/articles/creating-a-new-repository)"
- "[About forks](/github/collaborating-with-pull-requests/working-with-forks/about-forks)"
- "[Collaborating with issues and pull requests](/categories/collaborating-with-issues-and-pull-requests)"
- "[Managing your work on {% data variables.product.prodname_dotcom %}](/categories/managing-your-work-on-github/)"
- "[Administering a repository](/categories/administering-a-repository)"

View File

@@ -182,6 +182,9 @@ prodname_dependabot_version_updates: 'Dependabot version updates'
prodname_archive: 'GitHub Archive Program'
prodname_arctic_vault: 'Arctic Code Vault'
# GitHub Copilot
prodname_copilot: 'GitHub Copilot'
# Links
product_url: >-
{% ifversion fpt %}github.com{% else %}[hostname]{% endif %}

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47e8662c57128f2a5992efc510aff747f46ac071d001d61616900afcff444522
size 525434
oid sha256:39fdcf201fd3edc4fca0c81d6f765e78a97d4abe15043f419f9048165d02cc8a
size 525451

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a520172457b29d150fe352261bcc6b57e89e7618f61df79c93ef1f8acd6c60e0
size 868682
oid sha256:93fc733baed0758d99478a4f3df3b8d73ba9bae09231d23c984d6a41b81940cc
size 868749

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11675dfbe1b55a031cd9497a712ee11477c8483cebc668b527ae4f7f957482c4
size 479321
oid sha256:336b15a4782ae5915619154b0ebf40cb0cb8518dc438e0d480bc6230b5779305
size 479295

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94180c979585f2ade49ad14626eeb4be982fd1fe50ee30f6394a14d066f632ab
size 2127330
oid sha256:da3e82bb3c8ff712dcc003f81fc3c89a1cc232ef5b3ed7344489b3e50ced20ef
size 2127435

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9dbf120b12b04be4659a9da1388131f9e1c2f4663f5ed9c4bf15ae6f22961e2
size 433170
oid sha256:20c28404e399c5e7408e58e6bc5ff71f7003fa21e6eac2c1850b229673ed53be
size 433216

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:707da713265e514f9507d15702787c831fc71364a2a12e82cfd26e16b6ba89c0
size 1691664
oid sha256:82d30a88933bb9a6d5fd1e3e8789470733c29af4ec9167c3bf5bdf283e57a63a
size 1692793

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:916e8d3558463b5ffe4c4b0b0f6ee30f9ebb44083a3e027ac80d4dca992590e9
size 194963
oid sha256:5a10b6762fcff278c37daa1097da763651aa07b431be3dcd92d02bb3c585d527
size 194924

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0bbb8e5a911fd48e0d2c2edd8dbbb85aa1785fe431d8e366c2024a9edb820ba8
size 702741
oid sha256:fec5fcd1bcc05ab53068960a73978f2dc89c7414f62d1a70ca53bf31f723f269
size 702566

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:30566cfdab0a852e722bbe27be3d11192d809ceadb74abb4c581c8510d929aef
size 545230
oid sha256:65e73061a8bdb4f7304d3ce44ad37253a4afa8b20fafb1750b95a19c7afc6f2d
size 545245

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e9772bd891678d17b38a454882dc3577ebf2a35c78a3c9c5d891d168c9d0b54
size 2881358
oid sha256:99396933232cb06d7ed3ab603a8bb83b4eb567257d6b5fd2b87271a8d724cea0
size 2880938

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c33b82f54201bb8b52c987376a251f899b9495ca60fcd6c895f80557250aec9
size 456865
oid sha256:fcb1e8434acdc9a886eefa65c9374d6bd4f55ab17d3cf486d4371391b0644704
size 456788

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a77e5025f6376bf55422b5c53a06414aafb43d0ea02c26c128b3b4e790892974
size 1906361
oid sha256:368b95e173a31200ac45bc69f024e7769f1f76d53d0189c50c3de490ab4318ef
size 1905783

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6bfe721ade426030944f7bb0fa742164105d57f96907790424f64eca2170ab22
size 544858
oid sha256:f645379f65ee98a66b1235c247d56c24665aef624cc376ec16f80b5989abdbb2
size 545008

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b5929fc471c5976bd9b087856761e72b34ec349602c10d91d587b30909d378c
size 906883
oid sha256:0ab38fdceb61498ce8256addc3f8cd7c5f882913717a838e8ef72eade86f8288
size 906534

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f18806f04c5ca96afd36e1cef91a41e8b1d8437b1302ebf1dbdf7c9a8545089
size 499846
oid sha256:5a28c75e4a21177034f5f3264b196f20f3fdd652c665eaccc6d453aa4dfc5c21
size 499774

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c87cbc97e1bd9a3f8b9c5524321665841fa45176a3c6db90d715f60f575417e5
size 2232663
oid sha256:9b865f2b1ae31621a23c78a60143c86100717253c87e489565e6849260716678
size 2232482

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad658160f972e75b3272cbfecd21d5259e90e03a71ffcfb3cb343c1b4809a516
size 453475
oid sha256:ef7572c3f767d146081755059bcb57d64da2d72a7d89aeb3723c9f63cb118995
size 453459

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:98dff4bb8dc178d211abf44dcdf411d9928efcde7adff5704652e1fbe5dbfc39
size 1767144
oid sha256:135150efcc834eb36834636aeed82218441545911485ea4a3b1d9ed939f25ea1
size 1766286

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e32ee36d8f08362a21d1fe1ce9a8d023d3c4b460b5659bcb88200e4d21875a6
size 193664
oid sha256:61e2ce243d6a3cdb3309bba3adbf14f4eacf3dc55076170577c82ea37139eddc
size 193735

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:77a660e85313aa6a6e4efb7d7125e09aab7f78c8b6312802acd1d268d2f5b3b5
size 694240
oid sha256:5d01a077977ffcae36e05a8afc845cadda74b5687baed1ed027f2406532c7c05
size 693976

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ca886b499a3bab7bf15af8a677b2a7237b40fee062bc1b5feac3f21513c50481
size 567877
oid sha256:d58ce548ecb38d7021de814feb38743952af613d16aad217c81faca8e29fde49
size 567693

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:59af139f6dda786504d7f8df4b45f72ef9a14db2e660e7ab078f2b777e8f96a9
size 3007561
oid sha256:924b79d0d4bf5ee372e917537fa5fadb5fb802577fc9649cc82a44d0cb999b5f
size 3007226

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5dc7c8826bdb75ab3c19307f44e9907c89769b10cee45f1025575723032fda1
size 477604
oid sha256:ddaa0f0acea9b4b1ef3e3b3188842680f14eaddd89962c2e669d794a8823e21c
size 477659

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ace1e593d3bfcb6b1f79676bc0a24a9116acbca01f7fdb5912aac715ccb68254
size 1992879
oid sha256:917766b05221e002bae32e89ddb2d55af0bdeba20618a3014d66f6829ca8ff5a
size 1992926

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1bd0afdd4895e6d6e4e548d6468c8967f478ec35a39bc829f548e906e29cf30
size 557305
oid sha256:c6062d3ead589c9ed59e2d3aaea5c51259b0751a23f119c8cb1851be4006c13b
size 557413

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d2d0811ad29fdba447f73092abf46ad59a9893db749e35820065c1973edfe63
size 929542
oid sha256:fcdc165b8a28a72051175999732dcfedcf2c82f2d58bdaf18c4e303d2303d64d
size 929277

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:981b2f14700b182a03498f1aec771bf527c166331492412f68cd7e81fe4af00e
size 508492
oid sha256:22c4079c3045b9ac17bcda60633428f15d7429bb324cb2393549e1a33923f5f0
size 508477

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec07e630140905d74a8225fce3b60fc3e7bbb4405106abfd8a91d1b50398bbc3
size 2284765
oid sha256:65966352db7e305f291239aee4fd1563ca2257d48ffc07bf51141c6fb4448bd4
size 2284583

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49d616b971a7b6b3af3ea0024ba21e70177609153b4addd13ef206532c782101
size 462899
oid sha256:30019775c46efaed7cdf092e080cf99f51042f892c7d260e8853940f2487e8ae
size 462675

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8554bf634ee7a3d0a3208490862f7f8cbb7b1901500d5ec623eaf3eb6697fa1
size 1805194
oid sha256:36276d81cdb42c5061ff47a55f80b9db2df8c7bcec7fe412a787b7ff6c468d63
size 1805362

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37d9537e926db48f5b9cd3f28eb5f86e1b1c1a510df95ca111d0e107c449fe25
size 193599
oid sha256:6e35f97cf38a1e90df35ad97119515eba600cf8ea547ee82164128ab45e51c8d
size 193679

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b656ef7c70b4ca941aa4c1a0a30308fd246c8759b5eba3fe75f1fc57d4a423e0
size 694213
oid sha256:70b8ba8dfee0b5b5cb44d4990aee5d13adcfea1109b8d1fe460804262c2e3585
size 694126

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6ee0da07dcf29cce873d86feec2253107e7beb337ca03bcf86c9322b27c5782
size 580117
oid sha256:f67189a53ba7f12efd2e04f07891e9c2d7c98acd332e706136d8581b3f151df2
size 579903

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d63334c5a0d32ac978ba2cc3502d9ea7b43b7e80b67ca403dc00d75ccd282f33
size 3073691
oid sha256:4f2d5850ced27c07e98ce51ba95249494ba5e50fb8efa3ca285e9bfbcc7e5dcc
size 3072963

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f64273ac4f2462fdb387a451d01e5ad4b179bcc2db247feaa04187416c0c8c71
size 487251
oid sha256:4e12b10c2087d718f3a458223e9d2ba1040fa0722611f9757ac4f62553a1c802
size 487086

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14059ed797e6f9c2908d1d536c61e3ab3b6d6857c3eccf20b995190590f079fb
size 2036910
oid sha256:81bb6cb386ef9f2b62bdcf1ed8b648fc3c0d3ecb576f3e559ebb49f0c8763c4b
size 2036857

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17aae0d11eeeec0b2e9891da8064793eb2b9f8bb1a6469cce829f73b2aa9c81b
size 567936
oid sha256:d7ab75388591ca5b08b89a29b9bf7d4b9d21377863a5ff91dd5549ef8786eda1
size 567840

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de69d0d7cd46bb1c93b511abce27749eacce197e78b04b724b864e5b432919e3
size 949086
oid sha256:e14265541f9152fd998cb242fa8f8e385b6f84ac281519924f0a0f0220296974
size 949264

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ea9e928e9abd4b722c07c0577189c561522a5aa75bdba8b97611ac416498976
size 517530
oid sha256:c4c215df91137e777ddf85b5c0f4503f525060a49345976981b5cdd72012a1b2
size 517516

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:093ae94765f10a33efa8cad9f6505954e2fb9235e5abf385fc1bcf54cab75636
size 2332966
oid sha256:ff51236fe4ab0843713ce5afd0b9b17f8b84d0987d2d0076cff1c53d158eecd2
size 2331933

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fbd09bf77b92ad6e9acd15e554356294d697ddef5e8cf6f03a53721042bcbdf7
size 471379
oid sha256:03df8c634d0927883ba94b4b1ff7b0855d023b3f07480cea01e3f40413210409
size 471434

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e787d3375d42d703a41de426122deeebbccbd0951e369aada42754a0fb582c2
size 1837817
oid sha256:60b86615a45bfd6307da5eb08f55d9167af234869b6c5f5d739a3ad373ddeccc
size 1838147

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d87e1f600553442e1327a8ca7f332dd8341bf44ff0a6ac3951e8c6c28e87f672
size 193629
oid sha256:9e77566a720589c4c786a902aeb4dbff8c4e6fdf0e17e3e96de6db64135fb932
size 193542

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:940e53d03b92038403b61f6ece6a13be7ec2b4a45bc0fe64460de2108f7d9541
size 694112
oid sha256:c62541f33a41ae82b98dbc49f53a0b8d4c87a9b8b353a86e4fcd19a12ae5ea9e
size 694010

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:63e2e516a9d11b5331a255cc2c2a760c10bd23a0296f4c9a48bb5100d2b840ac
size 590358
oid sha256:87e874c78b90fec5453e74ac457410765e8783bce2c2aa70bf3b140c6b1fe1c2
size 590227

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88abc1473bf0835fe891f360238beae3e25151004bee1697a3b066a56005215f
size 3141066
oid sha256:6518c81e5db006f46918cd3bd84f4e280844bc822e93a5d5fb60010ae2eda792
size 3139838

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c89843908322e61ab63edf1ce67c8513e2d6db3c36a06260c324e43c48d73ea
size 496634
oid sha256:223ce5612a68bbe932f22755c5b103ea6e6d8a792d8c26212f6d392a1beffa25
size 496588

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa9e9f9a420ff844f36f2eaebb6cb5ad8ee10e973b3082f1032ebdc4f3bd063b
size 2079151
oid sha256:a78dc9ee5146ba9aafadcf3debb341bcd8e96f9948944e4adb6d0b80b1a932db
size 2077660

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cdb511b78f33a30444b6147d3450b36685315619862a2ddd128eef6396421eb8
size 770789
oid sha256:75ca66f850431d0fd02844787ec3a12fd082db96950c1ddfca51277520ef363d
size 770723

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0b624517754b1d531337b4f982d48bee5f877e87691d1551d4fbd2758c4c51e
size 1171528
oid sha256:4aac3baa354a2db91b363cbda311929fcb7e8dc73301290968b4becb23b60702
size 1171309

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e4bd1805f7249806f1557d0ce62ff5467e8fbe659e87bbb97c4d24de03ed449
size 690886
oid sha256:8873d1f71ad78eaa1fec00f41ce20f811429de310403132e6c52cbb33231164c
size 690742

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c59bf3956dc8b4066bd55061cf4c3c13356720da8d54c016cf1971bf76a62953
size 3125237
oid sha256:46eb67974d1f75224094f66ecf5dd933fdfc67a0ee5c8e187bd624946e48b5c5
size 3125917

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f9b00bc1043a65946c93af460d8dbb61a699ef1d2f1f6de7f86ed8fdb5ef157
size 637100
oid sha256:004185591683cb9fa318bdd5bd7c78c838dd1fe83f726d82ceac3c866e0513e3
size 636788

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7373b0f499fe8435876e7ec61d3fc273c38b34f3c2caae827397828953bf9da2
size 2418133
oid sha256:45ad81e8a26939dee397eb45aea60a40605569170f50ad32ee97bc96c1f8c5df
size 2418819

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f816f6895540cf5c17cd8a7d89d373a7179f3011608fb58acc86c3417332ddd7
size 205247
oid sha256:d4dc772890d7759109db2021fea33ae54a05b2bff532fec5b90edf0f917cbde6
size 205180

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b3531d80fc09aa9dabb1c3f406435f56a4ec5afa85b23538156a9b141222693
size 651028
oid sha256:7cbc5ede31f74e3755c30b5cea43af61979f01f4cb6a677782805e650af83082
size 650904

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99a1084b825888ff766ea23581c7a70f44eac9902fa74f68ff05cba63c549126
size 795139
oid sha256:fa1ba6f446e061304d463fbbe9d3a46649a0c7bfb0c512bf1ba811ec1fa6ac5c
size 795328

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c52ff8677c6033434aa537c4c82ee10437406bff1916620d2a4d9b0d6a6d4891
size 4151485
oid sha256:20e2e3dcc7d6aba9fa8fc60765da578e2ca349a2db50594b87b5d67f401dafb5
size 4152479

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c9f6bdde5d5aff75cf009d5130d28ad8ffce425f5d710cb80f4a403eddcdec5
size 669644
oid sha256:f46c3581c56b140a90611efc36195ddfb0d02e20db4cf760eb177e7ac0abfcf9
size 669534

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:64133d604a6d816e0042700f60e9ab1f100c6b6442e53ac0e707c39cd5455dbb
size 2749977
oid sha256:7b47bf4891b07773cc321ca5f2930ee9a3209d897c553410fc12d2fc55078f34
size 2750833

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf26c75fdc3ae1e31d0dca29e01251a5330af98d737d708a40ba7638d6aaf7d2
size 433796
oid sha256:310dcf30493884a1dea6647cb41ccc7c05a732181b6ab7361384a5491f88f673
size 433696

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5934ca796c47092866304c0752eab9b442a023bbde983fa16cefaaefbccbee0
size 692595
oid sha256:6d36ff88b22a3d85a7d945562d0d71c089d22e1f7015bbb47f57f10b3ad46710
size 692822

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b01124c6e0ae87718751792c7b13f05444e24b4681a64b98604c385cb65b7cc
size 400513
oid sha256:22e00eafb6b3dbe8fadbcfac3648f999f058cce233ea4de93412f246711fb6a7
size 400585

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b11496d68c293e686a8dae6d539e65885f4323cd71e3e29edc417cdec702e603
size 1744338
oid sha256:1616d8a77aef14715a3ba0d6bac6fbf7c4c0a95ac077094b676726acab78e7e3
size 1744165

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35294892ab952152a745619bece7ec868a96d9fe325e2356d152079e182b33ea
size 363462
oid sha256:6a01f886511b4f84a342296add408c8b5a2c4e1f483667bc2fc1fba636489dc5
size 363375

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9da5ac8d50faaa1c9ce5befd1316e603e9c3d9a3511b8b8ae1ddb6a426ee3861
size 1352826
oid sha256:a5637a022a45628f94b0703f573d0acf0fee749dd6f74c7518844bac1e50d816
size 1352245

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78984536a6c594fb5de749efc1086599fcf351b52752df6c85fdae33f44d0af4
size 130885
oid sha256:3f756f9d0bcca425afcd4e51a0e18d76c07ab298a104105c8aa72936b6a9f308
size 130856

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8acbe8122c37121fadfd664c3ceae4d7eb249da4c9627873e56888451d8c2838
size 420248
oid sha256:59d32fbf185031232d3d526e766b567eb4e84ece39a2b3e26554ab67d1cc2672
size 420252

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bf3c3c2a8203cbdb9dfb97a46fa75e83c6bda58668d9a01e4b5ffdb5deccd6fd
size 453107
oid sha256:3d03b3b58099b325485725de8cd17f0052f8f1cd474ebfc5e7be81733c5f5be2
size 453022

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b37d3853dce43e74324ad18cbb8816244d603bfbfe8d02c78efbac08d1762e0
size 2298795
oid sha256:76c185d4fbb77f00c8b685168035b0f2ac1565c97df0a42051ff4e35a2c6c1b1
size 2299236

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f793e329d776cbe374335556ae9676c1ed63bfb4e7371732898718d484bdc4d3
size 384769
oid sha256:c0ed65219b78a3d3697d301d502ba39ac57459e9914c0a886b854a7b15bbadb0
size 384748

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afadf7e101d8aa1a9b4bd3b55c98689b3245161a7338b25a852aa88ea6f45d1c
size 1539531
oid sha256:733b56a709669c8f9f1341bd1d9413a6c62e9f1ccc127ce62fc41ac4b5894474
size 1539578