Merge pull request #957 from aws-lumberyard-dev/gallowj/main/DCCsi

Gallowj/main/dccsi
This commit is contained in:
Jonny Galloway
2021-05-27 11:39:55 -05:00
committed by GitHub
118 changed files with 122 additions and 2736 deletions
@@ -81,8 +81,8 @@ settings = config.get_config_settings()
if __name__ == '__main__':
"""Run this file as main"""
_G_DEBUG = True
_G_TEST_PYSIDE = True
_G_DEBUG = False
_G_TEST_PYSIDE = False
_config = get_dccsi_config()
_settings = config.get_config_settings()
@@ -121,7 +121,6 @@ if __name__ == '__main__':
import PySide2
_LOGGER.info(f'PySide2: {PySide2}')
_LOGGER.info(f'QTFORPYTHON_PATH: {_settings.QTFORPYTHON_PATH}')
_LOGGER.info(f'LY_BIN_PATH: {_settings.LY_BIN_PATH}')
_LOGGER.info(f'QT_PLUGIN_PATH: {_settings.QT_PLUGIN_PATH}')
_LOGGER.info(f'QT_QPA_PLATFORM_PLUGIN_PATH: {_settings.QT_QPA_PLATFORM_PLUGIN_PATH}')
@@ -68,14 +68,17 @@ IF "%DEV_REL_PATH%"=="" (set DEV_REL_PATH=..\..\..\..)
echo DEV_REL_PATH = %DEV_REL_PATH%
:: You can define the project name
:: if not defined we just use the DCCsi path as standin
IF "%LY_PROJECT%"=="" (
for %%a in (%CD%..\..\..) do set LY_PROJECT=%%~na
IF "%LY_PROJECT_NAME%"=="" (
for %%a in (%CD%..\..\..) do set LY_PROJECT_NAME=%%~na
)
echo LY_PROJECT_NAME = %LY_PROJECT_NAME%
:: if not defined we just use the DCCsi path as stand-in
IF "%LY_PROJECT%"=="" (set LY_PROJECT=%CD%)
echo LY_PROJECT = %LY_PROJECT%
:: set up the default project path (dccsi)
:: if not set we lso use the DCCsi path as standin
:: if not set we also use the DCCsi path as stand-in
CD /D ..\..\
IF "%LY_PROJECT_PATH%"=="" (set LY_PROJECT_PATH=%CD%)
echo LY_PROJECT_PATH = %LY_PROJECT_PATH%
@@ -88,7 +91,7 @@ pushd %ABS_PATH%
:: Change to root Lumberyard dev dir
CD /d %LY_PROJECT_PATH%\%DEV_REL_PATH%
set LY_DEV=%CD%
IF "%LY_DEV%"=="" (set LY_DEV=%CD%)
echo LY_DEV = %LY_DEV%
:: Restore original directory
popd
@@ -29,7 +29,7 @@ A general goal of the DCCsi is be self-maintained, and to not taint the users in
So we boostrap additional access to site-packages in our userSetup.py:
"C:\Depot\Lumberyard\Gems\AtomLyIntegration\TechnicalArt\DccScriptingInterface\SDK\Maya\Scripts\userSetup.py"
We don't want users to have to install or use Python2.7 although with maya and possibly other dcc tools we don't have that control. Maya still is on Python2.7, so instead of forcing another install of python we can just use mayapy to manage extensions.
We don't want users to have to install or use Python2.7 although with maya and possibly other dcc tools we don't have that control. Maya 2020 and earlier versions are still on Python2.7, so instead of forcing another install of python we can just use mayapy to manage extensions.
Pip may already be installed, you can check like so (your maya install path may be different):
@@ -4,14 +4,14 @@
#
# pip-compile --generate-hashes requirements.txt
#
cachetools==3.1.1 \
--hash=sha256:428266a1c0d36dc5aca63a2d7c5942e88c2c898d72139fca0e97fdd2380517ae \
--hash=sha256:8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a
# via -r requirements.txt
certifi==2020.6.20 \
--hash=sha256:5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3 \
--hash=sha256:8fc0819f1f30ba15bdb34cceffb9ef04d99f420f68eb75d901e9560b8749fc41
# via -r requirements.txt
cachetools==3.1.1 \
--hash=sha256:428266a1c0d36dc5aca63a2d7c5942e88c2c898d72139fca0e97fdd2380517ae \
--hash=sha256:8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a
# via -r requirements.txt
click==7.1.2 \
--hash=sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a \
--hash=sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc
@@ -68,6 +68,16 @@ unipath==1.1 \
--hash=sha256:09839adcc72e8a24d4f76d63656f30b5a1f721fc40c9bcd79d8c67bdd8b47dae \
--hash=sha256:e6257e508d8abbfb6ddd8ec357e33589f1f48b1599127f23b017124d90b0fff7
# via -r requirements.txt
qdarkstyle==3.0.2 \
--hash=sha256:55d149cf5f40ee297397f1818e091118cefb855a4a9c5c38566c47acd2d8c7ae \
--hash=sha256:7c791535cc20b3cc1e8e1bf6b88dabe53cb0615983df702be83597e73ada2558
# via -r c:\temp\requirements.txt
qtpy==1.9.0 \
--hash=sha256:2db72c44b55d0fe1407be8fba35c838ad0d6d3bb81f23007886dc1fc0f459c8d \
--hash=sha256:fa0b8363b363e89b2a6f49eddc162a04c0699ae95e109a6be3bb145a913190ea
# via
# -r c:\temp\requirements.txt
# qdarkstyle
wincertstore==0.2 \
--hash=sha256:22d5eebb52df88a8d4014d5cf6d1b6c3a5d469e6c3b2e2854f3a003e48872356 \
--hash=sha256:780bd1557c9185c15d9f4221ea7f905cb20b93f7151ca8ccaed9714dce4b327a
@@ -83,13 +83,13 @@ _LY_DEV = os.getenv(constants.ENVAR_LY_DEV,
check_stub='engine.json'))
# get/set the project name
_LY_PROJECT_TAG = os.getenv(constants.ENVAR_LY_PROJECT,
config_utils.get_current_project(_LY_DEV))
_LY_PROJECT_NAME = os.getenv(constants.ENVAR_LY_PROJECT,
config_utils.get_current_project().name)
# project cache log dir path
_DCCSI_LOG_PATH = Path(os.getenv(constants.ENVAR_DCCSI_LOG_PATH,
Path(_LY_DEV,
_LY_PROJECT_TAG,
_LY_PROJECT_NAME,
'Cache',
'pc', 'user', 'log', 'logs')))
@@ -223,7 +223,7 @@ if _G_DEBUG:
_LOGGER.debug('MODULE_PATH: {}'.format(_MODULE_PATH))
_LOGGER.debug('LY_DEV_PATH: {}'.format(_LY_DEV))
_LOGGER.debug('DCCSI_PATH: {}'.format(_DCCSIG_PATH))
_LOGGER.debug('LY_PROJECT_TAG: {}'.format(_LY_PROJECT_TAG))
_LOGGER.debug('LY_PROJECT_TAG: {}'.format(_LY_PROJECT_NAME))
_LOGGER.debug('DCCSI_LOG_PATH: {}'.format(_DCCSI_LOG_PATH))
@@ -137,8 +137,9 @@ def get_dccsi_config(dccsi_dirpath=return_stub_dir()):
# -------------------------------------------------------------------------
def get_current_project(dev_folder=get_stub_check_path()):
"""Uses regex in lumberyard Dev\\bootstrap.cfg to retreive project tag str"""
def get_current_project_cfg(dev_folder=get_stub_check_path()):
"""Uses regex in lumberyard Dev\\bootstrap.cfg to retreive project tag str
Note: boostrap.cfg will be deprecated. Don't use this method anymore."""
boostrap_filepath = Path(dev_folder, "bootstrap.cfg")
if boostrap_filepath.exists():
bootstrap = open(str(boostrap_filepath), "r")
@@ -153,6 +154,33 @@ def get_current_project(dev_folder=get_stub_check_path()):
# -------------------------------------------------------------------------
# -------------------------------------------------------------------------
def get_current_project():
"""Gets o3de project via .o3de data in user directory"""
from azpy.constants import PATH_USER_O3DE_BOOTSTRAP
from collections import OrderedDict
from box import Box
bootstrap_box = None
try:
bootstrap_box = Box.from_json(filename=PATH_USER_O3DE_BOOTSTRAP,
encoding="utf-8",
errors="strict",
object_pairs_hook=OrderedDict)
except FileExistsError as e:
_LOGGER.error('File does not exist: {}'.format(PATH_USER_O3DE_BOOTSTRAP))
if bootstrap_box:
# this seems fairly hard coded - what if the data changes?
project_path=Path(bootstrap_box.Amazon.AzCore.Bootstrap.project_path)
return project_path.resolve()
else:
return None
# -------------------------------------------------------------------------
# -------------------------------------------------------------------------
def bootstrap_dccsi_py_libs(dccsi_dirpath=return_stub_dir()):
"""Builds and adds local site dir libs based on py version"""
@@ -194,7 +222,11 @@ if __name__ == '__main__':
_LOGGER.info('LY_DEV: {}'.format(get_stub_check_path('engine.json')))
_LOGGER.info('LY_PROJECT: {}'.format(get_current_project(get_stub_check_path('bootstrap.cfg'))))
# this will be deprecated and shouldn't work soon (returns None)
_LOGGER.info('LY_PROJECT: {}'.format(get_current_project_cfg(get_stub_check_path('bootstrap.cfg'))))
# new o3de version
_LOGGER.info('LY_PROJECT: {}'.format(get_current_project()))
_LOGGER.info('DCCSI_PYTHON_LIB_PATH: {}'.format(bootstrap_dccsi_py_libs(return_stub_dir('dccsi_stub'))))
@@ -26,6 +26,7 @@ So we can make an update here once that is used elsewhere.
import os
import sys
import site
from os.path import expanduser
import logging as _logging
# for this module to perform standalone
@@ -91,6 +92,9 @@ TAG_DIR_DCCSI_SDK = str('SDK')
TAG_DIR_LY_BUILD = str('build')
TAG_QT_PLUGIN_PATH = str('QT_PLUGIN_PATH')
TAG_O3DE_FOLDER = str('.o3de')
TAG_O3DE_BOOTSTRAP = str('bootstrap.setreg')
# filesystem markers, stub file names.
STUB_LY_DEV = str('engine.json')
STUB_LY_ROOT_PROJECT = str('ly_project_stub')
@@ -221,10 +225,17 @@ TAG_DEFAULT_PY = str('Launch_pyBASE.bat')
# config file stuff
FILENAME_DEFAULT_CONFIG = str('DCCSI_config.json')
# new o3de related paths
PATH_USER_O3DE = str('{home}\\{o3de}').format(home=expanduser("~"),
o3de=TAG_O3DE_FOLDER)
PATH_USER_O3DE_REGISTRY = str('{0}\\Registry').format(PATH_USER_O3DE)
PATH_USER_O3DE_BOOTSTRAP = str('{reg}\\{file}').format(reg=PATH_USER_O3DE_REGISTRY,
file=TAG_O3DE_BOOTSTRAP)
#python and site-dir
TAG_DCCSI_PY_VERSION_MAJOR = str(3)
TAG_DCCSI_PY_VERSION_MINOR = str(7)
TAG_DCCSI_PY_VERSION_RELEASE = str(5)
TAG_DCCSI_PY_VERSION_RELEASE = str(10)
TAG_PYTHON_EXE = str('python.exe')
TAG_TOOLS_DIR = str('Tools\\Python')
TAG_PLATFORM = str('windows')
@@ -314,6 +325,7 @@ if __name__ == '__main__':
_stash_dict['QTFORPYTHON_PATH'] = Path(PATH_QTFORPYTHON_PATH)
_stash_dict['QT_PLUGIN_PATH'] = Path(PATH_QT_PLUGIN_PATH)
_stash_dict['SAT_INSTALL_PATH'] = Path(PATH_SAT_INSTALL_PATH)
_stash_dict['PATH_USER_O3DE_BOOTSTRAP'] = Path(PATH_USER_O3DE_BOOTSTRAP)
# ---------------------------------------------------------------------
# py 2 and 3 compatible iter
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afe9402162c5b4527f12c863d389ee9d75b53a1069b7e177497beba389d91d35
size 525
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc1e37e22cb75f616d6ada02cce006bae7fb1da515b15afea0fc98fcc542a092
size 547
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7c9c4c8c5bdc755cc026aa23044f546010c0d1e079ecba34ceb8f0eb9e44bde
size 530
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6111d15f1dc946742b00317bda789a5c625333f65a362f38931dabc50afb2067
size 518
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ac79e7fbd6be51465e0b685dca32c1236f95ad76ab8c5877ec73d20a1de4365
size 546
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a86de88cf4ee32c352776caf46d5512d27679da8b571ea7e791287495fad4514
size 569
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5c5b8427bd1497006b8adbcbc445f11b07ec388a3398fe2997f65bdc56f2644f
size 565
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95ad920de52fd198f1af6d569917be20dc24a39dabdbe6c555c812d424bd9736
size 541
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb5b2d9b40652764f074dcea9856d6748b0efeac57ef58f306efa999f4b411c1
size 518
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a38dcd5b4078df430fa05780844af3e88e0a8e01c1fa910482e4c217354d728
size 553
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f60b2dfce514a6f558134b942f255ddf81ca3dc77b0d899a87f6d4cbac38e26
size 543
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:84379a7bd6ffa75692648c6fce328616e8a009d7ea3a83c2288f82ecce37e729
size 544
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d7ee7bfb0c60d4687c8a0dcc38a12ee7cacaa2cbb9eb0ae24faa82b992ade445
size 512
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:571b1afb9c2d7e01f56b75e1526dd0a3ffd49a60a4bcb7981ba34823b44a74c0
size 538
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:45d805ec94b8144bf121ba74ee96dd27f2f8c0890b2eca5e78df39cb5266f94d
size 530
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d49428a947ea424fabedd5a08e1d78e0bc57dc8a2d5a231b5d9ec06977870f5a
size 518
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d33b23ed0d8450413a2582d8f00bcb808d39f7e09ff394cee1669a4b7e79207e
size 1256
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d33b23ed0d8450413a2582d8f00bcb808d39f7e09ff394cee1669a4b7e79207e
size 1256
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d33b23ed0d8450413a2582d8f00bcb808d39f7e09ff394cee1669a4b7e79207e
size 1256
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d33b23ed0d8450413a2582d8f00bcb808d39f7e09ff394cee1669a4b7e79207e
size 1256
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56776b4655640d46eb1031b9c19c2341fdfe1201c774a84bc5c2801fbcfefc37
size 350
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d48862b1c68efdf376551d1c35d5d3a68e2ce9809e7c2723f42ece7c77fca009
size 373
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:62cc47f4b7751e22ffe4b26289ecc632b4a2c4e5c33ac79864fcfb32398b1139
size 380
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad6e74b57c8876fa28c3a43d1a38369415790507d65d758ea3e77b796c401da2
size 372
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:63324c154ead46027729bcf307ba45fbeb5a8de3ec5e8cef55d315a84a087115
size 142
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8a8b091785c84d37de57aacb7fe5a9b854933cc94b9b6f1f6e0b155879c7d6d0
size 146
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4f89a6b105df07325dcf7bdcea2165bb065dd99b648aa12ae4e0c6693e04d0a2
size 146
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76f44758619badecf11b3b0d9914612e584ad750a695c942811fe215457b25be
size 146
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:50a35383d40b4e8a646931e4057cd25045f05a48208e2cb9d9935be76b53bf94
size 130
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ba7550922e9d244620f8f9ad76fe546d542764eba02378f81b188dec5fd7438a
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52bec8528e3c8edd583136d90a37f46bcb45e0d406fc0fb680a8b4d75cfeb731
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b8d2c9a8593a52221c91d2a8c2d3cbd837e408a5f6d1dcad6f79328a13a3bcf
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5087f4f06a9718230e1aec2ba681f3432ecd2640a135b4e90c7b009188ec4c29
size 155
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dec80a2e8439a0787e10aee70a365e30b5d1f43c29e4c33989cc6cd2f5cac478
size 162
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39930fd3e240c9ad94d748d6cda73b2943682fc4825edd1240e882be18c06198
size 162
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d07da719927b26db1c3087bbfe7203510fce077efe9e121935b3aefbb49b95d
size 162
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05a1980b268f598ebb3520067679a8beb4fa3f00da9c87dd93be2642718ceb44
size 354
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:047c00f910dd279e871a6329ea533816d8b458063539b8efbe9949d7363996bf
size 375
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6bc79f30e3fdc52ec30eb0e9c6b03d1538f7c8c7855033d24d5f993e8ceb9cc1
size 367
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aa65cf58b8a02bf5f4142ad80de05aba868245c55a790af6ba0230bfd01a2a06
size 369
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95c1c1651a13f0562383087549a35a97bbb7899c7d3717d79d4624485b72bf9f
size 452
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:80a1d02e6ac7e5d0439b2a077ab8cf82739853ce46ac1556d4035e3bba713242
size 467
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:64d5ed4d01a9778912b98c9147eb67431560acb5805d1d0832a765c441b9ed9b
size 441
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0ffa46106a643a71835056acce66ebe09745a9e6d91fac30ff1caf0589a6677
size 418
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b291eb9180c0e27d1de6ff008ff4259b2c675a65efa94866a66c7c932fc1260
size 581
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c7d3d64e8cb5e2f8bc6620b0d58492a56800fc78fc0229a5fa495d3a43987a1
size 614
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:43d494685f5d2ed740b69f04fefe0e757626db94685ecc8f4411c6c68a626a5a
size 576
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7af182d82449663ac37955e45ccc3f8fc86d185649fa9bed24c10167351bd5ee
size 563
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:232451d0bd9cf1d54c777862030b667cd5078f2f4ff387ec03c44d56eb207c03
size 397
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b54771eaad56ee45f8871248ee1c6b18035aa732f9e4e9257d008a73be04c25
size 386
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae293d387fda8a89d68fc3f15db07ef084e3537a033d02351ff918cfcc82ea8a
size 394
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8ccf5cb638a090f0e64f6d336e4c6312cfaf53971afd0f00cd16d0c0759f1b4
size 403
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:256f010c3084112888189bcbea2995a37f8acbf12d61a4a261a94aca797cd964
size 117
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85522a94ec26125f65dcafc6158665f40ea570e4a08cbdfbbdf5f6772b887eb7
size 121
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae4766527d9e5a2226107ede231878118538e8be89f2dc2ac92b7c5a68ad0fc6
size 120
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f4bdbb4d207aa40366ad90d363a95d80e2b4a43574ca1ad3256ee6e0617f25e
size 120
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:50a35383d40b4e8a646931e4057cd25045f05a48208e2cb9d9935be76b53bf94
size 130
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ba7550922e9d244620f8f9ad76fe546d542764eba02378f81b188dec5fd7438a
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52bec8528e3c8edd583136d90a37f46bcb45e0d406fc0fb680a8b4d75cfeb731
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b8d2c9a8593a52221c91d2a8c2d3cbd837e408a5f6d1dcad6f79328a13a3bcf
size 134
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:abee85006ecef454df64f65a6aa7dbb85bff9c51f53ed87b47e9f4ef1adefec3
size 1224
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e22fc4d6bf116cebab4655b6bf81b1c384789b45a96f05d8a4b535e34978cb9
size 1325
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3db59af5ba4caa97ac07834e1a919adafdcd610324dacac68cbd2cde551c2397
size 1293
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:34bce34b70cf7c24d1e54f87f4225f0c4cf8e7dd8c6fd8a38f81e981bae2a2ce
size 1276
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f675766febe18edf774b0dd7db11177ca76793c0d2b693b1ffb6a447b79369d2
size 963
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d5af9296f23e58fc7fde5c9b278a801bd51bb3650d0e5f84dd9eb84434308cc
size 1040
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0b650dda797331b8c23ece7e313babb8e6e9118bd3d53e689a7381a33cb5e00
size 1032
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2dd40885e1d7b1d3f37cfc3afff07fe47db552602bdc46aa9a8ce7a0c8df30db
size 1022
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:054d47979c0879378a6f5e36d9e5b251c31e15610adeed109b8f128115d4b5ec
size 150
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9eca88a1ebba5d42107da4c3b3af3b52a8de1c76bc1bae8d27190ff5e69f8198
size 155
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e11a73fcc79cebd854cbdf3c6539eca99b016440c590b5326f90fa9790e9a69d
size 154
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7371a89813b6f4843dc90b4abe866de943ba670057e0802dcc7f0284d9aa079b
size 154
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e4d88b8da4d94d4ecaa0eda448d18adcad14c5a62d4e6c9d0ffb2673683d855
size 137
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7422317ab56297babc9025f42dd1f7179588ac4e066cb1b976b1bb56efca656
size 140
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9a1520ad62a2b20f53c0709d643af3e8e0d775891597c4bc05e46ed75617bd9
size 144
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:73b0e2dddb1c22848b9b858975cdaae02f0b7b47696922a863358afa30f81dfa
size 143
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e2986d7bca86f3359817f002ecf125afab71281561925a6ecbffe844a2be9699
size 145
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4f7909f6aa1843cb2382ea0e49afb10967a331e128cc8103ab8082c3e46a90aa
size 151
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b4c628767e58d08e929a4bfc3f730e1347b186a44a1b0d4159fa722776a660ea
size 149
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2bcf16dee85252fbf33d3eb05009b988f4c7b3795c01d66e471712d76def3ab
size 149
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5db0c6a32f562204a4dc77c8958ef29e016af621f11891ca1795da808a879288
size 133
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c705854e5a7aae10edb4d0cd28d1217a0b6599845031053d502aa05030ce5134
size 135
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39bd3c687b5bc56d6a62728d3dbfa522f3e1e74ec4de752987768f60c947adf5
size 139
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0966303eb702647e3463ffa644611d817741b1ee0d016ecd56c600e9f04ac114
size 138
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17cedbceacd7ae3a97319a3db9606b40d8ef31428828b08bdbfe73f5642b4ae5
size 104
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17cedbceacd7ae3a97319a3db9606b40d8ef31428828b08bdbfe73f5642b4ae5
size 104
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17cedbceacd7ae3a97319a3db9606b40d8ef31428828b08bdbfe73f5642b4ae5
size 104
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17cedbceacd7ae3a97319a3db9606b40d8ef31428828b08bdbfe73f5642b4ae5
size 104
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7b31e2fb43e9c3dbd9f0e32680422a7d8c8e7ff7cd600e446103e45b0df0523
size 766
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:528a22b6955681f34373fc72a2dfdd19e6255e18c73f0804c09b34ea01c1f0a0
size 838
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bbc009bf89ac37957e2ff6532a9328f71e63f5edb45bd918048c8a69f61a72e2
size 756
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd117b3874dec17ebf78f136784eca821f4d916fe34081187c8c28bc2223f545
size 745

Some files were not shown because too many files have changed in this diff Show More