Merge branch 'main' into copilot-ga-megabranch
This commit is contained in:
@@ -80,7 +80,7 @@ The following SAML attributes are available for {% data variables.product.produc
|
||||
| `NameID` | Yes | A persistent user identifier. Any persistent name identifier format may be used. {% ifversion ghec %}If you use an enterprise with {% data variables.product.prodname_emus %}, {% endif %}{% data variables.product.product_name %} will normalize the `NameID` element to use as a username unless one of the alternative assertions is provided. For more information, see "[Username considerations for external authentication](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication)." |
|
||||
| `SessionNotOnOrAfter` | No | The date that {% data variables.product.product_name %} invalidates the associated session. After invalidation, the person must authenticate once again to access {% ifversion ghec or ghae %}your enterprise's resources{% elsif ghes %}{% data variables.product.product_location %}{% endif %}. For more information, see "[Session duration and timeout](#session-duration-and-timeout)." |
|
||||
{%- ifversion ghes or ghae %}
|
||||
| `administrator` | No | When the value is `true`, {% data variables.product.product_name %} will automatically promote the user to be a {% ifversion ghes %}site administrator{% elsif ghae %}enterprise owner{% endif %}. Any other value or a non-existent value will demote the account and remove administrative access. |
|
||||
| `administrator` | No | When the value is `true`, {% data variables.product.product_name %} will automatically promote the user to be a {% ifversion ghes %}site administrator{% elsif ghae %}enterprise owner{% endif %}. Setting this attribute to anything but `true` will result in demotion, as long as the value is not blank. Omitting this attribute or leaving the value blank will not change the role of the user. |
|
||||
| `username` | No | The username for {% data variables.product.product_location %}. |
|
||||
{%- endif %}
|
||||
| `full_name` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} full name of the user to display on the user's profile page. |
|
||||
|
||||
@@ -50,11 +50,19 @@ The dependency review feature becomes available when you enable the dependency g
|
||||
|
||||
{% data reusables.dependency-review.dependency-review-action-beta-note %}
|
||||
|
||||
You can use the Dependency Review GitHub Action in your repository to enforce dependency reviews on your pull requests. The action scans for vulnerable versions of dependencies introduced by package version changes in pull requests, and warns you about the associated security vulnerabilities. This gives you better visibility of what's changing in a pull request, and helps prevent vulnerabilities being added to your repository. For more information, see [`dependency-review-action`](https://github.com/actions/dependency-review-action).
|
||||
The action is available for all {% ifversion fpt or ghec %}public repositories, as well as private {% endif %}repositories that have {% data variables.product.prodname_GH_advanced_security %} enabled.
|
||||
|
||||
You can use the {% data variables.product.prodname_dependency_review_action %} in your repository to enforce dependency reviews on your pull requests. The action scans for vulnerable versions of dependencies introduced by package version changes in pull requests, and warns you about the associated security vulnerabilities. This gives you better visibility of what's changing in a pull request, and helps prevent vulnerabilities being added to your repository. For more information, see [`dependency-review-action`](https://github.com/actions/dependency-review-action).
|
||||
|
||||

