-
Notifications
You must be signed in to change notification settings - Fork 47
initial implementation #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jaymccon
merged 16 commits into
aws-cloudformation:master
from
jaymccon:initial-implementation
Jun 11, 2019
Merged
Changes from 10 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
66e5c6b
initial commit
jaymccon c6cb61b
codegen init handler stub and readme
jaymccon ab44f7c
basic buildspec
jaymccon 51e4ecf
codegen for init/generate + module structure, handler_wrapper
jaymccon f9b2000
Merge branch 'master' into initial-implementation
jaymccon c8d8a79
correct handler entrypoint
jaymccon 01b1d23
put dependencies into subdirectory
jaymccon 6b26221
add test events
jaymccon 7240245
enable cli init test
jaymccon 326a864
fix plugin install
jaymccon bd90ffb
add manifest, sync setup.cfg with java plugin
jaymccon 204a016
support python 3.7 and 3.6
jaymccon 05f63fd
handle language select prompt
jaymccon eb9bbe7
initial implementation
jaymccon 36620a2
make entrypoint/runtime available to parent
jaymccon 54c7fde
drop urllib3 version to 1.24 until botocore requirements are updated
jaymccon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| /.idea | ||
| /venv | ||
| /venv-pc | ||
| .DS_Store | ||
| __pycache__ | ||
| *.pyc | ||
| *.pyo | ||
| /build | ||
| /dist | ||
| *.egg-info | ||
| .cache | ||
| .eggs | ||
| .tox | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| ## AWS Cloudformation Rpdk Python Plugin | ||
| ## AWS CloudFormation Resource Provider Python Plugin | ||
|
|
||
| The CloudFormation Provider Development Toolkit Python Plugin allows you to autogenerate Python code based on an input schema. | ||
|
|
||
| ## License | ||
| The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. | ||
|
|
||
| This library is licensed under the Apache 2.0 License. | ||
| This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation. | ||
jaymccon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| License | ||
| ------- | ||
|
|
||
| This library is licensed under the Apache 2.0 License. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| import logging | ||
|
|
||
| __version__ = "0.1" | ||
|
|
||
| logging.getLogger(__name__).addHandler(logging.NullHandler()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| from cfn_resource import exceptions | ||
jaymccon marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| from cfn_resource.cfn_resource import CfnResource | ||
| from cfn_resource.handler_wrapper import _handler_wrapper | ||
10 changes: 10 additions & 0 deletions
10
python/rpdk/python/cfn_resource/cfn_resource/cfn_resource.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
|
|
||
| class CfnResource(object): | ||
jaymccon marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| FAILED = 'fail' | ||
|
|
||
| def __init__(self): | ||
| pass | ||
|
|
||
| def send_status(self, status, message): | ||
| pass | ||
10 changes: 10 additions & 0 deletions
10
python/rpdk/python/cfn_resource/cfn_resource/exceptions.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| class CfnResourceBaseException(Exception): | ||
| pass | ||
|
|
||
|
|
||
| class CfnResourceInitException(CfnResourceBaseException): | ||
| pass | ||
|
|
||
|
|
||
| class CfnResourceInternalError(CfnResourceBaseException): | ||
| pass |
40 changes: 40 additions & 0 deletions
40
python/rpdk/python/cfn_resource/cfn_resource/handler_wrapper.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import logging | ||
| import json | ||
| import os | ||
| import sys | ||
|
|
||
| DEP_PATH = "/var/task/cfn_resource_dependencies" | ||
| if os.path.isdir(DEP_PATH): | ||
| sys.path.insert(0, DEP_PATH) | ||
|
|
||
| from cfn_resource.exceptions import CfnResourceInitException | ||
| from cfn_resource import CfnResource | ||
|
|
||
| logger = logging.getLogger(__name__) | ||
|
|
||
|
|
||
| def _get_handler(action): | ||
| try: | ||
| import __handler__ | ||
| except ModuleNotFoundError: | ||
| raise CfnResourceInitException("__handler__.py does not exist") | ||
| try: | ||
| return getattr(__handler__, "{}_handler".format(action.lower())) | ||
| except AttributeError: | ||
| raise CfnResourceInitException("__handler__.py does not contain a {}_handler function".format(action)) | ||
|
|
||
|
|
||
| def _handler_wrapper(event, context): | ||
| logger.debug("received event: %s" % json.dumps(event)) | ||
jaymccon marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| cfnr = CfnResource() | ||
| try: | ||
| handler = _get_handler(event["action"]) | ||
| handler(_event_parse(event, context)) | ||
| except Exception as e: | ||
| logger.error(e, exc_info=True) | ||
jaymccon marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| cfnr.send_status(status=CfnResource.FAILED, message=str(e)) | ||
|
|
||
|
|
||
| def _event_parse(event, context): | ||
| # TODO: restructure event | ||
| return event | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| from setuptools import setup | ||
|
|
||
|
|
||
| setup( | ||
| name="cfn_resource", | ||
jaymccon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| version="0.0.1", | ||
| description="cfn_resource enables python based CloudFormation resource types", | ||
| author="Jay McConnell", | ||
| author_email="[email protected]", | ||
| license="Apache2", | ||
| packages=["cfn_resource"], | ||
| install_requires=["boto3>=1.9.108"], | ||
| tests_require=[], | ||
| test_suite="tests", | ||
| classifiers=[ | ||
| 'Programming Language :: Python :: 3.7', | ||
| "License :: OSI Approved :: Apache Software License", | ||
| "Operating System :: OS Independent", | ||
| ], | ||
| ) | ||
Empty file.
31 changes: 31 additions & 0 deletions
31
python/rpdk/python/cfn_resource/tests/data/create.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "CREATE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": { | ||
| "property1": "abc", | ||
| "property2": 123 | ||
| }, | ||
| "systemTags": { | ||
| "aws:cloudformation:stack-id": "SampleStack" | ||
| }, | ||
| "stackTags": { | ||
| "tag1": "abc" | ||
| }, | ||
| "previousStackTags": { | ||
| "tag1": "def" | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
35 changes: 35 additions & 0 deletions
35
python/rpdk/python/cfn_resource/tests/data/create.with-request-context.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "CREATE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": { | ||
| "invocation": 2, | ||
| "callbackContext": { | ||
| "contextPropertyA": "Value" | ||
| }, | ||
| "cloudWatchEventsRuleName": "reinvoke-handler-4754ac8a-623b-45fe-84bc-f5394118a8be", | ||
| "cloudWatchEventsTargetId": "reinvoke-target-4754ac8a-623b-45fe-84bc-f5394118a8be" | ||
| }, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": {}, | ||
| "systemTags": { | ||
| "aws:cloudformation:stack-id": "SampleStack" | ||
| }, | ||
| "stackTags": { | ||
| "tag1": "abc" | ||
| }, | ||
| "previousStackTags": { | ||
| "tag1": "def" | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
22 changes: 22 additions & 0 deletions
22
python/rpdk/python/cfn_resource/tests/data/delete.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "DELETE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": { | ||
| "property1": "abc", | ||
| "property2": 123 | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
26 changes: 26 additions & 0 deletions
26
python/rpdk/python/cfn_resource/tests/data/delete.with-request-context.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "DELETE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": { | ||
| "invocation": 2, | ||
| "callbackContext": { | ||
| "contextPropertyA": "Value" | ||
| }, | ||
| "cloudWatchEventsRuleName": "reinvoke-handler-4754ac8a-623b-45fe-84bc-f5394118a8be", | ||
| "cloudWatchEventsTargetId": "reinvoke-target-4754ac8a-623b-45fe-84bc-f5394118a8be" | ||
| }, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": {} | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
22 changes: 22 additions & 0 deletions
22
python/rpdk/python/cfn_resource/tests/data/list.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "LIST", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": { | ||
| "property1": "abc", | ||
| "property2": 123 | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
30 changes: 30 additions & 0 deletions
30
python/rpdk/python/cfn_resource/tests/data/malformed.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "extraneousField": "notexpected", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "CREATE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "physicalResourceId": "", | ||
| "resourceProperties": {}, | ||
| "systemTags": { | ||
| "aws:cloudformation:stack-id": "SampleStack" | ||
| }, | ||
| "stackTags": { | ||
| "tag1": "abc" | ||
| }, | ||
| "previousStackTags": { | ||
| "tag1": "def" | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
22 changes: 22 additions & 0 deletions
22
python/rpdk/python/cfn_resource/tests/data/read.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "READ", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": { | ||
| "property1": "abc", | ||
| "property2": 123 | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
32 changes: 32 additions & 0 deletions
32
python/rpdk/python/cfn_resource/tests/data/update.request.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| { | ||
| "awsAccountId": "123456789012", | ||
| "bearerToken": "123456", | ||
| "region": "us-east-1", | ||
| "action": "UPDATE", | ||
| "resourceType": "AWS::Test::TestModel", | ||
| "resourceTypeVersion": "1.0", | ||
| "requestContext": {}, | ||
| "requestData": { | ||
| "credentials": { | ||
| "accessKeyId": "IASAYK835GAIFHAHEI23", | ||
| "secretAccessKey": "66iOGPN5LnpZorcLr8Kh25u8AbjHVllv5/poh2O0", | ||
| "sessionToken": "lameHS2vQOknSHWhdFYTxm2eJc1JMn9YBNI4nV4mXue945KPL6DHfW8EsUQT5zwssYEC1NvYP9yD6Y5s5lKR3chflOHPFsIe6eqg" | ||
| }, | ||
| "logicalResourceId": "myBucket", | ||
| "resourceProperties": { | ||
| "property1": "abc", | ||
| "property2": 123 | ||
| }, | ||
| "previousResourceProperties": {}, | ||
| "systemTags": { | ||
| "aws:cloudformation:stack-id": "SampleStack" | ||
| }, | ||
| "stackTags": { | ||
| "tag1": "abc" | ||
| }, | ||
| "previousStackTags": { | ||
| "tag1": "def" | ||
| } | ||
| }, | ||
| "stackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/SampleStack/e722ae60-fe62-11e8-9a0e-0ae8cc519968" | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.