Merge branch 'main' into mm-cs-networking
This commit is contained in:
@@ -8,15 +8,17 @@ const github = getOctokit(token)
|
||||
// https://docs.github.com/en/graphql/reference/enums#mergestatestatus
|
||||
// https://docs.github.com/en/graphql/reference/enums#mergeablestate
|
||||
|
||||
/*
|
||||
This script gets a list of automerge-enabled PRs and sorts them
|
||||
/*
|
||||
This script gets a list of automerge-enabled PRs and sorts them
|
||||
by priority. The PRs with the skip-to-front-of-merge-queue label
|
||||
are prioritized first. The rest of the PRs are sorted by the date
|
||||
they were updated. This is basically a FIFO queue, while allowing
|
||||
are prioritized first. The rest of the PRs are sorted by the date
|
||||
they were updated. This is basically a FIFO queue, while allowing
|
||||
writers the ability to skip the line when high-priority ships are
|
||||
needed but a freeze isn't necessary.
|
||||
*/
|
||||
|
||||
const DRY_RUN = Boolean(JSON.parse(process.env.DRY_RUN || 'false'))
|
||||
|
||||
main()
|
||||
|
||||
async function main() {
|
||||
@@ -47,6 +49,15 @@ async function main() {
|
||||
name
|
||||
}
|
||||
}
|
||||
commits(last: 1) {
|
||||
nodes {
|
||||
commit {
|
||||
statusCheckRollup {
|
||||
state
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
@@ -105,6 +116,14 @@ async function main() {
|
||||
// a PR is green and the automerge is enabled
|
||||
.filter((pr) => pr.mergeStateStatus !== 'DIRTY')
|
||||
.filter((pr) => pr.mergeStateStatus !== 'UNSTABLE')
|
||||
.filter((pr) => {
|
||||
const nodes = pr.commits.nodes
|
||||
if (!nodes || !nodes.length) {
|
||||
// If it has no commits, why is it even here? Anyway, skip it.
|
||||
return false
|
||||
}
|
||||
return nodes[0].commit.statusCheckRollup.state !== 'FAILURE'
|
||||
})
|
||||
|
||||
autoMergeEnabledPRs.push(...filteredPrs)
|
||||
}
|
||||
@@ -120,11 +139,15 @@ async function main() {
|
||||
if (prioritizedPrList.length) {
|
||||
const nextInQueue = prioritizedPrList.shift()
|
||||
// Update the branch for the next PR in the merge queue
|
||||
github.rest.pulls.updateBranch({
|
||||
owner: org,
|
||||
repo,
|
||||
pull_number: nextInQueue.number,
|
||||
})
|
||||
if (DRY_RUN) {
|
||||
console.log('DRY RUN! But *would* update on next-in-queue')
|
||||
} else {
|
||||
github.rest.pulls.updateBranch({
|
||||
owner: org,
|
||||
repo,
|
||||
pull_number: nextInQueue.number,
|
||||
})
|
||||
}
|
||||
console.log(`⏱ Total PRs in the merge queue: ${prioritizedPrList.length + 1}`)
|
||||
console.log(`🚂 Updated branch for PR #${JSON.stringify(nextInQueue, null, 2)}`)
|
||||
}
|
||||
|
||||
@@ -16,6 +16,7 @@ on:
|
||||
jobs:
|
||||
create-translation-batch:
|
||||
name: Create translation batch
|
||||
if: github.repository == 'github/docs-internal'
|
||||
runs-on: ubuntu-latest
|
||||
# A sync's average run time is ~3.2 hours.
|
||||
# This sets a maximum execution time of 300 minutes (5 hours) to prevent the workflow from running longer than necessary.
|
||||
|
||||
@@ -16,6 +16,9 @@ topics:
|
||||
- Networking
|
||||
shortTitle: Use a load balancer
|
||||
---
|
||||
|
||||
## About load balancers
|
||||
|
||||
{% data reusables.enterprise_clustering.load_balancer_intro %}
|
||||
|
||||
{% data reusables.enterprise_clustering.load_balancer_dns %}
|
||||
@@ -32,6 +35,8 @@ Because client connections to {% data variables.product.prodname_ghe_server %} c
|
||||
|
||||
We strongly recommend enabling PROXY protocol support for both your appliance and the load balancer. Use the instructions provided by your vendor to enable the PROXY protocol on your load balancer. For more information, see [the PROXY protocol documentation](http://www.haproxy.org/download/1.8/doc/proxy-protocol.txt).
|
||||
|
||||
{% data reusables.enterprise_installation.proxy-incompatible-with-aws-nlbs %}
|
||||
|
||||
{% data reusables.enterprise_site_admin_settings.access-settings %}
|
||||
{% data reusables.enterprise_site_admin_settings.management-console %}
|
||||
{% data reusables.enterprise_management_console.privacy %}
|
||||
|
||||
@@ -99,6 +99,8 @@ Because client connections to the cluster come from the load balancer, the clien
|
||||
|
||||
We strongly recommend enabling PROXY support for both your instance and the load balancer.
|
||||
|
||||
{% data reusables.enterprise_installation.proxy-incompatible-with-aws-nlbs %}
|
||||
|
||||
- For your instance, use this command:
|
||||
```shell
|
||||
$ ghe-config 'loadbalancer.proxy-protocol' 'true' && ghe-cluster-config-apply
|
||||
|
||||
@@ -64,21 +64,29 @@ As more users join {% data variables.product.product_location %}, you may need t
|
||||
{% endwarning %}
|
||||
|
||||
1. Attach a new disk to your {% data variables.product.prodname_ghe_server %} appliance.
|
||||
2. Run the `parted` command to format the disk:
|
||||
1. Run the `parted` command to format the disk:
|
||||
```shell
|
||||
$ sudo parted /dev/xvdg mklabel msdos
|
||||
$ sudo parted /dev/xvdg mkpart primary ext4 0% 50%
|
||||
$ sudo parted /dev/xvdg mkpart primary ext4 50% 100%
|
||||
```
|
||||
3. Run the `ghe-upgrade` command to install a full, platform specific package to the newly partitioned disk. A universal hotpatch upgrade package, such as `github-enterprise-2.11.9.hpkg`, will not work as expected. After the `ghe-upgrade` command completes, application services will automatically terminate.
|
||||
1. To stop replication, run the `ghe-repl-stop` command.
|
||||
|
||||
```shell
|
||||
$ ghe-repl-stop
|
||||
```
|
||||
|
||||
1. Run the `ghe-upgrade` command to install a full, platform specific package to the newly partitioned disk. A universal hotpatch upgrade package, such as `github-enterprise-2.11.9.hpkg`, will not work as expected. After the `ghe-upgrade` command completes, application services will automatically terminate.
|
||||
|
||||
```shell
|
||||
$ ghe-upgrade PACKAGE-NAME.pkg -s -t /dev/xvdg1
|
||||
```
|
||||
4. Shut down the appliance:
|
||||
1. Shut down the appliance:
|
||||
```shell
|
||||
$ sudo poweroff
|
||||
```
|
||||
5. In the hypervisor, remove the old root disk and attach the new root disk at the same location as the old root disk.
|
||||
6. Start the appliance.
|
||||
7. Ensure system services are functioning correctly, then release maintenance mode. For more information, see "[Enabling and scheduling maintenance mode](/admin/guides/installation/enabling-and-scheduling-maintenance-mode)."
|
||||
1. In the hypervisor, remove the old root disk and attach the new root disk at the same location as the old root disk.
|
||||
1. Start the appliance.
|
||||
1. Ensure system services are functioning correctly, then release maintenance mode. For more information, see "[Enabling and scheduling maintenance mode](/admin/guides/installation/enabling-and-scheduling-maintenance-mode)."
|
||||
|
||||
If your appliance is configured for high-availability or geo-replication, remember to start replication on each replica node using `ghe-repl-start` after the storage on all nodes has been upgraded.
|
||||
|
||||
@@ -41,27 +41,27 @@ To set up {% data variables.product.prodname_vss_ghe %}, members of your team mu
|
||||
|
||||
One person may be able to complete the tasks because the person has all of the roles, but you may need to coordinate the tasks with multiple people. For more information, see "[Roles for {% data variables.product.prodname_vss_ghe %}](#roles-for-visual-studio-subscriptions-with-github-enterprise)."
|
||||
|
||||
1. An [enterprise owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must create at least one organization in your enterprise on {% data variables.product.product_location %}. For more information, see "[Adding organizations to your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise)."
|
||||
1. An enterprise owner must create at least one organization in your enterprise on {% data variables.product.product_location %}. For more information, see "[Adding organizations to your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise)."
|
||||
|
||||
1. The [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) must assign a license for {% data variables.product.prodname_vs %} to a [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) in {% data variables.product.prodname_vss_admin_portal_with_url %}. For more information, see [Overview of the {% data variables.product.prodname_vs %} Subscriptions Administrator Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/using-admin-portal) and [Assign {% data variables.product.prodname_vs %} Licenses in the {% data variables.product.prodname_vs %} Subscriptions Administration Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-license) in Microsoft Docs.
|
||||
1. The subscription admin must assign a license for {% data variables.product.prodname_vs %} to a subscriber in {% data variables.product.prodname_vss_admin_portal_with_url %}. For more information, see [Overview of the {% data variables.product.prodname_vs %} Subscriptions Administrator Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/using-admin-portal) and [Assign {% data variables.product.prodname_vs %} Licenses in the {% data variables.product.prodname_vs %} Subscriptions Administration Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-license) in Microsoft Docs.
|
||||
|
||||
1. Optionally, if the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) assigned licenses to [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) in {% data variables.product.prodname_vs %} before adding {% data variables.product.prodname_enterprise %} to the subscription, the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) can move the [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) to the combined offering in the {% data variables.product.prodname_vs %} administration portal. For more information, see [Manage {% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-github#moving-to-visual-studio-with-github-enterprise) in Microsoft Docs.
|
||||
1. Optionally, if the subscription admin assigned licenses to subscribers in {% data variables.product.prodname_vs %} before adding {% data variables.product.prodname_enterprise %} to the subscription, the subscription admin can move the subscribers to the combined offering in the {% data variables.product.prodname_vs %} administration portal. For more information, see [Manage {% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-github#moving-to-visual-studio-with-github-enterprise) in Microsoft Docs.
|
||||
|
||||
1. If the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) has not disabled email notifications, the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) will receive two confirmation emails. For more information, see [{% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/access-github#what-is-the-visual-studio-subscription-with-github-enterprise-setup-process) in Microsoft Docs.
|
||||
1. If the subscription admin has not disabled email notifications, the subscriber will receive two confirmation emails. For more information, see [{% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/access-github#what-is-the-visual-studio-subscription-with-github-enterprise-setup-process) in Microsoft Docs.
|
||||
|
||||
1. An [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must invite the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) to the organization on {% data variables.product.product_location %} from step 1. The [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) can accept the invitation with an existing user account on {% data variables.product.prodname_dotcom_the_website %} or create a new account. After the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) joins the organization, the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) becomes an [enterprise member](#roles-for-visual-studio-subscriptions-with-github-enterprise). For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)."
|
||||
1. An organization owner must invite the subscriber to the organization on {% data variables.product.product_location %} from step 1. The subscriber can accept the invitation with an existing user account on {% data variables.product.prodname_dotcom_the_website %} or create a new account. After the subscriber joins the organization, the subscriber becomes an enterprise member. For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)."
|
||||
|
||||
{% tip %}
|
||||
|
||||
**Tips**:
|
||||
|
||||
- While not required, we recommend that the [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) sends an invitation to the same email address used for the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s User Primary Name (UPN). When the email address on {% data variables.product.product_location %} matches the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s UPN, you can ensure that another [enterprise member](#roles-for-visual-studio-subscriptions-with-github-enterprise) does not claim the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s license.
|
||||
- If the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) accepts the invitation to the organization with an existing user account on {% data variables.product.product_location %}, we recommend that the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) add the email address they use for {% data variables.product.prodname_vs %} to their user account on {% data variables.product.product_location %}. For more information, see "[Adding an email address to your {% data variables.product.prodname_dotcom %} account](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/adding-an-email-address-to-your-github-account)."
|
||||
- If the [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must invite a large number of [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise), a script may make the process faster. For more information, see [the sample PowerShell script](https://github.com/github/platform-samples/blob/master/api/powershell/invite_members_to_org.ps1) in the `github/platform-samples` repository.
|
||||
- While not required, we recommend that the organization owner sends an invitation to the same email address used for the subscriber's User Primary Name (UPN). When the email address on {% data variables.product.product_location %} matches the subscriber's UPN, you can ensure that another enterprise does not claim the subscriber's license.
|
||||
- If the subscriber accepts the invitation to the organization with an existing user account on {% data variables.product.product_location %}, we recommend that the subscriber add the email address they use for {% data variables.product.prodname_vs %} to their user account on {% data variables.product.product_location %}. For more information, see "[Adding an email address to your {% data variables.product.prodname_dotcom %} account](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/adding-an-email-address-to-your-github-account)."
|
||||
- If the organization owner must invite a large number of subscribers, a script may make the process faster. For more information, see [the sample PowerShell script](https://github.com/github/platform-samples/blob/master/api/powershell/invite_members_to_org.ps1) in the `github/platform-samples` repository.
|
||||
|
||||
{% endtip %}
|
||||
|
||||
After {% data variables.product.prodname_vss_ghe %} is set up for [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) on your team, [enterprise owners](#roles-for-visual-studio-subscriptions-with-github-enterprise) can review licensing information on {% data variables.product.product_location %}. For more information, see "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)."
|
||||
After {% data variables.product.prodname_vss_ghe %} is set up for subscribers on your team, enterprise owners can review licensing information on {% data variables.product.product_location %}. For more information, see "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)."
|
||||
|
||||
## Further reading
|
||||
|
||||
|
||||
@@ -97,7 +97,7 @@ Now you are ready to start making queries.
|
||||
|
||||
## An example query using the Enterprise Accounts API
|
||||
|
||||
This GraphQL query requests the total number of {% ifversion not ghae %}`public`{% else %}`private`{% endif %} repositories in each of your appliance's organizations using the Enterprise Accounts API. To customize this query, replace `<enterprise-account-name>` with the slug of your Enterprise's instance slug.
|
||||
This GraphQL query requests the total number of {% ifversion not ghae %}`public`{% else %}`private`{% endif %} repositories in each of your appliance's organizations using the Enterprise Accounts API. To customize this query, replace `<enterprise-account-name>` with the handle for your enterprise account. For example, if your enterprise account is located at `https://github.com/enterprises/octo-enterprise`, replace `<enterprise-account-name>` with `octo-enterprise`.
|
||||
|
||||
{% ifversion not ghae %}
|
||||
|
||||
|
||||
@@ -34,6 +34,10 @@ REST API endpoints{% ifversion ghes %}—except [Management Console](#management
|
||||
{% data variables.product.api_url_pre %}
|
||||
```
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
When endpoints include `{enterprise}`, replace `{enterprise}` with the handle for your enterprise account, which is included in the URL for your enterprise settings. For example, if your enterprise account is located at `https://github.com/enterprises/octo-enterprise`, replace `{enterprise}` with `octo-enterprise`.
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghes %}
|
||||
[Management Console](#management-console) API endpoints are only prefixed with a hostname:
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{% note %}
|
||||
|
||||
**Note:** {% data variables.product.prodname_ghe_server %} supports PROXY Protocol V1, which is incompatible with AWS Network Load Balancers. If you use AWS Network Load Balancers with {% data variables.product.prodname_ghe_server %}, do not enable PROXY support.
|
||||
|
||||
{% endnote %}
|
||||
@@ -6,7 +6,7 @@
|
||||
{% elsif ghec or ghes or ghae %}
|
||||
1. Navigate to where your self-hosted runner groups are located:
|
||||
* **In an organization**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**.{% ifversion ghec %}
|
||||
* **If using an enterprise account**: navigate to your enterprise account by visiting `https://github.com/enterprises/ENTERPRISE-NAME`, replacing `ENTERPRISE-NAME` with your enterprise account's name.{% elsif ghes or ghae %}
|
||||
* **If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %}
|
||||
* **If using an enterprise-level runner**:
|
||||
1. In the upper-right corner of any page, click {% octicon "rocket" aria-label="The rocket ship" %}.
|
||||
2. In the left sidebar, click **Enterprise overview**.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{% elsif ghec or ghes or ghae %}
|
||||
1. Navigate to where your self-hosted runner is registered:
|
||||
* **In an organization**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**.
|
||||
* {% ifversion ghec %}**If using an enterprise account**: navigate to your enterprise account by visiting `https://github.com/enterprises/ENTERPRISE-NAME`, replacing `ENTERPRISE-NAME` with your enterprise account's name.{% elsif ghes or ghae %}**If using an enterprise-level runner**:
|
||||
* {% ifversion ghec %}**If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %}**If using an enterprise-level runner**:
|
||||
|
||||
1. In the upper-right corner of any page, click {% octicon "rocket" aria-label="The rocket ship" %}.
|
||||
1. In the left sidebar, click **Enterprise overview**.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{% elsif ghec or ghes or ghae %}
|
||||
1. Navigate to where your self-hosted runner is registered:
|
||||
* **In an organization or repository**: navigate to the main page and click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. {% ifversion ghec %}
|
||||
* **If using an enterprise account**: navigate to your enterprise account by visiting `https://github.com/enterprises/ENTERPRISE-NAME`, replacing `ENTERPRISE-NAME` with your enterprise account's name.{% elsif ghes or ghae %}
|
||||
* **If using an enterprise account**: navigate to your enterprise account by clicking your profile photo in the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, then clicking **Your enterprises**, then clicking the enterprise.{% elsif ghes or ghae %}
|
||||
* **If using an enterprise-level runner**:
|
||||
1. In the upper-right corner of any page, click {% octicon "rocket" aria-label="The rocket ship" %}.
|
||||
2. In the left sidebar, click **Enterprise overview**.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb14a45bbbacfa66396b7de00155d8138913538b0b2ac8afcc588a1a7d84ce59
|
||||
size 624952
|
||||
oid sha256:9c2c73f4a2b06107b5f007c4f1b134d4669a638649dbb7dae0147b1270344927
|
||||
size 624988
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fae80c2813f6da4523cbe4e5f4b03815030149e1a9afe9c3adf92506a0ef5a95
|
||||
size 1366318
|
||||
oid sha256:5036d45db925a4ea465767fdfc855dd3606a73948a4576f20e61896a64b39488
|
||||
size 1366309
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c1a27df8096283fcd3fc9307b7cf1a2b565a78e19cc13057fde07e1feb1ff84e
|
||||
size 947063
|
||||
oid sha256:3974113f62f15b35c0af1b265db7c851f3ad62f7665cc956a756b5c1d572a227
|
||||
size 947384
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b58bf73310f8eb3bb1f3473f0ae49c717aa7daef618184750945747232a1964
|
||||
size 3862520
|
||||
oid sha256:c0d252e596f1857334dbeb347131a1040bb7dd0b4f37380f06bf920eb5eeb719
|
||||
size 3862152
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:778ce5ac68b20c59d427defad16c92521e8004365514fbe235e3c28d80d96c68
|
||||
size 593317
|
||||
oid sha256:4ca30b3ad929c10fe7f334edcbe89decd00a9bb5587269552ff22c320f5ad839
|
||||
size 593686
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4d6178f52bd89caff249b96e647be670057adeb9863c53b4f52096f4b8ef87fe
|
||||
size 2611810
|
||||
oid sha256:e93de396da7e555bb51b3445d2706b60115a9e34962e37504d8b863601d20e1a
|
||||
size 2612094
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:116134b375bbf584e5eb20f5ef0dd5c030540b73364fa58a33eebbff4674e41b
|
||||
size 642602
|
||||
oid sha256:e597d891db389b4c14d446b9d63c9e73d6b334d5ab7f6982646e9bbec0a8ed25
|
||||
size 642911
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff2f0b85a878bf319a118adfe7982c4440fd216425c0a35e482e215394476657
|
||||
size 3412117
|
||||
oid sha256:f4b58f1d603e885c8b63a3eb13177d01177992feb8506067c8682ac4d8110e54
|
||||
size 3412645
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d74ad25ce5cca83162396ffe793ffb6f97109cb58fb63b7d73f88fd40ce40219
|
||||
size 590692
|
||||
oid sha256:3ea48367914d379db7f7d50660242883e1e7e3c4732760122159baa035f37284
|
||||
size 591028
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5da5654f8cd91a97e0e1d942ca5321a46e07f2cde3125ac55bc7a2ef4af33021
|
||||
size 2503457
|
||||
oid sha256:0ee4ba52dc61a5b54b72ff6a2678ee73c77c188193be94a63bdf5c866a069379
|
||||
size 2503713
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9f6f4515ace2b9bcefdffdb22bc3ee5f16e715ecf2d2d8dac4d6bf2220c7b53
|
||||
size 638467
|
||||
oid sha256:5951e4fe7acf1e0448dff132b12e6209c8e93475c8c834ebd5a5c85202e25345
|
||||
size 638789
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:426ac26d833bc2a60421741c40d7516acc093563c42ed9e915ef6b9c7fbfc562
|
||||
size 1401575
|
||||
oid sha256:a9545ec6bf1c2f36d53fe0dc05bc1d9a1e36001dc67ceb3af8288852afbf64d2
|
||||
size 1401612
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a9844012a1b67cdd18922607a22eb380ba10902e46bb88f3e478acea7203cc97
|
||||
size 971575
|
||||
oid sha256:f339906f39a6b76af6f43f8199cd82590ee43169ffce836b7ea47187c9e4a1de
|
||||
size 972091
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:57f8e6fe1445dd69f3f317b7b91ae1fa6556d5ede19410afd14ed329b33f0cda
|
||||
size 3950372
|
||||
oid sha256:921e095e4625e06be2e5aa8942e81ca33609543d2b55778624b1fa7d6274fc4c
|
||||
size 3952123
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a81298e174bd82bccaa5ea4462dbbfc2e39a5ecd5df5ec90886f57cd4faea51
|
||||
size 605959
|
||||
oid sha256:0fff4bb5e6e85f4e17fa967aa2bb452eef76a0a2332d47c31af8a34f197fca44
|
||||
size 606159
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0dc45d0c6dbbc9ee17daa37023280ebe2419135f89def70e81c7a4aef77b8c30
|
||||
size 2672853
|
||||
oid sha256:cbbbc3209564377b74096f305cf704fd034b80cd3c10af4522a2187e7b8897d3
|
||||
size 2672388
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ac008bc13079e5364a07690882679fee894878ee4aac82bc5050948e0830197e
|
||||
size 656216
|
||||
oid sha256:57db6726a148ed554c2ad7610058e1dd5fe47b8896646847daca0920f64390cc
|
||||
size 656496
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b714d36f37193ffc3ebc444bf20db1d12654fb8d2b2319e9ae0f91b1b4e492c0
|
||||
size 3489587
|
||||
oid sha256:3452be24a047be6d61bc88c6ab5f7ea21c0e445eedd3c5548431688944b34824
|
||||
size 3490062
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a3ec83aabf431a5f3eb60656c41ef36c3752be9a8e5cc367faf92457ca68985
|
||||
size 603381
|
||||
oid sha256:8bdfea8743bcc332c5dabca276a5fb71410b0cecaefdbadc0756a426334b58c9
|
||||
size 603591
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6b08f7b1948ecc38832b42da19e94cfafba454c105e9f0c2de645eb0867c166f
|
||||
size 2561028
|
||||
oid sha256:aa480efe082c7ae6740439f3598f8192d17d6e5e30d054d98d30856d7f60748a
|
||||
size 2561078
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e2e39098152a5d28a725c189f95517d07f42f93ed6b8f7369acded079584b3c4
|
||||
size 650425
|
||||
oid sha256:679e4b08243cb952c28a02786b6c9a4978a9fda366a760193cd420fd520c39d5
|
||||
size 650501
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:289f069fd9b9e6955a5d67364b7792ddaff033bd45a3952a0e3fa7c9df137f96
|
||||
size 1427638
|
||||
oid sha256:a9a11cfef035638b689ea8c1f82131c3718ca0b2bc32bffbcf5d43edd80f1bfa
|
||||
size 1427587
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0faae1c27cb112b35b41c94736c87ad59d7a6f979e3debfa98e674e1f0dc5d66
|
||||
size 1002333
|
||||
oid sha256:ad382cefc842c7576eed67dae81e4ecb4adf02157c11312848d991e0d1f22a49
|
||||
size 1002454
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:76832cccbaa644ac1c4d5598bded779e1e45ef84fbe6983330cd5f15c4bcd620
|
||||
size 4072744
|
||||
oid sha256:60e9eb3aac3cdd9e0c5feae1362395a9f4ea25ac4cccefe4b0b4ad1479d10f38
|
||||
size 4074120
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:727ce79fec8e5ea7db0967fea4b339b2d6ca14e4774867b88300481fccce947c
|
||||
size 616487
|
||||
oid sha256:d5e19a31977c4d432e6639d3101b6f2934c7aafec7367c1abdc4a7c261fb4028
|
||||
size 616795
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52445f3475e81d5b9d7ffd854d8e37b0884aab1cd4e41d281da87c379764fc87
|
||||
size 2727405
|
||||
oid sha256:8f9f90160dcdc305a2f750305f1e76eb59453368318561f5be2539159f9edcd8
|
||||
size 2727352
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2a70da7616c156f0ba34659842ccc6a70c550eb9c0d1eab17f805cfdeff6866
|
||||
size 668057
|
||||
oid sha256:f629e3600838b6e8af34d6de9f086eb22ee07429ca2b9e6efcca835a338150bf
|
||||
size 668052
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba392d414558d0a6654220b55a419eabc135b60aa1b3a0c60d7c94ce221068ac
|
||||
size 3558668
|
||||
oid sha256:b6f65fea917c996a885ac4f1e4564e92657523535ab98a08a367795a17a9008e
|
||||
size 3559437
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2bd987602ca1abb22fb3fd5c697a904462570f5c8788da35689295c03638dd65
|
||||
size 614239
|
||||
oid sha256:1bbebf522434bacc8ebaf4ccaa2b17abe30bad6fedefbc32b8f568944c354b28
|
||||
size 614331
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:733c738699d5b6e5f38e522f4bf7964c4524eb3cd3f8a23002d7832c291df63e
|
||||
size 2607299
|
||||
oid sha256:4100431bfe371d717187882edcced5a6d2451f528cda66de0a7890e5b8b66acf
|
||||
size 2607905
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3503fd467b7eedc7e323ee1158cd52194bfa14de4473d12ea2b9f3df3687c802
|
||||
size 671696
|
||||
oid sha256:dfc8c88d0cf0dd1d4303d3062068830e419605535da9adc29cc08a75ef48ff6f
|
||||
size 671962
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8fb5b58d9fa68fa4c04bc7ed9898d1b14201c7f812aab2c67ce622bbd29191d0
|
||||
size 1486443
|
||||
oid sha256:22b8314a1a28bb5ead958495254217b049b92f01b31e1411adcc2e16ce0a69dc
|
||||
size 1486373
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:879f65a5e1e644b94ac77cc25376bf11204bbd36d1d5ebdfa3eb79102535d43e
|
||||
size 1036478
|
||||
oid sha256:fa74f1062f53543241d3c02de88dfb83d3ac04d38bb73fe65e713023894e1428
|
||||
size 1036207
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7784ecdf8507881b57dc4424640064239d54535987c416c921047466a48991e0
|
||||
size 4174388
|
||||
oid sha256:7e79b1b555b60a32a98e6b01300e6a2ad8efdbd8384e6d5c8c0295aeab410d19
|
||||
size 4174930
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a1c0209b0802604a33170395c32fab0c779318fa338c3da93bb51431db2f88a
|
||||
size 635015
|
||||
oid sha256:1f55e6ef93ccc515230b27dd8d9bac9de534709e6fde58e3fa3872d88af556f5
|
||||
size 635096
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36e22c6049d0e656e7056e27cfe0e7facc9677adf24bf1c1bb8c411a43c5f3fa
|
||||
size 2825737
|
||||
oid sha256:450be6a83715090819203e371b2153b86977f077b9302a20165a03f3e21363fa
|
||||
size 2827486
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:425acba190f436bd0d665dfdbc0ccfb5825c7bab016900dba66578735184228d
|
||||
size 689989
|
||||
oid sha256:ef52e2026c8c156268a8b85e70fedfd565ce96c425656ddb3116b03c3221b8d9
|
||||
size 690007
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d66827a9c22c8740bf4c50dedf710e7778ada397cf834bd4c24474f5ea72b14d
|
||||
size 3680629
|
||||
oid sha256:564c555367a378e07282aa9ae8133adb8bfc119dca2106a08d62186d55e5ea9c
|
||||
size 3681473
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0e224b50b567e457c5bae659cbedab6356b471e86b719ed2f8eeced4a217648
|
||||
size 633549
|
||||
oid sha256:904fc398ba9dfdad9ad0eb06894fa09fe11292cbe90c71884f9354964d71b600
|
||||
size 633677
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d9952a1ed1b2939f7bc19d5ce861c77f19d3c67a203eeab5fc4a772326d5bade
|
||||
size 2694388
|
||||
oid sha256:fdf6e33a44c45c6aa3ded6a0a20ccc49a450052da0067476eb5a05bca58e5e58
|
||||
size 2694331
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15cc49cf71b9516775e5d8266fdec001d55ff40e29588c8513cf4ea8563e9f7d
|
||||
size 877989
|
||||
oid sha256:53d82350b37e099ed63bb4abf1cd922875ffc105b532b599180e5e7cafeba968
|
||||
size 878088
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65d8c404be1743ca9ba5b0379beeb823db3ba384f4eb64077e7c4a0b68f781a1
|
||||
size 1665870
|
||||
oid sha256:d6620d5d1aaca2411b1467f593c35c5ebbf2ecf91eca1601a3aea388328d3df8
|
||||
size 1665982
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ee3d11d86a42ba4f57fe7e66c71ecc20100329af1602fea9ecd87bf92aafb43
|
||||
size 1318571
|
||||
oid sha256:dd7e0658c21eaf442da89287dff6612a6983bba9daead9d66b7141b0192d06f4
|
||||
size 1318657
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3b8887b334296e2104df058a572d087b794fba4d86b88855b096b58e0ddf23e5
|
||||
size 5047982
|
||||
oid sha256:bc602b8108da96884d0d2e5b81ae83d11e409c16480fbaee2b52d4e811a468ac
|
||||
size 5048009
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d8d415db4b406958f5b78ed9c6fc9f0e14879a954a853957d6e6ed5da76aabe
|
||||
size 811063
|
||||
oid sha256:15893df036bdcaa228aab4aa855f4652daa8ccee44342aa1374aa9b092098220
|
||||
size 811374
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65e9c805bfb9f69ec578567fd23c87759d184dc081631315c8292d072e066230
|
||||
size 3429600
|
||||
oid sha256:e8e2b1201af79b1d7f84d573cc5975e8401e6918ed61302c11f8c8e9ff567e32
|
||||
size 3429756
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49841006fe9ac6c59f7f41aeb65f631c3bea7518b74a0710080cff895d2179ab
|
||||
size 897272
|
||||
oid sha256:378e619aa80017f274a6d2a042bcf952f106602c45c610147992b04d2cee23ef
|
||||
size 897419
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5aff9ca890da19bf4a9becab5e3755642fc22459091ec684782e98e8988d30d4
|
||||
size 4578457
|
||||
oid sha256:5cc107a9cdef40b516c063154a7bc5e2845cff6a14a5fc02a8d1820fcca325a0
|
||||
size 4578285
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99e6cbca4691f1b0439c254e85a6de294f5b0ca696fb568b26e844fb41e496d7
|
||||
size 808821
|
||||
oid sha256:75d831b75eb342cc5fca12b152463f18cb450e0b9302708a64d8313a88c76749
|
||||
size 809028
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71f2cd52c45c31cb624d3d9173bba3683c22390603867ba97727c1972077fb3d
|
||||
size 3280161
|
||||
oid sha256:3c44c825785ee76713ae7f56c76c02c11b36833562ea78b6725092443f05d834
|
||||
size 3280451
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29c2558891a512854f57a9a63175f41563c863c0c845d4080237c056ffcf56e5
|
||||
size 502695
|
||||
oid sha256:8e5bca111966411503fc2304d22c0263889738cb42f005a1da92aad16032d27e
|
||||
size 502489
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a01ff66186120219cd2f0373ec548d51a9cf0d85230d0b5c14af219a2baa1925
|
||||
size 1047306
|
||||
oid sha256:59f75265d5789524e1eacbea35790660d34e708a478bea194c034d637eb95961
|
||||
size 1047305
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:009815055fcb75f9abb04a921784c8f76139db8aa3ca6ef805a688567f3acd62
|
||||
size 822731
|
||||
oid sha256:47badd95ed63904b231b58c7a666e0d60e10f3bf441bab2a9d2ca4885851fb36
|
||||
size 825829
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:845a796aa5d21c9d6cb9e1f9c82420d02e45797547e6bbb5e7777da413c46d9e
|
||||
size 3282570
|
||||
oid sha256:4a6c3ecc6f74a6dabecd33ca3ff559d5bbaad7a07b2e4b713cb3e173bee14961
|
||||
size 3297440
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aecc5235812d88736f968f8ee87660cecce2ab4084d3d52ba116f844fd97b891
|
||||
size 477314
|
||||
oid sha256:cc455ecdd034580edc0c10f6026dad7b0b287894f664c480f5d7da4b989c42e1
|
||||
size 477369
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:50018cdcda7d1349784bc90a8ab07fe9c830858c1b93c77be801e03dcd7350b8
|
||||
size 2027673
|
||||
oid sha256:49f537248f9731eac024c2ad037052a041fade943b1238072b01793ef63b4e21
|
||||
size 2027019
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36bde2ff7bd22c1f525db74c13f324d34f4ff51321154a457da2c4503dd9fd44
|
||||
size 515927
|
||||
oid sha256:668f2bd2b152e4c30e946f59c25ed80156ce81da985e706c4bf8b06ba55db410
|
||||
size 516184
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa5b6f5df2808d128bf1d6cad10f2882259cc4d5f36944e332bdde55a9bf87d0
|
||||
size 2627356
|
||||
oid sha256:cc7c39d0336984e50b5a26d2449d91e1dc74b40ac467be3d4fc5565a9da5cb17
|
||||
size 2628417
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7e5d9e362290ba639c267cdc6f1124a3cf7bba8d404b2b5cd581c5dc1cc2f03
|
||||
size 475495
|
||||
oid sha256:d7ba58e30ecaf6ece6ce9ede3b06b7f2d62bdbc369ccf0340ba102b1c22c09e9
|
||||
size 475532
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2426c853b38064e8b524c82b9204b0c33322860336b0fa4bb52015ab113a31a0
|
||||
size 1935626
|
||||
oid sha256:db5d7d68578e2c232a19a3d493f1ac49c4e2eacb5c732bcbf660a89d3b27b897
|
||||
size 1935333
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b4ed8bbd7fae5cdc222dd7adf155106fd0cca746f3c7b1d8f8f8f696405eca31
|
||||
size 782070
|
||||
oid sha256:56a129cb5a0d3207da7f5a70ad74fcf0642e494fcd5761666fcb160f65d71883
|
||||
size 782050
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:23391a16776ce9cdf43318dd25485396110b5d6af7946797ca1dd224b87f5d8c
|
||||
size 1676480
|
||||
oid sha256:2f799b7f7e226972c404200a5a3108c7b8f00e9ff372384d45c31ea1c2c136e0
|
||||
size 1676403
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c1623fcbda6e07d864d249911a316b0cbf3abb40c71f0d03767ff1d831fe00b
|
||||
size 1177609
|
||||
oid sha256:5fc18fa34565a79c0b04f4b16061a04e3e1b6e9475854fac1378c89ca3364fae
|
||||
size 1178062
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c63f33cc3e0378893a060976c813cca4f075a0250f4ad7d774a9ac0a8dac755
|
||||
size 4735478
|
||||
oid sha256:c18432497c57c778ed3a89d016ef4b3d3aa09f3597865f535f21074ed7ff5147
|
||||
size 4734839
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bccfa489709487ac5d46b761725863725d09d80a2ca4bced2ab88ca10a4a5143
|
||||
size 747667
|
||||
oid sha256:8c536b3a52693fe747105927e491ba5d270b7ba4915677819b42f54668448ab3
|
||||
size 747566
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ea4f0a24b2de2dba3a00382fcd39a750c831b25a562ec99f437df2acd15ba56
|
||||
size 3333602
|
||||
oid sha256:9586631083715ea084b1171daad6862f529753df877849d3f535a944a5421541
|
||||
size 3333730
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2687afe962ad11eb99b6d91c664f13caae8cfb19b27f6823c414d654c2010b6b
|
||||
size 805242
|
||||
oid sha256:f470f062f79e5894fb26a1851f2ee0a8e3c485d2da10e967c3775eec816ef3d4
|
||||
size 805764
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1d367a89514d64af2156f640c723052cd76c6f6d740e9d89f73494353567058
|
||||
size 4319973
|
||||
oid sha256:45554562bf21b95edee0c528bd5a04ead401d638daf57ee43514c600b726afdf
|
||||
size 4321683
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:990d07d0b5483f52921dc016526777f0b6f828ddadaef553d4de2e816afcfbd4
|
||||
size 746717
|
||||
oid sha256:b73ae4d40865e404b653aef23c64eb2b6cdec6b8f82472c8d311330a940afdce
|
||||
size 746848
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0058737f0332ecfcc555cebb98afefd6b1f38a90b8d9828ac06873f84bde066
|
||||
size 3176174
|
||||
oid sha256:25e08ecee768348eeab1198edaffef2a692cb929c26f2db32ba41c019db82a59
|
||||
size 3176832
|
||||
|
||||
Reference in New Issue
Block a user