|
||||
|
||||
The Dependency Review GitHub Action check will fail if it discovers any vulnerable package, but will only block a pull request from being merged if the repository owner has required the check to pass before merging. For more information, see "[About protected branches](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)."
|
||||
By default, the {% data variables.product.prodname_dependency_review_action %} check will fail if it discovers any vulnerable packages. A failed check blocks a pull request from being merged when the repository owner requires the dependency review check to pass. For more information, see "[About protected branches](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)."
|
||||
|
||||
The action uses the Dependency Review REST API to get the diff of dependency changes between the base commit and head commit. You can use the Dependency Review API to get the diff of dependency changes, including vulnerability data, between any two commits on a repository. For more information, see "[Dependency review](/rest/reference/dependency-graph#dependency-review)."
|
||||
|
||||
{% ifversion dependency-review-action-configuration %}
|
||||
You can configure the {% data variables.product.prodname_dependency_review_action %} to better suit your needs. For example, you can specify the severity level that will make the action fail, or set an allow or deny list for licenses to scan. For more information, see "[Configuring dependency review](/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review#configuring-the-dependency-review-github-action)."
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
@@ -50,3 +50,56 @@ Dependency review is available when dependency graph is enabled for {% data vari
|
||||
{% endif %}{% ifversion ghes > 3.2 %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% ifversion dependency-review-action-configuration %}
|
||||
## Configuring the {% data variables.product.prodname_dependency_review_action %}
|
||||
|
||||
{% data reusables.dependency-review.dependency-review-action-beta-note %}
|
||||
{% data reusables.dependency-review.dependency-review-action-overview %}
|
||||
|
||||
The following configuration options are available.
|
||||
|
||||
| Option | Required | Usage |
|
||||
|------------------|-------------------------------|--------|
|
||||
| `fail-on-severity` | Optional | Defines the threshold for level of severity (`low`, `moderate`, `high`, `critical`).</br>The action will fail on any pull requests that introduce vulnerabilities of the specified severity level or higher. |
|
||||
| `allow-licenses` | Optional | Contains a list of allowed licenses. You can find the possible values for this parameter in the [Licenses](/rest/licenses) page of the API documentation.</br>The action will fail on pull requests that introduce dependencies with licenses that do not match the list.|
|
||||
| `deny-licenses` | Optional | Contains a list of prohibited licenses. You can find the possible values for this parameter in the [Licenses](/rest/licenses) page of the API documentation.</br>The action will fail on pull requests that introduce dependencies with licenses that match the list.|
|
||||
|
||||
{% tip %}
|
||||
|
||||
**Tip:** The `allow-licenses` and `deny-licenses` options are mutually exclusive.
|
||||
|
||||
{% endtip %}
|
||||
|
||||
This {% data variables.product.prodname_dependency_review_action %} example file illustrates how you can use these configuration options.
|
||||
|
||||
```yaml{:copy}
|
||||
name: 'Dependency Review'
|
||||
on: [pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
dependency-review:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 'Checkout Repository'
|
||||
uses: {% data reusables.actions.action-checkout %}
|
||||
- name: Dependency Review
|
||||
uses: actions/dependency-review-action@v2
|
||||
with:
|
||||
# Possible values: "critical", "high", "moderate", "low"
|
||||
fail-on-severity: critical
|
||||
# You can only can only include one of these two options: `allow-licenses` and `deny-licences`
|
||||
# ([String]). Only allow these licenses (optional)
|
||||
# Possible values: Any `spdx_id` value(s) from https://docs.github.com/en/rest/licenses
|
||||
# allow-licenses: GPL-3.0, BSD-3-Clause, MIT
|
||||
|
||||
# ([String]). Block the pull request on these licenses (optional)
|
||||
# Possible values: Any `spdx_id` value(s) from https://docs.github.com/en/rest/licenses
|
||||
# deny-licenses: LGPL-2.0, BSD-2-Clause
|
||||
```
|
||||
|
||||
For further details about the configuration options, see [`dependency-review-action`](https://github.com/actions/dependency-review-action#readme).
|
||||
{% endif %}
|
||||
|
||||
@@ -41,6 +41,16 @@ Starring a repository is a simple two-step process.
|
||||

|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
## Viewing who has starred a repository
|
||||
|
||||
|
||||
You can view everyone who has starred a public repository or a private repository you have access to.
|
||||
|
||||
|
||||
To view everyone who has starred a repository, add `/stargazers` to the end of the URL of a repository. For example, to view stargazers for the github/docs repository, visit https://github.com/github/docs/stargazers.
|
||||
|
||||
|
||||
## Organizing starred repositories with lists
|
||||
|
||||
{% note %}
|
||||
|
||||
@@ -82,7 +82,7 @@ gh repo fork <em>repository</em> --clone=true
|
||||
|
||||
## Making and pushing changes
|
||||
|
||||
Go ahead and make a few changes to the project using your favorite text editor, like [Atom](https://atom.io). You could, for example, change the text in `index.html` to add your GitHub username.
|
||||
Go ahead and make a few changes to the project using your favorite text editor, like [Visual Studio Code](https://code.visualstudio.com). You could, for example, change the text in `index.html` to add your GitHub username.
|
||||
|
||||
When you're ready to submit your changes, stage and commit your changes. `git add .` tells Git that you want to include all of your changes in the next commit. `git commit` takes a snapshot of those changes.
|
||||
|
||||
|
||||
@@ -35,9 +35,14 @@ shortTitle: Review dependency changes
|
||||
Dependency review allows you to "shift left". You can use the provided predictive information to catch vulnerable dependencies before they hit production. For more information, see "[About dependency review](/code-security/supply-chain-security/about-dependency-review)."
|
||||
|
||||
{% ifversion fpt or ghec or ghes > 3.5 or ghae-issue-6396 %}
|
||||
You can use the Dependency Review GitHub Action to help enforce dependency reviews on pull requests in your repository. For more information, see "[Dependency review enforcement](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement)."
|
||||
|
||||
You can use the {% data variables.product.prodname_dependency_review_action %} to help enforce dependency reviews on pull requests in your repository. {% data reusables.dependency-review.dependency-review-action-overview %}
|
||||
|
||||
{% ifversion dependency-review-action-configuration %}
|
||||
You can configure the {% data variables.product.prodname_dependency_review_action %} to better suit your needs by specifying the type of dependency vulnerability you wish to catch. For more information, see "[Configuring dependency review](/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review#configuring-the-dependency-review-github-action)."
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
## Reviewing dependencies in a pull request
|
||||
|
||||
{% data reusables.repositories.sidebar-pr %}
|
||||
|
||||
@@ -77,14 +77,8 @@ Before you can sync your fork with an upstream repository, you must [configure a
|
||||
> 2 files changed, 7 insertions(+), 9 deletions(-)
|
||||
> delete mode 100644 README
|
||||
> create mode 100644 README.md
|
||||
``` If your local branch didn't have any unique commits, Git will instead perform a "fast-forward":
|
||||
```shell
|
||||
$ git merge upstream/main
|
||||
> Updating 34e91da..16c56ad
|
||||
> Fast-forward
|
||||
> README.md | 5 +++--
|
||||
> 1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
```
|
||||
```
|
||||
|
||||
|
||||
{% tip %}
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ topics:
|
||||
|
||||
{% warning %}
|
||||
|
||||
Warning: As of late October 2021, the offical Octokit libraries are not currently maintained. For more information, see [this discussion in the octokit.js repository](https://github.com/octokit/octokit.js/discussions/620).
|
||||
Warning: As of late October 2021, the official Octokit libraries are not currently maintained. For more information, see [this discussion in the octokit.js repository](https://github.com/octokit/octokit.js/discussions/620).
|
||||
|
||||
{% endwarning %}
|
||||
|
||||
|
||||
6
data/features/dependency-review-action-configuration.yml
Normal file
6
data/features/dependency-review-action-configuration.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
# Reference: Issue #7061 Configuring the dependency review action - [Public Beta]
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>3.5'
|
||||
ghae: 'issue-7061'
|
||||
@@ -163,6 +163,11 @@ sections:
|
||||
- heading: Deprecation of XenServer Hypervisor support
|
||||
notes:
|
||||
- Beginning in {% data variables.product.prodname_ghe_server %} 3.1, we will begin discontinuing support for Xen Hypervisor. The complete deprecation is scheduled for {% data variables.product.prodname_ghe_server %} 3.3, following the standard one year deprecation window.
|
||||
- heading: Change to the format of authentication tokens affects GitHub Connect
|
||||
notes:
|
||||
# https://github.com/github/releases/issues/1235
|
||||
- |
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. To continue using GitHub Connect, upgrade to GitHub Enterprise Server 3.2 or later. For more information, see the [GitHub Blog](https://github.blog/2022-05-20-action-needed-by-github-connect-customers-using-ghes-3-1-and-older-to-adopt-new-authentication-token-format-updates/). [Updated: 2022-06-14]
|
||||
|
||||
backups:
|
||||
- '{% data variables.product.prodname_ghe_server %} 3.1 requires at least [GitHub Enterprise Backup Utilities 3.1.0](https://github.com/github/backup-utils) for [Backups and Disaster Recovery](/enterprise-server@3.1/admin/configuration/configuring-backups-on-your-appliance).'
|
||||
|
||||
@@ -306,6 +306,11 @@ sections:
|
||||
Two legacy GitHub Apps-related webhook events have been removed: `integration_installation` and `integration_installation_repositories`. You should instead be listening to the `installation` and `installation_repositories` events.
|
||||
- |
|
||||
The following REST API endpoint has been removed: `POST /installations/{installation_id}/access_tokens`. You should instead be using the namespaced equivalent `POST /app/installations/{installation_id}/access_tokens`.
|
||||
- heading: Change to the format of authentication tokens affects GitHub Connect
|
||||
notes:
|
||||
# https://github.com/github/releases/issues/1235
|
||||
- |
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. To continue using GitHub Connect, upgrade to GitHub Enterprise Server 3.2 or later. For more information, see the [GitHub Blog](https://github.blog/2022-05-20-action-needed-by-github-connect-customers-using-ghes-3-1-and-older-to-adopt-new-authentication-token-format-updates/). [Updated: 2022-06-14]
|
||||
|
||||
backups:
|
||||
- '{% data variables.product.prodname_ghe_server %} 3.2 requires at least [GitHub Enterprise Backup Utilities 3.2.0](https://github.com/github/backup-utils) for [Backups and Disaster Recovery](/enterprise-server@3.2/admin/configuration/configuring-backups-on-your-appliance).'
|
||||
|
||||
@@ -295,5 +295,11 @@ sections:
|
||||
|
||||
To start a repository maintenance task manually, browse to `https://<hostname>/stafftools/repositories/<owner>/<repository>/network` for each affected repository and click the **Schedule** button.
|
||||
|
||||
- heading: Change to the format of authentication tokens affects GitHub Connect
|
||||
notes:
|
||||
# https://github.com/github/releases/issues/1235
|
||||
- |
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. To continue using GitHub Connect, upgrade to GitHub Enterprise Server 3.2 or later. For more information, see the [GitHub Blog](https://github.blog/2022-05-20-action-needed-by-github-connect-customers-using-ghes-3-1-and-older-to-adopt-new-authentication-token-format-updates/). [Updated: 2022-06-14]
|
||||
|
||||
backups:
|
||||
- '{% data variables.product.prodname_ghe_server %} 3.3 requires at least [GitHub Enterprise Backup Utilities 3.3.0](https://github.com/github/backup-utils) for [Backups and Disaster Recovery](/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance).'
|
||||
|
||||
@@ -297,5 +297,11 @@ sections:
|
||||
|
||||
To start a repository maintenance task manually, browse to `https://<hostname>/stafftools/repositories/<owner>/<repository>/network` for each affected repository and click the Schedule button.
|
||||
|
||||
- heading: Change to the format of authentication tokens affects GitHub Connect
|
||||
notes:
|
||||
# https://github.com/github/releases/issues/1235
|
||||
- |
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. For more information, see the [GitHub changelog](https://github.blog/2022-05-20-action-needed-by-github-connect-customers-using-ghes-3-1-and-older-to-adopt-new-authentication-token-format-updates/). [Updated: 2022-06-14]
|
||||
|
||||
backups:
|
||||
- '{% data variables.product.prodname_ghe_server %} 3.4 requires at least [GitHub Enterprise Backup Utilities 3.4.0](https://github.com/github/backup-utils) for [Backups and Disaster Recovery](/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance).'
|
||||
|
||||
@@ -390,11 +390,11 @@ sections:
|
||||
|
||||
|
||||
deprecations:
|
||||
- heading: Change to the format of authentication tokens
|
||||
- heading: Change to the format of authentication tokens affects GitHub Connect
|
||||
notes:
|
||||
# https://github.com/github/releases/issues/1235
|
||||
- |
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. For more information, see the [GitHub changelog](https://github.blog/changelog/2021-03-31-authentication-token-format-updates-are-generally-available/).
|
||||
GitHub Connect will no longer work after June 3rd for instances running GitHub Enterprise Server 3.1 or older, due to the format of GitHub authentication tokens changing. To continue using GitHub Connect, upgrade to GitHub Enterprise Server 3.2 or later. For more information, see the [GitHub Blog](https://github.blog/2022-05-20-action-needed-by-github-connect-customers-using-ghes-3-1-and-older-to-adopt-new-authentication-token-format-updates/). [Updated: 2022-06-14]
|
||||
|
||||
- heading: CodeQL runner deprecated in favor of CodeQL CLI
|
||||
notes:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% note %}
|
||||
|
||||
**Note**: The Dependency Review GitHub Action is currently in public beta and subject to change.
|
||||
**Note**: The {% data variables.product.prodname_dependency_review_action %} is currently in public beta and subject to change.
|
||||
|
||||
{% endnote %}
|
||||
@@ -0,0 +1,3 @@
|
||||
The {% data variables.product.prodname_dependency_review_action %} scans your pull requests for dependency changes and raises an error if any new dependencies have known vulnerabilities. The action is supported by an API endpoint that compares the dependencies between two revisions and reports any differences.
|
||||
|
||||
For more information about the action and the API endpoint, see "[About dependency review](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-reinforcement)," and "[Dependency review](/rest/dependency-graph/dependency-review)" in the API documentation, respectively.
|
||||
@@ -1,2 +1,2 @@
|
||||
1. Optionally, next to "Billing & plans", click **Get usage report** to email a CSV report of storage use for {% data variables.product.prodname_actions %}, {% data variables.product.prodname_registry %}, and {% data variables.product.prodname_codespaces %} to the account's primary email address.
|
||||

|
||||
1. Optionally, next to "Usage this month", click **Get usage report** to get an email containing a link for downloading a CSV report of storage use for {% data variables.product.prodname_actions %}, {% data variables.product.prodname_registry %}, and {% data variables.product.prodname_codespaces %}. The email is sent to your account's primary email address. You can choose whether the report should cover the last 7, 30, 90, or 180 days.
|
||||

|
||||
|
||||
@@ -181,6 +181,7 @@ prodname_code_scanning_capc: 'Code scanning'
|
||||
prodname_codeql_runner: 'CodeQL runner'
|
||||
prodname_advisory_database: 'GitHub Advisory Database'
|
||||
prodname_codeql_workflow: 'CodeQL analysis workflow'
|
||||
prodname_dependency_review_action: 'Dependency Review GitHub Action'
|
||||
|
||||
# Visual Studio
|
||||
prodname_vs: 'Visual Studio'
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:37517336198bce4c9e0c52fb1667c615033861d4bd9268b2f1df0f24393476e3
|
||||
size 741131
|
||||
oid sha256:5c5f4d6d0278c5a471dd1c0eaab1844adead6ec7d1de9710c0056b11b0123fb5
|
||||
size 741003
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:127e3e44e224d0d994833c92e381febd36b2f5b8f913c14e4ac58fc62cd00a99
|
||||
size 1564687
|
||||
oid sha256:453de2fa79c256c94ae042ea79095eb0a2035429b72004d4f05e36e50fcfcd86
|
||||
size 1564519
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a5d708b823d5fdd72815d0a4f471f6e47744ed8dadecba0e1ac04b6a4103f731
|
||||
size 998569
|
||||
oid sha256:104aa63fba7c7c921f0e96e4732fad2fb12c10a2ac925109b29ddaeb7e135335
|
||||
size 998020
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a92b151496fdeb5bd0174614ffc8dcf6d4dc334b12b84d9874230622dc00e5d7
|
||||
size 4000606
|
||||
oid sha256:1c9b0f9020443a9614e1d133c044781e24b4c3635eddd335646b4e6ee25dae63
|
||||
size 4001532
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6cca332a34b52b85a251d24191c2cce1c4ebbcb2ef3ccc69526b26aa20750485
|
||||
size 684042
|
||||
oid sha256:2c0ce71e556f355de59747a6f62c1544c5585e2dece5482661c6caf86e61b7a2
|
||||
size 684070
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6142600897fd881cb95fac9c99899868c947a394536176627605836941afd826
|
||||
size 2973428
|
||||
oid sha256:dbec137bba645ccc2f1afebed63864d284b219db2977ffb0a1e635114f124b3f
|
||||
size 2973533
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c8eadaefe261a3f890cb5f7a896e18ab594ea0dc12711546f4856efd04454dd
|
||||
size 751550
|
||||
oid sha256:66e70f7bdc2b827e135b9d2f3553af282f925dcdf5b692f6ecb6494f9865e4dc
|
||||
size 751580
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff66a75cb57c7e1c9a435fd9a6f955b4279b09b089aafe93f6f692081821d129
|
||||
size 4133767
|
||||
oid sha256:6f4556fc747d1e883de48619be14316cc53d02094fd0cd275f1659028f802b1f
|
||||
size 4133861
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f8d258d0b098fe10fef9911857b0c1ffe798d1344d241cfe45755d2911b5d08
|
||||
size 674822
|
||||
oid sha256:7dbd5f240443704f4551430a4fbba559cbc82c167a1c10fa5ffdf081937f63b4
|
||||
size 674710
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26bff33a0e2b4ae8ac068a70cb201d28738cb737805b528e7f63efa7dd74e99d
|
||||
size 2876093
|
||||
oid sha256:422ffe291542c8eb91ac6eddbec95c02f527dd3d95fff8a36c709fbc532e791d
|
||||
size 2876438
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:037a5bcec0b203a56609602b2587fea8e8a68f13ce560bfedf325d26165a26d6
|
||||
size 762879
|
||||
oid sha256:1f3c151f80fc3a5d719810830b04a0783c9f89d1955971c86cc62ae5f100080c
|
||||
size 762656
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:059a79106d5dd94d431a703605b05f1a825af2ea2b00443954dbf26ac401c13f
|
||||
size 1602902
|
||||
oid sha256:9e06b89a0f001bc009a3c59530131282c10d8a1106f2450da21971f9ee6a7122
|
||||
size 1602818
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d9770b9059295b933d50105e607fb9c983aaac969f8bc8383393c20ea2d72f4
|
||||
size 1034403
|
||||
oid sha256:a94a36a54ea13ee4405584040cd9d628630276e77daa2740bbd1256022575a04
|
||||
size 1035082
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24615a4f459eef8c678e952f185b0a42725c85c0497eb5c20bb3d806bf95d21e
|
||||
size 4154675
|
||||
oid sha256:67abb1f9c795429c8dc20e68110394ccde459abf7d23785e2fe45495c08c5be2
|
||||
size 4154910
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b9f084a7cee102ab7977e772373171bacb6a465255b744ef83f7a63e8bd76b35
|
||||
size 704119
|
||||
oid sha256:474aefb7fa1c2871cea74d614fe97502c945f4e8a4f2ac2f6bfc1e2f0a23f341
|
||||
size 704105
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf023e853464716922cb79a2855147b47c857d4f9a51884a74de21e74c06f7d4
|
||||
size 3059602
|
||||
oid sha256:a403d425c058d261a3670d82d677008a213131c2cc4e46df99688ea651deebba
|
||||
size 3059954
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4259d12f9b3b36faac189d73cc506d1a7c64c51a7953d9843f7209069b2a4135
|
||||
oid sha256:3df13e61910de670e78e22132dc17495f25cd7590db932108a748616eb53d65f
|
||||
size 772523
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc94acb35e2814029a0ff7b0c83f94c4430a10cce6106799a5275aa2c783f791
|
||||
size 4251152
|
||||
oid sha256:484ed0957ff67199e5f2a1d93d87e3a51ae69bdf47798df447a7f92426ffb8bf
|
||||
size 4251234
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c5fc0c153178eeb074586bf9045da6788dc11d3f125041bd3a7ae79d1739511a
|
||||
size 694224
|
||||
oid sha256:b08754db5a22f1649165056393c736a4af71ba54de9d87aff0096d9bbc5ebfda
|
||||
size 694191
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e556109de3c641f457bdf71b11c4b1b25e1964269c24ab3fd854b339ffeff1dd
|
||||
size 2955078
|
||||
oid sha256:422b3845b9a9d0df2687adc19bf167bbdceb1cd7de6a92636a165ae0b6531305
|
||||
size 2954854
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ea0dcfa411f4183645b1c6ebd7a505159d79d992bee79334d9b37ad574e3e7b
|
||||
size 786283
|
||||
oid sha256:e3fcf60dc91e93ac1047dac042e9e1761432a209b72570abd1f0b38a1901d1ae
|
||||
size 786343
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a285e094f617079c7e0c4091c942d671190a7fa66a66db467a501889406c18d6
|
||||
size 1644208
|
||||
oid sha256:e9aeb37f0642caad1674b3e44b0559a7f77b735add932c6cc27a8fe949361175
|
||||
size 1644511
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd677232764923692cc1665147f6955f8588a9be13b1422d0e6e0e840dc08ca8
|
||||
size 1069774
|
||||
oid sha256:0d4eefa39974be3b186cb1d23e4f8e663f531325723ad3ad89afb5fd9b53a06d
|
||||
size 1069722
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9473d610444f7714019782b971b0dcb459d2ec36568ae1602597b367e85bbe7
|
||||
size 4249718
|
||||
oid sha256:20941b944ee0d3728a3deab761c30c53396efea41560e4bd1907e11468ec7660
|
||||
size 4250893
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4269f7af3963996e923ca9869d8938adebfa5905483358d00fcf059d32cece14
|
||||
size 723846
|
||||
oid sha256:698751672ccae559331a95e7c704f51091e44115783b97ea49bf40f0aa2858a0
|
||||
size 723786
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6d94972881ee9a2779816886c2c1d900752bc33f8abf4d4b78c9d547ddbac95
|
||||
size 3139655
|
||||
oid sha256:1844c8e4e964bd25aaa7208390758d618034d1f52c475673a0098e63d7c02553
|
||||
size 3139696
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:088248f061d0262d6c0d698cb57b3f650b25221fe4bf39158f867f9ba6b12297
|
||||
size 795953
|
||||
oid sha256:3e84744d14211d8342358f9bafaee1bd8998d0423e219fc8a694163af8b4f412
|
||||
size 796053
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b383609227d497c824fc2ef281aae00d74226510c4276fb48177eed3073400c0
|
||||
size 4370511
|
||||
oid sha256:ee3277e1dd5ce6ebd66a7afa4fba4ce50491b88161bd25533d8a4b9c410e7843
|
||||
size 4370155
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5e2d6adb104824c4a90a0125f731ae3681aabccdec8400a8b315b0c392f5a04
|
||||
size 713873
|
||||
oid sha256:4295a1c6560a67a1fccd910596e84185392a1ded0676e716a689d1fe643d64bd
|
||||
size 713807
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80ef4047da51f527c9ca1b037a118b6af5b188d33a29bb9ba9e3f9ba242f03a7
|
||||
size 3033277
|
||||
oid sha256:8900b54e887c8f6b1091d46a6a9750dcee0bc3fb27cc33d84705f6ce3185841f
|
||||
size 3033121
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18f004f4b5150a55dd3ff266463c593829a6dccdfb08bbcdacdf9b1ca079087a
|
||||
size 788442
|
||||
oid sha256:3213860d0904f69c9e8f6657625de94a6c2bfc37ce006acc38bad3f9790cf1c4
|
||||
size 788213
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93ff3162bb2cd8a25c580d4e1071621c6ed29edb89e3d0474c53f6e2383927cf
|
||||
size 1656190
|
||||
oid sha256:f048a0cc63a9edbcf18b6baf4312487c7ab71a51f243743dc3d93062cbdee6e7
|
||||
size 1656149
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4fe701d0d655c8e0526e8af99f15ad58311cd620d5cbbb0cc63d6f390737e45e
|
||||
size 1078330
|
||||
oid sha256:a2aa677506a7a98cc22a565c4e4e6fd0c5e4605076eab3d043b55808912cddd5
|
||||
size 1079028
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:11268747372f8e2c17ab130a02473a23f93456acc5bed36ce343d3d58de0ecd0
|
||||
size 4292126
|
||||
oid sha256:9f4fe7f16df46476046c5fd40ed6ba98b0f59c38913441e032738b418babbd5b
|
||||
size 4292085
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b9919b36ac70941cc69246d1b6c7691ce2523aeb618849dc763294a1c7bd10d3
|
||||
size 727455
|
||||
oid sha256:7253052ebe6efcf30a64e4260a5fb5dae8804e8f102bffc45d26c4a52abd4ec6
|
||||
size 727276
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:729ca0d27d722f09f48f34bf2e508108def109806b5b2bbbf91992f348b2d59e
|
||||
size 3159241
|
||||
oid sha256:cdae7f1cce26641fc4ff7aa70312030078fd159069a17e7e8f258ea781c46cc3
|
||||
size 3158492
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e788abff5d96e42c1aa3c52f5034120b706ce9fc9dea76aa2d40c06255717ad2
|
||||
size 798760
|
||||
oid sha256:cc04b7e82e1ac6ec52e2d9c0f72cf60d450edb693bd96b3c4b7271065be64e7e
|
||||
size 798725
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e797295200768840c4b2a8975ff0d828fdeee6be4b3b527cab0ec9eafe00de05
|
||||
size 4395131
|
||||
oid sha256:630f396a16a977085b8c1c9b1485de9e7e8f4c29069f060997f19d68b5bff5b8
|
||||
size 4394972
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c90d7292748e2a1d729bc8d7641a65487f0c48094928b4913a7be6e01aff037
|
||||
size 716929
|
||||
oid sha256:f689d97268b49a55b3132a476f1b5842e12090467fd51dae0f406bfa29e0679e
|
||||
size 717041
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3fad360052d6f42864806188de5571d85cd3962592e6f6533721d6f9843803c7
|
||||
size 3053151
|
||||
oid sha256:508565ae2af6512d8780acb1cea5280b27ad7faf0a288892c482c5aec5c479c5
|
||||
size 3053233
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c10f5e74e101f603c3f970924692b04915e90e56593023821559c611939f7090
|
||||
size 816805
|
||||
oid sha256:f34605956f34ca4dab7443ccdf4e9711aa7d8a061665d30ea24b9b81400da3be
|
||||
size 816487
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4a0dbd7b2ba9a93eaea72d76bdb61186586c86a9b460ced865e7f52258f46af
|
||||
size 1723810
|
||||
oid sha256:360b26832434e2b0ca4a3e2929c126bff9151fbc573e363c2708e43d9ef827a2
|
||||
size 1723870
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5f002b45ec66f2bca7c1ccf895942df206a3c1db05d9c36e79cb884b42025ca8
|
||||
size 1117063
|
||||
oid sha256:9a510a5660cb8832c2bcfda14513ee7d9c51101457dd59f40dc9e97f16adab7d
|
||||
size 1117249
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:850a88fe21de47b6fff0fd281a4e20169bd202ada0b5c07867e00262c3cce821
|
||||
size 4450645
|
||||
oid sha256:9a16b1850016992705e49a4430210e5e09b33b5aaec055f0a7aa4fb0339a8298
|
||||
size 4451020
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:343ebc00c9b0911d44ce2274b62a0e25eb86a173a74123c785dc84c1257a9b20
|
||||
size 750249
|
||||
oid sha256:29f11b63dca0507c8dff6c5ce38ed4258b60f9370e58113ac649b16e70c4ea29
|
||||
size 750378
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ab13ac952d4422864b86accc00f05355ea3ada33ece6b4b4134084d22d6ccbe
|
||||
size 3272575
|
||||
oid sha256:d127e6003eeec2c1fa3362f18f9a6ae31d8c99cdebc2ce60b13fa62d27e6dd24
|
||||
size 3272859
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:07546d075846c209c519e46284a7dd61935c81b5a06f4f3bfb23c97c76d28352
|
||||
size 824018
|
||||
oid sha256:c5b27e1371d31ed6a0c9479247fef271f61bda855fcdfb83a1b643becb144e6c
|
||||
size 824244
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18ada63ec0c0bf0745a142b91072cf493ea09bb2d47c7f1f1bdfb7fd22615ac9
|
||||
size 4553426
|
||||
oid sha256:74ecd0085cf8808f4fffedc530bd3d71e8513198205560273ef1e3ff5243e99c
|
||||
size 4554006
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c0d981efd2886f94e0a83b2806f22f7fac60d226d260d710d0e25e3f6da99ec
|
||||
size 739249
|
||||
oid sha256:9e795ff73cb2564dd53f208aab3f98614fbc87efb5e4e808d74c76d554caf8b2
|
||||
size 739156
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6caa4b532b31f6df1b562cfb250d8f78ed36193674cb6bc485de1b932ad86c7c
|
||||
size 3159183
|
||||
oid sha256:a832af472ebc66576e1aebe157ff94dd95dfc4fe1b1c7ffb554568f897a1a754
|
||||
size 3159813
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ed1eafcb147099cbede89eb7c6ef0f58d73dfa9d3cc2cea759532ea06665419
|
||||
size 983679
|
||||
oid sha256:8946bcaa09af560f96995cd6b0a47d80bed377471b3cd16e833d9d28f94df300
|
||||
size 983326
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba1f71b806ad16e8b8e83a76604f3a773f9286922b461ce7e22edb4ff33fae78
|
||||
size 1720947
|
||||
oid sha256:4b777d1b7afca7693bca0f05888591d62f5913d724b291f2a7caef953997f90c
|
||||
size 1721009
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f59ebbdd9f41ff14d2f1821c5518c6c9ec7cbd49d9ae75cee4a23835a99c096
|
||||
size 1346751
|
||||
oid sha256:6cf88f405b45e0cd5e478d0c53fc962c4b9eb7c18bb4c56bde8a89d7102a4b98
|
||||
size 1346831
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:54f5c428bebd8e7f66b6d39c4e1173d2130a9ec1174252efe95e54714f5241d6
|
||||
size 5083856
|
||||
oid sha256:15aa4c354d928080dc002fb141f7f23c23d7f9c11e1c1d7413560b3c93da6b72
|
||||
size 5085761
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e6977c51078ec9abefa06fba456c14abdc96706924cf9b8a813fe9e912045a0
|
||||
size 886902
|
||||
oid sha256:ca1a32db4fefd689f3678c3c20d5aefde4917d00ed12433ea87f98cd3f6f6698
|
||||
size 886919
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86936c811a55e3c4893e89548ef85a651a1bb21c9efc59f76906139ecb11f71c
|
||||
size 3676996
|
||||
oid sha256:ea463c59b39a52fff9cf8650779d9ef1c6c4145e2614b8f667d9f3aad8919db9
|
||||
size 3676931
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fcc68056cecdb3ae718ed68fc0d1dd97eba0c8f882700c55722008a91207dea0
|
||||
size 986075
|
||||
oid sha256:9f2009d57237e9ea40fa8327d55dcaed29ce2bd013e4e3f73cea5edabd4ee4b9
|
||||
size 985978
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26c13086035d0221f1ef822142f5fb8b2c7d07a26c46692de187632a7dcb1d33
|
||||
size 5228614
|
||||
oid sha256:426ab1b1355c737f62b07d112076ddfda24f2fe07352018bb9958d3cf4bd9e27
|
||||
size 5228449
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ef0a586ba5ac260d1ba9e8c7f6984ac467cfe4cb94150b9be0c292f11a66a029
|
||||
size 874406
|
||||
oid sha256:4fab166cb843a61200a4febe136705942cbd3307673f7273e439e3c549198dbd
|
||||
size 874190
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29c133734c44818705da580007ec23b9bd9e5d2fc5205795bb53e6e6770f2ce8
|
||||
size 3572482
|
||||
oid sha256:f3951be0ace5cbb00272d369a5477b52a1479821463b2d9c9aa649aa5efd160d
|
||||
size 3572163
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d13f7fd7e235057cbb12980048106c41a1f51c3a2ead3fb8e6e4468ce33aeba
|
||||
size 625858
|
||||
oid sha256:1cc91a73fd769020499a09f868604b920c55b1853a988e2f8aaa7b5fd5ac41a2
|
||||
size 625802
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eadcd550ee4e2daf042431e05d365e6f4ef90e6cd88c4c40b671605e47c44d07
|
||||
size 1268573
|
||||
oid sha256:377b950ac2d501abd3977c090c607c4d125b24489b08a09647ca67bbd2d3411c
|
||||
size 1268711
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a67a3e671f44134b4172153d8bf214b7fbcf50de68c115970dacab721016755a
|
||||
size 867397
|
||||
oid sha256:8e3341132c70d659857a0c9e9bf2b073ead8cc949cd951481098d86bbfc02e04
|
||||
size 868167
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f026ae35108298e3e3a0d8394d82d2f8d2e939719cc7ef9ab84ebc551a6b294
|
||||
size 3408826
|
||||
oid sha256:e34e450ab00d5eaf7a8178de4807675f546bb7ecccfd4b7d0003a11d14031cca
|
||||
size 3409197
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf8bd680def40ce943eeb93bae48455c997f2fc1053721e6b08a563c4d5269b1
|
||||
size 582976
|
||||
oid sha256:f28621bca0d777e0dcfaeffa7086959b53e39fe6e5260ae566c9536f328ce835
|
||||
size 582836
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a224dabf8141ac29857dfe22d33d88b1e2e857367e8d39270587f5cc7b5e95c0
|
||||
size 2459130
|
||||
oid sha256:a6eb8593b76de3661c4d7040953d8c0890633b8dce51aa3b076ede46176d2680
|
||||
size 2458988
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cfe48ed467462272f7f12523e9b8a112104620432a75460b66d4ec342f150cd
|
||||
size 635582
|
||||
oid sha256:5fc72c951187b2dbcd42c87905abbcb117c255021483ddf2c5f75ccd3e2f6c22
|
||||
size 635615
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93f048da4db507971adf395fd4546e5a7c40bc29b9aecb259325ed64697f5909
|
||||
size 3376873
|
||||
oid sha256:42f21bfbbc0d9dc12e99871c7731f111d76ac39b6e0c951c193b014b802e4fb9
|
||||
size 3376127
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user