Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9443313e96 | |||
| 3e79f78bbd | |||
| c152631578 | |||
| b33747374f | |||
| 7a8990260c | |||
| 9b1153da04 | |||
| 38d161f1bf | |||
| 1b9daf60ee | |||
| e71d71cf9c |
@@ -1,5 +0,0 @@
|
||||
language: objective-c
|
||||
osx_image: xcode12
|
||||
xcode_project: ResearchKit.xcodeproj
|
||||
xcode_scheme: ResearchKit
|
||||
xcode_destination: platform=iOS Simulator,OS=14.0,name=iPhone 11 Pro Max
|
||||
-187
@@ -1,187 +0,0 @@
|
||||
Contributing to the ResearchKit Framework
|
||||
===========================
|
||||
|
||||
This page focuses on code contributions to the existing
|
||||
codebase. However, other types of contributions are welcome too, in
|
||||
keeping with the ResearchKit™ framework [best practices](../../wiki/best-practices). For example,
|
||||
contributions of original free-to-use survey content, back-end integrations,
|
||||
validation data, and analysis or processing tools are all welcome. Ask
|
||||
on the [*ResearchKit* Forum](https://forums.developer.apple.com/community/researchkit) or [contact us](https://developer.apple.com/contact/researchkit/) for guidance.
|
||||
|
||||
|
||||
Contributing software
|
||||
---------------------
|
||||
|
||||
This page assumes you already know how to check out and build the
|
||||
code. Contributions to the ResearchKit framework are expected to comply with the
|
||||
[ResearchKit Contribution Terms and License Policy](#contribution); please familiarize yourself
|
||||
with this policy prior to submitting a pull request. For any contribution, ensure that you own
|
||||
the rights or have permission from the copyright holder. (e.g. code, images, surveys, videos
|
||||
and other content you may include)
|
||||
|
||||
To contribute to ResearchKit:
|
||||
|
||||
1. [Choose or create an issue to work on.](#create)
|
||||
2. [Create a personal fork of the ResearchKit framework.](#fork)
|
||||
3. [Develop your changes in your fork.](#develop)
|
||||
4. [Run the tests.](#test)
|
||||
5. [Submit a pull request.](#request)
|
||||
6. Make any changes requested by the reviewer, and update your pull request as needed.
|
||||
7. Once accepted, your pull request will be merged into master.
|
||||
|
||||
Choosing an issue to work on<a name="create"></a>
|
||||
----------------------------
|
||||
|
||||
To find an issue to work on, either pick something that you need for
|
||||
your app, or select one of the issues from our [issue list](../../issues). Or,
|
||||
consider one of the areas where we'd like to extend ResearchKit:
|
||||
|
||||
* Faster 'get started' to a useful app
|
||||
* More active tasks
|
||||
* Data analysis for active tasks
|
||||
* More consent sections
|
||||
* Back end integrations
|
||||
|
||||
If in doubt, bring your idea up on the [*ResearchKit* Forum](https://forums.developer.apple.com/community/researchkit).
|
||||
|
||||
|
||||
Creating a personal fork<a name="fork"></a>
|
||||
------------------------
|
||||
|
||||
On GitHub, it's easy to create a personal fork. Just tap the "Fork"
|
||||
button on the top right, and clone your new repository.
|
||||
|
||||
|
||||
Develop your changes in your fork<a name="develop"></a>
|
||||
---------------------------------
|
||||
|
||||
Develop your changes using your normal development process. If you
|
||||
already have code from an existing project, you may need to adjust its
|
||||
style to more closely match the [ResearchKit framework coding style](./docs-standalone/coding-style-guide.md).
|
||||
|
||||
New components may need to expose new Public or Private
|
||||
headers. Public headers are for APIs that are likely to be a stable
|
||||
part of the interface of the ResearchKit framework. Private headers are for APIs that
|
||||
may need to be accessed from app-side unit tests, or that are more
|
||||
subject to change than the public interface. All other headers should
|
||||
be internal, "Project" headers.
|
||||
|
||||
Please review and ensure that any contributions you make comply with
|
||||
the [ResearchKit Contribution Terms and License Policy](#contribution).
|
||||
|
||||
Add automated tests for your feature, where it is possible to do
|
||||
so. For UI driven components where it is harder to write automated
|
||||
tests, add UI to at least one test application so that the new
|
||||
features can be reviewed and tested. Consider also whether to add new
|
||||
code to other existing demo apps to exercise your feature.
|
||||
|
||||
When adding UI driven components, make sure that they are accessible.
|
||||
Follow the steps outlined in the [Best Practices](../../wiki/best-practices)
|
||||
section under Accessibility. Before submitting the pull request, you should
|
||||
audit your components with Voice Over (or other relevant assistive technologies)
|
||||
enabled.
|
||||
|
||||
Keep changes that fix different issues separate. For bug fixes,
|
||||
separate bugs should be submitted as separate pull requests. A good
|
||||
way to do this is to create a new branch in your fork for each new
|
||||
bug work on.
|
||||
|
||||
Any new user-visible strings should be included in the English
|
||||
`ResearchKit.strings` table so that they can be picked up and
|
||||
localized in the next release cycle.
|
||||
|
||||
|
||||
Run the tests<a name="test"></a>
|
||||
-------------
|
||||
|
||||
All unit tests should pass, and there should be no warnings. Also
|
||||
verify that test apps run on both device and simulator.
|
||||
|
||||
Where your code affects UI presentation, also test:
|
||||
|
||||
* Multiple device form factors (for instance, iPhone 4S, iPhone 5, iPhone 6, iPhone 6 Plus).
|
||||
* Dynamic text, especially at the "Large" setting.
|
||||
* Rotation between portrait and landscape, where appropriate.
|
||||
|
||||
You can use the apps in the `Testing` and `samples` directories to
|
||||
test your changes.
|
||||
|
||||
Submit a pull request<a name="request"></a>
|
||||
---------------------
|
||||
|
||||
The reviewers may request changes. Make the changes, and update your
|
||||
pull request as needed. Reviews will focus on coding style,
|
||||
correctness, and design consistency.
|
||||
|
||||
This process does not take the place of an ethical review, for example
|
||||
by an institutional review board (IRB) or ethics committee.
|
||||
|
||||
After acceptance<a name="after"></a>
|
||||
----------------
|
||||
|
||||
Once your pull request has been accepted, your changes will be merged
|
||||
to master. You are still responsible for your change after it is
|
||||
accepted. Stay in contact, in case bugs are detected that may require
|
||||
your attention.
|
||||
|
||||
When the project is next branched for release, your changes will be
|
||||
incorporated. Queries may come back to you regarding localization,
|
||||
documentation, or other issues during this process.
|
||||
|
||||
|
||||
|
||||
|
||||
Release process
|
||||
-----------------
|
||||
|
||||
The `master` branch is used for work in progress. On `master`:
|
||||
|
||||
* All test apps should build and run error free.
|
||||
* Unit tests should all pass.
|
||||
* Everything should be continuously in working order in English (the
|
||||
base language).
|
||||
|
||||
The project will make periodic releases. When preparing a stable release, we
|
||||
will branch from `master` to a convergence branch. During this process,
|
||||
changes will be made first to the convergence branch, and then merged into
|
||||
`master`. On the convergence branch, changes will be made only to:
|
||||
|
||||
* Fix high priority issues.
|
||||
* Update documentation.
|
||||
* Bring localization up to date.
|
||||
* Ensure good behavior across all supported devices.
|
||||
|
||||
After the converging process is completed, we will merge everything to the
|
||||
`stable` branch and tag with a new release number. The most recent release
|
||||
will be highlighted in the [README](../..).
|
||||
|
||||
|
||||
ResearchKit Contribution Terms and License Policy<a name="contribution"></a>
|
||||
=======================================
|
||||
|
||||
Thank you for your interest in contributing to the ResearchKit
|
||||
community. In order to maintain consistency and license compatibility
|
||||
throughout the project, all contributions must comply with our
|
||||
licensing policy and terms for contributing code to the ResearchKit
|
||||
project:
|
||||
|
||||
1. If you are submitting a patch to the existing codebase, you
|
||||
represent that you have the right to license the patch, including
|
||||
all code and content, to Apple and the community, and agree by
|
||||
submitting the patch that your changes are
|
||||
licensed under the existing license terms of the file you are
|
||||
modifying (i.e., [ResearchKit BSD license](LICENSE)).
|
||||
You confirm that you have added your copyright (name and year) to
|
||||
the relevant files for changes that are more than 10 lines of code.
|
||||
2. If you are submitting a new file for inclusion in the ResearchKit
|
||||
framework (no code or other content is copied from another source), you
|
||||
have included your copyright (name and year) and a copy of the ResearchKit
|
||||
BSD license. By submitting your new file you represent that you have the
|
||||
right to license your file to Apple and the community, and agree that your
|
||||
file submission is licensed under the ResearchKit BSD license.
|
||||
3. If you aren't the author of the patch, you agree that you have
|
||||
the right to submit the patch, and have included the original copyright
|
||||
notices and licensing terms with it, to the extent that they exist.
|
||||
If there wasn't a copyright notice or license, please make a note of it
|
||||
in your response. Generally we can only take in patches that are
|
||||
BSD-licensed in order to maintain license compatibility within the project.
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de038a3a1edef4a623f73c86cac9a923576110c48eb14be95c8b45e2aae0b4c3
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:514a1e443c6ab82dfb661fdcfc4bb99c208ae281b99c65f10fb3fcc9c68440c8
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b19773cdb76254a14bac6fe3785daa499cd82138c49d984208fc8dbb7a3c7176
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6fd2f0a91950d3eb205401904ec916759e48d8fd0fb0b57c5eee4e1448c48d3d
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4e12c8bf5f28b58c7a0a6276106d2eb00e3cbca7e76c9f6c3da130ba1ffec25
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5bf50bbdaeb00237b7fdb8558fb4e0f52a210a0279859d93582218c38bfea76f
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3cd7f19b0a9fea7112ecd8a33a63b57f9ef8fb98d26f676127aeef445d39394b
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0699d19584d85f6abdac232e62d77c3052bd506105600efe89d945e139f38f14
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:206157163ec5231820f99d937ceb7be0430ca7a2886184945cb20c178a36b8cb
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c38da877423ee3bf3c9d4e4c592b45ad8286ea825ddfaa5984f3b38f76af19c5
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c4e493991a79d32f143525533aa9b38be85f16545ca60012360382ed011fe8b
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b934cbe35567329c71a4e363d468986bb49d17108fdb5fecd180f626f16551a0
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7e0a296d18275b17c9425b8b297dead312dbcee753e7585f8a5c8886b35f03f
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f3559ebee58cf65deefb5550b0a4bbe36fad59419c23f7f416641389fc7cb02d
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8587d3ab758a38125a2f63edb48307ed1f95b5c7277e87335f47412b9bf8f28e
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f0f753994b92a3b542af0e520ac41b451af18bc04e5577b984701eea2ebfb03
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ef9361e4136dbc4c800bb2b91e43e17afb9a4a3280cf775c664c65411eaf7a0
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d610a10cfc62539e88685a84db74cba30e724d04e9454843f9bda53a2e2e057
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55f02f5537212111ce403e69ce0552a7391ea156ff631e39be0492f322a4c1b5
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d328b748b2ad10fccd9b8fbac33df789e74ca8e8e24133e243fae7ac197d3927
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c54cf37051e60ed20680cc344b65365376377b1b023e5ca6c792321f58790a38
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98a4b2ec9bb289d69fa069bcdd1484279baf474b8ca6a6f64c2d5b7568b6ac81
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:df4e1c9aa1a413e573203ad27f089134ff67035b91bf47ec8ad2041df79915f8
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba4986d47ff2c6b252d768a40838e11af7f7949c515ea7409e5a566edfa34ad4
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:691dc4575d2723a6ac9800e1069f93187572d7606c11ccb6042f490656ed1cd6
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ea3aa71d881c978ceb8a4b63375fede5ca66d4e4e580d4ce508ddb4b6917b4ce
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:02220bd29a1ff17d11c35fa887af2be987155c028572d1bdbd94d09056056651
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e2f5ff119d235885b5bc5e81d399128696c8a43beeff95fee17eaca7a12fb42
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ba494a8404b44a4c14aeef5eb7d54d86821273f54c5b7561fcd7e62a5cce539
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e5e734f46bcd9e78d5c39b5e4e5a6c92cfc6a26a50e4afa78f48366c53340b0
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ce6e70c06749d8c1810fa6c91dfadef1e43caebb7950a505719a9177988d1bf
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94df3c9a734608fbd171a218492c0037f0d79f8e49dd740d52b7b512ae77c76f
|
||||
size 384092
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85e603aa991d94e385b7beb46c237f68fac969201f7abcf419532031edf281a9
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c46d33067569bd661c3233873e386dd7fe8da92223cc01396362c07502bdcf3
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:607353d00854f82db7bfdac7622f624ed27844cf9934aa81654c019bed2b9870
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa6e44907521dc2284313b2eaf3a8810f60c2c8d6c336ce07cb4bf26afb6924e
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:239fe86d3f1c1b2304c2fd1ab657fc63a9f9ee7c51da25c28b8fa6d1d850f76b
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:48f09d32946144b110716bf332973fc143b771348baabc5f9f210abc640ecdb5
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d37a9439f1c569802e3e9c9c1bb2ab2cfb3f7d89a682c7e33487ff0e551b9ca
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b03685ea30a12603b68433300e6b01d922a40b7532e7b9d58f4c54b7d0ee540e
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:caddc9f717e9ef1a823bc337696ba0d6e08ceeeac432803ed496e2c96d6a7b79
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:21df4b311baa53083fb7c8c4974578505a7cdac229988bd15be942141473a595
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:944f1a5e2f56aaced7973b451814be9978d5df818be311d0797edc3a8da5f256
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f910b1050340e427fac2ea2e2589323aad1d14ff60fe4e0d3ef27cdcf9deed56
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ae3796fbc0da3e5c6f39da5aa9485980edd850189656fc405dfff8a3b0abdc6
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a41e38cb7d8a76f6a432cd5b3117cb2342c9439ca95b976fb6ca900e3a8cab4
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:781c6fb457c166d1c198ca7987c205b25f2f5ee29bf69c1b05918da4403476dc
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9da05dfbc76881a75a4d6daed07a54ad1a933f62f1fb1784a37afa1a6908c814
|
||||
size 384106
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a27dbf6d7050b2e7acd861aedc37e58049a0f4594be1bcb31a55206ee5708f7
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:928fea52270b9fd025235b1596881ecdb74e385797fd1dfa7db6ca201de75e6e
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6dc904274ac7fb7783dc2271070cda10b33395bff4470eff9fdf6b85e1e124d8
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d464454a24719fe8c92abed64c5e8964ed04f39671f697a2d6af3f09c76d1ca
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:270a0a40d3181d9b57ff0b0dc6c1876f0a752e1ab2b9e28548f99f39a046a719
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a128b7bbb924947355ef2069096d4282e786830073584c39ab5d7291f80ab43
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f2044ee1217ab87446a21ba1b9ac2c1471b7f617b4fb205fb7526e3db1b97ce
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6b03ef6b114c5d14148793026bcf0fa6738dff5276ddb03e5e4d5e7cc8ef1200
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:836a6a8cacda6cb6d99e09bb910e945859db624a39aa7a12ff15b9ea1da23329
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:424f7c8164ebba6334053af79bc6f74da0be544d4da35d48dae44b91b9039d59
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4892b512d217fd0d9cacb05acc068557681236b2bf1a8e15197aa5b33dbce680
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0310f0c6cb75e20b25573a361e6a230c0e30ff74a41aca535f49afb4f69030ae
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29a3c39c6521ef12c74738e6471af20d842a4abe44ce061e335b87847f728b1d
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:06c126b2c493648c89b09b514825fc4953469f58bf623c2e59ae05b7afecb29f
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6a130d7e1881c443e20671efe1583a0f111c69ccb5aebb77ff79a6e0f0a666a
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9febaf9a937f1509b842880d59613f4a1931f7bae9c62f613970b21f7d58c411
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3bdd1ecd301d80490dae24186ac8587e1be6423919542b101afc86a40a816b31
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:814774c92c0e4961575f6ed9d6b0984a3a1c969dd3eb40326c08233eac648bc0
|
||||
size 384106
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b640b44af01112e1d6012f6075e634601fb2ea079703620ce9a53f909bd8dcb
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8d7c72a95403ab513b2a177b04f0cd1085baacae6125d0758fa03a9b3121d4a
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99d645b71370660a9f12213333bc5314623d6f14d0802e8f38c3b54de73ea76e
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa7efb7572f738a9dc926b96238bb410b05766434ff2a4d060e33da9d8ab3e79
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:75d55b233bda7c5ad7b25880fab1534a1e1811b6f75ca469ac698c4b06707004
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e47190f6a4d81b2a05b090754dcb2502ca4147757b3044ebefab720b76794ff
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f6b0253549fc1a0799e37ff41ca7ce577ddd57dd066317d8b2ff4933574b4d6
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f6dce6036191599a58fc4bd5dc5dddb39afcb59f77e61fab782b8d66a2005e0
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47bc01590278edd3e161bd77f054aec3912a68a4476b25ea6feb5adbb81a160a
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b683cfedc348fc3b16f16b36a3344fe6351dc76508e0ac58df77da449178ad1c
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:48268bcecf6f153804826a27449e3053fab90f8d2c78161d0020170cd90cdf75
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3e653ef19514157e9273e524384c96aa8974faf74570607c75504e4f26c2768e
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7105f8e099e2cfd93cb4eef6d34cb44a6fabe8fb2592fd14aabefc06fb1373e8
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f457c608ede9333e3a126a5b2e47411751630be24128189322b87768b2750441
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cdb30a6f7d76731647e70fd802e8468b0a4e827f5623a26719d1bb240878f991
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2dcbf1f52565d56f0b0d78460513d0de3a89206742f9ef3350722e829a1f44c3
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bac4de81c357e03b326b621c9968e667a41183b0e30e36dc1fccb8b0e2c4ee05
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:436ac8c29ffca6eeb88a794f97041bc6c9a03d37ebf6df78d6dd14346704592c
|
||||
size 384106
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5957796b3b47e9c6d7e7f00aaa99bcae8f26d8b82d2af64fd5b9ab38ad3970bb
|
||||
size 768094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64367496e0ebe242beafa32af4a903779d2d78b7e6ab8e704de1f4264c4c375c
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:deb78e1c829e82da11fc93aa8fa5f929c12238fd5dda5f6c7e6fed5e0cf64078
|
||||
size 384096
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fe4d7119921e3dc48a54a31482345d4985f067a304ce57f35e3748a0f74787d
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32207f9bced6c259108cc7b463df83ac5dece6dfa26d3440d950664a10797b83
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5ad12e8615314f66f6217ec236bbb6caebfd074a9a68da8c5b18f6aa477a39d
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8e81804261a92a617cecf226237c375ab14f1d5828d1d2322aecd160f1f3494
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f176216831363e0cd711cc234453d64288fb4ab1c2556ce925ea5c65d0880e4e
|
||||
size 384104
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca13f705411e0a6251e2bb2945bbdef5ad2e03b3a7dec3610c19a95287b55141
|
||||
size 384100
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f693fe766b9347abf36b0ee2d0fa60fa0163fe201269b18fc7acff9b5ca907b1
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e13a6a25585e90fd59b08422c85d895f4132db3424398ff976317344261b64c
|
||||
size 384098
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecd7644f2ffc377b234ddcd1c257a34c974de6002cce75c57f5bd198713ed3bb
|
||||
size 384102
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:419047dd1ddb353d66c0e3af7c0319882accb60360788e62f1a490e165763d12
|
||||
size 384094
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0251f236c3d62898d9d2f84f7316c0832c2c3689eab8149fba2b1022e747cd9d
|
||||
size 384098
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user