Merge branch 'main' into fix-hosted-cache
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
@@ -14,7 +14,7 @@ topics:
|
||||
- Profiles
|
||||
shortTitle: Organization's profile
|
||||
---
|
||||
You can optionally choose to add a description, location, website, and email address for your organization, and pin important repositories. You can customize your organization's profile by adding a README.md file. For more information, see "[Customizing your organization's profile](/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile)."
|
||||
You can optionally choose to add a description, location, website, and email address for your organization, and pin important repositories.{% ifversion not ghes and not ghae %} You can customize your organization's profile by adding a README.md file. For more information, see "[Customizing your organization's profile](/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile)."{% endif %}
|
||||
|
||||
{% ifversion fpt %}To confirm your organization's identity and display a "Verified" badge on your organization profile page, you must verify your organization's domains with {% data variables.product.product_name %}. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)."{% endif %}
|
||||
|
||||
|
||||
@@ -21,9 +21,9 @@ shortTitle: Deploy to Amazon ECS
|
||||
|
||||
## Introduction
|
||||
|
||||
This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to [Amazon Elastic Container Registry (ECR)](https://aws.amazon.com/ecr/), and deploy it to [Amazon Elastic Container Service (ECS)](https://aws.amazon.com/ecs/) when a release is created.
|
||||
This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to [Amazon Elastic Container Registry (ECR)](https://aws.amazon.com/ecr/), and deploy it to [Amazon Elastic Container Service (ECS)](https://aws.amazon.com/ecs/) when there is a push to the `main` branch.
|
||||
|
||||
On every new release in your {% data variables.product.company_short %} repository, the {% data variables.product.prodname_actions %} workflow builds and pushes a new container image to Amazon ECR, and then deploys a new task definition to Amazon ECS.
|
||||
On every new push to `main` in your {% data variables.product.company_short %} repository, the {% data variables.product.prodname_actions %} workflow builds and pushes a new container image to Amazon ECR, and then deploys a new task definition to Amazon ECS.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
@@ -67,7 +67,9 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you
|
||||
|
||||
See the documentation for each action used below for the recommended IAM policies for the IAM user, and methods for handling the access key credentials.
|
||||
|
||||
{% ifversion fpt or ghes > 3.0 or ghae %}
|
||||
5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %}
|
||||
{% endif %}
|
||||
|
||||
## Creating the workflow
|
||||
|
||||
@@ -85,8 +87,9 @@ Ensure that you provide your own values for all the variables in the `env` key o
|
||||
name: Deploy to Amazon ECS
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [ created ]
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
AWS_REGION: MY_AWS_REGION # set this to your preferred AWS region, e.g. us-west-1
|
||||
|
||||
@@ -69,13 +69,15 @@ Before creating your {% data variables.product.prodname_actions %} workflow, you
|
||||
|
||||
4. For Linux apps, add an app setting called `WEBSITE_WEBDEPLOY_USE_SCM` and set it to true in your app. For more information, see "[Configure apps in the portal](https://docs.microsoft.com/en-us/azure/app-service/configure-common#configure-app-settings)" in the Azure documentation.
|
||||
|
||||
{% ifversion fpt or ghes > 3.0 or ghae %}
|
||||
5. Optionally, configure a deployment environment. {% data reusables.actions.about-environments %}
|
||||
{% endif %}
|
||||
|
||||
## Creating the workflow
|
||||
|
||||
Once you've completed the prerequisites, you can proceed with creating the workflow.
|
||||
|
||||
The following example workflow demonstrates how to build, test, and deploy the Node.js project to Azure App Service when a release is created.
|
||||
The following example workflow demonstrates how to build, test, and deploy the Node.js project to Azure App Service when there is a push to the `main` branch.
|
||||
|
||||
Ensure that you set `AZURE_WEBAPP_NAME` in the workflow `env` key to the name of the web app you created. You can also change `AZURE_WEBAPP_PACKAGE_PATH` if the path to your project is not the repository root and `NODE_VERSION` if you want to use a node version other than `10.x`.
|
||||
|
||||
@@ -85,8 +87,9 @@ Ensure that you set `AZURE_WEBAPP_NAME` in the workflow `env` key to the name of
|
||||
{% data reusables.actions.actions-not-certified-by-github-comment %}
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
AZURE_WEBAPP_NAME: MY_WEBAPP_NAME # set this to your application's name
|
||||
|
||||
@@ -21,7 +21,7 @@ shortTitle: Deploy to Google Kubernetes Engine
|
||||
|
||||
## Introduction
|
||||
|
||||
This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to Google Container Registry (GCR), and deploy it to Google Kubernetes Engine (GKE) when a release is created.
|
||||
This guide explains how to use {% data variables.product.prodname_actions %} to build a containerized application, push it to Google Container Registry (GCR), and deploy it to Google Kubernetes Engine (GKE) when there is a push to the `main` branch.
|
||||
|
||||
GKE is a managed Kubernetes cluster service from Google Cloud that can host your containerized workloads in the cloud or in your own datacenter. For more information, see [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine).
|
||||
|
||||
@@ -105,9 +105,11 @@ Store the name of your project as a secret named `GKE_PROJECT`. For more informa
|
||||
### (Optional) Configuring kustomize
|
||||
Kustomize is an optional tool used for managing YAML specs. After creating a _kustomization_ file, the workflow below can be used to dynamically set fields of the image and pipe in the result to `kubectl`. For more information, see [kustomize usage](https://github.com/kubernetes-sigs/kustomize#usage).
|
||||
|
||||
{% ifversion fpt or ghes > 3.0 or ghae %}
|
||||
### (Optional) Configure a deployment environment
|
||||
|
||||
{% data reusables.actions.about-environments %}
|
||||
{% endif %}
|
||||
|
||||
## Creating the workflow
|
||||
|
||||
@@ -125,8 +127,9 @@ Under the `env` key, change the value of `GKE_CLUSTER` to the name of your clust
|
||||
name: Build and Deploy to GKE
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
PROJECT_ID: {% raw %}${{ secrets.GKE_PROJECT }}{% endraw %}
|
||||
|
||||
@@ -31,13 +31,12 @@ You should be familiar with the syntax for {% data variables.product.prodname_ac
|
||||
|
||||
## Triggering your deployment
|
||||
|
||||
You can use a variety of events to trigger your deployment workflow. Some of the most common are: `pull_request`, `push`, `release`, and `workflow_dispatch`.
|
||||
You can use a variety of events to trigger your deployment workflow. Some of the most common are: `pull_request`, `push`, and `workflow_dispatch`.
|
||||
|
||||
For example, a workflow with the following triggers runs whenever:
|
||||
|
||||
- There is a push to the `main` branch.
|
||||
- A pull request targeting the `main` branch is opened, synchronized, or reopened.
|
||||
- A release is created.
|
||||
- Someone manually triggers it.
|
||||
|
||||
```yaml
|
||||
@@ -48,9 +47,6 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
workflow_dispatch:
|
||||
```
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ For more information, see "[About self-hosted runners](/github/automating-your-w
|
||||
|
||||
## Adding a self-hosted runner to a repository
|
||||
|
||||
You can add self-hosted runners to a single repository. To add a self-hosted runner to a user repository, you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository.
|
||||
You can add self-hosted runners to a single repository. To add a self-hosted runner to a user repository, you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. For information about how to add a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)."
|
||||
|
||||
{% ifversion fpt %}
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
@@ -55,7 +55,7 @@ You can add self-hosted runners to a single repository. To add a self-hosted run
|
||||
|
||||
## Adding a self-hosted runner to an organization
|
||||
|
||||
You can add self-hosted runners at the organization level, where they can be used to process jobs for multiple repositories in an organization. To add a self-hosted runner to an organization, you must be an organization owner.
|
||||
You can add self-hosted runners at the organization level, where they can be used to process jobs for multiple repositories in an organization. To add a self-hosted runner to an organization, you must be an organization owner. For information about how to add a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)."
|
||||
|
||||
{% ifversion fpt %}
|
||||
{% data reusables.organizations.navigate-to-org %}
|
||||
@@ -84,7 +84,7 @@ You can add self-hosted runners to an enterprise, where they can be assigned to
|
||||
New runners are assigned to the default group. You can modify the runner's group after you've registered the runner. For more information, see "[Managing access to self-hosted runners](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group)."
|
||||
|
||||
{% ifversion fpt %}
|
||||
To add a self-hosted runner to an enterprise account, you must be an enterprise owner.
|
||||
To add a self-hosted runner to an enterprise account, you must be an enterprise owner. For information about how to add a self-hosted runner with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions).
|
||||
|
||||
{% data reusables.enterprise-accounts.access-enterprise %}
|
||||
{% data reusables.enterprise-accounts.policies-tab %}
|
||||
|
||||
@@ -15,6 +15,24 @@ type: 'overview'
|
||||
|
||||
You can automatically increase or decrease the number of self-hosted runners in your environment in response to the webhook events you receive with a particular label. For example, you can create automation that adds a new self-hosted runner each time you receive a [`workflow_job`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) webhook event with the [`queued`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) activity, which notifies you that a new job is ready for processing. The webhook payload includes label data, so you can identify the type of runner the job is requesting. Once the job has finished, you can then create automation that removes the runner in response to the `workflow_job` [`completed`](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) activity.
|
||||
|
||||
## Recommended autoscaling solutions
|
||||
|
||||
{% data variables.product.prodname_dotcom %} recommends and partners closely with two open source projects that you can use for autoscaling your runners. One or both solutions may be suitable, based on your needs.
|
||||
|
||||
The following repositories have detailed instructions for setting up these autoscalers:
|
||||
|
||||
- [actions-runner-controller/actions-runner-controller](https://github.com/actions-runner-controller/actions-runner-controller) - A Kubernetes controller for {% data variables.product.prodname_actions %} self-hosted runnners.
|
||||
- [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) - A Terraform module for scalable {% data variables.product.prodname_actions %} runners on Amazon Web Services.
|
||||
|
||||
Each solution has certain specifics that may be important to consider:
|
||||
|
||||
| **Features** | **actions-runner-controller** | **terraform-aws-github-runner** |
|
||||
| :--- | :--- | :--- |
|
||||
| Runtime | Kubernetes | Linux and Windows VMs |
|
||||
| Supported Clouds | Azure, Amazon Web Services, Google Cloud Platform, on-premises | Amazon Web Services |
|
||||
| Where runners can be scaled | Enterprise, organization, and repository levels. By runner label and runner group. | Organization and repository levels. By runner label and runner group. |
|
||||
| Pull-based autoscaling support | Yes | No |
|
||||
|
||||
## Using ephemeral runners for autoscaling
|
||||
|
||||
{% data variables.product.prodname_dotcom %} recommends implementing autoscaling with ephemeral self-hosted runners; autoscaling with persistent self-hosted runners is not recommended. In certain cases, {% data variables.product.prodname_dotcom %} cannot guarantee that jobs are not assigned to persistent runners while they are shut down. With ephemeral runners, this can be guaranteed because {% data variables.product.prodname_dotcom %} only assigns one job to a runner.
|
||||
@@ -44,7 +62,7 @@ You can create your own autoscaling environment by using payloads received from
|
||||
|
||||
## Authentication requirements
|
||||
|
||||
You can register and delete self-hosted runners using [the API](/rest/reference/actions#self-hosted-runners). To authenticate to the API, your autoscaling implementation can use an access token or a {% data variables.product.prodname_dotcom %} app.
|
||||
You can register and delete repository and organization self-hosted runners using [the API](/rest/reference/actions#self-hosted-runners). To authenticate to the API, your autoscaling implementation can use an access token or a {% data variables.product.prodname_dotcom %} app.
|
||||
|
||||
Your access token will require the following scope:
|
||||
|
||||
@@ -53,22 +71,8 @@ Your access token will require the following scope:
|
||||
|
||||
To authenticate using a {% data variables.product.prodname_dotcom %} App, it must be assigned the following permissions:
|
||||
- For repositories, assign the `administration` permission.
|
||||
- for organizations, assign the `organization_self_hosted_runners` permission.
|
||||
- For organizations, assign the `organization_self_hosted_runners` permission.
|
||||
|
||||
## Recommended autoscaling solutions
|
||||
You can register and delete enterprise self-hosted runners using [the API](/rest/reference/enterprise-admin#github-actions). To authenticate to the API, your autoscaling implementation can use an access token.
|
||||
|
||||
{% data variables.product.prodname_dotcom %} recommends and partners closely with two open source projects that you can use for autoscaling your runners. One or both solutions may be suitable, based on your needs.
|
||||
|
||||
The following repositories have detailed instructions for setting up these autoscalers:
|
||||
|
||||
- [actions-runner-controller/actions-runner-controller](https://github.com/actions-runner-controller/actions-runner-controller) - A Kubernetes controller for {% data variables.product.prodname_actions %} self-hosted runnners.
|
||||
- [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) - A Terraform module for scalable {% data variables.product.prodname_actions %} runners on Amazon Web Services.
|
||||
|
||||
Each solution has certain specifics that may be important to consider:
|
||||
|
||||
| **Features** | **actions-runner-controller** | **terraform-aws-github-runner** |
|
||||
| :--- | :--- | :--- |
|
||||
| Runtime | Kubernetes | Linux and Windows VMs |
|
||||
| Supported Clouds | Azure, Amazon Web Services, Google Cloud Platform, on-premises | Amazon Web Services |
|
||||
| Where runners can be scaled | Enterprise, organization, and repository levels. By runner label and runner group. | Organization and repository levels. By runner label and runner group. |
|
||||
| Pull-based autoscaling support | Yes | No |
|
||||
Your access token will requite the `manage_runners:enterprise` scope.
|
||||
|
||||
@@ -33,7 +33,7 @@ When new runners are created, they are automatically assigned to the default gro
|
||||
|
||||
## Creating a self-hosted runner group for an organization
|
||||
|
||||
All organizations have a single default self-hosted runner group. Organizations within an enterprise account can create additional self-hosted groups. Organization admins can allow individual repositories access to a runner group.
|
||||
All organizations have a single default self-hosted runner group. Organizations within an enterprise account can create additional self-hosted groups. Organization admins can allow individual repositories access to a runner group. For information about how to create a self-hosted runner group with the REST API, see "[Self-hosted runner groups](/rest/reference/actions#self-hosted-runner-groups)."
|
||||
|
||||
Self-hosted runners are automatically assigned to the default group when created, and can only be members of one group at a time. You can move a runner from the default group to any group you create.
|
||||
|
||||
@@ -83,7 +83,7 @@ When creating a group, you must choose a policy that defines which repositories
|
||||
|
||||
## Creating a self-hosted runner group for an enterprise
|
||||
|
||||
Enterprises can add their self-hosted runners to groups for access management. Enterprises can create groups of self-hosted runners that are accessible to specific organizations in the enterprise account. Organization admins can then assign additional granular repository access policies to the enterprise runner groups.
|
||||
Enterprises can add their self-hosted runners to groups for access management. Enterprises can create groups of self-hosted runners that are accessible to specific organizations in the enterprise account. Organization admins can then assign additional granular repository access policies to the enterprise runner groups. For information about how to create a self-hosted runner group with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions).
|
||||
|
||||
Self-hosted runners are automatically assigned to the default group when created, and can only be members of one group at a time. You can assign the runner to a specific group during the registration process, or you can later move the runner from the default group to a custom group.
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ shortTitle: Remove self-hosted runners
|
||||
|
||||
{% endnote %}
|
||||
|
||||
To remove a self-hosted runner from a user repository you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. We recommend that you also have access to the self-hosted runner machine.
|
||||
To remove a self-hosted runner from a user repository you must be the repository owner. For an organization repository, you must be an organization owner or have admin access to the repository. We recommend that you also have access to the self-hosted runner machine. For information about how to remove a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)."
|
||||
|
||||
{% data reusables.github-actions.self-hosted-runner-reusing %}
|
||||
{% ifversion fpt %}
|
||||
@@ -53,7 +53,7 @@ To remove a self-hosted runner from a user repository you must be the repository
|
||||
|
||||
{% endnote %}
|
||||
|
||||
To remove a self-hosted runner from an organization, you must be an organization owner. We recommend that you also have access to the self-hosted runner machine.
|
||||
To remove a self-hosted runner from an organization, you must be an organization owner. We recommend that you also have access to the self-hosted runner machine. For information about how to remove a self-hosted runner with the REST API, see "[Self-hosted runners](/rest/reference/actions#self-hosted-runners)."
|
||||
|
||||
{% data reusables.github-actions.self-hosted-runner-reusing %}
|
||||
{% ifversion fpt or ghes > 3.1 or ghae-next %}
|
||||
@@ -81,7 +81,7 @@ To remove a self-hosted runner from an organization, you must be an organization
|
||||
{% data reusables.github-actions.self-hosted-runner-reusing %}
|
||||
|
||||
{% ifversion fpt %}
|
||||
To remove a self-hosted runner from an enterprise account, you must be an enterprise owner. We recommend that you also have access to the self-hosted runner machine.
|
||||
To remove a self-hosted runner from an enterprise account, you must be an enterprise owner. We recommend that you also have access to the self-hosted runner machine. For information about how to add a self-hosted runner with the REST API, see the [Enterprise Administration GitHub Actions APIs](/rest/reference/enterprise-admin#github-actions).
|
||||
{% data reusables.enterprise-accounts.access-enterprise %}
|
||||
{% data reusables.enterprise-accounts.policies-tab %}
|
||||
{% data reusables.enterprise-accounts.actions-tab %}
|
||||
|
||||
@@ -8,6 +8,7 @@ versions:
|
||||
fpt: '*'
|
||||
ghes: '>=3.0'
|
||||
ghae: '*'
|
||||
miniTocMaxHeadingLevel: 3
|
||||
redirect_from:
|
||||
- /github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning
|
||||
- /github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning
|
||||
@@ -58,6 +59,25 @@ To calculate the security severity of an alert, we use Common Vulnerability Scor
|
||||
|
||||
By default, any code scanning results with a security severity of `Critical` or `High` will cause a check failure. You can specify which security severity level for code scanning results should cause a check failure. For more information, see "[Defining the severities causing pull request check failure](/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#defining-the-severities-causing-pull-request-check-failure)."{% endif %}
|
||||
|
||||
### About labels for alerts that are not found in application code
|
||||
|
||||
{% data variables.product.product_name %} assigns a category label to alerts that are not found in application code. The label relates to the location of the alert.
|
||||
|
||||
- **Generated**: Code generated by the build process
|
||||
- **Test**: Test code
|
||||
- **Library**: Library or third-party code
|
||||
- **Documentation**: Documentation
|
||||
|
||||
{% data variables.product.prodname_code_scanning_capc %} categorizes files by file path. You cannot manually categorize source files.
|
||||
|
||||
Here is an example from the {% data variables.product.prodname_code_scanning %} alert list of an alert marked as occuring in library code.
|
||||
|
||||

|
||||
|
||||
On the alert page, you can see that the filepath is marked as library code (`Library` label).
|
||||
|
||||

|
||||
|
||||
## Viewing the alerts for a repository
|
||||
|
||||
Anyone with read permission for a repository can see {% data variables.product.prodname_code_scanning %} annotations on pull requests. For more information, see "[Triaging {% data variables.product.prodname_code_scanning %} alerts in pull requests](/code-security/secure-coding/triaging-code-scanning-alerts-in-pull-requests)."
|
||||
@@ -112,14 +132,7 @@ If you enter multiple filters, the view will show alerts matching _all_ these fi
|
||||
|
||||
### Restricting results to application code only
|
||||
|
||||
You can use the "Only alerts in application code" filter or `autofilter:true` keyword and value to restrict results to alerts in application code. Application code excludes the following.
|
||||
|
||||
- Code generated by the build process
|
||||
- Test code
|
||||
- Library or third-party code
|
||||
- Documentation
|
||||
|
||||
{% data variables.product.prodname_code_scanning_capc %} categorizes files by file path. At this time, you cannot manually categorize source files.
|
||||
You can use the "Only alerts in application code" filter or `autofilter:true` keyword and value to restrict results to alerts in application code. See "[About labels for alerts not in application code](#about-labels-for-alerts-that-are-not-found-in-application-code)" above for more information about the types of code that are not application code.
|
||||
|
||||
{% ifversion fpt or ghes > 3.1 %}
|
||||
|
||||
|
||||
@@ -3,8 +3,6 @@ title: Customizing your organization's profile
|
||||
intro: You can share information about your organization by customizing your organization's profile
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghes: '*'
|
||||
ghae: '*'
|
||||
topics:
|
||||
- Organizations
|
||||
shortTitle: Customize organization profile
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85847fc27eeecd9483033f155ab5c72c51ddf68c7470058ebbe14339b8cfa9ee
|
||||
size 527371
|
||||
oid sha256:a8356def70ed33b01a0daa1e0e02bf01a422d60fb01fa97dae5f2869c7d70de7
|
||||
size 527440
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bc30b9aeb6fc59f80e5bd34a507fc42b2b16ba585d77128287ca022b175b4f0c
|
||||
size 882510
|
||||
oid sha256:93f772a1e644eff798d9ca2b2a2abd95a62c93200e7a8904ccb863043f2668f1
|
||||
size 883095
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b693e37528847733ad80b35272d014bd2959720bcfde9cea463710b89447350a
|
||||
size 481265
|
||||
oid sha256:5085cba9d37e0b402383f8f3e326cffde01417c930fd2df78359980e434872cb
|
||||
size 481235
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:762fc56aadacbf5eb626b0c8c8aef9ccc8c2b3864fecd05eb2d44bd8824c49cd
|
||||
size 2140077
|
||||
oid sha256:f279e08ddaadecb62e2228e9e2873c9d2d8031cb36268e0c1f7b999f96fef699
|
||||
size 2140522
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:491eedc45e0217cf43645d144f968637592810138b015cf2bdac61bdceb22ce2
|
||||
size 433711
|
||||
oid sha256:659741a9102ee5c69473027ed3440379adc6e1d123ce0866705ababc16aae75d
|
||||
size 433789
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f094df1dfcdc2090d40475509a4fd821a955c80ae2197f9e7b442952273f292
|
||||
size 1695382
|
||||
oid sha256:488b28b5a01c9af757105a919f5f74da25ec754f14da60bc252dcca60e93fab5
|
||||
size 1694743
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:07f3690885edd1a0b0b8317d0db2722adb235ca3b453ecde5e42b7c4f773f05f
|
||||
size 187109
|
||||
oid sha256:95922d64a40aa341c29ec45489454d49b084197ff46c35dad59ab1128d7d3d41
|
||||
size 187115
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:346d72d0f899867e037457f20149201b508700accecdbfe949850de353594184
|
||||
size 657938
|
||||
oid sha256:e1aef3d19b30ee99b600f4861d5c3b18deb84d74cc6c6f08d9eb9e5d4c121d40
|
||||
size 658160
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8de2161721d7874290332ce912dccdf63bf7d1e0b683deed5fd4ddb1d2d6a387
|
||||
size 547752
|
||||
oid sha256:89610819421985327459a57e961cd4052ba8947c4e35c8ca477d9173b288f815
|
||||
size 547796
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbf54f5f8bb484ee8f576ff9000d28c704777babd526287bf09eafbe02b0a9f7
|
||||
size 2899346
|
||||
oid sha256:c9f1f5e87e73e2eb085acc1f4db948fa92fd772c3400723160de500d52a4688e
|
||||
size 2898975
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c1f8e08cba2e1a3423088c5c96a0290822f69affe9e99e22ff622939484975e
|
||||
size 456967
|
||||
oid sha256:52cffd2ce7d913a8fd4005b18f85c06dcb17fe1e6949ba1ea67fd64502102490
|
||||
size 457070
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a0a02310983b9e9538b5e6986b674440749434448cf8866bbf0c7e9fbb30aef
|
||||
size 1887385
|
||||
oid sha256:782faef7162121b7d2429a0829220bf8f637ca1adf6e03db2afa5258d6bc0251
|
||||
size 1886436
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:581ec06a95e662e5089a8c80628496ce9f3c9462a6b88eeeb4cbc70455f95719
|
||||
size 547145
|
||||
oid sha256:1851b648979fc28bc0dff607367b8fdbb59a18362eca09ceac36c7d303e986ac
|
||||
size 547028
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86e32031a3a01ab8e00f5177f70783425320fb9f4c42914666c056d5a5a4beb0
|
||||
size 923048
|
||||
oid sha256:78f9d90262ce021878bf75b61f1e83b240eada12f9c22631aebc4a0eeaff7272
|
||||
size 922809
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7068274b52309a060230826275971eb4d040a7e446e5b49fa6800d5c2b6775ed
|
||||
size 501829
|
||||
oid sha256:ff24b07832cff76b970f90bba3f4b5e8ef5f09b079707bb2bf03b5ab28f21f07
|
||||
size 501928
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:468b55cad290b673c4d1fcec1532a9246c3d583c2bef63f0024b0c97ed28c6a5
|
||||
size 2246291
|
||||
oid sha256:138efbce24d4c856ac287376df530d2c8bdf22d273735345368e2a1a4bad2833
|
||||
size 2247106
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77b2f0eeef03ea10635fee2c63f77ceef6d6589816ec62cd71ac5c848f6c5a5a
|
||||
size 454109
|
||||
oid sha256:7ec35c64523e6868280d0f9bf1cb96d7518bdc5ab2a540434eeb9c86ea724ec6
|
||||
size 454197
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bfe6a0bb25ff8dfa9d3e7b5769b678b998a583fbfd6c2c514f46f6ac89aee8b1
|
||||
size 1770361
|
||||
oid sha256:41d2bfcb5d0af671a90150c8bfd0d87d2b69024ae6c941f1fdd84eff0d2688a2
|
||||
size 1769470
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4d9cccc651cceae28fcb63876e134e51e9ce3383305f21f2fa1a1b566b4e1623
|
||||
size 185735
|
||||
oid sha256:476505198f26985c07d48df67b65193eb9cf5188f7c87f916a4685776d7b19eb
|
||||
size 185721
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1344f1a5fe55171cbd12bddff355ba6db420a42e3702aefe7c9109ea18544475
|
||||
size 650213
|
||||
oid sha256:015e8fd6c77ed9fd01835fd9b670cab9f4159de8026cf6cf9d50ef0a9be3303d
|
||||
size 650327
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d82b6ca23987748da9d508bd9e35d7e70daf45c1a89d33ffd98005f7e8feaf7
|
||||
size 570244
|
||||
oid sha256:31199b067cdd460fb6f88fec0083b2cb5f09bce372d448f410ad5e9a25d33f02
|
||||
size 570158
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a8ae0cc4153bd302fcf79235695d14b80742c3e12951979c2d699cce9527a14d
|
||||
size 3023336
|
||||
oid sha256:b49b217eb8b42e78ec9afec4ca03f4c09fb1677e5410106bc84bb4b2ff4a2ef5
|
||||
size 3023912
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:971af22d84f9355a154437115d406d1470d2f075c500216b178aef1bc25fdb11
|
||||
size 477289
|
||||
oid sha256:f03c346dea1e0fef8384321603cc49cbc086346dccc9af879e11a0dd54eada65
|
||||
size 477211
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98d130e30abdda458cd1a682a2c6834e7a006f227751b1cb163e4f55d281bc4d
|
||||
size 1970938
|
||||
oid sha256:559de8f0aec0252819ec3fb6c7c10573d042a18fb904df21b9d3a0396fda765a
|
||||
size 1972002
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1e4a2f096769fb5da6ca1018f803a2d8463ddfd009d0f4d316b52a3556f3351
|
||||
size 560850
|
||||
oid sha256:9f472189dbe08ddda1370bdf2f2e1ce5f02ac809d8b88005139244d4bde49d1a
|
||||
size 560785
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79484124691c70910f4c80e806119065d32e1b19e76c01f670dba5edeb141e33
|
||||
size 951028
|
||||
oid sha256:0d8ad367352418c3b1c4c9afda2115351dfdd1fb61d93b3fc04999689d2fecae
|
||||
size 950719
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa99eb63a11caaf3bab2075f1c6be439e51f802771107231d40d91ec646617c0
|
||||
size 511561
|
||||
oid sha256:85f209a72786a0d0f6cc7422f55470229c1fd28fba8e10cc527c2467ad6fcc62
|
||||
size 511585
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3fddcfe786d35d698836dc60e7ab7d9aae516fb690c876bf4ceee125bfc59875
|
||||
size 2304666
|
||||
oid sha256:38f33d1e2213eb26179909c21bceda28d498d06e32a3c8457604bb185daacdb8
|
||||
size 2304581
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c43f9e324aa369f3fdf636c474ad09a89f2cfac59499d9377e245df83cb9a406
|
||||
size 463570
|
||||
oid sha256:94938a6551020b21e326a5450c00d28d27dad39b99315c82523b16a839691fe9
|
||||
size 464365
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b4c9d9da4a1cdd4140c97bfa6d1fa712afeedfba3ce588588b3998bef8db89e1
|
||||
size 1813779
|
||||
oid sha256:0ffd54699179f1f6dcd31a30791d77e7a5bc7d103338cca325f537ae6f9e8600
|
||||
size 1813221
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f27d8666aeeb75e5b925d04e0fe1046f08cd457cb5a40543aade36d130b8f39
|
||||
size 185667
|
||||
oid sha256:0bfc0fc8753452bf1b985e2fc23a8d9987e9b3f4fd8b926a0a61c5dac6da5314
|
||||
size 185700
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91c932b7041ad39df02b1fb6a3838476bbfc3950fa5c823d63bdb573d50334d6
|
||||
size 649955
|
||||
oid sha256:d7132a6b6b3c30edfebdb606876b33995d183f993766fda83cb2208383307b14
|
||||
size 650089
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b767bf428ea793567b9a7fb7025672fc8f73bc308358007572232881bcb330d
|
||||
size 583290
|
||||
oid sha256:0e80e28034e08902d76964500473b1a81ce0a68a2a24d20fe2f7d14723c890fe
|
||||
size 583237
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc631d6e5740bf79eb60430ed971126d2d93772d2b0830bab3dbafedc70dc102
|
||||
size 3100611
|
||||
oid sha256:3a32f35223949a6d1096472e259e5fbc9b4a407168fee1c79db7da0b0d4a826a
|
||||
size 3102326
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3465edc87a90340004d3b392cf8d5cd0689ebf9e7fdf1873ae179062e3ea4edf
|
||||
size 487766
|
||||
oid sha256:ed1871848ab7f62cae678b686f1acd1b784a4e8f7ef0b7e665bbf573d2158451
|
||||
size 487591
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a403d0db0ba09252f9230f2af468e2195e1cd6d0586710009a6a0f52c1baeb4
|
||||
size 2018071
|
||||
oid sha256:d110f00509feed0d30e67e12ff5142b6f6a2a5be72bd3e19ffceae243db36548
|
||||
size 2018840
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f90decf8ca2753a57009118d8c514510f062182cd08a944fd5856586a799a91a
|
||||
size 571729
|
||||
oid sha256:8d97bcffebeb11650ee0a7f0514a70c3eb89bbf76f882afc34f664a0be4efb11
|
||||
size 571661
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb6894a87e8555a9eac39c9ea3ef240a900eb266eb0c20aad828b05589d34079
|
||||
size 970412
|
||||
oid sha256:d4e58260a9ff9346dfb2eaafb4dab6341fe6071f3471f65e1ac8c5ec9ca89f52
|
||||
size 970450
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1cc03dff25b9eb8969a2b39d92bf0c8994416ebb0d793cf56ac5603802f6222e
|
||||
size 520356
|
||||
oid sha256:4939e08b81bdec2cca978a42fcf6ace07c155410056279f7e321a4f17143b2a9
|
||||
size 520536
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9af2812554d860ffd7f519dfbfbfd05d59b1950f994cfd37c86e1b75f19e590a
|
||||
size 2351969
|
||||
oid sha256:2a8f09da6eb4c1061f481300ff9e24fd4ecba8acc813fcf41d4889ef6cb70d52
|
||||
size 2351645
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d69273cbf40486fee4b70b888b92bfd3357059cfc424dda417c8b1212bf658f2
|
||||
size 472209
|
||||
oid sha256:dff569c4f11428a54ba025071541057c50ff7026fbee6ece4f7207b0f1693894
|
||||
size 472021
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd639eb2e35385c47b1fbd61bc676f0c8697fbd97de98693e83e42cce3ae2098
|
||||
size 1847588
|
||||
oid sha256:d2b1ea6c50957a3bae39950744e3a34ec809c66cae6f86b2035df9b15e866a27
|
||||
size 1845507
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d8bda7d1b90fec83554ccd2dc4ae3841b654196f6a3247ad065cfce6d9010d3c
|
||||
size 185669
|
||||
oid sha256:db41328e2020adffd8f1fc2a882ae227856ede6369aa70db4c38c502e588050c
|
||||
size 185720
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1176cdd5031f3106c00104954d3044b144acd5e6473972e5bd969b8ad44d33bd
|
||||
size 650061
|
||||
oid sha256:ef51c341919a540d149c59a985c66cdc9f6b5857bde36dbeacdff9c36b50e099
|
||||
size 650082
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d60cb352d276a25ce075179b3138cfbb84ad65b9e0efb545c06ceecb5cc1cc4
|
||||
size 593614
|
||||
oid sha256:cad8b8df9d6176cc869780f5715b5d6243a62b2a30e36d2480c43187f425a212
|
||||
size 593796
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3bd6c3f12640672f3a3328030268d6c75afc85e0337d79140329c6e0fb30281b
|
||||
size 3167060
|
||||
oid sha256:61810283ffa964be6274076c622c425ae6e717f3c14f3e6139934df9e6a376bf
|
||||
size 3167064
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08144a0d281947ac7a424dfc35f48c8e54a248d28731ea2469c266058ed2fdde
|
||||
size 497210
|
||||
oid sha256:031c8f9c72e2e5fb4a0b3c05931faafd0a32ec8986bfe5354d85e63c7f4f7ebe
|
||||
size 497001
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db1fc9746c176970d7aa58afc69d5ba761b8b173f11b1da036463a616675f37c
|
||||
size 2055452
|
||||
oid sha256:648c9468b2c456ae9f68167264cfc44ffb16d5f2a3cbb75e8b9ca840c8f4acd1
|
||||
size 2055768
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0ab90e9d6a87fbf30aece5f8f7a20cd61beb1493864c618bf86edbf50ee8b27
|
||||
size 782138
|
||||
oid sha256:0a9f0d99f1a4d8776d41c8171a802d090df524a8065f8a8c00d3053e876bae2a
|
||||
size 781753
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5740633d679fd507d1fce30ee22c543673bd51228def11b0458c8d32e11e7df2
|
||||
size 1232958
|
||||
oid sha256:3e0359619a593cf99fb6c2bf66e4e8a87ec797dad8eb85fd4d7d4c36dfd4201d
|
||||
size 1233297
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:430b7eb4dca8de8c67ef2e697300c458ae7710020f4f725d971e079289e7f536
|
||||
size 701153
|
||||
oid sha256:0d8b384f2042dd85b0646ad3b02b4e398d9bdf4831daf468bc19ecf1147f886c
|
||||
size 701607
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dce7b1bf1d1934acaa172a8a93cc62b38aacfa5f89997d7f9cd80246c00e71d6
|
||||
size 3190951
|
||||
oid sha256:f66bc908316a6b33d71c5cdad9bc75cfa913dfdada91062fce6fe340a68fcea0
|
||||
size 3191576
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f2569d7b35b478b7ee9615ebb582a5c2961694a53d602728a6cd64ea6a597ba
|
||||
size 639676
|
||||
oid sha256:e1af7f559b8a54181215d141f781218f99818c3f21db333e7cee5382980214bf
|
||||
size 639731
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4437d4ed198f78fff62b72fbcc5c67c40f5942d20617b5a5f0ab804fcfecb279
|
||||
size 2430195
|
||||
oid sha256:f570efe43fb66c80b45a1e3384d25ecd98999d568e9b84c8e70a1f84abe8d74e
|
||||
size 2431702
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8480ae6474c37e6a0796869ce96083ecadf9f0b402fc7b6e2403717d0d90d72d
|
||||
size 195178
|
||||
oid sha256:fb00ef168b702edcd7653ce198e1f1c77b725580e09ee6ad35419513f9e4750e
|
||||
size 195223
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59153790e84a5592f106f91067a3b81c8e23807cfdb8bca7ec4a9ccbb2ba2420
|
||||
size 615794
|
||||
oid sha256:85fb55536ee90e38dd68245c0b79af69eb85a4423cb8b4e67c0d6aeeb498a90c
|
||||
size 615937
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6757fc66695c7df6541a71b0bfc37868ca0b50eabd71a3c92a22c9119829d84
|
||||
size 805645
|
||||
oid sha256:2d79e6b62924216b1d928331cd86e3cc62bbea7111bf81b4898666391ee1b57f
|
||||
size 805631
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18472ed67cf710a0103819246c2b7d3a04fd7b2fbdcc54145fb800617b1b1661
|
||||
size 4234022
|
||||
oid sha256:8a7021dea44e48c8af33f8fbcec622015948dc368a6d244ff167308f15ef6dcd
|
||||
size 4232342
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:50cb468e66f9303e00a66c18cd9627797a8af9db95c4c0315456cb3c515dc32b
|
||||
size 676569
|
||||
oid sha256:bb0d2bf864fe1811640bee0c610cf63b288ad3955c61f26fd637573e4d939113
|
||||
size 676806
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9de3e3215ecba6729313ddbc7a73ccf45c927f8ad1ea32f30f84dcefd49a462
|
||||
size 2742309
|
||||
oid sha256:841bae19d721ad5f0baaa13026b0e4e46ebb820060525124abc47df27ae96a5e
|
||||
size 2742893
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ad739721d59db4144a1403e0779e62bf36e30385f4c0d15e94f24f153b86770
|
||||
size 437687
|
||||
oid sha256:8f3152f0ab29b2699408079b9a6100e3b7959f52b67b11bf0433f76aaa3558f5
|
||||
size 437794
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be3899cadeea5c22f06a339f89891fc420077283964a8d0bfe9a8abc2e37479f
|
||||
size 711801
|
||||
oid sha256:3843c70807ade81b220c256121eb1da82ef855b3db1edef007db30d476f31f26
|
||||
size 712130
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00a6f7b48d0c5d4cd0393e81e881cf3e0fd4c0bcb9937e5cf11f8f4573fb3546
|
||||
size 404028
|
||||
oid sha256:24da70d24e87e5afcccc1d31c78b396af7fc3c224120b83807d66454e487ee27
|
||||
size 403774
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:526cb212fc8fea2c77a79fdd5e24e0436f134450f649cff770b69fe4c1c7e8ff
|
||||
size 1758625
|
||||
oid sha256:571d75239963a4273ab3fa498dad1401b2dfe645fffd51766f737841c38fc683
|
||||
size 1759166
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de644fa016a30a0a4051ea25c71307b052375a9f51fc6039d225d0b5828dd20a
|
||||
size 365955
|
||||
oid sha256:f2db91f9e70d4b3d265ddb22518f1a1b7957f9aea1bbe5f7fa7c6a2b8cec668d
|
||||
size 365814
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38a906d8ffced420a4b37ea5c007a83b7fb05c3ade01aa34574b8f5272b60d3b
|
||||
size 1360746
|
||||
oid sha256:fb206003ea252d7e1cca4cf879e5b51ffb51bb8418e7bbb4481e9bee203328a0
|
||||
size 1359759
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:45d1cf34feeadf04ddb51d44651815f94aaf472c1f5bbabf28c66a842593ccb1
|
||||
size 121284
|
||||
oid sha256:6b647b9ea848cd0dc3814554da58d17f112a6a80fa2cd7b4a965e405a6cc7392
|
||||
size 121318
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c13772f85a7eb0266979ce4a53fe5389cd21f20fffa9b845865f575f9e42c0b6
|
||||
size 386513
|
||||
oid sha256:779bc3817f03f9381e170651159892a0abeb58270f7b8d977357a06b8267421d
|
||||
size 386570
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b61d46dd24c891b3abd579ab20f989f84a2ee48fd967356c16f6df954bd47e1
|
||||
size 457064
|
||||
oid sha256:17aeb7b505f9aab3ecfd1c7543e4e95a11e42c603255c0627509116a154a1f69
|
||||
size 457157
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c59258402213cabe5e7cc1830ac8f5bb57722f808cb7cba67cede11a95b46c2
|
||||
size 2321346
|
||||
oid sha256:686bc906b2497df001afce475eb855ae142c931785337906860735c8ec114b54
|
||||
size 2322296
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4aa9b6b81905a813b9542d041157cbd8e943dac24d27b1d1fbffbc098655938f
|
||||
size 385473
|
||||
oid sha256:efc10247081330fcde0c18a83a7853d4e175fb277765cd16804a1c5fff1586a6
|
||||
size 385384
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:519ab4a0d5a6ad2fbab059c1a7fab8dab9e923626ec568fadbe9d116e2d27696
|
||||
size 1524039
|
||||
oid sha256:7b67461657b03e44eee1a66c8a928506ad5b2ea9c8084793bb46ed1c8386e4a5
|
||||
size 1524879
|
||||
|
||||
Reference in New Issue
Block a user