diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 00000000..5e13d6d6
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,20 @@
+version: 2
+updates:
+- package-ecosystem: pip
+ directory: "/"
+ schedule:
+ interval: daily
+ time: "08:00"
+ open-pull-requests-limit: 10
+- package-ecosystem: npm
+ directory: "/website"
+ schedule:
+ interval: daily
+ time: "08:00"
+ open-pull-requests-limit: 10
+- package-ecosystem: docker
+ directory: "/docker/dev"
+ schedule:
+ interval: daily
+ time: "08:00"
+ open-pull-requests-limit: 10
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 175472ea..ef8e42f3 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -18,11 +18,11 @@ jobs:
test:
strategy:
matrix:
- python: ['3.6', '3.7', '3.8']
+ python: ['3.6', '3.7', '3.8', '3.9']
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v1
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Setup Graphviz
diff --git a/README.md b/README.md
index 1ae0f5b9..a3b71b6d 100644
--- a/README.md
+++ b/README.md
@@ -7,21 +7,7 @@


[](https://www.tickgit.com/browse?repo=github.com/mingrammer/diagrams)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -33,6 +19,24 @@ Diagrams lets you draw the cloud system architecture **in Python code**. It was
> NOTE: It does not control any actual cloud resources nor does it generate cloud formation or terraform code. It is just for drawing the cloud system architecture diagrams.
+## Providers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
## Getting Started
It requires **Python 3.6** or higher, check your Python version first.
@@ -70,11 +74,9 @@ To contribute to diagram, check out [contribution guidelines](CONTRIBUTING.md).
## Who uses it?
-[](https://gitpitch.com/)
-
-[GitPitch](https://gitpitch.com/) is the perfect slide deck solution for Tech Conferences, Training, Developer Advocates, and Educators. Diagrams is now available as a dedicated [Cloud Diagram Markdown Widget](https://docs.gitpitch.com/#/diagrams/cloud-architecture) so you can use Diagrams directly on any slide for conferences, meetups, and training.
+[GitPitch](https://gitpitch.github.io/gitpitch) is the perfect slide deck solution for Tech Conferences, Training, Developer Advocates, and Educators. Diagrams is now available as a dedicated [Cloud Diagram Markdown Widget](https://gitpitch.github.io/gitpitch/#/diagrams/cloud-architecture) so you can use Diagrams directly on any slide for conferences, meetups, and training.
-[Cloudiscovery](https://github.com/Cloud-Architects/cloudiscovery) helps you to analyze resources in your cloud (AWS/GCP/Azure/Alibaba/IBM) account. It allows you to create a diagram of analyzed cloud resource map based on this Diagrams library, so you can draw the your existing cloud infrastructure with Cloudicovery.
+[Cloudiscovery](https://github.com/Cloud-Architects/cloudiscovery) helps you to analyze resources in your cloud (AWS/GCP/Azure/Alibaba/IBM) account. It allows you to create a diagram of analyzed cloud resource map based on this Diagrams library, so you can draw your existing cloud infrastructure with Cloudiscovery.
[Airflow Diagrams](https://github.com/feluelle/airflow-diagrams) is an Airflow plugin that aims to easily visualise your Airflow DAGs on service level from providers like AWS, GCP, Azure, etc. via diagrams.
diff --git a/autogen.sh b/autogen.sh
index 6af32ce4..d7605a6b 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,7 +4,7 @@ set -e
app_root_dir="diagrams"
# NOTE: azure icon set is not latest version
-providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale")
+providers=("onprem" "aws" "azure" "gcp" "ibm" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale" )
if ! [ -x "$(command -v round)" ]; then
echo 'round is not installed'
@@ -33,7 +33,7 @@ for pvd in "${providers[@]}"; do
echo "converting the svg to png using inkscape for provider '$pvd'"
python -m scripts.resource svg2png "$pvd"
fi
- if [ "$pvd" == "oci" ]; then
+ if [ "$pvd" == "oci" ] || [ "$pvd" = "ibm" ]; then
echo "converting the svg to png using image magick for provider '$pvd'"
python -m scripts.resource svg2png2 "$pvd"
fi
@@ -52,6 +52,10 @@ for pvd in "${providers[@]}"; do
python -m scripts.generate "$pvd"
done
+# Generate doc for custom module
+echo "generating the docs for custom"
+python -m scripts.generate "custom"
+
# run black
echo "linting the all the diagram modules"
black "$app_root_dir"/**/*.py
diff --git a/config.py b/config.py
index 12fec10c..5fb22160 100644
--- a/config.py
+++ b/config.py
@@ -12,7 +12,7 @@ DIR_RESOURCE = "resources"
DIR_TEMPLATE = "templates"
PROVIDERS = (
- "base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic",
+ "base", "onprem", "aws", "azure", "gcp", "ibm", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic",
"generic", "openstack", "outscale")
#########################
@@ -32,6 +32,7 @@ FILE_PREFIXES = {
"azure": ("Azure-",),
"gcp": ("Cloud-",),
"firebase": ("Cloud-",),
+ "ibm": (),
"k8s": (),
"alibabacloud": (),
"oci": ("OCI-icon-",),
@@ -70,6 +71,7 @@ UPPER_WORDS = {
"outscale": ("osc",),
"openstack": ("rpm", "loci", "nfv", "ec2api"),
"pve": ("pve"),
+ "ibm": ("ibm"),
}
TITLE_WORDS = {
@@ -85,11 +87,17 @@ TITLE_WORDS = {
"openstack": {
"openstack": "OpenStack"
},
+ "ibm": {
+ "ibm": "IBMCloud"
+ },
}
# TODO: check if the classname exists
ALIASES = {
"onprem": {
+ "analytics": {
+ "Powerbi": "PowerBI"
+ },
"ci": {
"Circleci": "CircleCI",
"Concourseci": "ConcourseCI",
@@ -160,6 +168,7 @@ ALIASES = {
},
"compute": {
"ApplicationAutoScaling": "AutoScaling",
+ "EC2Ami": "AMI",
"EC2ContainerRegistry": "ECR",
"ElasticBeanstalk": "EB",
"ElasticContainerService": "ECS",
@@ -212,6 +221,9 @@ ALIASES = {
"network": {
"CloudFront": "CF",
"ElasticLoadBalancing": "ELB",
+ "ElbApplicationLoadBalancer": "ALB",
+ "ElbClassicLoadBalancer": "CLB",
+ "ElbNetworkLoadBalancer": "NLB",
"GlobalAccelerator": "GAX",
},
"security": {
@@ -239,6 +251,7 @@ ALIASES = {
"compute": {
"ContainerRegistries": "ACR",
"KubernetesServices": "AKS",
+ "VMScaleSet": "VMSS"
},
},
"gcp": {
@@ -385,13 +398,16 @@ ALIASES = {
"OKEWhite": "ContainerEngineWhite",
},
"database": {
- "AutonomousDatabase": "ADB",
- "AutonomousDatabaseWhite": "ADBWhite",
- "Databaseservice": "DBService",
- "DatabaseserviceWhite": "DBServiceWhite",
+ "Autonomous": "ADB",
+ "AutonomousWhite": "ADBWhite",
+ "DatabaseService": "DBService",
+ "DatabaseServiceWhite": "DBServiceWhite",
}
},
"programming": {
+ "framework": {
+ "Fastapi": "FastAPI"
+ },
"language": {
"Javascript": "JavaScript",
"Nodejs": "NodeJS",
@@ -402,6 +418,7 @@ ALIASES = {
"saas": {
"logging": {
"Datadog": "DataDog",
+ "Newrelic": "NewRelic"
}
},
"elastic": {
@@ -412,6 +429,7 @@ ALIASES = {
"outscale": {
"Osc": "OSC",
},
+ "ibm": {},
"generic": {},
"openstack": {
"user": {
diff --git a/diagrams/__init__.py b/diagrams/__init__.py
index a9e0f0c1..6968bc4a 100644
--- a/diagrams/__init__.py
+++ b/diagrams/__init__.py
@@ -104,7 +104,7 @@ class Diagram:
"""
self.name = name
if not name and not filename:
- filename = "diagrams_image"
+ filename = "diagrams_image"
elif not filename:
filename = "_".join(self.name.split()).lower()
self.filename = filename
@@ -211,7 +211,10 @@ class Cluster:
# Cluster direction does not work now. Graphviz couldn't render
# correctly for a subgraph that has a different rank direction.
def __init__(
- self, label: str = "cluster", direction: str = "LR", graph_attr: dict = {},
+ self,
+ label: str = "cluster",
+ direction: str = "LR",
+ graph_attr: dict = {},
):
"""Cluster represents a cluster context.
@@ -403,8 +406,8 @@ class Node:
"""
if not isinstance(node, Node):
ValueError(f"{node} is not a valid Node")
- if not isinstance(node, Edge):
- ValueError(f"{node} is not a valid Edge")
+ if not isinstance(edge, Edge):
+ ValueError(f"{edge} is not a valid Edge")
# An edge must be added on the global diagrams, not a cluster.
self._diagram.connect(self, node, edge)
return node
diff --git a/diagrams/aws/analytics.py b/diagrams/aws/analytics.py
index 068c9232..d37377d9 100644
--- a/diagrams/aws/analytics.py
+++ b/diagrams/aws/analytics.py
@@ -24,6 +24,10 @@ class Cloudsearch(_Analytics):
_icon = "cloudsearch.png"
+class DataLakeResource(_Analytics):
+ _icon = "data-lake-resource.png"
+
+
class DataPipeline(_Analytics):
_icon = "data-pipeline.png"
@@ -36,6 +40,22 @@ class EMRCluster(_Analytics):
_icon = "emr-cluster.png"
+class EMREngineMaprM3(_Analytics):
+ _icon = "emr-engine-mapr-m3.png"
+
+
+class EMREngineMaprM5(_Analytics):
+ _icon = "emr-engine-mapr-m5.png"
+
+
+class EMREngineMaprM7(_Analytics):
+ _icon = "emr-engine-mapr-m7.png"
+
+
+class EMREngine(_Analytics):
+ _icon = "emr-engine.png"
+
+
class EMRHdfsCluster(_Analytics):
_icon = "emr-hdfs-cluster.png"
diff --git a/diagrams/aws/ar.py b/diagrams/aws/ar.py
index d5a42b9b..4cd147d7 100644
--- a/diagrams/aws/ar.py
+++ b/diagrams/aws/ar.py
@@ -8,6 +8,10 @@ class _Ar(_AWS):
_icon_dir = "resources/aws/ar"
+class ArVr(_Ar):
+ _icon = "ar-vr.png"
+
+
class Sumerian(_Ar):
_icon = "sumerian.png"
diff --git a/diagrams/aws/blockchain.py b/diagrams/aws/blockchain.py
index 90884778..12efebea 100644
--- a/diagrams/aws/blockchain.py
+++ b/diagrams/aws/blockchain.py
@@ -8,6 +8,14 @@ class _Blockchain(_AWS):
_icon_dir = "resources/aws/blockchain"
+class BlockchainResource(_Blockchain):
+ _icon = "blockchain-resource.png"
+
+
+class Blockchain(_Blockchain):
+ _icon = "blockchain.png"
+
+
class ManagedBlockchain(_Blockchain):
_icon = "managed-blockchain.png"
diff --git a/diagrams/aws/business.py b/diagrams/aws/business.py
index 7063abc5..87f8378b 100644
--- a/diagrams/aws/business.py
+++ b/diagrams/aws/business.py
@@ -12,6 +12,10 @@ class AlexaForBusiness(_Business):
_icon = "alexa-for-business.png"
+class BusinessApplications(_Business):
+ _icon = "business-applications.png"
+
+
class Chime(_Business):
_icon = "chime.png"
diff --git a/diagrams/aws/compute.py b/diagrams/aws/compute.py
index 923a1252..f63c590f 100644
--- a/diagrams/aws/compute.py
+++ b/diagrams/aws/compute.py
@@ -16,22 +16,82 @@ class Batch(_Compute):
_icon = "batch.png"
+class ComputeOptimizer(_Compute):
+ _icon = "compute-optimizer.png"
+
+
class Compute(_Compute):
_icon = "compute.png"
+class EC2Ami(_Compute):
+ _icon = "ec2-ami.png"
+
+
+class EC2AutoScaling(_Compute):
+ _icon = "ec2-auto-scaling.png"
+
+
+class EC2ContainerRegistryImage(_Compute):
+ _icon = "ec2-container-registry-image.png"
+
+
+class EC2ContainerRegistryRegistry(_Compute):
+ _icon = "ec2-container-registry-registry.png"
+
+
class EC2ContainerRegistry(_Compute):
_icon = "ec2-container-registry.png"
+class EC2ElasticIpAddress(_Compute):
+ _icon = "ec2-elastic-ip-address.png"
+
+
+class EC2ImageBuilder(_Compute):
+ _icon = "ec2-image-builder.png"
+
+
+class EC2Instance(_Compute):
+ _icon = "ec2-instance.png"
+
+
+class EC2Instances(_Compute):
+ _icon = "ec2-instances.png"
+
+
+class EC2Rescue(_Compute):
+ _icon = "ec2-rescue.png"
+
+
+class EC2SpotInstance(_Compute):
+ _icon = "ec2-spot-instance.png"
+
+
class EC2(_Compute):
_icon = "ec2.png"
+class ElasticBeanstalkApplication(_Compute):
+ _icon = "elastic-beanstalk-application.png"
+
+
+class ElasticBeanstalkDeployment(_Compute):
+ _icon = "elastic-beanstalk-deployment.png"
+
+
class ElasticBeanstalk(_Compute):
_icon = "elastic-beanstalk.png"
+class ElasticContainerServiceContainer(_Compute):
+ _icon = "elastic-container-service-container.png"
+
+
+class ElasticContainerServiceService(_Compute):
+ _icon = "elastic-container-service-service.png"
+
+
class ElasticContainerService(_Compute):
_icon = "elastic-container-service.png"
@@ -44,6 +104,10 @@ class Fargate(_Compute):
_icon = "fargate.png"
+class LambdaFunction(_Compute):
+ _icon = "lambda-function.png"
+
+
class Lambda(_Compute):
_icon = "lambda.png"
@@ -52,6 +116,10 @@ class Lightsail(_Compute):
_icon = "lightsail.png"
+class LocalZones(_Compute):
+ _icon = "local-zones.png"
+
+
class Outposts(_Compute):
_icon = "outposts.png"
@@ -92,9 +160,14 @@ class VmwareCloudOnAWS(_Compute):
_icon = "vmware-cloud-on-aws.png"
+class Wavelength(_Compute):
+ _icon = "wavelength.png"
+
+
# Aliases
AutoScaling = ApplicationAutoScaling
+AMI = EC2Ami
ECR = EC2ContainerRegistry
EB = ElasticBeanstalk
ECS = ElasticContainerService
diff --git a/diagrams/aws/cost.py b/diagrams/aws/cost.py
index ced6de0f..ba601eb7 100644
--- a/diagrams/aws/cost.py
+++ b/diagrams/aws/cost.py
@@ -20,6 +20,10 @@ class CostExplorer(_Cost):
_icon = "cost-explorer.png"
+class CostManagement(_Cost):
+ _icon = "cost-management.png"
+
+
class ReservedInstanceReporting(_Cost):
_icon = "reserved-instance-reporting.png"
diff --git a/diagrams/aws/database.py b/diagrams/aws/database.py
index 145fcb5d..38c84f11 100644
--- a/diagrams/aws/database.py
+++ b/diagrams/aws/database.py
@@ -8,10 +8,18 @@ class _Database(_AWS):
_icon_dir = "resources/aws/database"
+class AuroraInstance(_Database):
+ _icon = "aurora-instance.png"
+
+
class Aurora(_Database):
_icon = "aurora.png"
+class DatabaseMigrationServiceDatabaseMigrationWorkflow(_Database):
+ _icon = "database-migration-service-database-migration-workflow.png"
+
+
class DatabaseMigrationService(_Database):
_icon = "database-migration-service.png"
@@ -24,6 +32,14 @@ class DocumentdbMongodbCompatibility(_Database):
_icon = "documentdb-mongodb-compatibility.png"
+class DynamodbAttribute(_Database):
+ _icon = "dynamodb-attribute.png"
+
+
+class DynamodbAttributes(_Database):
+ _icon = "dynamodb-attributes.png"
+
+
class DynamodbDax(_Database):
_icon = "dynamodb-dax.png"
@@ -32,6 +48,14 @@ class DynamodbGlobalSecondaryIndex(_Database):
_icon = "dynamodb-global-secondary-index.png"
+class DynamodbItem(_Database):
+ _icon = "dynamodb-item.png"
+
+
+class DynamodbItems(_Database):
+ _icon = "dynamodb-items.png"
+
+
class DynamodbTable(_Database):
_icon = "dynamodb-table.png"
@@ -40,10 +64,26 @@ class Dynamodb(_Database):
_icon = "dynamodb.png"
+class ElasticacheCacheNode(_Database):
+ _icon = "elasticache-cache-node.png"
+
+
+class ElasticacheForMemcached(_Database):
+ _icon = "elasticache-for-memcached.png"
+
+
+class ElasticacheForRedis(_Database):
+ _icon = "elasticache-for-redis.png"
+
+
class Elasticache(_Database):
_icon = "elasticache.png"
+class KeyspacesManagedApacheCassandraService(_Database):
+ _icon = "keyspaces-managed-apache-cassandra-service.png"
+
+
class Neptune(_Database):
_icon = "neptune.png"
@@ -52,14 +92,46 @@ class QuantumLedgerDatabaseQldb(_Database):
_icon = "quantum-ledger-database-qldb.png"
+class RDSInstance(_Database):
+ _icon = "rds-instance.png"
+
+
+class RDSMariadbInstance(_Database):
+ _icon = "rds-mariadb-instance.png"
+
+
+class RDSMysqlInstance(_Database):
+ _icon = "rds-mysql-instance.png"
+
+
class RDSOnVmware(_Database):
_icon = "rds-on-vmware.png"
+class RDSOracleInstance(_Database):
+ _icon = "rds-oracle-instance.png"
+
+
+class RDSPostgresqlInstance(_Database):
+ _icon = "rds-postgresql-instance.png"
+
+
+class RDSSqlServerInstance(_Database):
+ _icon = "rds-sql-server-instance.png"
+
+
class RDS(_Database):
_icon = "rds.png"
+class RedshiftDenseComputeNode(_Database):
+ _icon = "redshift-dense-compute-node.png"
+
+
+class RedshiftDenseStorageNode(_Database):
+ _icon = "redshift-dense-storage-node.png"
+
+
class Redshift(_Database):
_icon = "redshift.png"
diff --git a/diagrams/aws/devtools.py b/diagrams/aws/devtools.py
index 650c16f9..0f674ddb 100644
--- a/diagrams/aws/devtools.py
+++ b/diagrams/aws/devtools.py
@@ -12,6 +12,10 @@ class CloudDevelopmentKit(_Devtools):
_icon = "cloud-development-kit.png"
+class Cloud9Resource(_Devtools):
+ _icon = "cloud9-resource.png"
+
+
class Cloud9(_Devtools):
_icon = "cloud9.png"
diff --git a/diagrams/aws/enablement.py b/diagrams/aws/enablement.py
index ace1f0df..ec4afceb 100644
--- a/diagrams/aws/enablement.py
+++ b/diagrams/aws/enablement.py
@@ -8,6 +8,10 @@ class _Enablement(_AWS):
_icon_dir = "resources/aws/enablement"
+class CustomerEnablement(_Enablement):
+ _icon = "customer-enablement.png"
+
+
class Iq(_Enablement):
_icon = "iq.png"
diff --git a/diagrams/aws/enduser.py b/diagrams/aws/enduser.py
index c55364c2..7cea8d36 100644
--- a/diagrams/aws/enduser.py
+++ b/diagrams/aws/enduser.py
@@ -12,6 +12,10 @@ class Appstream20(_Enduser):
_icon = "appstream-2-0.png"
+class DesktopAndAppStreaming(_Enduser):
+ _icon = "desktop-and-app-streaming.png"
+
+
class Workdocs(_Enduser):
_icon = "workdocs.png"
diff --git a/diagrams/aws/engagement.py b/diagrams/aws/engagement.py
index 3049b849..ce965b33 100644
--- a/diagrams/aws/engagement.py
+++ b/diagrams/aws/engagement.py
@@ -12,10 +12,18 @@ class Connect(_Engagement):
_icon = "connect.png"
+class CustomerEngagement(_Engagement):
+ _icon = "customer-engagement.png"
+
+
class Pinpoint(_Engagement):
_icon = "pinpoint.png"
+class SimpleEmailServiceSesEmail(_Engagement):
+ _icon = "simple-email-service-ses-email.png"
+
+
class SimpleEmailServiceSes(_Engagement):
_icon = "simple-email-service-ses.png"
diff --git a/diagrams/aws/game.py b/diagrams/aws/game.py
index dcd2e0f7..446904f2 100644
--- a/diagrams/aws/game.py
+++ b/diagrams/aws/game.py
@@ -8,6 +8,10 @@ class _Game(_AWS):
_icon_dir = "resources/aws/game"
+class GameTech(_Game):
+ _icon = "game-tech.png"
+
+
class Gamelift(_Game):
_icon = "gamelift.png"
diff --git a/diagrams/aws/general.py b/diagrams/aws/general.py
index 80284ba6..dd6d4bea 100644
--- a/diagrams/aws/general.py
+++ b/diagrams/aws/general.py
@@ -8,10 +8,18 @@ class _General(_AWS):
_icon_dir = "resources/aws/general"
+class Client(_General):
+ _icon = "client.png"
+
+
class Disk(_General):
_icon = "disk.png"
+class Forums(_General):
+ _icon = "forums.png"
+
+
class General(_General):
_icon = "general.png"
@@ -36,12 +44,56 @@ class GenericSDK(_General):
_icon = "generic-sdk.png"
+class InternetAlt1(_General):
+ _icon = "internet-alt1.png"
+
+
+class InternetAlt2(_General):
+ _icon = "internet-alt2.png"
+
+
+class InternetGateway(_General):
+ _icon = "internet-gateway.png"
+
+
class Marketplace(_General):
_icon = "marketplace.png"
-class TradicionalServer(_General):
- _icon = "tradicional-server.png"
+class MobileClient(_General):
+ _icon = "mobile-client.png"
+
+
+class Multimedia(_General):
+ _icon = "multimedia.png"
+
+
+class OfficeBuilding(_General):
+ _icon = "office-building.png"
+
+
+class SamlToken(_General):
+ _icon = "saml-token.png"
+
+
+class SDK(_General):
+ _icon = "sdk.png"
+
+
+class SslPadlock(_General):
+ _icon = "ssl-padlock.png"
+
+
+class TapeStorage(_General):
+ _icon = "tape-storage.png"
+
+
+class Toolkit(_General):
+ _icon = "toolkit.png"
+
+
+class TraditionalServer(_General):
+ _icon = "traditional-server.png"
class User(_General):
diff --git a/diagrams/aws/integration.py b/diagrams/aws/integration.py
index 24b7241e..cfe23d48 100644
--- a/diagrams/aws/integration.py
+++ b/diagrams/aws/integration.py
@@ -20,18 +20,58 @@ class ConsoleMobileApplication(_Integration):
_icon = "console-mobile-application.png"
+class EventResource(_Integration):
+ _icon = "event-resource.png"
+
+
+class EventbridgeCustomEventBusResource(_Integration):
+ _icon = "eventbridge-custom-event-bus-resource.png"
+
+
+class EventbridgeDefaultEventBusResource(_Integration):
+ _icon = "eventbridge-default-event-bus-resource.png"
+
+
+class EventbridgeSaasPartnerEventBusResource(_Integration):
+ _icon = "eventbridge-saas-partner-event-bus-resource.png"
+
+
class Eventbridge(_Integration):
_icon = "eventbridge.png"
+class ExpressWorkflows(_Integration):
+ _icon = "express-workflows.png"
+
+
class MQ(_Integration):
_icon = "mq.png"
+class SimpleNotificationServiceSnsEmailNotification(_Integration):
+ _icon = "simple-notification-service-sns-email-notification.png"
+
+
+class SimpleNotificationServiceSnsHttpNotification(_Integration):
+ _icon = "simple-notification-service-sns-http-notification.png"
+
+
+class SimpleNotificationServiceSnsTopic(_Integration):
+ _icon = "simple-notification-service-sns-topic.png"
+
+
class SimpleNotificationServiceSns(_Integration):
_icon = "simple-notification-service-sns.png"
+class SimpleQueueServiceSqsMessage(_Integration):
+ _icon = "simple-queue-service-sqs-message.png"
+
+
+class SimpleQueueServiceSqsQueue(_Integration):
+ _icon = "simple-queue-service-sqs-queue.png"
+
+
class SimpleQueueServiceSqs(_Integration):
_icon = "simple-queue-service-sqs.png"
diff --git a/diagrams/aws/iot.py b/diagrams/aws/iot.py
index e005a3b4..94667ef8 100644
--- a/diagrams/aws/iot.py
+++ b/diagrams/aws/iot.py
@@ -24,18 +24,58 @@ class IotAction(_Iot):
_icon = "iot-action.png"
+class IotActuator(_Iot):
+ _icon = "iot-actuator.png"
+
+
class IotAlexaEcho(_Iot):
_icon = "iot-alexa-echo.png"
+class IotAlexaEnabledDevice(_Iot):
+ _icon = "iot-alexa-enabled-device.png"
+
+
class IotAlexaSkill(_Iot):
_icon = "iot-alexa-skill.png"
+class IotAlexaVoiceService(_Iot):
+ _icon = "iot-alexa-voice-service.png"
+
+
+class IotAnalyticsChannel(_Iot):
+ _icon = "iot-analytics-channel.png"
+
+
+class IotAnalyticsDataSet(_Iot):
+ _icon = "iot-analytics-data-set.png"
+
+
+class IotAnalyticsDataStore(_Iot):
+ _icon = "iot-analytics-data-store.png"
+
+
+class IotAnalyticsNotebook(_Iot):
+ _icon = "iot-analytics-notebook.png"
+
+
+class IotAnalyticsPipeline(_Iot):
+ _icon = "iot-analytics-pipeline.png"
+
+
class IotAnalytics(_Iot):
_icon = "iot-analytics.png"
+class IotBank(_Iot):
+ _icon = "iot-bank.png"
+
+
+class IotBicycle(_Iot):
+ _icon = "iot-bicycle.png"
+
+
class IotButton(_Iot):
_icon = "iot-button.png"
@@ -44,26 +84,66 @@ class IotCamera(_Iot):
_icon = "iot-camera.png"
+class IotCar(_Iot):
+ _icon = "iot-car.png"
+
+
+class IotCart(_Iot):
+ _icon = "iot-cart.png"
+
+
class IotCertificate(_Iot):
_icon = "iot-certificate.png"
+class IotCoffeePot(_Iot):
+ _icon = "iot-coffee-pot.png"
+
+
class IotCore(_Iot):
_icon = "iot-core.png"
+class IotDesiredState(_Iot):
+ _icon = "iot-desired-state.png"
+
+
class IotDeviceDefender(_Iot):
_icon = "iot-device-defender.png"
+class IotDeviceGateway(_Iot):
+ _icon = "iot-device-gateway.png"
+
+
class IotDeviceManagement(_Iot):
_icon = "iot-device-management.png"
+class IotDoorLock(_Iot):
+ _icon = "iot-door-lock.png"
+
+
class IotEvents(_Iot):
_icon = "iot-events.png"
+class IotFactory(_Iot):
+ _icon = "iot-factory.png"
+
+
+class IotFireTvStick(_Iot):
+ _icon = "iot-fire-tv-stick.png"
+
+
+class IotFireTv(_Iot):
+ _icon = "iot-fire-tv.png"
+
+
+class IotGeneric(_Iot):
+ _icon = "iot-generic.png"
+
+
class IotGreengrassConnector(_Iot):
_icon = "iot-greengrass-connector.png"
@@ -76,6 +156,10 @@ class IotHardwareBoard(_Iot):
_icon = "iot-hardware-board.png"
+class IotHouse(_Iot):
+ _icon = "iot-house.png"
+
+
class IotHttp(_Iot):
_icon = "iot-http.png"
@@ -92,10 +176,22 @@ class IotLambda(_Iot):
_icon = "iot-lambda.png"
+class IotLightbulb(_Iot):
+ _icon = "iot-lightbulb.png"
+
+
+class IotMedicalEmergency(_Iot):
+ _icon = "iot-medical-emergency.png"
+
+
class IotMqtt(_Iot):
_icon = "iot-mqtt.png"
+class IotOverTheAirUpdate(_Iot):
+ _icon = "iot-over-the-air-update.png"
+
+
class IotPolicyEmergency(_Iot):
_icon = "iot-policy-emergency.png"
@@ -104,18 +200,38 @@ class IotPolicy(_Iot):
_icon = "iot-policy.png"
+class IotReportedState(_Iot):
+ _icon = "iot-reported-state.png"
+
+
class IotRule(_Iot):
_icon = "iot-rule.png"
+class IotSensor(_Iot):
+ _icon = "iot-sensor.png"
+
+
+class IotServo(_Iot):
+ _icon = "iot-servo.png"
+
+
class IotShadow(_Iot):
_icon = "iot-shadow.png"
+class IotSimulator(_Iot):
+ _icon = "iot-simulator.png"
+
+
class IotSitewise(_Iot):
_icon = "iot-sitewise.png"
+class IotThermostat(_Iot):
+ _icon = "iot-thermostat.png"
+
+
class IotThingsGraph(_Iot):
_icon = "iot-things-graph.png"
@@ -124,6 +240,18 @@ class IotTopic(_Iot):
_icon = "iot-topic.png"
+class IotTravel(_Iot):
+ _icon = "iot-travel.png"
+
+
+class IotUtility(_Iot):
+ _icon = "iot-utility.png"
+
+
+class IotWindfarm(_Iot):
+ _icon = "iot-windfarm.png"
+
+
# Aliases
FreeRTOS = Freertos
diff --git a/diagrams/aws/management.py b/diagrams/aws/management.py
index 8fa4451b..653791b2 100644
--- a/diagrams/aws/management.py
+++ b/diagrams/aws/management.py
@@ -12,6 +12,18 @@ class AutoScaling(_Management):
_icon = "auto-scaling.png"
+class CloudformationChangeSet(_Management):
+ _icon = "cloudformation-change-set.png"
+
+
+class CloudformationStack(_Management):
+ _icon = "cloudformation-stack.png"
+
+
+class CloudformationTemplate(_Management):
+ _icon = "cloudformation-template.png"
+
+
class Cloudformation(_Management):
_icon = "cloudformation.png"
@@ -20,6 +32,22 @@ class Cloudtrail(_Management):
_icon = "cloudtrail.png"
+class CloudwatchAlarm(_Management):
+ _icon = "cloudwatch-alarm.png"
+
+
+class CloudwatchEventEventBased(_Management):
+ _icon = "cloudwatch-event-event-based.png"
+
+
+class CloudwatchEventTimeBased(_Management):
+ _icon = "cloudwatch-event-time-based.png"
+
+
+class CloudwatchRule(_Management):
+ _icon = "cloudwatch-rule.png"
+
+
class Cloudwatch(_Management):
_icon = "cloudwatch.png"
@@ -48,30 +76,130 @@ class ManagedServices(_Management):
_icon = "managed-services.png"
+class ManagementAndGovernance(_Management):
+ _icon = "management-and-governance.png"
+
+
class ManagementConsole(_Management):
_icon = "management-console.png"
+class OpsworksApps(_Management):
+ _icon = "opsworks-apps.png"
+
+
+class OpsworksDeployments(_Management):
+ _icon = "opsworks-deployments.png"
+
+
+class OpsworksInstances(_Management):
+ _icon = "opsworks-instances.png"
+
+
+class OpsworksLayers(_Management):
+ _icon = "opsworks-layers.png"
+
+
+class OpsworksMonitoring(_Management):
+ _icon = "opsworks-monitoring.png"
+
+
+class OpsworksPermissions(_Management):
+ _icon = "opsworks-permissions.png"
+
+
+class OpsworksResources(_Management):
+ _icon = "opsworks-resources.png"
+
+
+class OpsworksStack(_Management):
+ _icon = "opsworks-stack.png"
+
+
class Opsworks(_Management):
_icon = "opsworks.png"
+class OrganizationsAccount(_Management):
+ _icon = "organizations-account.png"
+
+
+class OrganizationsOrganizationalUnit(_Management):
+ _icon = "organizations-organizational-unit.png"
+
+
class Organizations(_Management):
_icon = "organizations.png"
+class PersonalHealthDashboard(_Management):
+ _icon = "personal-health-dashboard.png"
+
+
class ServiceCatalog(_Management):
_icon = "service-catalog.png"
+class SystemsManagerAutomation(_Management):
+ _icon = "systems-manager-automation.png"
+
+
+class SystemsManagerDocuments(_Management):
+ _icon = "systems-manager-documents.png"
+
+
+class SystemsManagerInventory(_Management):
+ _icon = "systems-manager-inventory.png"
+
+
+class SystemsManagerMaintenanceWindows(_Management):
+ _icon = "systems-manager-maintenance-windows.png"
+
+
+class SystemsManagerOpscenter(_Management):
+ _icon = "systems-manager-opscenter.png"
+
+
class SystemsManagerParameterStore(_Management):
_icon = "systems-manager-parameter-store.png"
+class SystemsManagerPatchManager(_Management):
+ _icon = "systems-manager-patch-manager.png"
+
+
+class SystemsManagerRunCommand(_Management):
+ _icon = "systems-manager-run-command.png"
+
+
+class SystemsManagerStateManager(_Management):
+ _icon = "systems-manager-state-manager.png"
+
+
class SystemsManager(_Management):
_icon = "systems-manager.png"
+class TrustedAdvisorChecklistCost(_Management):
+ _icon = "trusted-advisor-checklist-cost.png"
+
+
+class TrustedAdvisorChecklistFaultTolerant(_Management):
+ _icon = "trusted-advisor-checklist-fault-tolerant.png"
+
+
+class TrustedAdvisorChecklistPerformance(_Management):
+ _icon = "trusted-advisor-checklist-performance.png"
+
+
+class TrustedAdvisorChecklistSecurity(_Management):
+ _icon = "trusted-advisor-checklist-security.png"
+
+
+class TrustedAdvisorChecklist(_Management):
+ _icon = "trusted-advisor-checklist.png"
+
+
class TrustedAdvisor(_Management):
_icon = "trusted-advisor.png"
diff --git a/diagrams/aws/media.py b/diagrams/aws/media.py
index a61b379a..52580d57 100644
--- a/diagrams/aws/media.py
+++ b/diagrams/aws/media.py
@@ -52,4 +52,12 @@ class ElementalServer(_Media):
_icon = "elemental-server.png"
+class KinesisVideoStreams(_Media):
+ _icon = "kinesis-video-streams.png"
+
+
+class MediaServices(_Media):
+ _icon = "media-services.png"
+
+
# Aliases
diff --git a/diagrams/aws/migration.py b/diagrams/aws/migration.py
index d7a8bdbc..69d029a8 100644
--- a/diagrams/aws/migration.py
+++ b/diagrams/aws/migration.py
@@ -20,6 +20,10 @@ class DatabaseMigrationService(_Migration):
_icon = "database-migration-service.png"
+class DatasyncAgent(_Migration):
+ _icon = "datasync-agent.png"
+
+
class Datasync(_Migration):
_icon = "datasync.png"
diff --git a/diagrams/aws/ml.py b/diagrams/aws/ml.py
index ac3d5d7d..beb454bd 100644
--- a/diagrams/aws/ml.py
+++ b/diagrams/aws/ml.py
@@ -12,6 +12,10 @@ class ApacheMxnetOnAWS(_ML):
_icon = "apache-mxnet-on-aws.png"
+class AugmentedAi(_ML):
+ _icon = "augmented-ai.png"
+
+
class Comprehend(_ML):
_icon = "comprehend.png"
@@ -24,6 +28,10 @@ class DeepLearningContainers(_ML):
_icon = "deep-learning-containers.png"
+class Deepcomposer(_ML):
+ _icon = "deepcomposer.png"
+
+
class Deeplens(_ML):
_icon = "deeplens.png"
@@ -40,6 +48,14 @@ class Forecast(_ML):
_icon = "forecast.png"
+class FraudDetector(_ML):
+ _icon = "fraud-detector.png"
+
+
+class Kendra(_ML):
+ _icon = "kendra.png"
+
+
class Lex(_ML):
_icon = "lex.png"
@@ -56,6 +72,14 @@ class Polly(_ML):
_icon = "polly.png"
+class RekognitionImage(_ML):
+ _icon = "rekognition-image.png"
+
+
+class RekognitionVideo(_ML):
+ _icon = "rekognition-video.png"
+
+
class Rekognition(_ML):
_icon = "rekognition.png"
diff --git a/diagrams/aws/mobile.py b/diagrams/aws/mobile.py
index 315899e5..68973033 100644
--- a/diagrams/aws/mobile.py
+++ b/diagrams/aws/mobile.py
@@ -28,6 +28,10 @@ class DeviceFarm(_Mobile):
_icon = "device-farm.png"
+class Mobile(_Mobile):
+ _icon = "mobile.png"
+
+
class Pinpoint(_Mobile):
_icon = "pinpoint.png"
diff --git a/diagrams/aws/network.py b/diagrams/aws/network.py
index 23f952b0..aa389f99 100644
--- a/diagrams/aws/network.py
+++ b/diagrams/aws/network.py
@@ -8,6 +8,10 @@ class _Network(_AWS):
_icon_dir = "resources/aws/network"
+class APIGatewayEndpoint(_Network):
+ _icon = "api-gateway-endpoint.png"
+
+
class APIGateway(_Network):
_icon = "api-gateway.png"
@@ -24,6 +28,18 @@ class CloudMap(_Network):
_icon = "cloud-map.png"
+class CloudFrontDownloadDistribution(_Network):
+ _icon = "cloudfront-download-distribution.png"
+
+
+class CloudFrontEdgeLocation(_Network):
+ _icon = "cloudfront-edge-location.png"
+
+
+class CloudFrontStreamingDistribution(_Network):
+ _icon = "cloudfront-streaming-distribution.png"
+
+
class CloudFront(_Network):
_icon = "cloudfront.png"
@@ -36,6 +52,18 @@ class ElasticLoadBalancing(_Network):
_icon = "elastic-load-balancing.png"
+class ElbApplicationLoadBalancer(_Network):
+ _icon = "elb-application-load-balancer.png"
+
+
+class ElbClassicLoadBalancer(_Network):
+ _icon = "elb-classic-load-balancer.png"
+
+
+class ElbNetworkLoadBalancer(_Network):
+ _icon = "elb-network-load-balancer.png"
+
+
class Endpoint(_Network):
_icon = "endpoint.png"
@@ -72,6 +100,10 @@ class PublicSubnet(_Network):
_icon = "public-subnet.png"
+class Route53HostedZone(_Network):
+ _icon = "route-53-hosted-zone.png"
+
+
class Route53(_Network):
_icon = "route-53.png"
@@ -88,6 +120,22 @@ class TransitGateway(_Network):
_icon = "transit-gateway.png"
+class VPCCustomerGateway(_Network):
+ _icon = "vpc-customer-gateway.png"
+
+
+class VPCElasticNetworkAdapter(_Network):
+ _icon = "vpc-elastic-network-adapter.png"
+
+
+class VPCElasticNetworkInterface(_Network):
+ _icon = "vpc-elastic-network-interface.png"
+
+
+class VPCFlowLogs(_Network):
+ _icon = "vpc-flow-logs.png"
+
+
class VPCPeering(_Network):
_icon = "vpc-peering.png"
@@ -96,12 +144,27 @@ class VPCRouter(_Network):
_icon = "vpc-router.png"
+class VPCTrafficMirroring(_Network):
+ _icon = "vpc-traffic-mirroring.png"
+
+
class VPC(_Network):
_icon = "vpc.png"
+class VpnConnection(_Network):
+ _icon = "vpn-connection.png"
+
+
+class VpnGateway(_Network):
+ _icon = "vpn-gateway.png"
+
+
# Aliases
CF = CloudFront
ELB = ElasticLoadBalancing
+ALB = ElbApplicationLoadBalancer
+CLB = ElbClassicLoadBalancer
+NLB = ElbNetworkLoadBalancer
GAX = GlobalAccelerator
diff --git a/diagrams/aws/quantum.py b/diagrams/aws/quantum.py
index 7135bcbe..9a0b184a 100644
--- a/diagrams/aws/quantum.py
+++ b/diagrams/aws/quantum.py
@@ -12,4 +12,8 @@ class Braket(_Quantum):
_icon = "braket.png"
+class QuantumTechnologies(_Quantum):
+ _icon = "quantum-technologies.png"
+
+
# Aliases
diff --git a/diagrams/aws/robotics.py b/diagrams/aws/robotics.py
index d2111747..3d53a2ab 100644
--- a/diagrams/aws/robotics.py
+++ b/diagrams/aws/robotics.py
@@ -8,6 +8,18 @@ class _Robotics(_AWS):
_icon_dir = "resources/aws/robotics"
+class RobomakerCloudExtensionRos(_Robotics):
+ _icon = "robomaker-cloud-extension-ros.png"
+
+
+class RobomakerDevelopmentEnvironment(_Robotics):
+ _icon = "robomaker-development-environment.png"
+
+
+class RobomakerFleetManagement(_Robotics):
+ _icon = "robomaker-fleet-management.png"
+
+
class RobomakerSimulator(_Robotics):
_icon = "robomaker-simulator.png"
diff --git a/diagrams/aws/satellite.py b/diagrams/aws/satellite.py
index bf44411e..16c7472a 100644
--- a/diagrams/aws/satellite.py
+++ b/diagrams/aws/satellite.py
@@ -12,4 +12,8 @@ class GroundStation(_Satellite):
_icon = "ground-station.png"
+class Satellite(_Satellite):
+ _icon = "satellite.png"
+
+
# Aliases
diff --git a/diagrams/aws/security.py b/diagrams/aws/security.py
index 61da75a9..72082d11 100644
--- a/diagrams/aws/security.py
+++ b/diagrams/aws/security.py
@@ -8,10 +8,18 @@ class _Security(_AWS):
_icon_dir = "resources/aws/security"
+class AdConnector(_Security):
+ _icon = "ad-connector.png"
+
+
class Artifact(_Security):
_icon = "artifact.png"
+class CertificateAuthority(_Security):
+ _icon = "certificate-authority.png"
+
+
class CertificateManager(_Security):
_icon = "certificate-manager.png"
@@ -48,10 +56,34 @@ class IdentityAndAccessManagementIamAccessAnalyzer(_Security):
_icon = "identity-and-access-management-iam-access-analyzer.png"
+class IdentityAndAccessManagementIamAddOn(_Security):
+ _icon = "identity-and-access-management-iam-add-on.png"
+
+
+class IdentityAndAccessManagementIamAWSStsAlternate(_Security):
+ _icon = "identity-and-access-management-iam-aws-sts-alternate.png"
+
+
class IdentityAndAccessManagementIamAWSSts(_Security):
_icon = "identity-and-access-management-iam-aws-sts.png"
+class IdentityAndAccessManagementIamDataEncryptionKey(_Security):
+ _icon = "identity-and-access-management-iam-data-encryption-key.png"
+
+
+class IdentityAndAccessManagementIamEncryptedData(_Security):
+ _icon = "identity-and-access-management-iam-encrypted-data.png"
+
+
+class IdentityAndAccessManagementIamLongTermSecurityCredential(_Security):
+ _icon = "identity-and-access-management-iam-long-term-security-credential.png"
+
+
+class IdentityAndAccessManagementIamMfaToken(_Security):
+ _icon = "identity-and-access-management-iam-mfa-token.png"
+
+
class IdentityAndAccessManagementIamPermissions(_Security):
_icon = "identity-and-access-management-iam-permissions.png"
@@ -60,10 +92,18 @@ class IdentityAndAccessManagementIamRole(_Security):
_icon = "identity-and-access-management-iam-role.png"
+class IdentityAndAccessManagementIamTemporarySecurityCredential(_Security):
+ _icon = "identity-and-access-management-iam-temporary-security-credential.png"
+
+
class IdentityAndAccessManagementIam(_Security):
_icon = "identity-and-access-management-iam.png"
+class InspectorAgent(_Security):
+ _icon = "inspector-agent.png"
+
+
class Inspector(_Security):
_icon = "inspector.png"
@@ -76,6 +116,10 @@ class Macie(_Security):
_icon = "macie.png"
+class ManagedMicrosoftAd(_Security):
+ _icon = "managed-microsoft-ad.png"
+
+
class ResourceAccessManager(_Security):
_icon = "resource-access-manager.png"
@@ -84,6 +128,10 @@ class SecretsManager(_Security):
_icon = "secrets-manager.png"
+class SecurityHubFinding(_Security):
+ _icon = "security-hub-finding.png"
+
+
class SecurityHub(_Security):
_icon = "security-hub.png"
@@ -92,14 +140,26 @@ class SecurityIdentityAndCompliance(_Security):
_icon = "security-identity-and-compliance.png"
+class ShieldAdvanced(_Security):
+ _icon = "shield-advanced.png"
+
+
class Shield(_Security):
_icon = "shield.png"
+class SimpleAd(_Security):
+ _icon = "simple-ad.png"
+
+
class SingleSignOn(_Security):
_icon = "single-sign-on.png"
+class WAFFilteringRule(_Security):
+ _icon = "waf-filtering-rule.png"
+
+
class WAF(_Security):
_icon = "waf.png"
diff --git a/diagrams/aws/storage.py b/diagrams/aws/storage.py
index 65efe40e..564c07ab 100644
--- a/diagrams/aws/storage.py
+++ b/diagrams/aws/storage.py
@@ -24,10 +24,22 @@ class EFSStandardPrimaryBg(_Storage):
_icon = "efs-standard-primary-bg.png"
+class ElasticBlockStoreEBSSnapshot(_Storage):
+ _icon = "elastic-block-store-ebs-snapshot.png"
+
+
+class ElasticBlockStoreEBSVolume(_Storage):
+ _icon = "elastic-block-store-ebs-volume.png"
+
+
class ElasticBlockStoreEBS(_Storage):
_icon = "elastic-block-store-ebs.png"
+class ElasticFileSystemEFSFileSystem(_Storage):
+ _icon = "elastic-file-system-efs-file-system.png"
+
+
class ElasticFileSystemEFS(_Storage):
_icon = "elastic-file-system-efs.png"
@@ -44,14 +56,42 @@ class Fsx(_Storage):
_icon = "fsx.png"
+class MultipleVolumesResource(_Storage):
+ _icon = "multiple-volumes-resource.png"
+
+
+class S3GlacierArchive(_Storage):
+ _icon = "s3-glacier-archive.png"
+
+
+class S3GlacierVault(_Storage):
+ _icon = "s3-glacier-vault.png"
+
+
class S3Glacier(_Storage):
_icon = "s3-glacier.png"
+class SimpleStorageServiceS3BucketWithObjects(_Storage):
+ _icon = "simple-storage-service-s3-bucket-with-objects.png"
+
+
+class SimpleStorageServiceS3Bucket(_Storage):
+ _icon = "simple-storage-service-s3-bucket.png"
+
+
+class SimpleStorageServiceS3Object(_Storage):
+ _icon = "simple-storage-service-s3-object.png"
+
+
class SimpleStorageServiceS3(_Storage):
_icon = "simple-storage-service-s3.png"
+class SnowFamilySnowballImportExport(_Storage):
+ _icon = "snow-family-snowball-import-export.png"
+
+
class SnowballEdge(_Storage):
_icon = "snowball-edge.png"
@@ -64,6 +104,18 @@ class Snowmobile(_Storage):
_icon = "snowmobile.png"
+class StorageGatewayCachedVolume(_Storage):
+ _icon = "storage-gateway-cached-volume.png"
+
+
+class StorageGatewayNonCachedVolume(_Storage):
+ _icon = "storage-gateway-non-cached-volume.png"
+
+
+class StorageGatewayVirtualTapeLibrary(_Storage):
+ _icon = "storage-gateway-virtual-tape-library.png"
+
+
class StorageGateway(_Storage):
_icon = "storage-gateway.png"
diff --git a/diagrams/azure/analytics.py b/diagrams/azure/analytics.py
index 85c994eb..216b3582 100644
--- a/diagrams/azure/analytics.py
+++ b/diagrams/azure/analytics.py
@@ -52,4 +52,8 @@ class StreamAnalyticsJobs(_Analytics):
_icon = "stream-analytics-jobs.png"
+class SynapseAnalytics(_Analytics):
+ _icon = "synapse-analytics.png"
+
+
# Aliases
diff --git a/diagrams/azure/compute.py b/diagrams/azure/compute.py
index aad7b171..e2e23ba6 100644
--- a/diagrams/azure/compute.py
+++ b/diagrams/azure/compute.py
@@ -8,6 +8,14 @@ class _Compute(_Azure):
_icon_dir = "resources/azure/compute"
+class AppServices(_Compute):
+ _icon = "app-services.png"
+
+
+class AutomanagedVM(_Compute):
+ _icon = "automanaged-vm.png"
+
+
class AvailabilitySets(_Compute):
_icon = "availability-sets.png"
@@ -40,6 +48,10 @@ class ContainerRegistries(_Compute):
_icon = "container-registries.png"
+class DiskEncryptionSets(_Compute):
+ _icon = "disk-encryption-sets.png"
+
+
class DiskSnapshots(_Compute):
_icon = "disk-snapshots.png"
@@ -52,6 +64,14 @@ class FunctionApps(_Compute):
_icon = "function-apps.png"
+class ImageDefinitions(_Compute):
+ _icon = "image-definitions.png"
+
+
+class ImageVersions(_Compute):
+ _icon = "image-versions.png"
+
+
class KubernetesServices(_Compute):
_icon = "kubernetes-services.png"
@@ -60,6 +80,10 @@ class MeshApplications(_Compute):
_icon = "mesh-applications.png"
+class OsImages(_Compute):
+ _icon = "os-images.png"
+
+
class SAPHANAOnAzure(_Compute):
_icon = "sap-hana-on-azure.png"
@@ -68,6 +92,14 @@ class ServiceFabricClusters(_Compute):
_icon = "service-fabric-clusters.png"
+class SharedImageGalleries(_Compute):
+ _icon = "shared-image-galleries.png"
+
+
+class SpringCloud(_Compute):
+ _icon = "spring-cloud.png"
+
+
class VMClassic(_Compute):
_icon = "vm-classic.png"
@@ -80,6 +112,10 @@ class VMLinux(_Compute):
_icon = "vm-linux.png"
+class VMScaleSet(_Compute):
+ _icon = "vm-scale-set.png"
+
+
class VMWindows(_Compute):
_icon = "vm-windows.png"
@@ -88,7 +124,12 @@ class VM(_Compute):
_icon = "vm.png"
+class Workspaces(_Compute):
+ _icon = "workspaces.png"
+
+
# Aliases
ACR = ContainerRegistries
AKS = KubernetesServices
+VMSS = VMScaleSet
diff --git a/diagrams/azure/database.py b/diagrams/azure/database.py
index 8e2fb540..a9127a85 100644
--- a/diagrams/azure/database.py
+++ b/diagrams/azure/database.py
@@ -20,6 +20,14 @@ class CosmosDb(_Database):
_icon = "cosmos-db.png"
+class DataExplorerClusters(_Database):
+ _icon = "data-explorer-clusters.png"
+
+
+class DataFactory(_Database):
+ _icon = "data-factory.png"
+
+
class DataLake(_Database):
_icon = "data-lake.png"
@@ -44,6 +52,10 @@ class ElasticJobAgents(_Database):
_icon = "elastic-job-agents.png"
+class InstancePools(_Database):
+ _icon = "instance-pools.png"
+
+
class ManagedDatabases(_Database):
_icon = "managed-databases.png"
@@ -68,6 +80,22 @@ class SQLServers(_Database):
_icon = "sql-servers.png"
+class SQLVM(_Database):
+ _icon = "sql-vm.png"
+
+
+class SQL(_Database):
+ _icon = "sql.png"
+
+
+class SsisLiftAndShiftIr(_Database):
+ _icon = "ssis-lift-and-shift-ir.png"
+
+
+class SynapseAnalytics(_Database):
+ _icon = "synapse-analytics.png"
+
+
class VirtualClusters(_Database):
_icon = "virtual-clusters.png"
diff --git a/diagrams/azure/devops.py b/diagrams/azure/devops.py
index b7c1e8fe..eee9f253 100644
--- a/diagrams/azure/devops.py
+++ b/diagrams/azure/devops.py
@@ -28,6 +28,10 @@ class DevtestLabs(_Devops):
_icon = "devtest-labs.png"
+class LabServices(_Devops):
+ _icon = "lab-services.png"
+
+
class Pipelines(_Devops):
_icon = "pipelines.png"
diff --git a/diagrams/azure/identity.py b/diagrams/azure/identity.py
index 19a0e394..a7913728 100644
--- a/diagrams/azure/identity.py
+++ b/diagrams/azure/identity.py
@@ -48,6 +48,10 @@ class EnterpriseApplications(_Identity):
_icon = "enterprise-applications.png"
+class Groups(_Identity):
+ _icon = "groups.png"
+
+
class IdentityGovernance(_Identity):
_icon = "identity-governance.png"
@@ -60,4 +64,8 @@ class ManagedIdentities(_Identity):
_icon = "managed-identities.png"
+class Users(_Identity):
+ _icon = "users.png"
+
+
# Aliases
diff --git a/diagrams/azure/integration.py b/diagrams/azure/integration.py
index e16033d0..369cd97b 100644
--- a/diagrams/azure/integration.py
+++ b/diagrams/azure/integration.py
@@ -52,6 +52,10 @@ class LogicApps(_Integration):
_icon = "logic-apps.png"
+class PartnerTopic(_Integration):
+ _icon = "partner-topic.png"
+
+
class SendgridAccounts(_Integration):
_icon = "sendgrid-accounts.png"
@@ -76,4 +80,8 @@ class StorsimpleDeviceManagers(_Integration):
_icon = "storsimple-device-managers.png"
+class SystemTopic(_Integration):
+ _icon = "system-topic.png"
+
+
# Aliases
diff --git a/diagrams/azure/migration.py b/diagrams/azure/migration.py
index 3c69da4e..74f573f7 100644
--- a/diagrams/azure/migration.py
+++ b/diagrams/azure/migration.py
@@ -8,6 +8,14 @@ class _Migration(_Azure):
_icon_dir = "resources/azure/migration"
+class DataBoxEdge(_Migration):
+ _icon = "data-box-edge.png"
+
+
+class DataBox(_Migration):
+ _icon = "data-box.png"
+
+
class DatabaseMigrationServices(_Migration):
_icon = "database-migration-services.png"
diff --git a/diagrams/azure/mobile.py b/diagrams/azure/mobile.py
index a0663f3d..e2eb20a5 100644
--- a/diagrams/azure/mobile.py
+++ b/diagrams/azure/mobile.py
@@ -9,7 +9,7 @@ class _Mobile(_Azure):
class AppServiceMobile(_Mobile):
- _icon = "app-service---mobile.png"
+ _icon = "app-service-mobile.png"
class MobileEngagement(_Mobile):
diff --git a/diagrams/azure/network.py b/diagrams/azure/network.py
index 2e3e4043..23dd69c0 100644
--- a/diagrams/azure/network.py
+++ b/diagrams/azure/network.py
@@ -92,6 +92,10 @@ class ServiceEndpointPolicies(_Network):
_icon = "service-endpoint-policies.png"
+class Subnets(_Network):
+ _icon = "subnets.png"
+
+
class TrafficManagerProfiles(_Network):
_icon = "traffic-manager-profiles.png"
diff --git a/diagrams/azure/security.py b/diagrams/azure/security.py
index 0c4fe96e..f78fb51d 100644
--- a/diagrams/azure/security.py
+++ b/diagrams/azure/security.py
@@ -8,6 +8,22 @@ class _Security(_Azure):
_icon_dir = "resources/azure/security"
+class ApplicationSecurityGroups(_Security):
+ _icon = "application-security-groups.png"
+
+
+class ConditionalAccess(_Security):
+ _icon = "conditional-access.png"
+
+
+class Defender(_Security):
+ _icon = "defender.png"
+
+
+class ExtendedSecurityUpdates(_Security):
+ _icon = "extended-security-updates.png"
+
+
class KeyVaults(_Security):
_icon = "key-vaults.png"
diff --git a/diagrams/azure/storage.py b/diagrams/azure/storage.py
index 80f54633..5dcf1f2c 100644
--- a/diagrams/azure/storage.py
+++ b/diagrams/azure/storage.py
@@ -21,7 +21,7 @@ class BlobStorage(_Storage):
class DataBoxEdgeDataBoxGateway(_Storage):
- _icon = "data-box-edge---data-box-gateway.png"
+ _icon = "data-box-edge-data-box-gateway.png"
class DataBox(_Storage):
diff --git a/diagrams/gcp/operations.py b/diagrams/gcp/operations.py
new file mode 100644
index 00000000..53ece13f
--- /dev/null
+++ b/diagrams/gcp/operations.py
@@ -0,0 +1,15 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _GCP
+
+
+class _Operations(_GCP):
+ _type = "operations"
+ _icon_dir = "resources/gcp/operations"
+
+
+class Monitoring(_Operations):
+ _icon = "monitoring.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/__init__.py b/diagrams/ibm/__init__.py
new file mode 100644
index 00000000..450fa366
--- /dev/null
+++ b/diagrams/ibm/__init__.py
@@ -0,0 +1,12 @@
+"""
+IBM provides a set of services for IBM Cloud provider.
+"""
+
+from diagrams import Node
+
+
+class _IBM(Node):
+ _provider = "ibm"
+ _icon_dir = "resources/ibm"
+
+ fontcolor = "#ffffff"
diff --git a/diagrams/ibm/analytics.py b/diagrams/ibm/analytics.py
new file mode 100644
index 00000000..dc641a43
--- /dev/null
+++ b/diagrams/ibm/analytics.py
@@ -0,0 +1,31 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Analytics(_IBM):
+ _type = "analytics"
+ _icon_dir = "resources/ibm/analytics"
+
+
+class Analytics(_Analytics):
+ _icon = "analytics.png"
+
+
+class DataIntegration(_Analytics):
+ _icon = "data-integration.png"
+
+
+class DataRepositories(_Analytics):
+ _icon = "data-repositories.png"
+
+
+class DeviceAnalytics(_Analytics):
+ _icon = "device-analytics.png"
+
+
+class StreamingComputing(_Analytics):
+ _icon = "streaming-computing.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/applications.py b/diagrams/ibm/applications.py
new file mode 100644
index 00000000..c9e51713
--- /dev/null
+++ b/diagrams/ibm/applications.py
@@ -0,0 +1,87 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Applications(_IBM):
+ _type = "applications"
+ _icon_dir = "resources/ibm/applications"
+
+
+class ActionableInsight(_Applications):
+ _icon = "actionable-insight.png"
+
+
+class Annotate(_Applications):
+ _icon = "annotate.png"
+
+
+class ApiDeveloperPortal(_Applications):
+ _icon = "api-developer-portal.png"
+
+
+class ApiPolyglotRuntimes(_Applications):
+ _icon = "api-polyglot-runtimes.png"
+
+
+class AppServer(_Applications):
+ _icon = "app-server.png"
+
+
+class ApplicationLogic(_Applications):
+ _icon = "application-logic.png"
+
+
+class EnterpriseApplications(_Applications):
+ _icon = "enterprise-applications.png"
+
+
+class Index(_Applications):
+ _icon = "index.png"
+
+
+class IotApplication(_Applications):
+ _icon = "iot-application.png"
+
+
+class Microservice(_Applications):
+ _icon = "microservice.png"
+
+
+class MobileApp(_Applications):
+ _icon = "mobile-app.png"
+
+
+class Ontology(_Applications):
+ _icon = "ontology.png"
+
+
+class OpenSourceTools(_Applications):
+ _icon = "open-source-tools.png"
+
+
+class RuntimeServices(_Applications):
+ _icon = "runtime-services.png"
+
+
+class SaasApplications(_Applications):
+ _icon = "saas-applications.png"
+
+
+class ServiceBroker(_Applications):
+ _icon = "service-broker.png"
+
+
+class SpeechToText(_Applications):
+ _icon = "speech-to-text.png"
+
+
+class VisualRecognition(_Applications):
+ _icon = "visual-recognition.png"
+
+
+class Visualization(_Applications):
+ _icon = "visualization.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/blockchain.py b/diagrams/ibm/blockchain.py
new file mode 100644
index 00000000..3c5b5a01
--- /dev/null
+++ b/diagrams/ibm/blockchain.py
@@ -0,0 +1,91 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Blockchain(_IBM):
+ _type = "blockchain"
+ _icon_dir = "resources/ibm/blockchain"
+
+
+class BlockchainDeveloper(_Blockchain):
+ _icon = "blockchain-developer.png"
+
+
+class Blockchain(_Blockchain):
+ _icon = "blockchain.png"
+
+
+class CertificateAuthority(_Blockchain):
+ _icon = "certificate-authority.png"
+
+
+class ClientApplication(_Blockchain):
+ _icon = "client-application.png"
+
+
+class Communication(_Blockchain):
+ _icon = "communication.png"
+
+
+class Consensus(_Blockchain):
+ _icon = "consensus.png"
+
+
+class EventListener(_Blockchain):
+ _icon = "event-listener.png"
+
+
+class Event(_Blockchain):
+ _icon = "event.png"
+
+
+class ExistingEnterpriseSystems(_Blockchain):
+ _icon = "existing-enterprise-systems.png"
+
+
+class HyperledgerFabric(_Blockchain):
+ _icon = "hyperledger-fabric.png"
+
+
+class KeyManagement(_Blockchain):
+ _icon = "key-management.png"
+
+
+class Ledger(_Blockchain):
+ _icon = "ledger.png"
+
+
+class MembershipServicesProviderApi(_Blockchain):
+ _icon = "membership-services-provider-api.png"
+
+
+class Membership(_Blockchain):
+ _icon = "membership.png"
+
+
+class MessageBus(_Blockchain):
+ _icon = "message-bus.png"
+
+
+class Node(_Blockchain):
+ _icon = "node.png"
+
+
+class Services(_Blockchain):
+ _icon = "services.png"
+
+
+class SmartContract(_Blockchain):
+ _icon = "smart-contract.png"
+
+
+class TransactionManager(_Blockchain):
+ _icon = "transaction-manager.png"
+
+
+class Wallet(_Blockchain):
+ _icon = "wallet.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/compute.py b/diagrams/ibm/compute.py
new file mode 100644
index 00000000..7bff4f0d
--- /dev/null
+++ b/diagrams/ibm/compute.py
@@ -0,0 +1,31 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Compute(_IBM):
+ _type = "compute"
+ _icon_dir = "resources/ibm/compute"
+
+
+class BareMetalServer(_Compute):
+ _icon = "bare-metal-server.png"
+
+
+class ImageService(_Compute):
+ _icon = "image-service.png"
+
+
+class Instance(_Compute):
+ _icon = "instance.png"
+
+
+class Key(_Compute):
+ _icon = "key.png"
+
+
+class PowerInstance(_Compute):
+ _icon = "power-instance.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/data.py b/diagrams/ibm/data.py
new file mode 100644
index 00000000..2434cd51
--- /dev/null
+++ b/diagrams/ibm/data.py
@@ -0,0 +1,63 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Data(_IBM):
+ _type = "data"
+ _icon_dir = "resources/ibm/data"
+
+
+class Caches(_Data):
+ _icon = "caches.png"
+
+
+class Cloud(_Data):
+ _icon = "cloud.png"
+
+
+class ConversationTrainedDeployed(_Data):
+ _icon = "conversation-trained-deployed.png"
+
+
+class DataServices(_Data):
+ _icon = "data-services.png"
+
+
+class DataSources(_Data):
+ _icon = "data-sources.png"
+
+
+class DeviceIdentityService(_Data):
+ _icon = "device-identity-service.png"
+
+
+class DeviceRegistry(_Data):
+ _icon = "device-registry.png"
+
+
+class EnterpriseData(_Data):
+ _icon = "enterprise-data.png"
+
+
+class EnterpriseUserDirectory(_Data):
+ _icon = "enterprise-user-directory.png"
+
+
+class FileRepository(_Data):
+ _icon = "file-repository.png"
+
+
+class GroundTruth(_Data):
+ _icon = "ground-truth.png"
+
+
+class Model(_Data):
+ _icon = "model.png"
+
+
+class TmsDataInterface(_Data):
+ _icon = "tms-data-interface.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/devops.py b/diagrams/ibm/devops.py
new file mode 100644
index 00000000..fd41d700
--- /dev/null
+++ b/diagrams/ibm/devops.py
@@ -0,0 +1,51 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Devops(_IBM):
+ _type = "devops"
+ _icon_dir = "resources/ibm/devops"
+
+
+class ArtifactManagement(_Devops):
+ _icon = "artifact-management.png"
+
+
+class BuildTest(_Devops):
+ _icon = "build-test.png"
+
+
+class CodeEditor(_Devops):
+ _icon = "code-editor.png"
+
+
+class CollaborativeDevelopment(_Devops):
+ _icon = "collaborative-development.png"
+
+
+class ConfigurationManagement(_Devops):
+ _icon = "configuration-management.png"
+
+
+class ContinuousDeploy(_Devops):
+ _icon = "continuous-deploy.png"
+
+
+class ContinuousTesting(_Devops):
+ _icon = "continuous-testing.png"
+
+
+class Devops(_Devops):
+ _icon = "devops.png"
+
+
+class Provision(_Devops):
+ _icon = "provision.png"
+
+
+class ReleaseManagement(_Devops):
+ _icon = "release-management.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/general.py b/diagrams/ibm/general.py
new file mode 100644
index 00000000..5b490070
--- /dev/null
+++ b/diagrams/ibm/general.py
@@ -0,0 +1,119 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _General(_IBM):
+ _type = "general"
+ _icon_dir = "resources/ibm/general"
+
+
+class CloudMessaging(_General):
+ _icon = "cloud-messaging.png"
+
+
+class CloudServices(_General):
+ _icon = "cloud-services.png"
+
+
+class Cloudant(_General):
+ _icon = "cloudant.png"
+
+
+class CognitiveServices(_General):
+ _icon = "cognitive-services.png"
+
+
+class DataSecurity(_General):
+ _icon = "data-security.png"
+
+
+class Enterprise(_General):
+ _icon = "enterprise.png"
+
+
+class GovernanceRiskCompliance(_General):
+ _icon = "governance-risk-compliance.png"
+
+
+class IBMContainers(_General):
+ _icon = "ibm-containers.png"
+
+
+class IBMPublicCloud(_General):
+ _icon = "ibm-public-cloud.png"
+
+
+class IdentityAccessManagement(_General):
+ _icon = "identity-access-management.png"
+
+
+class IdentityProvider(_General):
+ _icon = "identity-provider.png"
+
+
+class InfrastructureSecurity(_General):
+ _icon = "infrastructure-security.png"
+
+
+class Internet(_General):
+ _icon = "internet.png"
+
+
+class IotCloud(_General):
+ _icon = "iot-cloud.png"
+
+
+class MicroservicesApplication(_General):
+ _icon = "microservices-application.png"
+
+
+class MicroservicesMesh(_General):
+ _icon = "microservices-mesh.png"
+
+
+class MonitoringLogging(_General):
+ _icon = "monitoring-logging.png"
+
+
+class Monitoring(_General):
+ _icon = "monitoring.png"
+
+
+class ObjectStorage(_General):
+ _icon = "object-storage.png"
+
+
+class OfflineCapabilities(_General):
+ _icon = "offline-capabilities.png"
+
+
+class Openwhisk(_General):
+ _icon = "openwhisk.png"
+
+
+class PeerCloud(_General):
+ _icon = "peer-cloud.png"
+
+
+class RetrieveRank(_General):
+ _icon = "retrieve-rank.png"
+
+
+class Scalable(_General):
+ _icon = "scalable.png"
+
+
+class ServiceDiscoveryConfiguration(_General):
+ _icon = "service-discovery-configuration.png"
+
+
+class TextToSpeech(_General):
+ _icon = "text-to-speech.png"
+
+
+class TransformationConnectivity(_General):
+ _icon = "transformation-connectivity.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/infrastructure.py b/diagrams/ibm/infrastructure.py
new file mode 100644
index 00000000..48a3c042
--- /dev/null
+++ b/diagrams/ibm/infrastructure.py
@@ -0,0 +1,83 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Infrastructure(_IBM):
+ _type = "infrastructure"
+ _icon_dir = "resources/ibm/infrastructure"
+
+
+class Channels(_Infrastructure):
+ _icon = "channels.png"
+
+
+class CloudMessaging(_Infrastructure):
+ _icon = "cloud-messaging.png"
+
+
+class Dashboard(_Infrastructure):
+ _icon = "dashboard.png"
+
+
+class Diagnostics(_Infrastructure):
+ _icon = "diagnostics.png"
+
+
+class EdgeServices(_Infrastructure):
+ _icon = "edge-services.png"
+
+
+class EnterpriseMessaging(_Infrastructure):
+ _icon = "enterprise-messaging.png"
+
+
+class EventFeed(_Infrastructure):
+ _icon = "event-feed.png"
+
+
+class InfrastructureServices(_Infrastructure):
+ _icon = "infrastructure-services.png"
+
+
+class InterserviceCommunication(_Infrastructure):
+ _icon = "interservice-communication.png"
+
+
+class LoadBalancingRouting(_Infrastructure):
+ _icon = "load-balancing-routing.png"
+
+
+class MicroservicesMesh(_Infrastructure):
+ _icon = "microservices-mesh.png"
+
+
+class MobileBackend(_Infrastructure):
+ _icon = "mobile-backend.png"
+
+
+class MobileProviderNetwork(_Infrastructure):
+ _icon = "mobile-provider-network.png"
+
+
+class MonitoringLogging(_Infrastructure):
+ _icon = "monitoring-logging.png"
+
+
+class Monitoring(_Infrastructure):
+ _icon = "monitoring.png"
+
+
+class PeerServices(_Infrastructure):
+ _icon = "peer-services.png"
+
+
+class ServiceDiscoveryConfiguration(_Infrastructure):
+ _icon = "service-discovery-configuration.png"
+
+
+class TransformationConnectivity(_Infrastructure):
+ _icon = "transformation-connectivity.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/management.py b/diagrams/ibm/management.py
new file mode 100644
index 00000000..8ec9ac7c
--- /dev/null
+++ b/diagrams/ibm/management.py
@@ -0,0 +1,71 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Management(_IBM):
+ _type = "management"
+ _icon_dir = "resources/ibm/management"
+
+
+class AlertNotification(_Management):
+ _icon = "alert-notification.png"
+
+
+class ApiManagement(_Management):
+ _icon = "api-management.png"
+
+
+class CloudManagement(_Management):
+ _icon = "cloud-management.png"
+
+
+class ClusterManagement(_Management):
+ _icon = "cluster-management.png"
+
+
+class ContentManagement(_Management):
+ _icon = "content-management.png"
+
+
+class DataServices(_Management):
+ _icon = "data-services.png"
+
+
+class DeviceManagement(_Management):
+ _icon = "device-management.png"
+
+
+class InformationGovernance(_Management):
+ _icon = "information-governance.png"
+
+
+class ItServiceManagement(_Management):
+ _icon = "it-service-management.png"
+
+
+class Management(_Management):
+ _icon = "management.png"
+
+
+class MonitoringMetrics(_Management):
+ _icon = "monitoring-metrics.png"
+
+
+class ProcessManagement(_Management):
+ _icon = "process-management.png"
+
+
+class ProviderCloudPortalService(_Management):
+ _icon = "provider-cloud-portal-service.png"
+
+
+class PushNotifications(_Management):
+ _icon = "push-notifications.png"
+
+
+class ServiceManagementTools(_Management):
+ _icon = "service-management-tools.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/network.py b/diagrams/ibm/network.py
new file mode 100644
index 00000000..956d4cfa
--- /dev/null
+++ b/diagrams/ibm/network.py
@@ -0,0 +1,111 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Network(_IBM):
+ _type = "network"
+ _icon_dir = "resources/ibm/network"
+
+
+class Bridge(_Network):
+ _icon = "bridge.png"
+
+
+class DirectLink(_Network):
+ _icon = "direct-link.png"
+
+
+class Enterprise(_Network):
+ _icon = "enterprise.png"
+
+
+class Firewall(_Network):
+ _icon = "firewall.png"
+
+
+class FloatingIp(_Network):
+ _icon = "floating-ip.png"
+
+
+class Gateway(_Network):
+ _icon = "gateway.png"
+
+
+class InternetServices(_Network):
+ _icon = "internet-services.png"
+
+
+class LoadBalancerListener(_Network):
+ _icon = "load-balancer-listener.png"
+
+
+class LoadBalancerPool(_Network):
+ _icon = "load-balancer-pool.png"
+
+
+class LoadBalancer(_Network):
+ _icon = "load-balancer.png"
+
+
+class LoadBalancingRouting(_Network):
+ _icon = "load-balancing-routing.png"
+
+
+class PublicGateway(_Network):
+ _icon = "public-gateway.png"
+
+
+class Region(_Network):
+ _icon = "region.png"
+
+
+class Router(_Network):
+ _icon = "router.png"
+
+
+class Rules(_Network):
+ _icon = "rules.png"
+
+
+class Subnet(_Network):
+ _icon = "subnet.png"
+
+
+class TransitGateway(_Network):
+ _icon = "transit-gateway.png"
+
+
+class Vpc(_Network):
+ _icon = "vpc.png"
+
+
+class VpnConnection(_Network):
+ _icon = "vpn-connection.png"
+
+
+class VpnGateway(_Network):
+ _icon = "vpn-gateway.png"
+
+
+class VpnPolicy(_Network):
+ _icon = "vpn-policy.png"
+
+
+# Aliases
+
+ACL = Rules
+CIS = InternetServices
+DL = DirectLink
+FIP = FloatingIp
+FloatingIP = FloatingIp
+FW = Firewall
+LB = LoadBalancer
+NLB = LoadBalancer
+PublicGateway = Gateway
+SecurityGroupRules = Rules
+TG = TransitGateway
+VPC = Vpc
+VPNGateway = VpnGateway
+VPNConnection = VpnConnection
+VPNPolicy = VpnPolicy
diff --git a/diagrams/ibm/security.py b/diagrams/ibm/security.py
new file mode 100644
index 00000000..79486b8f
--- /dev/null
+++ b/diagrams/ibm/security.py
@@ -0,0 +1,68 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Security(_IBM):
+ _type = "security"
+ _icon_dir = "resources/ibm/security"
+
+
+class ApiSecurity(_Security):
+ _icon = "api-security.png"
+
+
+class BlockchainSecurityService(_Security):
+ _icon = "blockchain-security-service.png"
+
+
+class DataSecurity(_Security):
+ _icon = "data-security.png"
+
+
+class Firewall(_Security):
+ _icon = "firewall.png"
+
+
+class Gateway(_Security):
+ _icon = "gateway.png"
+
+
+class GovernanceRiskCompliance(_Security):
+ _icon = "governance-risk-compliance.png"
+
+
+class IdentityAccessManagement(_Security):
+ _icon = "identity-access-management.png"
+
+
+class IdentityProvider(_Security):
+ _icon = "identity-provider.png"
+
+
+class InfrastructureSecurity(_Security):
+ _icon = "infrastructure-security.png"
+
+
+class PhysicalSecurity(_Security):
+ _icon = "physical-security.png"
+
+
+class SecurityMonitoringIntelligence(_Security):
+ _icon = "security-monitoring-intelligence.png"
+
+
+class SecurityServices(_Security):
+ _icon = "security-services.png"
+
+
+class TrustendComputing(_Security):
+ _icon = "trustend-computing.png"
+
+
+class Vpn(_Security):
+ _icon = "vpn.png"
+
+
+# Aliases
+VPN = Vpn
diff --git a/diagrams/ibm/social.py b/diagrams/ibm/social.py
new file mode 100644
index 00000000..66fd7c4a
--- /dev/null
+++ b/diagrams/ibm/social.py
@@ -0,0 +1,31 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Social(_IBM):
+ _type = "social"
+ _icon_dir = "resources/ibm/social"
+
+
+class Communities(_Social):
+ _icon = "communities.png"
+
+
+class FileSync(_Social):
+ _icon = "file-sync.png"
+
+
+class LiveCollaboration(_Social):
+ _icon = "live-collaboration.png"
+
+
+class Messaging(_Social):
+ _icon = "messaging.png"
+
+
+class Networking(_Social):
+ _icon = "networking.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/storage.py b/diagrams/ibm/storage.py
new file mode 100644
index 00000000..b0f7e2a7
--- /dev/null
+++ b/diagrams/ibm/storage.py
@@ -0,0 +1,19 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _Storage(_IBM):
+ _type = "storage"
+ _icon_dir = "resources/ibm/storage"
+
+
+class BlockStorage(_Storage):
+ _icon = "block-storage.png"
+
+
+class ObjectStorage(_Storage):
+ _icon = "object-storage.png"
+
+
+# Aliases
diff --git a/diagrams/ibm/user.py b/diagrams/ibm/user.py
new file mode 100644
index 00000000..88484706
--- /dev/null
+++ b/diagrams/ibm/user.py
@@ -0,0 +1,35 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _IBM
+
+
+class _User(_IBM):
+ _type = "user"
+ _icon_dir = "resources/ibm/user"
+
+
+class Browser(_User):
+ _icon = "browser.png"
+
+
+class Device(_User):
+ _icon = "device.png"
+
+
+class IntegratedDigitalExperiences(_User):
+ _icon = "integrated-digital-experiences.png"
+
+
+class PhysicalEntity(_User):
+ _icon = "physical-entity.png"
+
+
+class Sensor(_User):
+ _icon = "sensor.png"
+
+
+class User(_User):
+ _icon = "user.png"
+
+
+# Aliases
diff --git a/diagrams/oci/database.py b/diagrams/oci/database.py
index ec9e5ce3..84048342 100644
--- a/diagrams/oci/database.py
+++ b/diagrams/oci/database.py
@@ -82,7 +82,7 @@ class Stream(_Database):
# Aliases
-ADB = AutonomousDatabase
-ADBWhite = AutonomousDatabaseWhite
-DBService = Databaseservice
-DBServiceWhite = DatabaseserviceWhite
+ADB = Autonomous
+ADBWhite = AutonomousWhite
+DBService = DatabaseService
+DBServiceWhite = DatabaseServiceWhite
diff --git a/diagrams/onprem/analytics.py b/diagrams/onprem/analytics.py
index 0cbb90bc..df70419b 100644
--- a/diagrams/onprem/analytics.py
+++ b/diagrams/onprem/analytics.py
@@ -40,6 +40,14 @@ class Norikra(_Analytics):
_icon = "norikra.png"
+class Powerbi(_Analytics):
+ _icon = "powerbi.png"
+
+
+class Presto(_Analytics):
+ _icon = "presto.png"
+
+
class Singer(_Analytics):
_icon = "singer.png"
@@ -52,8 +60,14 @@ class Storm(_Analytics):
_icon = "storm.png"
+class Superset(_Analytics):
+ _icon = "superset.png"
+
+
class Tableau(_Analytics):
_icon = "tableau.png"
# Aliases
+
+PowerBI = Powerbi
diff --git a/diagrams/onprem/auth.py b/diagrams/onprem/auth.py
index 1ece9e76..dc98f688 100644
--- a/diagrams/onprem/auth.py
+++ b/diagrams/onprem/auth.py
@@ -8,6 +8,10 @@ class _Auth(_OnPrem):
_icon_dir = "resources/onprem/auth"
+class Boundary(_Auth):
+ _icon = "boundary.png"
+
+
class BuzzfeedSso(_Auth):
_icon = "buzzfeed-sso.png"
diff --git a/diagrams/onprem/ci.py b/diagrams/onprem/ci.py
index 8ee8831d..cdb25336 100644
--- a/diagrams/onprem/ci.py
+++ b/diagrams/onprem/ci.py
@@ -20,6 +20,10 @@ class Droneci(_Ci):
_icon = "droneci.png"
+class GithubActions(_Ci):
+ _icon = "github-actions.png"
+
+
class Gitlabci(_Ci):
_icon = "gitlabci.png"
diff --git a/diagrams/onprem/container.py b/diagrams/onprem/container.py
index de049421..b60e4ac8 100644
--- a/diagrams/onprem/container.py
+++ b/diagrams/onprem/container.py
@@ -8,10 +8,26 @@ class _Container(_OnPrem):
_icon_dir = "resources/onprem/container"
+class Containerd(_Container):
+ _icon = "containerd.png"
+
+
+class Crio(_Container):
+ _icon = "crio.png"
+
+
class Docker(_Container):
_icon = "docker.png"
+class Firecracker(_Container):
+ _icon = "firecracker.png"
+
+
+class Gvisor(_Container):
+ _icon = "gvisor.png"
+
+
class Lxc(_Container):
_icon = "lxc.png"
diff --git a/diagrams/onprem/dns.py b/diagrams/onprem/dns.py
new file mode 100644
index 00000000..3e1adf61
--- /dev/null
+++ b/diagrams/onprem/dns.py
@@ -0,0 +1,19 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _OnPrem
+
+
+class _Dns(_OnPrem):
+ _type = "dns"
+ _icon_dir = "resources/onprem/dns"
+
+
+class Coredns(_Dns):
+ _icon = "coredns.png"
+
+
+class Powerdns(_Dns):
+ _icon = "powerdns.png"
+
+
+# Aliases
diff --git a/diagrams/onprem/groupware.py b/diagrams/onprem/groupware.py
new file mode 100644
index 00000000..11e02dc4
--- /dev/null
+++ b/diagrams/onprem/groupware.py
@@ -0,0 +1,15 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _OnPrem
+
+
+class _Groupware(_OnPrem):
+ _type = "groupware"
+ _icon_dir = "resources/onprem/groupware"
+
+
+class Nextcloud(_Groupware):
+ _icon = "nextcloud.png"
+
+
+# Aliases
diff --git a/diagrams/onprem/monitoring.py b/diagrams/onprem/monitoring.py
index 4d90d85d..c097ecaa 100644
--- a/diagrams/onprem/monitoring.py
+++ b/diagrams/onprem/monitoring.py
@@ -8,6 +8,10 @@ class _Monitoring(_OnPrem):
_icon_dir = "resources/onprem/monitoring"
+class Cortex(_Monitoring):
+ _icon = "cortex.png"
+
+
class Datadog(_Monitoring):
_icon = "datadog.png"
@@ -16,6 +20,14 @@ class Grafana(_Monitoring):
_icon = "grafana.png"
+class Humio(_Monitoring):
+ _icon = "humio.png"
+
+
+class Newrelic(_Monitoring):
+ _icon = "newrelic.png"
+
+
class PrometheusOperator(_Monitoring):
_icon = "prometheus-operator.png"
diff --git a/diagrams/onprem/network.py b/diagrams/onprem/network.py
index ae91ea4f..b7e162a6 100644
--- a/diagrams/onprem/network.py
+++ b/diagrams/onprem/network.py
@@ -8,6 +8,10 @@ class _Network(_OnPrem):
_icon_dir = "resources/onprem/network"
+class Ambassador(_Network):
+ _icon = "ambassador.png"
+
+
class Apache(_Network):
_icon = "apache.png"
diff --git a/diagrams/onprem/queue.py b/diagrams/onprem/queue.py
index cfbf725c..a8ffd653 100644
--- a/diagrams/onprem/queue.py
+++ b/diagrams/onprem/queue.py
@@ -20,6 +20,10 @@ class Kafka(_Queue):
_icon = "kafka.png"
+class Nats(_Queue):
+ _icon = "nats.png"
+
+
class Rabbitmq(_Queue):
_icon = "rabbitmq.png"
diff --git a/diagrams/onprem/security.py b/diagrams/onprem/security.py
index f85bac66..d0447421 100644
--- a/diagrams/onprem/security.py
+++ b/diagrams/onprem/security.py
@@ -8,6 +8,10 @@ class _Security(_OnPrem):
_icon_dir = "resources/onprem/security"
+class Bitwarden(_Security):
+ _icon = "bitwarden.png"
+
+
class Trivy(_Security):
_icon = "trivy.png"
diff --git a/diagrams/onprem/tracing.py b/diagrams/onprem/tracing.py
new file mode 100644
index 00000000..e4353538
--- /dev/null
+++ b/diagrams/onprem/tracing.py
@@ -0,0 +1,15 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _OnPrem
+
+
+class _Tracing(_OnPrem):
+ _type = "tracing"
+ _icon_dir = "resources/onprem/tracing"
+
+
+class Jaeger(_Tracing):
+ _icon = "jaeger.png"
+
+
+# Aliases
diff --git a/diagrams/onprem/vcs.py b/diagrams/onprem/vcs.py
index 6bd2f4ec..b78e0b5d 100644
--- a/diagrams/onprem/vcs.py
+++ b/diagrams/onprem/vcs.py
@@ -12,6 +12,10 @@ class Git(_Vcs):
_icon = "git.png"
+class Gitea(_Vcs):
+ _icon = "gitea.png"
+
+
class Github(_Vcs):
_icon = "github.png"
diff --git a/diagrams/outscale/__init__.py b/diagrams/outscale/__init__.py
new file mode 100644
index 00000000..917b4bfe
--- /dev/null
+++ b/diagrams/outscale/__init__.py
@@ -0,0 +1,8 @@
+from diagrams import Node
+
+
+class _Outscale(Node):
+ _provider = "outscale"
+ _icon_dir = "resources/outscale"
+
+ fontcolor = "#ffffff"
diff --git a/diagrams/programming/flowchart.py b/diagrams/programming/flowchart.py
new file mode 100644
index 00000000..1e7ecf17
--- /dev/null
+++ b/diagrams/programming/flowchart.py
@@ -0,0 +1,107 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _Programming
+
+
+class _Flowchart(_Programming):
+ _type = "flowchart"
+ _icon_dir = "resources/programming/flowchart"
+
+
+class Action(_Flowchart):
+ _icon = "action.png"
+
+
+class Collate(_Flowchart):
+ _icon = "collate.png"
+
+
+class Database(_Flowchart):
+ _icon = "database.png"
+
+
+class Decision(_Flowchart):
+ _icon = "decision.png"
+
+
+class Delay(_Flowchart):
+ _icon = "delay.png"
+
+
+class Display(_Flowchart):
+ _icon = "display.png"
+
+
+class Document(_Flowchart):
+ _icon = "document.png"
+
+
+class InputOutput(_Flowchart):
+ _icon = "input-output.png"
+
+
+class Inspection(_Flowchart):
+ _icon = "inspection.png"
+
+
+class InternalStorage(_Flowchart):
+ _icon = "internal-storage.png"
+
+
+class LoopLimit(_Flowchart):
+ _icon = "loop-limit.png"
+
+
+class ManualInput(_Flowchart):
+ _icon = "manual-input.png"
+
+
+class ManualLoop(_Flowchart):
+ _icon = "manual-loop.png"
+
+
+class Merge(_Flowchart):
+ _icon = "merge.png"
+
+
+class MultipleDocuments(_Flowchart):
+ _icon = "multiple-documents.png"
+
+
+class OffPageConnectorLeft(_Flowchart):
+ _icon = "off-page-connector-left.png"
+
+
+class OffPageConnectorRight(_Flowchart):
+ _icon = "off-page-connector-right.png"
+
+
+class Or(_Flowchart):
+ _icon = "or.png"
+
+
+class PredefinedProcess(_Flowchart):
+ _icon = "predefined-process.png"
+
+
+class Preparation(_Flowchart):
+ _icon = "preparation.png"
+
+
+class Sort(_Flowchart):
+ _icon = "sort.png"
+
+
+class StartEnd(_Flowchart):
+ _icon = "start-end.png"
+
+
+class StoredData(_Flowchart):
+ _icon = "stored-data.png"
+
+
+class SummingJunction(_Flowchart):
+ _icon = "summing-junction.png"
+
+
+# Aliases
diff --git a/diagrams/programming/framework.py b/diagrams/programming/framework.py
index 410a53a2..f8d901fb 100644
--- a/diagrams/programming/framework.py
+++ b/diagrams/programming/framework.py
@@ -24,6 +24,10 @@ class Ember(_Framework):
_icon = "ember.png"
+class Fastapi(_Framework):
+ _icon = "fastapi.png"
+
+
class Flask(_Framework):
_icon = "flask.png"
@@ -36,6 +40,10 @@ class Laravel(_Framework):
_icon = "laravel.png"
+class Micronaut(_Framework):
+ _icon = "micronaut.png"
+
+
class Rails(_Framework):
_icon = "rails.png"
@@ -53,3 +61,5 @@ class Vue(_Framework):
# Aliases
+
+FastAPI = Fastapi
diff --git a/diagrams/programming/language.py b/diagrams/programming/language.py
index 7dc4da95..48f11a7f 100644
--- a/diagrams/programming/language.py
+++ b/diagrams/programming/language.py
@@ -80,6 +80,10 @@ class Rust(_Language):
_icon = "rust.png"
+class Scala(_Language):
+ _icon = "scala.png"
+
+
class Swift(_Language):
_icon = "swift.png"
diff --git a/diagrams/saas/alerting.py b/diagrams/saas/alerting.py
index bd64d8a2..0e3f65e1 100644
--- a/diagrams/saas/alerting.py
+++ b/diagrams/saas/alerting.py
@@ -8,6 +8,10 @@ class _Alerting(_Saas):
_icon_dir = "resources/saas/alerting"
+class Newrelic(_Alerting):
+ _icon = "newrelic.png"
+
+
class Opsgenie(_Alerting):
_icon = "opsgenie.png"
diff --git a/diagrams/saas/chat.py b/diagrams/saas/chat.py
index 6ee66155..e48587ab 100644
--- a/diagrams/saas/chat.py
+++ b/diagrams/saas/chat.py
@@ -8,6 +8,10 @@ class _Chat(_Saas):
_icon_dir = "resources/saas/chat"
+class Discord(_Chat):
+ _icon = "discord.png"
+
+
class Mattermost(_Chat):
_icon = "mattermost.png"
diff --git a/diagrams/saas/filesharing.py b/diagrams/saas/filesharing.py
new file mode 100644
index 00000000..c17eef14
--- /dev/null
+++ b/diagrams/saas/filesharing.py
@@ -0,0 +1,15 @@
+# This module is automatically generated by autogen.sh. DO NOT EDIT.
+
+from . import _Saas
+
+
+class _Filesharing(_Saas):
+ _type = "filesharing"
+ _icon_dir = "resources/saas/filesharing"
+
+
+class Nextcloud(_Filesharing):
+ _icon = "nextcloud.png"
+
+
+# Aliases
diff --git a/diagrams/saas/logging.py b/diagrams/saas/logging.py
index 8ae4a00b..fd8a28cd 100644
--- a/diagrams/saas/logging.py
+++ b/diagrams/saas/logging.py
@@ -12,6 +12,10 @@ class Datadog(_Logging):
_icon = "datadog.png"
+class Newrelic(_Logging):
+ _icon = "newrelic.png"
+
+
class Papertrail(_Logging):
_icon = "papertrail.png"
@@ -19,3 +23,4 @@ class Papertrail(_Logging):
# Aliases
DataDog = Datadog
+NewRelic = Newrelic
diff --git a/docker/dev/Dockerfile b/docker/dev/Dockerfile
index 2d4b2612..8aed1225 100644
--- a/docker/dev/Dockerfile
+++ b/docker/dev/Dockerfile
@@ -1,9 +1,9 @@
-# use latest python alphine image.
-FROM python:rc-alpine3.12
+# use latest python 3 alpine image.
+FROM python:3-alpine
# install system dependencies.
RUN apk update && apk add --no-cache \
- gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig
+ gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig xdg-utils
# install go package.
RUN go get github.com/mingrammer/round
diff --git a/docs/getting-started/examples.md b/docs/getting-started/examples.md
index 7596567a..b334cf23 100644
--- a/docs/getting-started/examples.md
+++ b/docs/getting-started/examples.md
@@ -42,13 +42,13 @@ with Diagram("Clustered Web Services", show=False):
ECS("web3")]
with Cluster("DB Cluster"):
- db_master = RDS("userdb")
- db_master - [RDS("userdb ro")]
+ db_main = RDS("userdb")
+ db_main - [RDS("userdb ro")]
memcached = ElastiCache("memcached")
dns >> lb >> svc_group
- svc_group >> db_master
+ svc_group >> db_main
svc_group >> memcached
```
@@ -178,7 +178,7 @@ from diagrams.onprem.analytics import Spark
from diagrams.onprem.compute import Server
from diagrams.onprem.database import PostgreSQL
from diagrams.onprem.inmemory import Redis
-from diagrams.onprem.logging import Fluentd
+from diagrams.onprem.aggregator import Fluentd
from diagrams.onprem.monitoring import Grafana, Prometheus
from diagrams.onprem.network import Nginx
from diagrams.onprem.queue import Kafka
@@ -196,14 +196,14 @@ with Diagram("Advanced Web Service with On-Premise", show=False):
Server("grpc3")]
with Cluster("Sessions HA"):
- master = Redis("session")
- master - Redis("replica") << metrics
- grpcsvc >> master
+ main = Redis("session")
+ main - Redis("replica") << metrics
+ grpcsvc >> main
with Cluster("Database HA"):
- master = PostgreSQL("users")
- master - PostgreSQL("slave") << metrics
- grpcsvc >> master
+ main = PostgreSQL("users")
+ main - PostgreSQL("replica") << metrics
+ grpcsvc >> main
aggregator = Fluentd("logging")
aggregator >> Kafka("stream") >> Spark("analytics")
@@ -221,7 +221,7 @@ from diagrams.onprem.analytics import Spark
from diagrams.onprem.compute import Server
from diagrams.onprem.database import PostgreSQL
from diagrams.onprem.inmemory import Redis
-from diagrams.onprem.logging import Fluentd
+from diagrams.onprem.aggregator import Fluentd
from diagrams.onprem.monitoring import Grafana, Prometheus
from diagrams.onprem.network import Nginx
from diagrams.onprem.queue import Kafka
@@ -239,14 +239,14 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False):
Server("grpc3")]
with Cluster("Sessions HA"):
- master = Redis("session")
- master - Edge(color="brown", style="dashed") - Redis("replica") << Edge(label="collect") << metrics
- grpcsvc >> Edge(color="brown") >> master
+ main = Redis("session")
+ main - Edge(color="brown", style="dashed") - Redis("replica") << Edge(label="collect") << metrics
+ grpcsvc >> Edge(color="brown") >> main
with Cluster("Database HA"):
- master = PostgreSQL("users")
- master - Edge(color="brown", style="dotted") - PostgreSQL("slave") << Edge(label="collect") << metrics
- grpcsvc >> Edge(color="black") >> master
+ main = PostgreSQL("users")
+ main - Edge(color="brown", style="dotted") - PostgreSQL("replica") << Edge(label="collect") << metrics
+ grpcsvc >> Edge(color="black") >> main
aggregator = Fluentd("logging")
aggregator >> Edge(label="parse") >> Kafka("stream") >> Edge(color="black", style="bold") >> Spark("analytics")
@@ -283,4 +283,4 @@ with Diagram("Broker Consumers", show=False):
queue >> consumers >> Aurora("Database")
```
-
\ No newline at end of file
+
diff --git a/docs/guides/cluster.md b/docs/guides/cluster.md
index 6cbf820e..5b8d42ab 100644
--- a/docs/guides/cluster.md
+++ b/docs/guides/cluster.md
@@ -22,11 +22,11 @@ with Diagram("Simple Web Service with DB Cluster", show=False):
web = ECS("service")
with Cluster("DB Cluster"):
- db_master = RDS("master")
- db_master - [RDS("slave1"),
- RDS("slave2")]
+ db_main = RDS("main")
+ db_main - [RDS("replica1"),
+ RDS("replica2")]
- dns >> web >> db_master
+ dns >> web >> db_main
```

@@ -68,4 +68,4 @@ with Diagram("Event Processing", show=False):

-> There is no depth limit of nesting. Feel free to create nested clusters as deep as you want.
\ No newline at end of file
+> There is no depth limit of nesting. Feel free to create nested clusters as deep as you want.
diff --git a/docs/guides/edge.md b/docs/guides/edge.md
index 5cc730b9..0c5233fe 100644
--- a/docs/guides/edge.md
+++ b/docs/guides/edge.md
@@ -17,7 +17,7 @@ from diagrams.onprem.analytics import Spark
from diagrams.onprem.compute import Server
from diagrams.onprem.database import PostgreSQL
from diagrams.onprem.inmemory import Redis
-from diagrams.onprem.logging import Fluentd
+from diagrams.onprem.aggregator import Fluentd
from diagrams.onprem.monitoring import Grafana, Prometheus
from diagrams.onprem.network import Nginx
from diagrams.onprem.queue import Kafka
@@ -35,19 +35,35 @@ with Diagram(name="Advanced Web Service with On-Premise (colored)", show=False):
Server("grpc3")]
with Cluster("Sessions HA"):
- master = Redis("session")
- master - Edge(color="brown", style="dashed") - Redis("replica") << Edge(label="collect") << metrics
- grpcsvc >> Edge(color="brown") >> master
+ main = Redis("session")
+ main \
+ - Edge(color="brown", style="dashed") \
+ - Redis("replica") \
+ << Edge(label="collect") \
+ << metrics
+ grpcsvc >> Edge(color="brown") >> main
with Cluster("Database HA"):
- master = PostgreSQL("users")
- master - Edge(color="brown", style="dotted") - PostgreSQL("slave") << Edge(label="collect") << metrics
- grpcsvc >> Edge(color="black") >> master
+ main = PostgreSQL("users")
+ main \
+ - Edge(color="brown", style="dotted") \
+ - PostgreSQL("replica") \
+ << Edge(label="collect") \
+ << metrics
+ grpcsvc >> Edge(color="black") >> main
aggregator = Fluentd("logging")
- aggregator >> Edge(label="parse") >> Kafka("stream") >> Edge(color="black", style="bold") >> Spark("analytics")
+ aggregator \
+ >> Edge(label="parse") \
+ >> Kafka("stream") \
+ >> Edge(color="black", style="bold") \
+ >> Spark("analytics")
- ingress >> Edge(color="darkgreen") << grpcsvc >> Edge(color="darkorange") >> aggregator
+ ingress \
+ >> Edge(color="darkgreen") \
+ << grpcsvc \
+ >> Edge(color="darkorange") \
+ >> aggregator
```

diff --git a/docs/guides/node.md b/docs/guides/node.md
index 3bd1182e..f0f524a7 100644
--- a/docs/guides/node.md
+++ b/docs/guides/node.md
@@ -54,7 +54,7 @@ from diagrams.k8s.storage import PV, PVC, StorageClass
# oracle resources
from diagrams.oci.compute import VirtualMachine, Container
from diagrams.oci.network import Firewall
-from diagrams.oci.storage import Filestorage, Storagegateway
+from diagrams.oci.storage import FileStorage, StorageGateway
```
You can find all available nodes list in [Here](https://diagrams.mingrammer.com/docs/nodes/aws).
diff --git a/docs/nodes/aws.md b/docs/nodes/aws.md
index f1cdbb96..8a0dea76 100644
--- a/docs/nodes/aws.md
+++ b/docs/nodes/aws.md
@@ -11,9 +11,14 @@ Node classes list of aws provider.
- **diagrams.aws.analytics.Athena**
- **diagrams.aws.analytics.CloudsearchSearchDocuments**
- **diagrams.aws.analytics.Cloudsearch**
+- **diagrams.aws.analytics.DataLakeResource**
- **diagrams.aws.analytics.DataPipeline**
- **diagrams.aws.analytics.ElasticsearchService**, **ES** (alias)
- **diagrams.aws.analytics.EMRCluster**
+- **diagrams.aws.analytics.EMREngineMaprM3**
+- **diagrams.aws.analytics.EMREngineMaprM5**
+- **diagrams.aws.analytics.EMREngineMaprM7**
+- **diagrams.aws.analytics.EMREngine**
- **diagrams.aws.analytics.EMRHdfsCluster**
- **diagrams.aws.analytics.EMR**
- **diagrams.aws.analytics.GlueCrawlers**
@@ -33,16 +38,20 @@ Node classes list of aws provider.
## aws.ar
+- **diagrams.aws.ar.ArVr**
- **diagrams.aws.ar.Sumerian**
## aws.blockchain
+- **diagrams.aws.blockchain.BlockchainResource**
+- **diagrams.aws.blockchain.Blockchain**
- **diagrams.aws.blockchain.ManagedBlockchain**
- **diagrams.aws.blockchain.QuantumLedgerDatabaseQldb**, **QLDB** (alias)
## aws.business
- **diagrams.aws.business.AlexaForBusiness**, **A4B** (alias)
+- **diagrams.aws.business.BusinessApplications**
- **diagrams.aws.business.Chime**
- **diagrams.aws.business.Workmail**
@@ -50,15 +59,32 @@ Node classes list of aws provider.
- **diagrams.aws.compute.ApplicationAutoScaling**, **AutoScaling** (alias)
- **diagrams.aws.compute.Batch**
+- **diagrams.aws.compute.ComputeOptimizer**
- **diagrams.aws.compute.Compute**
+- **diagrams.aws.compute.EC2Ami**, **AMI** (alias)
+- **diagrams.aws.compute.EC2AutoScaling**
+- **diagrams.aws.compute.EC2ContainerRegistryImage**
+- **diagrams.aws.compute.EC2ContainerRegistryRegistry**
- **diagrams.aws.compute.EC2ContainerRegistry**, **ECR** (alias)
+- **diagrams.aws.compute.EC2ElasticIpAddress**
+- **diagrams.aws.compute.EC2ImageBuilder**
+- **diagrams.aws.compute.EC2Instance**
+- **diagrams.aws.compute.EC2Instances**
+- **diagrams.aws.compute.EC2Rescue**
+- **diagrams.aws.compute.EC2SpotInstance**
- **diagrams.aws.compute.EC2**
+- **diagrams.aws.compute.ElasticBeanstalkApplication**
+- **diagrams.aws.compute.ElasticBeanstalkDeployment**
- **diagrams.aws.compute.ElasticBeanstalk**, **EB** (alias)
+- **diagrams.aws.compute.ElasticContainerServiceContainer**
+- **diagrams.aws.compute.ElasticContainerServiceService**
- **diagrams.aws.compute.ElasticContainerService**, **ECS** (alias)
- **diagrams.aws.compute.ElasticKubernetesService**, **EKS** (alias)
- **diagrams.aws.compute.Fargate**
+- **diagrams.aws.compute.LambdaFunction**
- **diagrams.aws.compute.Lambda**
- **diagrams.aws.compute.Lightsail**
+- **diagrams.aws.compute.LocalZones**
- **diagrams.aws.compute.Outposts**
- **diagrams.aws.compute.ServerlessApplicationRepository**, **SAR** (alias)
- **diagrams.aws.compute.ThinkboxDeadline**
@@ -69,36 +95,57 @@ Node classes list of aws provider.
- **diagrams.aws.compute.ThinkboxStoke**
- **diagrams.aws.compute.ThinkboxXmesh**
- **diagrams.aws.compute.VmwareCloudOnAWS**
+- **diagrams.aws.compute.Wavelength**
## aws.cost
- **diagrams.aws.cost.Budgets**
- **diagrams.aws.cost.CostAndUsageReport**
- **diagrams.aws.cost.CostExplorer**
+- **diagrams.aws.cost.CostManagement**
- **diagrams.aws.cost.ReservedInstanceReporting**
- **diagrams.aws.cost.SavingsPlans**
## aws.database
+- **diagrams.aws.database.AuroraInstance**
- **diagrams.aws.database.Aurora**
+- **diagrams.aws.database.DatabaseMigrationServiceDatabaseMigrationWorkflow**
- **diagrams.aws.database.DatabaseMigrationService**, **DMS** (alias)
- **diagrams.aws.database.Database**, **DB** (alias)
- **diagrams.aws.database.DocumentdbMongodbCompatibility**, **DocumentDB** (alias)
+- **diagrams.aws.database.DynamodbAttribute**
+- **diagrams.aws.database.DynamodbAttributes**
- **diagrams.aws.database.DynamodbDax**, **DAX** (alias)
- **diagrams.aws.database.DynamodbGlobalSecondaryIndex**, **DynamodbGSI** (alias)
+- **diagrams.aws.database.DynamodbItem**
+- **diagrams.aws.database.DynamodbItems**
- **diagrams.aws.database.DynamodbTable**
- **diagrams.aws.database.Dynamodb**, **DDB** (alias)
+- **diagrams.aws.database.ElasticacheCacheNode**
+- **diagrams.aws.database.ElasticacheForMemcached**
+- **diagrams.aws.database.ElasticacheForRedis**
- **diagrams.aws.database.Elasticache**, **ElastiCache** (alias)
+- **diagrams.aws.database.KeyspacesManagedApacheCassandraService**
- **diagrams.aws.database.Neptune**
- **diagrams.aws.database.QuantumLedgerDatabaseQldb**, **QLDB** (alias)
+- **diagrams.aws.database.RDSInstance**
+- **diagrams.aws.database.RDSMariadbInstance**
+- **diagrams.aws.database.RDSMysqlInstance**
- **diagrams.aws.database.RDSOnVmware**
+- **diagrams.aws.database.RDSOracleInstance**
+- **diagrams.aws.database.RDSPostgresqlInstance**
+- **diagrams.aws.database.RDSSqlServerInstance**
- **diagrams.aws.database.RDS**
+- **diagrams.aws.database.RedshiftDenseComputeNode**
+- **diagrams.aws.database.RedshiftDenseStorageNode**
- **diagrams.aws.database.Redshift**
- **diagrams.aws.database.Timestream**
## aws.devtools
- **diagrams.aws.devtools.CloudDevelopmentKit**
+- **diagrams.aws.devtools.Cloud9Resource**
- **diagrams.aws.devtools.Cloud9**
- **diagrams.aws.devtools.Codebuild**
- **diagrams.aws.devtools.Codecommit**
@@ -112,6 +159,7 @@ Node classes list of aws provider.
## aws.enablement
+- **diagrams.aws.enablement.CustomerEnablement**
- **diagrams.aws.enablement.Iq**
- **diagrams.aws.enablement.ManagedServices**
- **diagrams.aws.enablement.ProfessionalServices**
@@ -120,6 +168,7 @@ Node classes list of aws provider.
## aws.enduser
- **diagrams.aws.enduser.Appstream20**
+- **diagrams.aws.enduser.DesktopAndAppStreaming**
- **diagrams.aws.enduser.Workdocs**
- **diagrams.aws.enduser.Worklink**
- **diagrams.aws.enduser.Workspaces**
@@ -127,24 +176,40 @@ Node classes list of aws provider.
## aws.engagement
- **diagrams.aws.engagement.Connect**
+- **diagrams.aws.engagement.CustomerEngagement**
- **diagrams.aws.engagement.Pinpoint**
+- **diagrams.aws.engagement.SimpleEmailServiceSesEmail**
- **diagrams.aws.engagement.SimpleEmailServiceSes**, **SES** (alias)
## aws.game
+- **diagrams.aws.game.GameTech**
- **diagrams.aws.game.Gamelift**
## aws.general
+- **diagrams.aws.general.Client**
- **diagrams.aws.general.Disk**
+- **diagrams.aws.general.Forums**
- **diagrams.aws.general.General**
- **diagrams.aws.general.GenericDatabase**
- **diagrams.aws.general.GenericFirewall**
- **diagrams.aws.general.GenericOfficeBuilding**, **OfficeBuilding** (alias)
- **diagrams.aws.general.GenericSamlToken**
- **diagrams.aws.general.GenericSDK**
+- **diagrams.aws.general.InternetAlt1**
+- **diagrams.aws.general.InternetAlt2**
+- **diagrams.aws.general.InternetGateway**
- **diagrams.aws.general.Marketplace**
-- **diagrams.aws.general.TradicionalServer**
+- **diagrams.aws.general.MobileClient**
+- **diagrams.aws.general.Multimedia**
+- **diagrams.aws.general.OfficeBuilding**
+- **diagrams.aws.general.SamlToken**
+- **diagrams.aws.general.SDK**
+- **diagrams.aws.general.SslPadlock**
+- **diagrams.aws.general.TapeStorage**
+- **diagrams.aws.general.Toolkit**
+- **diagrams.aws.general.TraditionalServer**
- **diagrams.aws.general.User**
- **diagrams.aws.general.Users**
@@ -153,9 +218,19 @@ Node classes list of aws provider.
- **diagrams.aws.integration.ApplicationIntegration**
- **diagrams.aws.integration.Appsync**
- **diagrams.aws.integration.ConsoleMobileApplication**
+- **diagrams.aws.integration.EventResource**
+- **diagrams.aws.integration.EventbridgeCustomEventBusResource**
+- **diagrams.aws.integration.EventbridgeDefaultEventBusResource**
+- **diagrams.aws.integration.EventbridgeSaasPartnerEventBusResource**
- **diagrams.aws.integration.Eventbridge**
+- **diagrams.aws.integration.ExpressWorkflows**
- **diagrams.aws.integration.MQ**
+- **diagrams.aws.integration.SimpleNotificationServiceSnsEmailNotification**
+- **diagrams.aws.integration.SimpleNotificationServiceSnsHttpNotification**
+- **diagrams.aws.integration.SimpleNotificationServiceSnsTopic**
- **diagrams.aws.integration.SimpleNotificationServiceSns**, **SNS** (alias)
+- **diagrams.aws.integration.SimpleQueueServiceSqsMessage**
+- **diagrams.aws.integration.SimpleQueueServiceSqsQueue**
- **diagrams.aws.integration.SimpleQueueServiceSqs**, **SQS** (alias)
- **diagrams.aws.integration.StepFunctions**, **SF** (alias)
@@ -165,37 +240,76 @@ Node classes list of aws provider.
- **diagrams.aws.iot.InternetOfThings**
- **diagrams.aws.iot.Iot1Click**
- **diagrams.aws.iot.IotAction**
+- **diagrams.aws.iot.IotActuator**
- **diagrams.aws.iot.IotAlexaEcho**
+- **diagrams.aws.iot.IotAlexaEnabledDevice**
- **diagrams.aws.iot.IotAlexaSkill**
+- **diagrams.aws.iot.IotAlexaVoiceService**
+- **diagrams.aws.iot.IotAnalyticsChannel**
+- **diagrams.aws.iot.IotAnalyticsDataSet**
+- **diagrams.aws.iot.IotAnalyticsDataStore**
+- **diagrams.aws.iot.IotAnalyticsNotebook**
+- **diagrams.aws.iot.IotAnalyticsPipeline**
- **diagrams.aws.iot.IotAnalytics**
+- **diagrams.aws.iot.IotBank**
+- **diagrams.aws.iot.IotBicycle**
- **diagrams.aws.iot.IotButton**
- **diagrams.aws.iot.IotCamera**
+- **diagrams.aws.iot.IotCar**
+- **diagrams.aws.iot.IotCart**
- **diagrams.aws.iot.IotCertificate**
+- **diagrams.aws.iot.IotCoffeePot**
- **diagrams.aws.iot.IotCore**
+- **diagrams.aws.iot.IotDesiredState**
- **diagrams.aws.iot.IotDeviceDefender**
+- **diagrams.aws.iot.IotDeviceGateway**
- **diagrams.aws.iot.IotDeviceManagement**
+- **diagrams.aws.iot.IotDoorLock**
- **diagrams.aws.iot.IotEvents**
+- **diagrams.aws.iot.IotFactory**
+- **diagrams.aws.iot.IotFireTvStick**
+- **diagrams.aws.iot.IotFireTv**
+- **diagrams.aws.iot.IotGeneric**
- **diagrams.aws.iot.IotGreengrassConnector**
- **diagrams.aws.iot.IotGreengrass**
- **diagrams.aws.iot.IotHardwareBoard**, **IotBoard** (alias)
+- **diagrams.aws.iot.IotHouse**
- **diagrams.aws.iot.IotHttp**
- **diagrams.aws.iot.IotHttp2**
- **diagrams.aws.iot.IotJobs**
- **diagrams.aws.iot.IotLambda**
+- **diagrams.aws.iot.IotLightbulb**
+- **diagrams.aws.iot.IotMedicalEmergency**
- **diagrams.aws.iot.IotMqtt**
+- **diagrams.aws.iot.IotOverTheAirUpdate**
- **diagrams.aws.iot.IotPolicyEmergency**
- **diagrams.aws.iot.IotPolicy**
+- **diagrams.aws.iot.IotReportedState**
- **diagrams.aws.iot.IotRule**
+- **diagrams.aws.iot.IotSensor**
+- **diagrams.aws.iot.IotServo**
- **diagrams.aws.iot.IotShadow**
+- **diagrams.aws.iot.IotSimulator**
- **diagrams.aws.iot.IotSitewise**
+- **diagrams.aws.iot.IotThermostat**
- **diagrams.aws.iot.IotThingsGraph**
- **diagrams.aws.iot.IotTopic**
+- **diagrams.aws.iot.IotTravel**
+- **diagrams.aws.iot.IotUtility**
+- **diagrams.aws.iot.IotWindfarm**
## aws.management
- **diagrams.aws.management.AutoScaling**
+- **diagrams.aws.management.CloudformationChangeSet**
+- **diagrams.aws.management.CloudformationStack**
+- **diagrams.aws.management.CloudformationTemplate**
- **diagrams.aws.management.Cloudformation**
- **diagrams.aws.management.Cloudtrail**
+- **diagrams.aws.management.CloudwatchAlarm**
+- **diagrams.aws.management.CloudwatchEventEventBased**
+- **diagrams.aws.management.CloudwatchEventTimeBased**
+- **diagrams.aws.management.CloudwatchRule**
- **diagrams.aws.management.Cloudwatch**
- **diagrams.aws.management.Codeguru**
- **diagrams.aws.management.CommandLineInterface**
@@ -203,12 +317,37 @@ Node classes list of aws provider.
- **diagrams.aws.management.ControlTower**
- **diagrams.aws.management.LicenseManager**
- **diagrams.aws.management.ManagedServices**
+- **diagrams.aws.management.ManagementAndGovernance**
- **diagrams.aws.management.ManagementConsole**
+- **diagrams.aws.management.OpsworksApps**
+- **diagrams.aws.management.OpsworksDeployments**
+- **diagrams.aws.management.OpsworksInstances**
+- **diagrams.aws.management.OpsworksLayers**
+- **diagrams.aws.management.OpsworksMonitoring**
+- **diagrams.aws.management.OpsworksPermissions**
+- **diagrams.aws.management.OpsworksResources**
+- **diagrams.aws.management.OpsworksStack**
- **diagrams.aws.management.Opsworks**
+- **diagrams.aws.management.OrganizationsAccount**
+- **diagrams.aws.management.OrganizationsOrganizationalUnit**
- **diagrams.aws.management.Organizations**
+- **diagrams.aws.management.PersonalHealthDashboard**
- **diagrams.aws.management.ServiceCatalog**
+- **diagrams.aws.management.SystemsManagerAutomation**
+- **diagrams.aws.management.SystemsManagerDocuments**
+- **diagrams.aws.management.SystemsManagerInventory**
+- **diagrams.aws.management.SystemsManagerMaintenanceWindows**
+- **diagrams.aws.management.SystemsManagerOpscenter**
- **diagrams.aws.management.SystemsManagerParameterStore**, **ParameterStore** (alias)
+- **diagrams.aws.management.SystemsManagerPatchManager**
+- **diagrams.aws.management.SystemsManagerRunCommand**
+- **diagrams.aws.management.SystemsManagerStateManager**
- **diagrams.aws.management.SystemsManager**, **SSM** (alias)
+- **diagrams.aws.management.TrustedAdvisorChecklistCost**
+- **diagrams.aws.management.TrustedAdvisorChecklistFaultTolerant**
+- **diagrams.aws.management.TrustedAdvisorChecklistPerformance**
+- **diagrams.aws.management.TrustedAdvisorChecklistSecurity**
+- **diagrams.aws.management.TrustedAdvisorChecklist**
- **diagrams.aws.management.TrustedAdvisor**
- **diagrams.aws.management.WellArchitectedTool**
@@ -225,12 +364,15 @@ Node classes list of aws provider.
- **diagrams.aws.media.ElementalMediastore**
- **diagrams.aws.media.ElementalMediatailor**
- **diagrams.aws.media.ElementalServer**
+- **diagrams.aws.media.KinesisVideoStreams**
+- **diagrams.aws.media.MediaServices**
## aws.migration
- **diagrams.aws.migration.ApplicationDiscoveryService**, **ADS** (alias)
- **diagrams.aws.migration.CloudendureMigration**, **CEM** (alias)
- **diagrams.aws.migration.DatabaseMigrationService**, **DMS** (alias)
+- **diagrams.aws.migration.DatasyncAgent**
- **diagrams.aws.migration.Datasync**
- **diagrams.aws.migration.MigrationAndTransfer**, **MAT** (alias)
- **diagrams.aws.migration.MigrationHub**
@@ -243,17 +385,23 @@ Node classes list of aws provider.
## aws.ml
- **diagrams.aws.ml.ApacheMxnetOnAWS**
+- **diagrams.aws.ml.AugmentedAi**
- **diagrams.aws.ml.Comprehend**
- **diagrams.aws.ml.DeepLearningAmis**
- **diagrams.aws.ml.DeepLearningContainers**, **DLC** (alias)
+- **diagrams.aws.ml.Deepcomposer**
- **diagrams.aws.ml.Deeplens**
- **diagrams.aws.ml.Deepracer**
- **diagrams.aws.ml.ElasticInference**
- **diagrams.aws.ml.Forecast**
+- **diagrams.aws.ml.FraudDetector**
+- **diagrams.aws.ml.Kendra**
- **diagrams.aws.ml.Lex**
- **diagrams.aws.ml.MachineLearning**
- **diagrams.aws.ml.Personalize**
- **diagrams.aws.ml.Polly**
+- **diagrams.aws.ml.RekognitionImage**
+- **diagrams.aws.ml.RekognitionVideo**
- **diagrams.aws.ml.Rekognition**
- **diagrams.aws.ml.SagemakerGroundTruth**
- **diagrams.aws.ml.SagemakerModel**
@@ -272,17 +420,25 @@ Node classes list of aws provider.
- **diagrams.aws.mobile.APIGateway**
- **diagrams.aws.mobile.Appsync**
- **diagrams.aws.mobile.DeviceFarm**
+- **diagrams.aws.mobile.Mobile**
- **diagrams.aws.mobile.Pinpoint**
## aws.network
+- **diagrams.aws.network.APIGatewayEndpoint**
- **diagrams.aws.network.APIGateway**
- **diagrams.aws.network.AppMesh**
- **diagrams.aws.network.ClientVpn**
- **diagrams.aws.network.CloudMap**
+- **diagrams.aws.network.CloudFrontDownloadDistribution**
+- **diagrams.aws.network.CloudFrontEdgeLocation**
+- **diagrams.aws.network.CloudFrontStreamingDistribution**
- **diagrams.aws.network.CloudFront**, **CF** (alias)
- **diagrams.aws.network.DirectConnect**
- **diagrams.aws.network.ElasticLoadBalancing**, **ELB** (alias)
+- **diagrams.aws.network.ElbApplicationLoadBalancer**, **ALB** (alias)
+- **diagrams.aws.network.ElbClassicLoadBalancer**, **CLB** (alias)
+- **diagrams.aws.network.ElbNetworkLoadBalancer**, **NLB** (alias)
- **diagrams.aws.network.Endpoint**
- **diagrams.aws.network.GlobalAccelerator**, **GAX** (alias)
- **diagrams.aws.network.InternetGateway**
@@ -292,20 +448,32 @@ Node classes list of aws provider.
- **diagrams.aws.network.PrivateSubnet**
- **diagrams.aws.network.Privatelink**
- **diagrams.aws.network.PublicSubnet**
+- **diagrams.aws.network.Route53HostedZone**
- **diagrams.aws.network.Route53**
- **diagrams.aws.network.RouteTable**
- **diagrams.aws.network.SiteToSiteVpn**
- **diagrams.aws.network.TransitGateway**
+- **diagrams.aws.network.VPCCustomerGateway**
+- **diagrams.aws.network.VPCElasticNetworkAdapter**
+- **diagrams.aws.network.VPCElasticNetworkInterface**
+- **diagrams.aws.network.VPCFlowLogs**
- **diagrams.aws.network.VPCPeering**
- **diagrams.aws.network.VPCRouter**
+- **diagrams.aws.network.VPCTrafficMirroring**
- **diagrams.aws.network.VPC**
+- **diagrams.aws.network.VpnConnection**
+- **diagrams.aws.network.VpnGateway**
## aws.quantum
- **diagrams.aws.quantum.Braket**
+- **diagrams.aws.quantum.QuantumTechnologies**
## aws.robotics
+- **diagrams.aws.robotics.RobomakerCloudExtensionRos**
+- **diagrams.aws.robotics.RobomakerDevelopmentEnvironment**
+- **diagrams.aws.robotics.RobomakerFleetManagement**
- **diagrams.aws.robotics.RobomakerSimulator**
- **diagrams.aws.robotics.Robomaker**
- **diagrams.aws.robotics.Robotics**
@@ -313,10 +481,13 @@ Node classes list of aws provider.
## aws.satellite
- **diagrams.aws.satellite.GroundStation**
+- **diagrams.aws.satellite.Satellite**
## aws.security
+- **diagrams.aws.security.AdConnector**
- **diagrams.aws.security.Artifact**
+- **diagrams.aws.security.CertificateAuthority**
- **diagrams.aws.security.CertificateManager**, **ACM** (alias)
- **diagrams.aws.security.CloudDirectory**
- **diagrams.aws.security.Cloudhsm**, **CloudHSM** (alias)
@@ -326,19 +497,32 @@ Node classes list of aws provider.
- **diagrams.aws.security.FirewallManager**, **FMS** (alias)
- **diagrams.aws.security.Guardduty**
- **diagrams.aws.security.IdentityAndAccessManagementIamAccessAnalyzer**, **IAMAccessAnalyzer** (alias)
+- **diagrams.aws.security.IdentityAndAccessManagementIamAddOn**
+- **diagrams.aws.security.IdentityAndAccessManagementIamAWSStsAlternate**
- **diagrams.aws.security.IdentityAndAccessManagementIamAWSSts**, **IAMAWSSts** (alias)
+- **diagrams.aws.security.IdentityAndAccessManagementIamDataEncryptionKey**
+- **diagrams.aws.security.IdentityAndAccessManagementIamEncryptedData**
+- **diagrams.aws.security.IdentityAndAccessManagementIamLongTermSecurityCredential**
+- **diagrams.aws.security.IdentityAndAccessManagementIamMfaToken**
- **diagrams.aws.security.IdentityAndAccessManagementIamPermissions**, **IAMPermissions** (alias)
- **diagrams.aws.security.IdentityAndAccessManagementIamRole**, **IAMRole** (alias)
+- **diagrams.aws.security.IdentityAndAccessManagementIamTemporarySecurityCredential**
- **diagrams.aws.security.IdentityAndAccessManagementIam**, **IAM** (alias)
+- **diagrams.aws.security.InspectorAgent**
- **diagrams.aws.security.Inspector**
- **diagrams.aws.security.KeyManagementService**, **KMS** (alias)
- **diagrams.aws.security.Macie**
+- **diagrams.aws.security.ManagedMicrosoftAd**
- **diagrams.aws.security.ResourceAccessManager**, **RAM** (alias)
- **diagrams.aws.security.SecretsManager**
+- **diagrams.aws.security.SecurityHubFinding**
- **diagrams.aws.security.SecurityHub**
- **diagrams.aws.security.SecurityIdentityAndCompliance**
+- **diagrams.aws.security.ShieldAdvanced**
- **diagrams.aws.security.Shield**
+- **diagrams.aws.security.SimpleAd**
- **diagrams.aws.security.SingleSignOn**
+- **diagrams.aws.security.WAFFilteringRule**
- **diagrams.aws.security.WAF**
## aws.storage
@@ -347,15 +531,28 @@ Node classes list of aws provider.
- **diagrams.aws.storage.CloudendureDisasterRecovery**, **CDR** (alias)
- **diagrams.aws.storage.EFSInfrequentaccessPrimaryBg**
- **diagrams.aws.storage.EFSStandardPrimaryBg**
+- **diagrams.aws.storage.ElasticBlockStoreEBSSnapshot**
+- **diagrams.aws.storage.ElasticBlockStoreEBSVolume**
- **diagrams.aws.storage.ElasticBlockStoreEBS**, **EBS** (alias)
+- **diagrams.aws.storage.ElasticFileSystemEFSFileSystem**
- **diagrams.aws.storage.ElasticFileSystemEFS**, **EFS** (alias)
- **diagrams.aws.storage.FsxForLustre**
- **diagrams.aws.storage.FsxForWindowsFileServer**
- **diagrams.aws.storage.Fsx**, **FSx** (alias)
+- **diagrams.aws.storage.MultipleVolumesResource**
+- **diagrams.aws.storage.S3GlacierArchive**
+- **diagrams.aws.storage.S3GlacierVault**
- **diagrams.aws.storage.S3Glacier**
+- **diagrams.aws.storage.SimpleStorageServiceS3BucketWithObjects**
+- **diagrams.aws.storage.SimpleStorageServiceS3Bucket**
+- **diagrams.aws.storage.SimpleStorageServiceS3Object**
- **diagrams.aws.storage.SimpleStorageServiceS3**, **S3** (alias)
+- **diagrams.aws.storage.SnowFamilySnowballImportExport**
- **diagrams.aws.storage.SnowballEdge**
- **diagrams.aws.storage.Snowball**
- **diagrams.aws.storage.Snowmobile**
+- **diagrams.aws.storage.StorageGatewayCachedVolume**
+- **diagrams.aws.storage.StorageGatewayNonCachedVolume**
+- **diagrams.aws.storage.StorageGatewayVirtualTapeLibrary**
- **diagrams.aws.storage.StorageGateway**
- **diagrams.aws.storage.Storage**
diff --git a/docs/nodes/azure.md b/docs/nodes/azure.md
index 076b18d8..c6fe5852 100644
--- a/docs/nodes/azure.md
+++ b/docs/nodes/azure.md
@@ -18,9 +18,12 @@ Node classes list of azure provider.
- **diagrams.azure.analytics.Hdinsightclusters**
- **diagrams.azure.analytics.LogAnalyticsWorkspaces**
- **diagrams.azure.analytics.StreamAnalyticsJobs**
+- **diagrams.azure.analytics.SynapseAnalytics**
## azure.compute
+- **diagrams.azure.compute.AppServices**
+- **diagrams.azure.compute.AutomanagedVM**
- **diagrams.azure.compute.AvailabilitySets**
- **diagrams.azure.compute.BatchAccounts**
- **diagrams.azure.compute.CitrixVirtualDesktopsEssentials**
@@ -29,36 +32,51 @@ Node classes list of azure provider.
- **diagrams.azure.compute.CloudsimpleVirtualMachines**
- **diagrams.azure.compute.ContainerInstances**
- **diagrams.azure.compute.ContainerRegistries**, **ACR** (alias)
+- **diagrams.azure.compute.DiskEncryptionSets**
- **diagrams.azure.compute.DiskSnapshots**
- **diagrams.azure.compute.Disks**
- **diagrams.azure.compute.FunctionApps**
+- **diagrams.azure.compute.ImageDefinitions**
+- **diagrams.azure.compute.ImageVersions**
- **diagrams.azure.compute.KubernetesServices**, **AKS** (alias)
- **diagrams.azure.compute.MeshApplications**
+- **diagrams.azure.compute.OsImages**
- **diagrams.azure.compute.SAPHANAOnAzure**
- **diagrams.azure.compute.ServiceFabricClusters**
+- **diagrams.azure.compute.SharedImageGalleries**
+- **diagrams.azure.compute.SpringCloud**
- **diagrams.azure.compute.VMClassic**
- **diagrams.azure.compute.VMImages**
- **diagrams.azure.compute.VMLinux**
+- **diagrams.azure.compute.VMScaleSet**, **VMSS** (alias)
- **diagrams.azure.compute.VMWindows**
- **diagrams.azure.compute.VM**
+- **diagrams.azure.compute.Workspaces**
## azure.database
- **diagrams.azure.database.BlobStorage**
- **diagrams.azure.database.CacheForRedis**
- **diagrams.azure.database.CosmosDb**
+- **diagrams.azure.database.DataExplorerClusters**
+- **diagrams.azure.database.DataFactory**
- **diagrams.azure.database.DataLake**
- **diagrams.azure.database.DatabaseForMariadbServers**
- **diagrams.azure.database.DatabaseForMysqlServers**
- **diagrams.azure.database.DatabaseForPostgresqlServers**
- **diagrams.azure.database.ElasticDatabasePools**
- **diagrams.azure.database.ElasticJobAgents**
+- **diagrams.azure.database.InstancePools**
- **diagrams.azure.database.ManagedDatabases**
- **diagrams.azure.database.SQLDatabases**
- **diagrams.azure.database.SQLDatawarehouse**
- **diagrams.azure.database.SQLManagedInstances**
- **diagrams.azure.database.SQLServerStretchDatabases**
- **diagrams.azure.database.SQLServers**
+- **diagrams.azure.database.SQLVM**
+- **diagrams.azure.database.SQL**
+- **diagrams.azure.database.SsisLiftAndShiftIr**
+- **diagrams.azure.database.SynapseAnalytics**
- **diagrams.azure.database.VirtualClusters**
- **diagrams.azure.database.VirtualDatacenter**
@@ -69,6 +87,7 @@ Node classes list of azure provider.
- **diagrams.azure.devops.Boards**
- **diagrams.azure.devops.Devops**
- **diagrams.azure.devops.DevtestLabs**
+- **diagrams.azure.devops.LabServices**
- **diagrams.azure.devops.Pipelines**
- **diagrams.azure.devops.Repos**
- **diagrams.azure.devops.TestPlans**
@@ -114,9 +133,11 @@ Node classes list of azure provider.
- **diagrams.azure.identity.AppRegistrations**
- **diagrams.azure.identity.ConditionalAccess**
- **diagrams.azure.identity.EnterpriseApplications**
+- **diagrams.azure.identity.Groups**
- **diagrams.azure.identity.IdentityGovernance**
- **diagrams.azure.identity.InformationProtection**
- **diagrams.azure.identity.ManagedIdentities**
+- **diagrams.azure.identity.Users**
## azure.integration
@@ -131,12 +152,14 @@ Node classes list of azure provider.
- **diagrams.azure.integration.IntegrationServiceEnvironments**
- **diagrams.azure.integration.LogicAppsCustomConnector**
- **diagrams.azure.integration.LogicApps**
+- **diagrams.azure.integration.PartnerTopic**
- **diagrams.azure.integration.SendgridAccounts**
- **diagrams.azure.integration.ServiceBusRelays**
- **diagrams.azure.integration.ServiceBus**
- **diagrams.azure.integration.ServiceCatalogManagedApplicationDefinitions**
- **diagrams.azure.integration.SoftwareAsAService**
- **diagrams.azure.integration.StorsimpleDeviceManagers**
+- **diagrams.azure.integration.SystemTopic**
## azure.iot
@@ -153,6 +176,8 @@ Node classes list of azure provider.
## azure.migration
+- **diagrams.azure.migration.DataBoxEdge**
+- **diagrams.azure.migration.DataBox**
- **diagrams.azure.migration.DatabaseMigrationServices**
- **diagrams.azure.migration.MigrationProjects**
- **diagrams.azure.migration.RecoveryServicesVaults**
@@ -197,6 +222,7 @@ Node classes list of azure provider.
- **diagrams.azure.network.RouteFilters**
- **diagrams.azure.network.RouteTables**
- **diagrams.azure.network.ServiceEndpointPolicies**
+- **diagrams.azure.network.Subnets**
- **diagrams.azure.network.TrafficManagerProfiles**
- **diagrams.azure.network.VirtualNetworkClassic**
- **diagrams.azure.network.VirtualNetworkGateways**
@@ -205,6 +231,10 @@ Node classes list of azure provider.
## azure.security
+- **diagrams.azure.security.ApplicationSecurityGroups**
+- **diagrams.azure.security.ConditionalAccess**
+- **diagrams.azure.security.Defender**
+- **diagrams.azure.security.ExtendedSecurityUpdates**
- **diagrams.azure.security.KeyVaults**
- **diagrams.azure.security.SecurityCenter**
- **diagrams.azure.security.Sentinel**
diff --git a/docs/nodes/custom.md b/docs/nodes/custom.md
new file mode 100644
index 00000000..8c2b1b4b
--- /dev/null
+++ b/docs/nodes/custom.md
@@ -0,0 +1,90 @@
+---
+id: custom
+title: Custom
+---
+
+## Custom with local icons
+
+For this example we use the following architecture:
+
+```
+.
+├── custom_local.py
+├── my_resources
+│ ├── cc_heart.black.png
+│ ├── cc_attribution.png
+│ ├──...
+```
+
+The content of custom_local.py file:
+
+```python
+from diagrams import Diagram, Cluster
+from diagrams.custom import Custom
+
+
+with Diagram("Custom with local icons\n Can be downloaded here: \nhttps://creativecommons.org/about/downloads/", show=False, filename="custom_local", direction="LR"):
+ cc_heart = Custom("Creative Commons", "./my_resources/cc_heart.black.png")
+ cc_attribution = Custom("Credit must be given to the creator", "./my_resources/cc_attribution.png")
+
+ cc_sa = Custom("Adaptations must be shared\n under the same terms", "./my_resources/cc_sa.png")
+ cc_nd = Custom("No derivatives or adaptations\n of the work are permitted", "./my_resources/cc_nd.png")
+ cc_zero = Custom("Public Domain Dedication", "./my_resources/cc_zero.png")
+
+ with Cluster("Non Commercial"):
+ non_commercial = [Custom("Y", "./my_resources/cc_nc-jp.png") - Custom("E", "./my_resources/cc_nc-eu.png") - Custom("S", "./my_resources/cc_nc.png")]
+
+ cc_heart >> cc_attribution
+ cc_heart >> non_commercial
+ cc_heart >> cc_sa
+ cc_heart >> cc_nd
+ cc_heart >> cc_zero
+```
+
+It will generate the following diagram:
+
+
+
+
+## Custom with remote icons
+
+If your icons are hosted and can be accessed when you generate the diagrams, you can
+
+```python
+from diagrams import Diagram, Cluster
+from diagrams.custom import Custom
+from urllib.request import urlretrieve
+
+with Diagram("Custom with remote icons", show=False, filename="custom_remote", direction="LR"):
+
+ # download the icon image file
+ diagrams_url = "https://github.com/mingrammer/diagrams/raw/master/assets/img/diagrams.png"
+ diagrams_icon = "diagrams.png"
+ urlretrieve(diagrams_url, diagrams_icon)
+
+ diagrams = Custom("Diagrams", diagrams_icon)
+
+ with Cluster("Some Providers"):
+
+ openstack_url = "https://github.com/mingrammer/diagrams/raw/master/resources/openstack/openstack.png"
+ openstack_icon = "openstack.png"
+ urlretrieve(openstack_url, openstack_icon)
+
+ openstack = Custom("OpenStack", openstack_icon)
+
+ elastic_url = "https://github.com/mingrammer/diagrams/raw/master/resources/elastic/saas/elastic.png"
+ elastic_icon = "elastic.png"
+ urlretrieve(elastic_url, elastic_icon)
+
+ elastic = Custom("Elastic", elastic_icon)
+
+ diagrams >> openstack
+ diagrams >> elastic
+```
+
+It will generate the following diagram:
+
+
+
+
+Another example can be found [Here](https://diagrams.mingrammer.com/docs/getting-started/examples#rabbitmq-consumers-with-custom-nodes).
diff --git a/docs/nodes/gcp.md b/docs/nodes/gcp.md
index 39ad2e31..3a1ee484 100644
--- a/docs/nodes/gcp.md
+++ b/docs/nodes/gcp.md
@@ -112,6 +112,10 @@ Node classes list of gcp provider.
- **diagrams.gcp.network.VirtualPrivateCloud**, **VPC** (alias)
- **diagrams.gcp.network.VPN**
+## gcp.operations
+
+- **diagrams.gcp.operations.Monitoring**
+
## gcp.security
- **diagrams.gcp.security.Iam**
diff --git a/docs/nodes/ibm.md b/docs/nodes/ibm.md
new file mode 100644
index 00000000..15a53636
--- /dev/null
+++ b/docs/nodes/ibm.md
@@ -0,0 +1,228 @@
+---
+id: ibm
+title: IBM
+---
+
+Node classes list of ibm provider.
+
+## ibm.analytics
+
+- **diagrams.ibm.analytics.Analytics**
+- **diagrams.ibm.analytics.DataIntegration**
+- **diagrams.ibm.analytics.DataRepositories**
+- **diagrams.ibm.analytics.DeviceAnalytics**
+- **diagrams.ibm.analytics.StreamingComputing**
+
+## ibm.applications
+
+- **diagrams.ibm.applications.ActionableInsight**
+- **diagrams.ibm.applications.Annotate**
+- **diagrams.ibm.applications.ApiDeveloperPortal**
+- **diagrams.ibm.applications.ApiPolyglotRuntimes**
+- **diagrams.ibm.applications.AppServer**
+- **diagrams.ibm.applications.ApplicationLogic**
+- **diagrams.ibm.applications.EnterpriseApplications**
+- **diagrams.ibm.applications.Index**
+- **diagrams.ibm.applications.IotApplication**
+- **diagrams.ibm.applications.Microservice**
+- **diagrams.ibm.applications.MobileApp**
+- **diagrams.ibm.applications.Ontology**
+- **diagrams.ibm.applications.OpenSourceTools**
+- **diagrams.ibm.applications.RuntimeServices**
+- **diagrams.ibm.applications.SaasApplications**
+- **diagrams.ibm.applications.ServiceBroker**
+- **diagrams.ibm.applications.SpeechToText**
+- **diagrams.ibm.applications.VisualRecognition**
+- **diagrams.ibm.applications.Visualization**
+
+## ibm.blockchain
+
+- **diagrams.ibm.blockchain.BlockchainDeveloper**
+- **diagrams.ibm.blockchain.Blockchain**
+- **diagrams.ibm.blockchain.CertificateAuthority**
+- **diagrams.ibm.blockchain.ClientApplication**
+- **diagrams.ibm.blockchain.Communication**
+- **diagrams.ibm.blockchain.Consensus**
+- **diagrams.ibm.blockchain.EventListener**
+- **diagrams.ibm.blockchain.Event**
+- **diagrams.ibm.blockchain.ExistingEnterpriseSystems**
+- **diagrams.ibm.blockchain.HyperledgerFabric**
+- **diagrams.ibm.blockchain.KeyManagement**
+- **diagrams.ibm.blockchain.Ledger**
+- **diagrams.ibm.blockchain.MembershipServicesProviderApi**
+- **diagrams.ibm.blockchain.Membership**
+- **diagrams.ibm.blockchain.MessageBus**
+- **diagrams.ibm.blockchain.Node**
+- **diagrams.ibm.blockchain.Services**
+- **diagrams.ibm.blockchain.SmartContract**
+- **diagrams.ibm.blockchain.TransactionManager**
+- **diagrams.ibm.blockchain.Wallet**
+
+## ibm.compute
+
+- **diagrams.ibm.compute.BareMetalServer**
+- **diagrams.ibm.compute.ImageService**
+- **diagrams.ibm.compute.Instance**
+- **diagrams.ibm.compute.Key**
+- **diagrams.ibm.compute.PowerInstance**
+
+## ibm.data
+
+- **diagrams.ibm.data.Caches**
+- **diagrams.ibm.data.Cloud**
+- **diagrams.ibm.data.ConversationTrainedDeployed**
+- **diagrams.ibm.data.DataServices**
+- **diagrams.ibm.data.DataSources**
+- **diagrams.ibm.data.DeviceIdentityService**
+- **diagrams.ibm.data.DeviceRegistry**
+- **diagrams.ibm.data.EnterpriseData**
+- **diagrams.ibm.data.EnterpriseUserDirectory**
+- **diagrams.ibm.data.FileRepository**
+- **diagrams.ibm.data.GroundTruth**
+- **diagrams.ibm.data.Model**
+- **diagrams.ibm.data.TmsDataInterface**
+
+## ibm.devops
+
+- **diagrams.ibm.devops.ArtifactManagement**
+- **diagrams.ibm.devops.BuildTest**
+- **diagrams.ibm.devops.CodeEditor**
+- **diagrams.ibm.devops.CollaborativeDevelopment**
+- **diagrams.ibm.devops.ConfigurationManagement**
+- **diagrams.ibm.devops.ContinuousDeploy**
+- **diagrams.ibm.devops.ContinuousTesting**
+- **diagrams.ibm.devops.Devops**
+- **diagrams.ibm.devops.Provision**
+- **diagrams.ibm.devops.ReleaseManagement**
+
+## ibm.general
+
+- **diagrams.ibm.general.CloudMessaging**
+- **diagrams.ibm.general.CloudServices**
+- **diagrams.ibm.general.Cloudant**
+- **diagrams.ibm.general.CognitiveServices**
+- **diagrams.ibm.general.DataSecurity**
+- **diagrams.ibm.general.Enterprise**
+- **diagrams.ibm.general.GovernanceRiskCompliance**
+- **diagrams.ibm.general.IBMContainers**
+- **diagrams.ibm.general.IBMPublicCloud**
+- **diagrams.ibm.general.IdentityAccessManagement**
+- **diagrams.ibm.general.IdentityProvider**
+- **diagrams.ibm.general.InfrastructureSecurity**
+- **diagrams.ibm.general.Internet**
+- **diagrams.ibm.general.IotCloud**
+- **diagrams.ibm.general.MicroservicesApplication**
+- **diagrams.ibm.general.MicroservicesMesh**
+- **diagrams.ibm.general.MonitoringLogging**
+- **diagrams.ibm.general.Monitoring**
+- **diagrams.ibm.general.ObjectStorage**
+- **diagrams.ibm.general.OfflineCapabilities**
+- **diagrams.ibm.general.Openwhisk**
+- **diagrams.ibm.general.PeerCloud**
+- **diagrams.ibm.general.RetrieveRank**
+- **diagrams.ibm.general.Scalable**
+- **diagrams.ibm.general.ServiceDiscoveryConfiguration**
+- **diagrams.ibm.general.TextToSpeech**
+- **diagrams.ibm.general.TransformationConnectivity**
+
+## ibm.infrastructure
+
+- **diagrams.ibm.infrastructure.Channels**
+- **diagrams.ibm.infrastructure.CloudMessaging**
+- **diagrams.ibm.infrastructure.Dashboard**
+- **diagrams.ibm.infrastructure.Diagnostics**
+- **diagrams.ibm.infrastructure.EdgeServices**
+- **diagrams.ibm.infrastructure.EnterpriseMessaging**
+- **diagrams.ibm.infrastructure.EventFeed**
+- **diagrams.ibm.infrastructure.InfrastructureServices**
+- **diagrams.ibm.infrastructure.InterserviceCommunication**
+- **diagrams.ibm.infrastructure.LoadBalancingRouting**
+- **diagrams.ibm.infrastructure.MicroservicesMesh**
+- **diagrams.ibm.infrastructure.MobileBackend**
+- **diagrams.ibm.infrastructure.MobileProviderNetwork**
+- **diagrams.ibm.infrastructure.MonitoringLogging**
+- **diagrams.ibm.infrastructure.Monitoring**
+- **diagrams.ibm.infrastructure.PeerServices**
+- **diagrams.ibm.infrastructure.ServiceDiscoveryConfiguration**
+- **diagrams.ibm.infrastructure.TransformationConnectivity**
+
+## ibm.management
+
+- **diagrams.ibm.management.AlertNotification**
+- **diagrams.ibm.management.ApiManagement**
+- **diagrams.ibm.management.CloudManagement**
+- **diagrams.ibm.management.ClusterManagement**
+- **diagrams.ibm.management.ContentManagement**
+- **diagrams.ibm.management.DataServices**
+- **diagrams.ibm.management.DeviceManagement**
+- **diagrams.ibm.management.InformationGovernance**
+- **diagrams.ibm.management.ItServiceManagement**
+- **diagrams.ibm.management.Management**
+- **diagrams.ibm.management.MonitoringMetrics**
+- **diagrams.ibm.management.ProcessManagement**
+- **diagrams.ibm.management.ProviderCloudPortalService**
+- **diagrams.ibm.management.PushNotifications**
+- **diagrams.ibm.management.ServiceManagementTools**
+
+## ibm.network
+
+- **diagrams.ibm.network.Bridge**
+- **diagrams.ibm.network.DirectLink**
+- **diagrams.ibm.network.Enterprise**
+- **diagrams.ibm.network.Firewall**
+- **diagrams.ibm.network.FloatingIp**
+- **diagrams.ibm.network.Gateway**
+- **diagrams.ibm.network.InternetServices**
+- **diagrams.ibm.network.LoadBalancerListener**
+- **diagrams.ibm.network.LoadBalancerPool**
+- **diagrams.ibm.network.LoadBalancer**
+- **diagrams.ibm.network.LoadBalancingRouting**
+- **diagrams.ibm.network.PublicGateway**
+- **diagrams.ibm.network.Region**
+- **diagrams.ibm.network.Router**
+- **diagrams.ibm.network.Rules**
+- **diagrams.ibm.network.Subnet**
+- **diagrams.ibm.network.TransitGateway**
+- **diagrams.ibm.network.Vpc**
+- **diagrams.ibm.network.VpnConnection**
+- **diagrams.ibm.network.VpnGateway**
+- **diagrams.ibm.network.VpnPolicy**
+
+## ibm.security
+
+- **diagrams.ibm.security.ApiSecurity**
+- **diagrams.ibm.security.BlockchainSecurityService**
+- **diagrams.ibm.security.DataSecurity**
+- **diagrams.ibm.security.Firewall**
+- **diagrams.ibm.security.Gateway**
+- **diagrams.ibm.security.GovernanceRiskCompliance**
+- **diagrams.ibm.security.IdentityAccessManagement**
+- **diagrams.ibm.security.IdentityProvider**
+- **diagrams.ibm.security.InfrastructureSecurity**
+- **diagrams.ibm.security.PhysicalSecurity**
+- **diagrams.ibm.security.SecurityMonitoringIntelligence**
+- **diagrams.ibm.security.SecurityServices**
+- **diagrams.ibm.security.TrustendComputing**
+- **diagrams.ibm.security.Vpn**
+
+## ibm.social
+
+- **diagrams.ibm.social.Communities**
+- **diagrams.ibm.social.FileSync**
+- **diagrams.ibm.social.LiveCollaboration**
+- **diagrams.ibm.social.Messaging**
+- **diagrams.ibm.social.Networking**
+
+## ibm.storage
+
+- **diagrams.ibm.storage.BlockStorage**
+- **diagrams.ibm.storage.ObjectStorage**
+
+## ibm.user
+
+- **diagrams.ibm.user.Browser**
+- **diagrams.ibm.user.Device**
+- **diagrams.ibm.user.IntegratedDigitalExperiences**
+- **diagrams.ibm.user.PhysicalEntity**
+- **diagrams.ibm.user.Sensor**
+- **diagrams.ibm.user.User**
diff --git a/docs/nodes/oci.md b/docs/nodes/oci.md
index 42fe874f..fcedc97e 100644
--- a/docs/nodes/oci.md
+++ b/docs/nodes/oci.md
@@ -47,12 +47,12 @@ Node classes list of oci provider.
## oci.database
-- **diagrams.oci.database.AutonomousWhite**
-- **diagrams.oci.database.Autonomous**
+- **diagrams.oci.database.AutonomousWhite**, **ADBWhite** (alias)
+- **diagrams.oci.database.Autonomous**, **ADB** (alias)
- **diagrams.oci.database.BigdataServiceWhite**
- **diagrams.oci.database.BigdataService**
-- **diagrams.oci.database.DatabaseServiceWhite**
-- **diagrams.oci.database.DatabaseService**
+- **diagrams.oci.database.DatabaseServiceWhite**, **DBServiceWhite** (alias)
+- **diagrams.oci.database.DatabaseService**, **DBService** (alias)
- **diagrams.oci.database.DataflowApacheWhite**
- **diagrams.oci.database.DataflowApache**
- **diagrams.oci.database.DcatWhite**
diff --git a/docs/nodes/onprem.md b/docs/nodes/onprem.md
index 7f90f7b2..033c72f3 100644
--- a/docs/nodes/onprem.md
+++ b/docs/nodes/onprem.md
@@ -20,13 +20,17 @@ Node classes list of onprem provider.
- **diagrams.onprem.analytics.Hive**
- **diagrams.onprem.analytics.Metabase**
- **diagrams.onprem.analytics.Norikra**
+- **diagrams.onprem.analytics.Powerbi**, **PowerBI** (alias)
+- **diagrams.onprem.analytics.Presto**
- **diagrams.onprem.analytics.Singer**
- **diagrams.onprem.analytics.Spark**
- **diagrams.onprem.analytics.Storm**
+- **diagrams.onprem.analytics.Superset**
- **diagrams.onprem.analytics.Tableau**
## onprem.auth
+- **diagrams.onprem.auth.Boundary**
- **diagrams.onprem.auth.BuzzfeedSso**
- **diagrams.onprem.auth.Oauth2Proxy**
@@ -46,6 +50,7 @@ Node classes list of onprem provider.
- **diagrams.onprem.ci.Circleci**, **CircleCI** (alias)
- **diagrams.onprem.ci.Concourseci**, **ConcourseCI** (alias)
- **diagrams.onprem.ci.Droneci**, **DroneCI** (alias)
+- **diagrams.onprem.ci.GithubActions**
- **diagrams.onprem.ci.Gitlabci**, **GitlabCI** (alias)
- **diagrams.onprem.ci.Jenkins**
- **diagrams.onprem.ci.Teamcity**, **TC** (alias)
@@ -65,7 +70,11 @@ Node classes list of onprem provider.
## onprem.container
+- **diagrams.onprem.container.Containerd**
+- **diagrams.onprem.container.Crio**
- **diagrams.onprem.container.Docker**
+- **diagrams.onprem.container.Firecracker**
+- **diagrams.onprem.container.Gvisor**
- **diagrams.onprem.container.Lxc**, **LXC** (alias)
- **diagrams.onprem.container.Rkt**, **RKT** (alias)
@@ -90,6 +99,11 @@ Node classes list of onprem provider.
- **diagrams.onprem.database.Postgresql**, **PostgreSQL** (alias)
- **diagrams.onprem.database.Scylla**
+## onprem.dns
+
+- **diagrams.onprem.dns.Coredns**
+- **diagrams.onprem.dns.Powerdns**
+
## onprem.etl
- **diagrams.onprem.etl.Embulk**
@@ -100,6 +114,10 @@ Node classes list of onprem provider.
- **diagrams.onprem.gitops.Flagger**
- **diagrams.onprem.gitops.Flux**
+## onprem.groupware
+
+- **diagrams.onprem.groupware.Nextcloud**
+
## onprem.iac
- **diagrams.onprem.iac.Ansible**
@@ -132,8 +150,11 @@ Node classes list of onprem provider.
## onprem.monitoring
+- **diagrams.onprem.monitoring.Cortex**
- **diagrams.onprem.monitoring.Datadog**
- **diagrams.onprem.monitoring.Grafana**
+- **diagrams.onprem.monitoring.Humio**
+- **diagrams.onprem.monitoring.Newrelic**
- **diagrams.onprem.monitoring.PrometheusOperator**
- **diagrams.onprem.monitoring.Prometheus**
- **diagrams.onprem.monitoring.Sentry**
@@ -143,6 +164,7 @@ Node classes list of onprem provider.
## onprem.network
+- **diagrams.onprem.network.Ambassador**
- **diagrams.onprem.network.Apache**
- **diagrams.onprem.network.Bind9**
- **diagrams.onprem.network.Caddy**
@@ -180,6 +202,7 @@ Node classes list of onprem provider.
- **diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias)
- **diagrams.onprem.queue.Celery**
- **diagrams.onprem.queue.Kafka**
+- **diagrams.onprem.queue.Nats**
- **diagrams.onprem.queue.Rabbitmq**, **RabbitMQ** (alias)
- **diagrams.onprem.queue.Zeromq**, **ZeroMQ** (alias)
@@ -189,6 +212,7 @@ Node classes list of onprem provider.
## onprem.security
+- **diagrams.onprem.security.Bitwarden**
- **diagrams.onprem.security.Trivy**
- **diagrams.onprem.security.Vault**
@@ -198,9 +222,14 @@ Node classes list of onprem provider.
- **diagrams.onprem.storage.Ceph**, **CEPH** (alias)
- **diagrams.onprem.storage.Glusterfs**
+## onprem.tracing
+
+- **diagrams.onprem.tracing.Jaeger**
+
## onprem.vcs
- **diagrams.onprem.vcs.Git**
+- **diagrams.onprem.vcs.Gitea**
- **diagrams.onprem.vcs.Github**
- **diagrams.onprem.vcs.Gitlab**
diff --git a/docs/nodes/programming.md b/docs/nodes/programming.md
index 86c07b70..fdd25404 100644
--- a/docs/nodes/programming.md
+++ b/docs/nodes/programming.md
@@ -5,15 +5,44 @@ title: Programming
Node classes list of programming provider.
+## programming.flowchart
+
+- **diagrams.programming.flowchart.Action**
+- **diagrams.programming.flowchart.Collate**
+- **diagrams.programming.flowchart.Database**
+- **diagrams.programming.flowchart.Decision**
+- **diagrams.programming.flowchart.Delay**
+- **diagrams.programming.flowchart.Display**
+- **diagrams.programming.flowchart.Document**
+- **diagrams.programming.flowchart.InputOutput**
+- **diagrams.programming.flowchart.Inspection**
+- **diagrams.programming.flowchart.InternalStorage**
+- **diagrams.programming.flowchart.LoopLimit**
+- **diagrams.programming.flowchart.ManualInput**
+- **diagrams.programming.flowchart.ManualLoop**
+- **diagrams.programming.flowchart.Merge**
+- **diagrams.programming.flowchart.MultipleDocuments**
+- **diagrams.programming.flowchart.OffPageConnectorLeft**
+- **diagrams.programming.flowchart.OffPageConnectorRight**
+- **diagrams.programming.flowchart.Or**
+- **diagrams.programming.flowchart.PredefinedProcess**
+- **diagrams.programming.flowchart.Preparation**
+- **diagrams.programming.flowchart.Sort**
+- **diagrams.programming.flowchart.StartEnd**
+- **diagrams.programming.flowchart.StoredData**
+- **diagrams.programming.flowchart.SummingJunction**
+
## programming.framework
- **diagrams.programming.framework.Angular**
- **diagrams.programming.framework.Backbone**
- **diagrams.programming.framework.Django**
- **diagrams.programming.framework.Ember**
+- **diagrams.programming.framework.Fastapi**, **FastAPI** (alias)
- **diagrams.programming.framework.Flask**
- **diagrams.programming.framework.Flutter**
- **diagrams.programming.framework.Laravel**
+- **diagrams.programming.framework.Micronaut**
- **diagrams.programming.framework.Rails**
- **diagrams.programming.framework.React**
- **diagrams.programming.framework.Spring**
@@ -39,5 +68,6 @@ Node classes list of programming provider.
- **diagrams.programming.language.R**
- **diagrams.programming.language.Ruby**
- **diagrams.programming.language.Rust**
+- **diagrams.programming.language.Scala**
- **diagrams.programming.language.Swift**
- **diagrams.programming.language.Typescript**, **TypeScript** (alias)
diff --git a/docs/nodes/saas.md b/docs/nodes/saas.md
index 0ffff416..146e93ca 100644
--- a/docs/nodes/saas.md
+++ b/docs/nodes/saas.md
@@ -7,6 +7,7 @@ Node classes list of saas provider.
## saas.alerting
+- **diagrams.saas.alerting.Newrelic**
- **diagrams.saas.alerting.Opsgenie**
- **diagrams.saas.alerting.Pushover**
@@ -22,12 +23,17 @@ Node classes list of saas provider.
## saas.chat
+- **diagrams.saas.chat.Discord**
- **diagrams.saas.chat.Mattermost**
- **diagrams.saas.chat.RocketChat**
- **diagrams.saas.chat.Slack**
- **diagrams.saas.chat.Teams**
- **diagrams.saas.chat.Telegram**
+## saas.filesharing
+
+- **diagrams.saas.filesharing.Nextcloud**
+
## saas.identity
- **diagrams.saas.identity.Auth0**
@@ -36,6 +42,7 @@ Node classes list of saas provider.
## saas.logging
- **diagrams.saas.logging.Datadog**, **DataDog** (alias)
+- **diagrams.saas.logging.Newrelic**, **NewRelic** (alias)
- **diagrams.saas.logging.Papertrail**
## saas.media
diff --git a/poetry.lock b/poetry.lock
index 82a9434e..7aba1d89 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,43 +1,39 @@
[[package]]
-category = "dev"
-description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
name = "appdirs"
+version = "1.4.3"
+description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
+category = "dev"
optional = false
python-versions = "*"
-version = "1.4.3"
[[package]]
-category = "dev"
-description = "An abstract syntax tree for Python with inference support."
name = "astroid"
+version = "2.5"
+description = "An abstract syntax tree for Python with inference support."
+category = "dev"
optional = false
-python-versions = ">=3.5.*"
-version = "2.3.3"
+python-versions = ">=3.6"
[package.dependencies]
-lazy-object-proxy = ">=1.4.0,<1.5.0"
-six = ">=1.12,<2.0"
-wrapt = ">=1.11.0,<1.12.0"
-
-[package.dependencies.typed-ast]
-python = "<3.8"
-version = ">=1.4.0,<1.5"
+lazy-object-proxy = ">=1.4.0"
+typed-ast = {version = ">=1.4.0,<1.5", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""}
+wrapt = ">=1.11,<1.13"
[[package]]
-category = "dev"
-description = "Atomic file writes."
name = "atomicwrites"
+version = "1.3.0"
+description = "Atomic file writes."
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "1.3.0"
[[package]]
-category = "dev"
-description = "Classes Without Boilerplate"
name = "attrs"
+version = "19.3.0"
+description = "Classes Without Boilerplate"
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "19.3.0"
[package.extras]
azure-pipelines = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "pytest-azurepipelines"]
@@ -46,12 +42,12 @@ docs = ["sphinx", "zope.interface"]
tests = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface"]
[[package]]
-category = "dev"
-description = "The uncompromising code formatter."
name = "black"
+version = "19.10b0"
+description = "The uncompromising code formatter."
+category = "dev"
optional = false
python-versions = ">=3.6"
-version = "19.10b0"
[package.dependencies]
appdirs = "*"
@@ -66,64 +62,60 @@ typed-ast = ">=1.4.0"
d = ["aiohttp (>=3.3.2)", "aiohttp-cors"]
[[package]]
-category = "dev"
-description = "Composable command line interface toolkit"
name = "click"
+version = "7.0"
+description = "Composable command line interface toolkit"
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "7.0"
[[package]]
-category = "dev"
-description = "Cross-platform colored terminal text."
-marker = "sys_platform == \"win32\""
name = "colorama"
+version = "0.4.3"
+description = "Cross-platform colored terminal text."
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-version = "0.4.3"
[[package]]
-category = "main"
-description = "PEP 567 Backport"
-marker = "python_version >= \"3.6\" and python_version < \"3.7\""
name = "contextvars"
+version = "2.4"
+description = "PEP 567 Backport"
+category = "main"
optional = false
python-versions = "*"
-version = "2.4"
[package.dependencies]
immutables = ">=0.9"
[[package]]
-category = "main"
-description = "Simple Python interface for Graphviz"
name = "graphviz"
+version = "0.16"
+description = "Simple Python interface for Graphviz"
+category = "main"
optional = false
-python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
-version = "0.13.2"
+python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
[package.extras]
-dev = ["tox (>=3.0)", "flake8", "pep8-naming", "wheel", "twine"]
-docs = ["sphinx (>=1.7)", "sphinx-rtd-theme"]
-test = ["mock (>=2)", "pytest (>=3.4,<3.10.0 || >3.10.0)", "pytest-mock (>=1.8)", "pytest-cov"]
+dev = ["tox (>=3)", "flake8", "pep8-naming", "wheel", "twine"]
+docs = ["sphinx (>=1.8)", "sphinx-rtd-theme"]
+test = ["mock (>=3)", "pytest (>=4)", "pytest-mock (>=2)", "pytest-cov"]
[[package]]
-category = "main"
-description = "Immutable Collections"
-marker = "python_version >= \"3.6\" and python_version < \"3.7\""
name = "immutables"
+version = "0.11"
+description = "Immutable Collections"
+category = "main"
optional = false
python-versions = "*"
-version = "0.11"
[[package]]
-category = "dev"
-description = "Read metadata from Python packages"
-marker = "python_version < \"3.8\""
name = "importlib-metadata"
+version = "1.5.0"
+description = "Read metadata from Python packages"
+category = "dev"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
-version = "1.5.0"
[package.dependencies]
zipp = ">=0.5"
@@ -133,12 +125,20 @@ docs = ["sphinx", "rst.linker"]
testing = ["packaging", "importlib-resources"]
[[package]]
+name = "iniconfig"
+version = "1.1.1"
+description = "iniconfig: brain-dead simple config-ini parsing"
category = "dev"
-description = "A Python utility / library to sort Python imports."
+optional = false
+python-versions = "*"
+
+[[package]]
name = "isort"
+version = "4.3.21"
+description = "A Python utility / library to sort Python imports."
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "4.3.21"
[package.extras]
pipfile = ["pipreqs", "requirementslib"]
@@ -147,12 +147,12 @@ requirements = ["pipreqs", "pip-api"]
xdg_home = ["appdirs (>=1.4.0)"]
[[package]]
-category = "main"
-description = "A very fast and expressive template engine."
name = "jinja2"
+version = "2.11.3"
+description = "A very fast and expressive template engine."
+category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-version = "2.11.1"
[package.dependencies]
MarkupSafe = ">=0.23"
@@ -161,165 +161,174 @@ MarkupSafe = ">=0.23"
i18n = ["Babel (>=0.8)"]
[[package]]
-category = "dev"
-description = "A fast and thorough lazy object proxy."
name = "lazy-object-proxy"
+version = "1.4.3"
+description = "A fast and thorough lazy object proxy."
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "1.4.3"
[[package]]
-category = "main"
-description = "Safely add untrusted strings to HTML/XML markup."
name = "markupsafe"
+version = "1.1.1"
+description = "Safely add untrusted strings to HTML/XML markup."
+category = "main"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
-version = "1.1.1"
[[package]]
-category = "dev"
-description = "McCabe checker, plugin for flake8"
name = "mccabe"
+version = "0.6.1"
+description = "McCabe checker, plugin for flake8"
+category = "dev"
optional = false
python-versions = "*"
-version = "0.6.1"
[[package]]
+name = "packaging"
+version = "20.8"
+description = "Core utilities for Python packages"
category = "dev"
-description = "More routines for operating on iterables, beyond itertools"
-name = "more-itertools"
optional = false
-python-versions = ">=3.5"
-version = "8.2.0"
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+
+[package.dependencies]
+pyparsing = ">=2.0.2"
[[package]]
-category = "dev"
-description = "Utility library for gitignore style pattern matching of file paths."
name = "pathspec"
+version = "0.7.0"
+description = "Utility library for gitignore style pattern matching of file paths."
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-version = "0.7.0"
[[package]]
-category = "dev"
-description = "plugin and hook calling mechanisms for python"
name = "pluggy"
+version = "0.13.1"
+description = "plugin and hook calling mechanisms for python"
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "0.13.1"
[package.dependencies]
-[package.dependencies.importlib-metadata]
-python = "<3.8"
-version = ">=0.12"
+importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
[package.extras]
dev = ["pre-commit", "tox"]
[[package]]
-category = "dev"
-description = "library with cross-python path, ini-parsing, io, code, log facilities"
name = "py"
+version = "1.10.0"
+description = "library with cross-python path, ini-parsing, io, code, log facilities"
+category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "1.8.1"
[[package]]
-category = "dev"
-description = "python code static checker"
name = "pylint"
+version = "2.7.0"
+description = "python code static checker"
+category = "dev"
optional = false
-python-versions = ">=3.5.*"
-version = "2.4.4"
+python-versions = "~=3.6"
[package.dependencies]
-astroid = ">=2.3.0,<2.4"
-colorama = "*"
-isort = ">=4.2.5,<5"
+astroid = "2.5.0"
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+isort = ">=4.2.5,<6"
mccabe = ">=0.6,<0.7"
+toml = ">=0.7.1"
+
+[package.extras]
+docs = ["sphinx (>=3.2,<4.0)", "python-docs-theme"]
[[package]]
+name = "pyparsing"
+version = "2.4.7"
+description = "Python parsing module"
category = "dev"
-description = "pytest: simple powerful testing with Python"
+optional = false
+python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
+
+[[package]]
name = "pytest"
+version = "6.2.1"
+description = "pytest: simple powerful testing with Python"
+category = "dev"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-version = "3.10.1"
+python-versions = ">=3.6"
[package.dependencies]
-atomicwrites = ">=1.0"
-attrs = ">=17.4.0"
-colorama = "*"
-more-itertools = ">=4.0.0"
-pluggy = ">=0.7"
-py = ">=1.5.0"
-setuptools = "*"
-six = ">=1.10.0"
+atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
+attrs = ">=19.2.0"
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
+iniconfig = "*"
+packaging = "*"
+pluggy = ">=0.12,<1.0.0a1"
+py = ">=1.8.2"
+toml = "*"
+
+[package.extras]
+testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
[[package]]
-category = "dev"
-description = "Alternative regular expression module, to replace re."
name = "regex"
-optional = false
-python-versions = "*"
version = "2020.2.20"
-
-[[package]]
+description = "Alternative regular expression module, to replace re."
category = "dev"
-description = "a python refactoring library..."
-name = "rope"
optional = false
python-versions = "*"
-version = "0.14.0"
[[package]]
+name = "rope"
+version = "0.14.0"
+description = "a python refactoring library..."
category = "dev"
-description = "Python 2 and 3 compatibility utilities"
-name = "six"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
-version = "1.14.0"
+python-versions = "*"
[[package]]
-category = "dev"
-description = "Python Library for Tom's Obvious, Minimal Language"
name = "toml"
+version = "0.10.0"
+description = "Python Library for Tom's Obvious, Minimal Language"
+category = "dev"
optional = false
python-versions = "*"
-version = "0.10.0"
[[package]]
-category = "dev"
-description = "a fork of Python 2 and 3 ast modules with type comment support"
name = "typed-ast"
+version = "1.4.1"
+description = "a fork of Python 2 and 3 ast modules with type comment support"
+category = "dev"
optional = false
python-versions = "*"
-version = "1.4.1"
[[package]]
-category = "dev"
-description = "Module for decorators, wrappers and monkey patching."
name = "wrapt"
+version = "1.11.2"
+description = "Module for decorators, wrappers and monkey patching."
+category = "dev"
optional = false
python-versions = "*"
-version = "1.11.2"
[[package]]
-category = "dev"
-description = "Backport of pathlib-compatible object wrapper for zip files"
-marker = "python_version < \"3.8\""
name = "zipp"
+version = "3.1.0"
+description = "Backport of pathlib-compatible object wrapper for zip files"
+category = "dev"
optional = false
python-versions = ">=3.6"
-version = "3.1.0"
[package.extras]
docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"]
[metadata]
-content-hash = "da205efb5c35ed10116f51854f613a43fe000afa1341828bfd8cf3d6d58c4149"
+lock-version = "1.1"
python-versions = "^3.6"
+content-hash = "441f4ec509fbee3d303586c3abba92d71c5148600632f11c7069c709fa67774c"
[metadata.files]
appdirs = [
@@ -327,8 +336,8 @@ appdirs = [
{file = "appdirs-1.4.3.tar.gz", hash = "sha256:9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92"},
]
astroid = [
- {file = "astroid-2.3.3-py3-none-any.whl", hash = "sha256:840947ebfa8b58f318d42301cf8c0a20fd794a33b61cc4638e28e9e61ba32f42"},
- {file = "astroid-2.3.3.tar.gz", hash = "sha256:71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a"},
+ {file = "astroid-2.5-py3-none-any.whl", hash = "sha256:87ae7f2398b8a0ae5638ddecf9987f081b756e0e9fc071aeebdca525671fc4dc"},
+ {file = "astroid-2.5.tar.gz", hash = "sha256:b31c92f545517dcc452f284bc9c044050862fbe6d93d2b3de4a215a6b384bf0d"},
]
atomicwrites = [
{file = "atomicwrites-1.3.0-py2.py3-none-any.whl", hash = "sha256:03472c30eb2c5d1ba9227e4c2ca66ab8287fbfbbda3888aa93dc2e28fc6811b4"},
@@ -354,8 +363,8 @@ contextvars = [
{file = "contextvars-2.4.tar.gz", hash = "sha256:f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e"},
]
graphviz = [
- {file = "graphviz-0.13.2-py2.py3-none-any.whl", hash = "sha256:241fb099e32b8e8c2acca747211c8237e40c0b89f24b1622860075d59f4c4b25"},
- {file = "graphviz-0.13.2.zip", hash = "sha256:60acbeee346e8c14555821eab57dbf68a169e6c10bce40e83c1bf44f63a62a01"},
+ {file = "graphviz-0.16-py2.py3-none-any.whl", hash = "sha256:3cad5517c961090dfc679df6402a57de62d97703e2880a1a46147bb0dc1639eb"},
+ {file = "graphviz-0.16.zip", hash = "sha256:d2d25af1c199cad567ce4806f0449cb74eb30cf451fd7597251e1da099ac6e57"},
]
immutables = [
{file = "immutables-0.11-cp35-cp35m-macosx_10_13_x86_64.whl", hash = "sha256:bce27277a2fe91509cca69181971ab509c2ee862e8b37b09f26b64f90e8fe8fb"},
@@ -379,13 +388,17 @@ importlib-metadata = [
{file = "importlib_metadata-1.5.0-py2.py3-none-any.whl", hash = "sha256:b97607a1a18a5100839aec1dc26a1ea17ee0d93b20b0f008d80a5a050afb200b"},
{file = "importlib_metadata-1.5.0.tar.gz", hash = "sha256:06f5b3a99029c7134207dd882428a66992a9de2bef7c2b699b5641f9886c3302"},
]
+iniconfig = [
+ {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
+ {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
+]
isort = [
{file = "isort-4.3.21-py2.py3-none-any.whl", hash = "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd"},
{file = "isort-4.3.21.tar.gz", hash = "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"},
]
jinja2 = [
- {file = "Jinja2-2.11.1-py2.py3-none-any.whl", hash = "sha256:b0eaf100007721b5c16c1fc1eecb87409464edc10469ddc9a22a27a99123be49"},
- {file = "Jinja2-2.11.1.tar.gz", hash = "sha256:93187ffbc7808079673ef52771baa950426fd664d3aad1d0fa3e95644360e250"},
+ {file = "Jinja2-2.11.3-py2.py3-none-any.whl", hash = "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419"},
+ {file = "Jinja2-2.11.3.tar.gz", hash = "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6"},
]
lazy-object-proxy = [
{file = "lazy-object-proxy-1.4.3.tar.gz", hash = "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0"},
@@ -429,29 +442,48 @@ markupsafe = [
{file = "MarkupSafe-1.1.1-cp35-cp35m-win32.whl", hash = "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1"},
{file = "MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl", hash = "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d"},
{file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff"},
+ {file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5"},
{file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473"},
{file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e"},
+ {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f"},
+ {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0"},
+ {file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7"},
{file = "MarkupSafe-1.1.1-cp36-cp36m-win32.whl", hash = "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66"},
{file = "MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5"},
{file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d"},
+ {file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193"},
{file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e"},
{file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6"},
+ {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1"},
+ {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1"},
+ {file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f"},
{file = "MarkupSafe-1.1.1-cp37-cp37m-win32.whl", hash = "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2"},
{file = "MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c"},
{file = "MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15"},
{file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2"},
{file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42"},
+ {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2"},
+ {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032"},
+ {file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b"},
{file = "MarkupSafe-1.1.1-cp38-cp38-win32.whl", hash = "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b"},
{file = "MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-win32.whl", hash = "sha256:22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39"},
+ {file = "MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8"},
{file = "MarkupSafe-1.1.1.tar.gz", hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"},
]
mccabe = [
{file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
{file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
]
-more-itertools = [
- {file = "more-itertools-8.2.0.tar.gz", hash = "sha256:b1ddb932186d8a6ac451e1d95844b382f55e12686d51ca0c68b6f61f2ab7a507"},
- {file = "more_itertools-8.2.0-py3-none-any.whl", hash = "sha256:5dd8bcf33e5f9513ffa06d5ad33d78f31e1931ac9a18f33d37e77a180d393a7c"},
+packaging = [
+ {file = "packaging-20.8-py2.py3-none-any.whl", hash = "sha256:24e0da08660a87484d1602c30bb4902d74816b6985b93de36926f5bc95741858"},
+ {file = "packaging-20.8.tar.gz", hash = "sha256:78598185a7008a470d64526a8059de9aaa449238f280fc9eb6b13ba6c4109093"},
]
pathspec = [
{file = "pathspec-0.7.0-py2.py3-none-any.whl", hash = "sha256:163b0632d4e31cef212976cf57b43d9fd6b0bac6e67c26015d611a647d5e7424"},
@@ -462,16 +494,20 @@ pluggy = [
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
]
py = [
- {file = "py-1.8.1-py2.py3-none-any.whl", hash = "sha256:c20fdd83a5dbc0af9efd622bee9a5564e278f6380fffcacc43ba6f43db2813b0"},
- {file = "py-1.8.1.tar.gz", hash = "sha256:5e27081401262157467ad6e7f851b7aa402c5852dbcb3dae06768434de5752aa"},
+ {file = "py-1.10.0-py2.py3-none-any.whl", hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a"},
+ {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"},
]
pylint = [
- {file = "pylint-2.4.4-py3-none-any.whl", hash = "sha256:886e6afc935ea2590b462664b161ca9a5e40168ea99e5300935f6591ad467df4"},
- {file = "pylint-2.4.4.tar.gz", hash = "sha256:3db5468ad013380e987410a8d6956226963aed94ecb5f9d3a28acca6d9ac36cd"},
+ {file = "pylint-2.7.0-py3-none-any.whl", hash = "sha256:3ea3926700db399765db1faf53860f11e4e981a090646e9eacd01ca78e020579"},
+ {file = "pylint-2.7.0.tar.gz", hash = "sha256:2e0c6749d809985e4f181c336a8f89b2b797340d8049160bf95f35a3f0ecf6fc"},
+]
+pyparsing = [
+ {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
+ {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"},
]
pytest = [
- {file = "pytest-3.10.1-py2.py3-none-any.whl", hash = "sha256:3f193df1cfe1d1609d4c583838bea3d532b18d6160fd3f55c9447fdca30848ec"},
- {file = "pytest-3.10.1.tar.gz", hash = "sha256:e246cf173c01169b9617fc07264b7b1316e78d7a650055235d6d897bc80d9660"},
+ {file = "pytest-6.2.1-py3-none-any.whl", hash = "sha256:1969f797a1a0dbd8ccf0fecc80262312729afea9c17f1d70ebf85c5e76c6f7c8"},
+ {file = "pytest-6.2.1.tar.gz", hash = "sha256:66e419b1899bc27346cb2c993e12c5e5e8daba9073c1fbce33b9807abc95c306"},
]
regex = [
{file = "regex-2020.2.20-cp27-cp27m-win32.whl", hash = "sha256:99272d6b6a68c7ae4391908fc15f6b8c9a6c345a46b632d7fdb7ef6c883a2bbb"},
@@ -501,10 +537,6 @@ rope = [
{file = "rope-0.14.0-py3-none-any.whl", hash = "sha256:f0dcf719b63200d492b85535ebe5ea9b29e0d0b8aebeb87fe03fc1a65924fdaf"},
{file = "rope-0.14.0.tar.gz", hash = "sha256:c5c5a6a87f7b1a2095fb311135e2a3d1f194f5ecb96900fdd0a9100881f48aaf"},
]
-six = [
- {file = "six-1.14.0-py2.py3-none-any.whl", hash = "sha256:8f3cd2e254d8f793e7f3d6d9df77b92252b52637291d0f0da013c76ea2724b6c"},
- {file = "six-1.14.0.tar.gz", hash = "sha256:236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a"},
-]
toml = [
{file = "toml-0.10.0-py2.7.egg", hash = "sha256:f1db651f9657708513243e61e6cc67d101a39bad662eaa9b5546f789338e07a3"},
{file = "toml-0.10.0-py2.py3-none-any.whl", hash = "sha256:235682dd292d5899d361a811df37e04a8828a5b1da3115886b73cf81ebc9100e"},
@@ -518,19 +550,28 @@ typed-ast = [
{file = "typed_ast-1.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:269151951236b0f9a6f04015a9004084a5ab0d5f19b57de779f908621e7d8b75"},
{file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:24995c843eb0ad11a4527b026b4dde3da70e1f2d8806c99b7b4a7cf491612652"},
{file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7"},
+ {file = "typed_ast-1.4.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:fcf135e17cc74dbfbc05894ebca928ffeb23d9790b3167a674921db19082401f"},
{file = "typed_ast-1.4.1-cp36-cp36m-win32.whl", hash = "sha256:4e3e5da80ccbebfff202a67bf900d081906c358ccc3d5e3c8aea42fdfdfd51c1"},
{file = "typed_ast-1.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:249862707802d40f7f29f6e1aad8d84b5aa9e44552d2cc17384b209f091276aa"},
{file = "typed_ast-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8ce678dbaf790dbdb3eba24056d5364fb45944f33553dd5869b7580cdbb83614"},
{file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:c9e348e02e4d2b4a8b2eedb48210430658df6951fa484e59de33ff773fbd4b41"},
{file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:bcd3b13b56ea479b3650b82cabd6b5343a625b0ced5429e4ccad28a8973f301b"},
+ {file = "typed_ast-1.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:f208eb7aff048f6bea9586e61af041ddf7f9ade7caed625742af423f6bae3298"},
{file = "typed_ast-1.4.1-cp37-cp37m-win32.whl", hash = "sha256:d5d33e9e7af3b34a40dc05f498939f0ebf187f07c385fd58d591c533ad8562fe"},
{file = "typed_ast-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:0666aa36131496aed8f7be0410ff974562ab7eeac11ef351def9ea6fa28f6355"},
{file = "typed_ast-1.4.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:d205b1b46085271b4e15f670058ce182bd1199e56b317bf2ec004b6a44f911f6"},
{file = "typed_ast-1.4.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:6daac9731f172c2a22ade6ed0c00197ee7cc1221aa84cfdf9c31defeb059a907"},
{file = "typed_ast-1.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:498b0f36cc7054c1fead3d7fc59d2150f4d5c6c56ba7fb150c013fbc683a8d2d"},
+ {file = "typed_ast-1.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:7e4c9d7658aaa1fc80018593abdf8598bf91325af6af5cce4ce7c73bc45ea53d"},
{file = "typed_ast-1.4.1-cp38-cp38-win32.whl", hash = "sha256:715ff2f2df46121071622063fc7543d9b1fd19ebfc4f5c8895af64a77a8c852c"},
{file = "typed_ast-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4"},
{file = "typed_ast-1.4.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:d43943ef777f9a1c42bf4e552ba23ac77a6351de620aa9acf64ad54933ad4d34"},
+ {file = "typed_ast-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:92c325624e304ebf0e025d1224b77dd4e6393f18aab8d829b5b7e04afe9b7a2c"},
+ {file = "typed_ast-1.4.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:d648b8e3bf2fe648745c8ffcee3db3ff903d0817a01a12dd6a6ea7a8f4889072"},
+ {file = "typed_ast-1.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:fac11badff8313e23717f3dada86a15389d0708275bddf766cca67a84ead3e91"},
+ {file = "typed_ast-1.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:0d8110d78a5736e16e26213114a38ca35cb15b6515d535413b090bd50951556d"},
+ {file = "typed_ast-1.4.1-cp39-cp39-win32.whl", hash = "sha256:b52ccf7cfe4ce2a1064b18594381bccf4179c2ecf7f513134ec2f993dd4ab395"},
+ {file = "typed_ast-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:3742b32cf1c6ef124d57f95be609c473d7ec4c14d0090e5a5e05a15269fb4d0c"},
{file = "typed_ast-1.4.1.tar.gz", hash = "sha256:8c8aaad94455178e3187ab22c8b01a3837f8ee50e09cf31f1ba129eb293ec30b"},
]
wrapt = [
diff --git a/pyproject.toml b/pyproject.toml
index 8725f849..7d126d54 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "diagrams"
-version = "0.17.0"
+version = "0.20.0"
description = "Diagram as Code"
license = "MIT"
authors = ["mingrammer "]
@@ -11,13 +11,13 @@ include = ["resources/**/*"]
[tool.poetry.dependencies]
python = "^3.6"
-graphviz = "^0.13.2"
+graphviz = ">=0.13.2,<0.17.0"
jinja2 = "^2.10"
contextvars = { version = "^2.4", python = "~3.6" }
[tool.poetry.dev-dependencies]
-pytest = "^3.0"
-pylint = "^2.4"
+pytest = "^6.2"
+pylint = "^2.7"
black = {version = "^19.0", allow-prereleases = true}
rope = "^0.14.0"
isort = "^4.3"
diff --git a/resources/aws/analytics/data-lake-resource.png b/resources/aws/analytics/data-lake-resource.png
new file mode 100644
index 00000000..bb7c1caf
Binary files /dev/null and b/resources/aws/analytics/data-lake-resource.png differ
diff --git a/resources/aws/analytics/emr-engine-mapr-m3.png b/resources/aws/analytics/emr-engine-mapr-m3.png
new file mode 100644
index 00000000..0547e623
Binary files /dev/null and b/resources/aws/analytics/emr-engine-mapr-m3.png differ
diff --git a/resources/aws/analytics/emr-engine-mapr-m5.png b/resources/aws/analytics/emr-engine-mapr-m5.png
new file mode 100644
index 00000000..8abd36a3
Binary files /dev/null and b/resources/aws/analytics/emr-engine-mapr-m5.png differ
diff --git a/resources/aws/analytics/emr-engine-mapr-m7.png b/resources/aws/analytics/emr-engine-mapr-m7.png
new file mode 100644
index 00000000..2f28f1d7
Binary files /dev/null and b/resources/aws/analytics/emr-engine-mapr-m7.png differ
diff --git a/resources/aws/analytics/emr-engine.png b/resources/aws/analytics/emr-engine.png
new file mode 100644
index 00000000..21273e03
Binary files /dev/null and b/resources/aws/analytics/emr-engine.png differ
diff --git a/resources/aws/ar/ar-vr.png b/resources/aws/ar/ar-vr.png
new file mode 100644
index 00000000..82b009ec
Binary files /dev/null and b/resources/aws/ar/ar-vr.png differ
diff --git a/resources/aws/blockchain/blockchain-resource.png b/resources/aws/blockchain/blockchain-resource.png
new file mode 100644
index 00000000..bd31f858
Binary files /dev/null and b/resources/aws/blockchain/blockchain-resource.png differ
diff --git a/resources/aws/blockchain/blockchain.png b/resources/aws/blockchain/blockchain.png
new file mode 100644
index 00000000..bcf410e6
Binary files /dev/null and b/resources/aws/blockchain/blockchain.png differ
diff --git a/resources/aws/business/business-applications.png b/resources/aws/business/business-applications.png
new file mode 100644
index 00000000..c3eb299b
Binary files /dev/null and b/resources/aws/business/business-applications.png differ
diff --git a/resources/aws/compute/compute-optimizer.png b/resources/aws/compute/compute-optimizer.png
new file mode 100644
index 00000000..3ad2dd5d
Binary files /dev/null and b/resources/aws/compute/compute-optimizer.png differ
diff --git a/resources/aws/compute/ec2-ami.png b/resources/aws/compute/ec2-ami.png
new file mode 100644
index 00000000..e5ee34ad
Binary files /dev/null and b/resources/aws/compute/ec2-ami.png differ
diff --git a/resources/aws/compute/ec2-auto-scaling.png b/resources/aws/compute/ec2-auto-scaling.png
new file mode 100644
index 00000000..04123663
Binary files /dev/null and b/resources/aws/compute/ec2-auto-scaling.png differ
diff --git a/resources/aws/compute/ec2-container-registry-image.png b/resources/aws/compute/ec2-container-registry-image.png
new file mode 100644
index 00000000..7b59df3d
Binary files /dev/null and b/resources/aws/compute/ec2-container-registry-image.png differ
diff --git a/resources/aws/compute/ec2-container-registry-registry.png b/resources/aws/compute/ec2-container-registry-registry.png
new file mode 100644
index 00000000..22d0d661
Binary files /dev/null and b/resources/aws/compute/ec2-container-registry-registry.png differ
diff --git a/resources/aws/compute/ec2-elastic-ip-address.png b/resources/aws/compute/ec2-elastic-ip-address.png
new file mode 100644
index 00000000..5b226d95
Binary files /dev/null and b/resources/aws/compute/ec2-elastic-ip-address.png differ
diff --git a/resources/aws/compute/ec2-image-builder.png b/resources/aws/compute/ec2-image-builder.png
new file mode 100644
index 00000000..1ee4acfa
Binary files /dev/null and b/resources/aws/compute/ec2-image-builder.png differ
diff --git a/resources/aws/compute/ec2-instance.png b/resources/aws/compute/ec2-instance.png
new file mode 100644
index 00000000..fd58edcb
Binary files /dev/null and b/resources/aws/compute/ec2-instance.png differ
diff --git a/resources/aws/compute/ec2-instances.png b/resources/aws/compute/ec2-instances.png
new file mode 100644
index 00000000..215ca26c
Binary files /dev/null and b/resources/aws/compute/ec2-instances.png differ
diff --git a/resources/aws/compute/ec2-rescue.png b/resources/aws/compute/ec2-rescue.png
new file mode 100644
index 00000000..f5dbf2b8
Binary files /dev/null and b/resources/aws/compute/ec2-rescue.png differ
diff --git a/resources/aws/compute/ec2-spot-instance.png b/resources/aws/compute/ec2-spot-instance.png
new file mode 100644
index 00000000..82df72d8
Binary files /dev/null and b/resources/aws/compute/ec2-spot-instance.png differ
diff --git a/resources/aws/compute/elastic-beanstalk-application.png b/resources/aws/compute/elastic-beanstalk-application.png
new file mode 100644
index 00000000..3f8f6d9d
Binary files /dev/null and b/resources/aws/compute/elastic-beanstalk-application.png differ
diff --git a/resources/aws/compute/elastic-beanstalk-deployment.png b/resources/aws/compute/elastic-beanstalk-deployment.png
new file mode 100644
index 00000000..9f1464b6
Binary files /dev/null and b/resources/aws/compute/elastic-beanstalk-deployment.png differ
diff --git a/resources/aws/compute/elastic-container-service-container.png b/resources/aws/compute/elastic-container-service-container.png
new file mode 100644
index 00000000..e8846798
Binary files /dev/null and b/resources/aws/compute/elastic-container-service-container.png differ
diff --git a/resources/aws/compute/elastic-container-service-service.png b/resources/aws/compute/elastic-container-service-service.png
new file mode 100644
index 00000000..965eb31e
Binary files /dev/null and b/resources/aws/compute/elastic-container-service-service.png differ
diff --git a/resources/aws/compute/lambda-function.png b/resources/aws/compute/lambda-function.png
new file mode 100644
index 00000000..5c9b5e29
Binary files /dev/null and b/resources/aws/compute/lambda-function.png differ
diff --git a/resources/aws/compute/local-zones.png b/resources/aws/compute/local-zones.png
new file mode 100644
index 00000000..a97d446e
Binary files /dev/null and b/resources/aws/compute/local-zones.png differ
diff --git a/resources/aws/compute/wavelength.png b/resources/aws/compute/wavelength.png
new file mode 100644
index 00000000..208c42d8
Binary files /dev/null and b/resources/aws/compute/wavelength.png differ
diff --git a/resources/aws/cost/cost-management.png b/resources/aws/cost/cost-management.png
new file mode 100644
index 00000000..ec088b15
Binary files /dev/null and b/resources/aws/cost/cost-management.png differ
diff --git a/resources/aws/database/aurora-instance.png b/resources/aws/database/aurora-instance.png
new file mode 100644
index 00000000..34877a06
Binary files /dev/null and b/resources/aws/database/aurora-instance.png differ
diff --git a/resources/aws/database/database-migration-service-database-migration-workflow.png b/resources/aws/database/database-migration-service-database-migration-workflow.png
new file mode 100644
index 00000000..1f807c0d
Binary files /dev/null and b/resources/aws/database/database-migration-service-database-migration-workflow.png differ
diff --git a/resources/aws/database/dynamodb-attribute.png b/resources/aws/database/dynamodb-attribute.png
new file mode 100644
index 00000000..befaed80
Binary files /dev/null and b/resources/aws/database/dynamodb-attribute.png differ
diff --git a/resources/aws/database/dynamodb-attributes.png b/resources/aws/database/dynamodb-attributes.png
new file mode 100644
index 00000000..b935d517
Binary files /dev/null and b/resources/aws/database/dynamodb-attributes.png differ
diff --git a/resources/aws/database/dynamodb-item.png b/resources/aws/database/dynamodb-item.png
new file mode 100644
index 00000000..17e152f5
Binary files /dev/null and b/resources/aws/database/dynamodb-item.png differ
diff --git a/resources/aws/database/dynamodb-items.png b/resources/aws/database/dynamodb-items.png
new file mode 100644
index 00000000..a0bf5fff
Binary files /dev/null and b/resources/aws/database/dynamodb-items.png differ
diff --git a/resources/aws/database/elasticache-cache-node.png b/resources/aws/database/elasticache-cache-node.png
new file mode 100644
index 00000000..21b3a8ac
Binary files /dev/null and b/resources/aws/database/elasticache-cache-node.png differ
diff --git a/resources/aws/database/elasticache-for-memcached.png b/resources/aws/database/elasticache-for-memcached.png
new file mode 100644
index 00000000..e04ac5ce
Binary files /dev/null and b/resources/aws/database/elasticache-for-memcached.png differ
diff --git a/resources/aws/database/elasticache-for-redis.png b/resources/aws/database/elasticache-for-redis.png
new file mode 100644
index 00000000..1d882f9a
Binary files /dev/null and b/resources/aws/database/elasticache-for-redis.png differ
diff --git a/resources/aws/database/keyspaces-managed-apache-cassandra-service.png b/resources/aws/database/keyspaces-managed-apache-cassandra-service.png
new file mode 100644
index 00000000..fdfe9a1b
Binary files /dev/null and b/resources/aws/database/keyspaces-managed-apache-cassandra-service.png differ
diff --git a/resources/aws/database/rds-instance.png b/resources/aws/database/rds-instance.png
new file mode 100644
index 00000000..aece303d
Binary files /dev/null and b/resources/aws/database/rds-instance.png differ
diff --git a/resources/aws/database/rds-mariadb-instance.png b/resources/aws/database/rds-mariadb-instance.png
new file mode 100644
index 00000000..1b4c5df4
Binary files /dev/null and b/resources/aws/database/rds-mariadb-instance.png differ
diff --git a/resources/aws/database/rds-mysql-instance.png b/resources/aws/database/rds-mysql-instance.png
new file mode 100644
index 00000000..71b71adf
Binary files /dev/null and b/resources/aws/database/rds-mysql-instance.png differ
diff --git a/resources/aws/database/rds-oracle-instance.png b/resources/aws/database/rds-oracle-instance.png
new file mode 100644
index 00000000..ddf00979
Binary files /dev/null and b/resources/aws/database/rds-oracle-instance.png differ
diff --git a/resources/aws/database/rds-postgresql-instance.png b/resources/aws/database/rds-postgresql-instance.png
new file mode 100644
index 00000000..56f31155
Binary files /dev/null and b/resources/aws/database/rds-postgresql-instance.png differ
diff --git a/resources/aws/database/rds-sql-server-instance.png b/resources/aws/database/rds-sql-server-instance.png
new file mode 100644
index 00000000..ffa78ed2
Binary files /dev/null and b/resources/aws/database/rds-sql-server-instance.png differ
diff --git a/resources/aws/database/redshift-dense-compute-node.png b/resources/aws/database/redshift-dense-compute-node.png
new file mode 100644
index 00000000..a04a5ecd
Binary files /dev/null and b/resources/aws/database/redshift-dense-compute-node.png differ
diff --git a/resources/aws/database/redshift-dense-storage-node.png b/resources/aws/database/redshift-dense-storage-node.png
new file mode 100644
index 00000000..73b0ecd4
Binary files /dev/null and b/resources/aws/database/redshift-dense-storage-node.png differ
diff --git a/resources/aws/devtools/cloud9-resource.png b/resources/aws/devtools/cloud9-resource.png
new file mode 100644
index 00000000..49748a60
Binary files /dev/null and b/resources/aws/devtools/cloud9-resource.png differ
diff --git a/resources/aws/enablement/customer-enablement.png b/resources/aws/enablement/customer-enablement.png
new file mode 100644
index 00000000..fa82f8be
Binary files /dev/null and b/resources/aws/enablement/customer-enablement.png differ
diff --git a/resources/aws/enduser/desktop-and-app-streaming.png b/resources/aws/enduser/desktop-and-app-streaming.png
new file mode 100644
index 00000000..d672505f
Binary files /dev/null and b/resources/aws/enduser/desktop-and-app-streaming.png differ
diff --git a/resources/aws/engagement/customer-engagement.png b/resources/aws/engagement/customer-engagement.png
new file mode 100644
index 00000000..fb250d40
Binary files /dev/null and b/resources/aws/engagement/customer-engagement.png differ
diff --git a/resources/aws/engagement/simple-email-service-ses-email.png b/resources/aws/engagement/simple-email-service-ses-email.png
new file mode 100644
index 00000000..c98a3ea3
Binary files /dev/null and b/resources/aws/engagement/simple-email-service-ses-email.png differ
diff --git a/resources/aws/game/game-tech.png b/resources/aws/game/game-tech.png
new file mode 100644
index 00000000..2de65291
Binary files /dev/null and b/resources/aws/game/game-tech.png differ
diff --git a/resources/aws/general/client.png b/resources/aws/general/client.png
new file mode 100644
index 00000000..50ae22e4
Binary files /dev/null and b/resources/aws/general/client.png differ
diff --git a/resources/aws/general/forums.png b/resources/aws/general/forums.png
new file mode 100644
index 00000000..92252242
Binary files /dev/null and b/resources/aws/general/forums.png differ
diff --git a/resources/aws/general/internet-alt1.png b/resources/aws/general/internet-alt1.png
new file mode 100644
index 00000000..5a5eedc8
Binary files /dev/null and b/resources/aws/general/internet-alt1.png differ
diff --git a/resources/aws/general/internet-alt2.png b/resources/aws/general/internet-alt2.png
new file mode 100644
index 00000000..b225226c
Binary files /dev/null and b/resources/aws/general/internet-alt2.png differ
diff --git a/resources/aws/general/internet-gateway.png b/resources/aws/general/internet-gateway.png
new file mode 100644
index 00000000..a930f2ba
Binary files /dev/null and b/resources/aws/general/internet-gateway.png differ
diff --git a/resources/aws/general/mobile-client.png b/resources/aws/general/mobile-client.png
new file mode 100644
index 00000000..232b7d43
Binary files /dev/null and b/resources/aws/general/mobile-client.png differ
diff --git a/resources/aws/general/multimedia.png b/resources/aws/general/multimedia.png
new file mode 100644
index 00000000..aeab8d70
Binary files /dev/null and b/resources/aws/general/multimedia.png differ
diff --git a/resources/aws/general/office-building.png b/resources/aws/general/office-building.png
new file mode 100644
index 00000000..97e9b4e6
Binary files /dev/null and b/resources/aws/general/office-building.png differ
diff --git a/resources/aws/general/saml-token.png b/resources/aws/general/saml-token.png
new file mode 100644
index 00000000..a882dc3a
Binary files /dev/null and b/resources/aws/general/saml-token.png differ
diff --git a/resources/aws/general/sdk.png b/resources/aws/general/sdk.png
new file mode 100644
index 00000000..851262d4
Binary files /dev/null and b/resources/aws/general/sdk.png differ
diff --git a/resources/aws/general/ssl-padlock.png b/resources/aws/general/ssl-padlock.png
new file mode 100644
index 00000000..d63c3c68
Binary files /dev/null and b/resources/aws/general/ssl-padlock.png differ
diff --git a/resources/aws/general/tape-storage.png b/resources/aws/general/tape-storage.png
new file mode 100644
index 00000000..3ed66d4d
Binary files /dev/null and b/resources/aws/general/tape-storage.png differ
diff --git a/resources/aws/general/toolkit.png b/resources/aws/general/toolkit.png
new file mode 100644
index 00000000..c6d059ae
Binary files /dev/null and b/resources/aws/general/toolkit.png differ
diff --git a/resources/aws/general/tradicional-server.png b/resources/aws/general/traditional-server.png
similarity index 100%
rename from resources/aws/general/tradicional-server.png
rename to resources/aws/general/traditional-server.png
diff --git a/resources/aws/integration/event-resource.png b/resources/aws/integration/event-resource.png
new file mode 100644
index 00000000..96cbd817
Binary files /dev/null and b/resources/aws/integration/event-resource.png differ
diff --git a/resources/aws/integration/eventbridge-custom-event-bus-resource.png b/resources/aws/integration/eventbridge-custom-event-bus-resource.png
new file mode 100644
index 00000000..4053d3cf
Binary files /dev/null and b/resources/aws/integration/eventbridge-custom-event-bus-resource.png differ
diff --git a/resources/aws/integration/eventbridge-default-event-bus-resource.png b/resources/aws/integration/eventbridge-default-event-bus-resource.png
new file mode 100644
index 00000000..e59b3e5f
Binary files /dev/null and b/resources/aws/integration/eventbridge-default-event-bus-resource.png differ
diff --git a/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png b/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png
new file mode 100644
index 00000000..6c29642b
Binary files /dev/null and b/resources/aws/integration/eventbridge-saas-partner-event-bus-resource.png differ
diff --git a/resources/aws/integration/express-workflows.png b/resources/aws/integration/express-workflows.png
new file mode 100644
index 00000000..1197f29f
Binary files /dev/null and b/resources/aws/integration/express-workflows.png differ
diff --git a/resources/aws/integration/simple-notification-service-sns-email-notification.png b/resources/aws/integration/simple-notification-service-sns-email-notification.png
new file mode 100644
index 00000000..21268e2c
Binary files /dev/null and b/resources/aws/integration/simple-notification-service-sns-email-notification.png differ
diff --git a/resources/aws/integration/simple-notification-service-sns-http-notification.png b/resources/aws/integration/simple-notification-service-sns-http-notification.png
new file mode 100644
index 00000000..87837bac
Binary files /dev/null and b/resources/aws/integration/simple-notification-service-sns-http-notification.png differ
diff --git a/resources/aws/integration/simple-notification-service-sns-topic.png b/resources/aws/integration/simple-notification-service-sns-topic.png
new file mode 100644
index 00000000..f97c4cfd
Binary files /dev/null and b/resources/aws/integration/simple-notification-service-sns-topic.png differ
diff --git a/resources/aws/integration/simple-queue-service-sqs-message.png b/resources/aws/integration/simple-queue-service-sqs-message.png
new file mode 100644
index 00000000..f817270d
Binary files /dev/null and b/resources/aws/integration/simple-queue-service-sqs-message.png differ
diff --git a/resources/aws/integration/simple-queue-service-sqs-queue.png b/resources/aws/integration/simple-queue-service-sqs-queue.png
new file mode 100644
index 00000000..274c5667
Binary files /dev/null and b/resources/aws/integration/simple-queue-service-sqs-queue.png differ
diff --git a/resources/aws/iot/iot-actuator.png b/resources/aws/iot/iot-actuator.png
new file mode 100644
index 00000000..99d4f8ff
Binary files /dev/null and b/resources/aws/iot/iot-actuator.png differ
diff --git a/resources/aws/iot/iot-alexa-enabled-device.png b/resources/aws/iot/iot-alexa-enabled-device.png
new file mode 100644
index 00000000..b4b82f91
Binary files /dev/null and b/resources/aws/iot/iot-alexa-enabled-device.png differ
diff --git a/resources/aws/iot/iot-alexa-voice-service.png b/resources/aws/iot/iot-alexa-voice-service.png
new file mode 100644
index 00000000..2128b5a1
Binary files /dev/null and b/resources/aws/iot/iot-alexa-voice-service.png differ
diff --git a/resources/aws/iot/iot-analytics-channel.png b/resources/aws/iot/iot-analytics-channel.png
new file mode 100644
index 00000000..d40c6e12
Binary files /dev/null and b/resources/aws/iot/iot-analytics-channel.png differ
diff --git a/resources/aws/iot/iot-analytics-data-set.png b/resources/aws/iot/iot-analytics-data-set.png
new file mode 100644
index 00000000..f1e966b6
Binary files /dev/null and b/resources/aws/iot/iot-analytics-data-set.png differ
diff --git a/resources/aws/iot/iot-analytics-data-store.png b/resources/aws/iot/iot-analytics-data-store.png
new file mode 100644
index 00000000..7cf6c30e
Binary files /dev/null and b/resources/aws/iot/iot-analytics-data-store.png differ
diff --git a/resources/aws/iot/iot-analytics-notebook.png b/resources/aws/iot/iot-analytics-notebook.png
new file mode 100644
index 00000000..09c5cbcc
Binary files /dev/null and b/resources/aws/iot/iot-analytics-notebook.png differ
diff --git a/resources/aws/iot/iot-analytics-pipeline.png b/resources/aws/iot/iot-analytics-pipeline.png
new file mode 100644
index 00000000..468d4831
Binary files /dev/null and b/resources/aws/iot/iot-analytics-pipeline.png differ
diff --git a/resources/aws/iot/iot-bank.png b/resources/aws/iot/iot-bank.png
new file mode 100644
index 00000000..5efe50b0
Binary files /dev/null and b/resources/aws/iot/iot-bank.png differ
diff --git a/resources/aws/iot/iot-bicycle.png b/resources/aws/iot/iot-bicycle.png
new file mode 100644
index 00000000..c1682dc9
Binary files /dev/null and b/resources/aws/iot/iot-bicycle.png differ
diff --git a/resources/aws/iot/iot-car.png b/resources/aws/iot/iot-car.png
new file mode 100644
index 00000000..8de358bb
Binary files /dev/null and b/resources/aws/iot/iot-car.png differ
diff --git a/resources/aws/iot/iot-cart.png b/resources/aws/iot/iot-cart.png
new file mode 100644
index 00000000..6602fb0a
Binary files /dev/null and b/resources/aws/iot/iot-cart.png differ
diff --git a/resources/aws/iot/iot-coffee-pot.png b/resources/aws/iot/iot-coffee-pot.png
new file mode 100644
index 00000000..c3d70b60
Binary files /dev/null and b/resources/aws/iot/iot-coffee-pot.png differ
diff --git a/resources/aws/iot/iot-desired-state.png b/resources/aws/iot/iot-desired-state.png
new file mode 100644
index 00000000..bc8cd45a
Binary files /dev/null and b/resources/aws/iot/iot-desired-state.png differ
diff --git a/resources/aws/iot/iot-device-gateway.png b/resources/aws/iot/iot-device-gateway.png
new file mode 100644
index 00000000..6ddbfa2d
Binary files /dev/null and b/resources/aws/iot/iot-device-gateway.png differ
diff --git a/resources/aws/iot/iot-door-lock.png b/resources/aws/iot/iot-door-lock.png
new file mode 100644
index 00000000..b7fec7b7
Binary files /dev/null and b/resources/aws/iot/iot-door-lock.png differ
diff --git a/resources/aws/iot/iot-factory.png b/resources/aws/iot/iot-factory.png
new file mode 100644
index 00000000..d7712412
Binary files /dev/null and b/resources/aws/iot/iot-factory.png differ
diff --git a/resources/aws/iot/iot-fire-tv-stick.png b/resources/aws/iot/iot-fire-tv-stick.png
new file mode 100644
index 00000000..b3b8b1b4
Binary files /dev/null and b/resources/aws/iot/iot-fire-tv-stick.png differ
diff --git a/resources/aws/iot/iot-fire-tv.png b/resources/aws/iot/iot-fire-tv.png
new file mode 100644
index 00000000..4c456b4e
Binary files /dev/null and b/resources/aws/iot/iot-fire-tv.png differ
diff --git a/resources/aws/iot/iot-generic.png b/resources/aws/iot/iot-generic.png
new file mode 100644
index 00000000..ee3a6713
Binary files /dev/null and b/resources/aws/iot/iot-generic.png differ
diff --git a/resources/aws/iot/iot-house.png b/resources/aws/iot/iot-house.png
new file mode 100644
index 00000000..324f990a
Binary files /dev/null and b/resources/aws/iot/iot-house.png differ
diff --git a/resources/aws/iot/iot-lightbulb.png b/resources/aws/iot/iot-lightbulb.png
new file mode 100644
index 00000000..52d4591e
Binary files /dev/null and b/resources/aws/iot/iot-lightbulb.png differ
diff --git a/resources/aws/iot/iot-medical-emergency.png b/resources/aws/iot/iot-medical-emergency.png
new file mode 100644
index 00000000..96baef6c
Binary files /dev/null and b/resources/aws/iot/iot-medical-emergency.png differ
diff --git a/resources/aws/iot/iot-over-the-air-update.png b/resources/aws/iot/iot-over-the-air-update.png
new file mode 100644
index 00000000..9320e87e
Binary files /dev/null and b/resources/aws/iot/iot-over-the-air-update.png differ
diff --git a/resources/aws/iot/iot-reported-state.png b/resources/aws/iot/iot-reported-state.png
new file mode 100644
index 00000000..638b80af
Binary files /dev/null and b/resources/aws/iot/iot-reported-state.png differ
diff --git a/resources/aws/iot/iot-sensor.png b/resources/aws/iot/iot-sensor.png
new file mode 100644
index 00000000..19e299c2
Binary files /dev/null and b/resources/aws/iot/iot-sensor.png differ
diff --git a/resources/aws/iot/iot-servo.png b/resources/aws/iot/iot-servo.png
new file mode 100644
index 00000000..4aad755d
Binary files /dev/null and b/resources/aws/iot/iot-servo.png differ
diff --git a/resources/aws/iot/iot-simulator.png b/resources/aws/iot/iot-simulator.png
new file mode 100644
index 00000000..ad10b7bb
Binary files /dev/null and b/resources/aws/iot/iot-simulator.png differ
diff --git a/resources/aws/iot/iot-thermostat.png b/resources/aws/iot/iot-thermostat.png
new file mode 100644
index 00000000..45e2b3e0
Binary files /dev/null and b/resources/aws/iot/iot-thermostat.png differ
diff --git a/resources/aws/iot/iot-travel.png b/resources/aws/iot/iot-travel.png
new file mode 100644
index 00000000..b1890d99
Binary files /dev/null and b/resources/aws/iot/iot-travel.png differ
diff --git a/resources/aws/iot/iot-utility.png b/resources/aws/iot/iot-utility.png
new file mode 100644
index 00000000..72fa9f1d
Binary files /dev/null and b/resources/aws/iot/iot-utility.png differ
diff --git a/resources/aws/iot/iot-windfarm.png b/resources/aws/iot/iot-windfarm.png
new file mode 100644
index 00000000..9c3fa30e
Binary files /dev/null and b/resources/aws/iot/iot-windfarm.png differ
diff --git a/resources/aws/management/cloudformation-change-set.png b/resources/aws/management/cloudformation-change-set.png
new file mode 100644
index 00000000..de5a6d10
Binary files /dev/null and b/resources/aws/management/cloudformation-change-set.png differ
diff --git a/resources/aws/management/cloudformation-stack.png b/resources/aws/management/cloudformation-stack.png
new file mode 100644
index 00000000..7a5c4bbc
Binary files /dev/null and b/resources/aws/management/cloudformation-stack.png differ
diff --git a/resources/aws/management/cloudformation-template.png b/resources/aws/management/cloudformation-template.png
new file mode 100644
index 00000000..22551868
Binary files /dev/null and b/resources/aws/management/cloudformation-template.png differ
diff --git a/resources/aws/management/cloudwatch-alarm.png b/resources/aws/management/cloudwatch-alarm.png
new file mode 100644
index 00000000..239b50e0
Binary files /dev/null and b/resources/aws/management/cloudwatch-alarm.png differ
diff --git a/resources/aws/management/cloudwatch-event-event-based.png b/resources/aws/management/cloudwatch-event-event-based.png
new file mode 100644
index 00000000..b95b337a
Binary files /dev/null and b/resources/aws/management/cloudwatch-event-event-based.png differ
diff --git a/resources/aws/management/cloudwatch-event-time-based.png b/resources/aws/management/cloudwatch-event-time-based.png
new file mode 100644
index 00000000..0c5c929a
Binary files /dev/null and b/resources/aws/management/cloudwatch-event-time-based.png differ
diff --git a/resources/aws/management/cloudwatch-rule.png b/resources/aws/management/cloudwatch-rule.png
new file mode 100644
index 00000000..2d5c59f2
Binary files /dev/null and b/resources/aws/management/cloudwatch-rule.png differ
diff --git a/resources/aws/management/management-and-governance.png b/resources/aws/management/management-and-governance.png
new file mode 100644
index 00000000..d156a4c6
Binary files /dev/null and b/resources/aws/management/management-and-governance.png differ
diff --git a/resources/aws/management/opsworks-apps.png b/resources/aws/management/opsworks-apps.png
new file mode 100644
index 00000000..5153f5cd
Binary files /dev/null and b/resources/aws/management/opsworks-apps.png differ
diff --git a/resources/aws/management/opsworks-deployments.png b/resources/aws/management/opsworks-deployments.png
new file mode 100644
index 00000000..646e8bd2
Binary files /dev/null and b/resources/aws/management/opsworks-deployments.png differ
diff --git a/resources/aws/management/opsworks-instances.png b/resources/aws/management/opsworks-instances.png
new file mode 100644
index 00000000..1e0fea5f
Binary files /dev/null and b/resources/aws/management/opsworks-instances.png differ
diff --git a/resources/aws/management/opsworks-layers.png b/resources/aws/management/opsworks-layers.png
new file mode 100644
index 00000000..3058e88b
Binary files /dev/null and b/resources/aws/management/opsworks-layers.png differ
diff --git a/resources/aws/management/opsworks-monitoring.png b/resources/aws/management/opsworks-monitoring.png
new file mode 100644
index 00000000..260e7c64
Binary files /dev/null and b/resources/aws/management/opsworks-monitoring.png differ
diff --git a/resources/aws/management/opsworks-permissions.png b/resources/aws/management/opsworks-permissions.png
new file mode 100644
index 00000000..9f9c7f4b
Binary files /dev/null and b/resources/aws/management/opsworks-permissions.png differ
diff --git a/resources/aws/management/opsworks-resources.png b/resources/aws/management/opsworks-resources.png
new file mode 100644
index 00000000..a47f83a2
Binary files /dev/null and b/resources/aws/management/opsworks-resources.png differ
diff --git a/resources/aws/management/opsworks-stack.png b/resources/aws/management/opsworks-stack.png
new file mode 100644
index 00000000..41aa7fa4
Binary files /dev/null and b/resources/aws/management/opsworks-stack.png differ
diff --git a/resources/aws/management/organizations-account.png b/resources/aws/management/organizations-account.png
new file mode 100644
index 00000000..6de49ef0
Binary files /dev/null and b/resources/aws/management/organizations-account.png differ
diff --git a/resources/aws/management/organizations-organizational-unit.png b/resources/aws/management/organizations-organizational-unit.png
new file mode 100644
index 00000000..0322b7fb
Binary files /dev/null and b/resources/aws/management/organizations-organizational-unit.png differ
diff --git a/resources/aws/management/personal-health-dashboard.png b/resources/aws/management/personal-health-dashboard.png
new file mode 100644
index 00000000..ac34a748
Binary files /dev/null and b/resources/aws/management/personal-health-dashboard.png differ
diff --git a/resources/aws/management/systems-manager-automation.png b/resources/aws/management/systems-manager-automation.png
new file mode 100644
index 00000000..4d2eabe7
Binary files /dev/null and b/resources/aws/management/systems-manager-automation.png differ
diff --git a/resources/aws/management/systems-manager-documents.png b/resources/aws/management/systems-manager-documents.png
new file mode 100644
index 00000000..140732b6
Binary files /dev/null and b/resources/aws/management/systems-manager-documents.png differ
diff --git a/resources/aws/management/systems-manager-inventory.png b/resources/aws/management/systems-manager-inventory.png
new file mode 100644
index 00000000..e9db8ab4
Binary files /dev/null and b/resources/aws/management/systems-manager-inventory.png differ
diff --git a/resources/aws/management/systems-manager-maintenance-windows.png b/resources/aws/management/systems-manager-maintenance-windows.png
new file mode 100644
index 00000000..5fd58ada
Binary files /dev/null and b/resources/aws/management/systems-manager-maintenance-windows.png differ
diff --git a/resources/aws/management/systems-manager-opscenter.png b/resources/aws/management/systems-manager-opscenter.png
new file mode 100644
index 00000000..53eb9a8a
Binary files /dev/null and b/resources/aws/management/systems-manager-opscenter.png differ
diff --git a/resources/aws/management/systems-manager-patch-manager.png b/resources/aws/management/systems-manager-patch-manager.png
new file mode 100644
index 00000000..4a02149f
Binary files /dev/null and b/resources/aws/management/systems-manager-patch-manager.png differ
diff --git a/resources/aws/management/systems-manager-run-command.png b/resources/aws/management/systems-manager-run-command.png
new file mode 100644
index 00000000..23971002
Binary files /dev/null and b/resources/aws/management/systems-manager-run-command.png differ
diff --git a/resources/aws/management/systems-manager-state-manager.png b/resources/aws/management/systems-manager-state-manager.png
new file mode 100644
index 00000000..003cb61d
Binary files /dev/null and b/resources/aws/management/systems-manager-state-manager.png differ
diff --git a/resources/aws/management/trusted-advisor-checklist-cost.png b/resources/aws/management/trusted-advisor-checklist-cost.png
new file mode 100644
index 00000000..7810b957
Binary files /dev/null and b/resources/aws/management/trusted-advisor-checklist-cost.png differ
diff --git a/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png b/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png
new file mode 100644
index 00000000..35f13e08
Binary files /dev/null and b/resources/aws/management/trusted-advisor-checklist-fault-tolerant.png differ
diff --git a/resources/aws/management/trusted-advisor-checklist-performance.png b/resources/aws/management/trusted-advisor-checklist-performance.png
new file mode 100644
index 00000000..e6104792
Binary files /dev/null and b/resources/aws/management/trusted-advisor-checklist-performance.png differ
diff --git a/resources/aws/management/trusted-advisor-checklist-security.png b/resources/aws/management/trusted-advisor-checklist-security.png
new file mode 100644
index 00000000..6d6cd1f8
Binary files /dev/null and b/resources/aws/management/trusted-advisor-checklist-security.png differ
diff --git a/resources/aws/management/trusted-advisor-checklist.png b/resources/aws/management/trusted-advisor-checklist.png
new file mode 100644
index 00000000..23796381
Binary files /dev/null and b/resources/aws/management/trusted-advisor-checklist.png differ
diff --git a/resources/aws/media/kinesis-video-streams.png b/resources/aws/media/kinesis-video-streams.png
new file mode 100644
index 00000000..65ffe3fb
Binary files /dev/null and b/resources/aws/media/kinesis-video-streams.png differ
diff --git a/resources/aws/media/media-services.png b/resources/aws/media/media-services.png
new file mode 100644
index 00000000..f3e94064
Binary files /dev/null and b/resources/aws/media/media-services.png differ
diff --git a/resources/aws/migration/datasync-agent.png b/resources/aws/migration/datasync-agent.png
new file mode 100644
index 00000000..0fd223ab
Binary files /dev/null and b/resources/aws/migration/datasync-agent.png differ
diff --git a/resources/aws/ml/augmented-ai.png b/resources/aws/ml/augmented-ai.png
new file mode 100644
index 00000000..7a355ee8
Binary files /dev/null and b/resources/aws/ml/augmented-ai.png differ
diff --git a/resources/aws/ml/deepcomposer.png b/resources/aws/ml/deepcomposer.png
new file mode 100644
index 00000000..b9e8844b
Binary files /dev/null and b/resources/aws/ml/deepcomposer.png differ
diff --git a/resources/aws/ml/fraud-detector.png b/resources/aws/ml/fraud-detector.png
new file mode 100644
index 00000000..7772f262
Binary files /dev/null and b/resources/aws/ml/fraud-detector.png differ
diff --git a/resources/aws/ml/kendra.png b/resources/aws/ml/kendra.png
new file mode 100644
index 00000000..e77173f8
Binary files /dev/null and b/resources/aws/ml/kendra.png differ
diff --git a/resources/aws/ml/rekognition-image.png b/resources/aws/ml/rekognition-image.png
new file mode 100644
index 00000000..d7b0374b
Binary files /dev/null and b/resources/aws/ml/rekognition-image.png differ
diff --git a/resources/aws/ml/rekognition-video.png b/resources/aws/ml/rekognition-video.png
new file mode 100644
index 00000000..47b53964
Binary files /dev/null and b/resources/aws/ml/rekognition-video.png differ
diff --git a/resources/aws/mobile/mobile.png b/resources/aws/mobile/mobile.png
new file mode 100644
index 00000000..fbf2c8ee
Binary files /dev/null and b/resources/aws/mobile/mobile.png differ
diff --git a/resources/aws/network/api-gateway-endpoint.png b/resources/aws/network/api-gateway-endpoint.png
new file mode 100644
index 00000000..96fcf394
Binary files /dev/null and b/resources/aws/network/api-gateway-endpoint.png differ
diff --git a/resources/aws/network/cloudfront-download-distribution.png b/resources/aws/network/cloudfront-download-distribution.png
new file mode 100644
index 00000000..ca4b979a
Binary files /dev/null and b/resources/aws/network/cloudfront-download-distribution.png differ
diff --git a/resources/aws/network/cloudfront-edge-location.png b/resources/aws/network/cloudfront-edge-location.png
new file mode 100644
index 00000000..e06d6b51
Binary files /dev/null and b/resources/aws/network/cloudfront-edge-location.png differ
diff --git a/resources/aws/network/cloudfront-streaming-distribution.png b/resources/aws/network/cloudfront-streaming-distribution.png
new file mode 100644
index 00000000..cbd97899
Binary files /dev/null and b/resources/aws/network/cloudfront-streaming-distribution.png differ
diff --git a/resources/aws/network/elb-application-load-balancer.png b/resources/aws/network/elb-application-load-balancer.png
new file mode 100644
index 00000000..bad1aedf
Binary files /dev/null and b/resources/aws/network/elb-application-load-balancer.png differ
diff --git a/resources/aws/network/elb-classic-load-balancer.png b/resources/aws/network/elb-classic-load-balancer.png
new file mode 100644
index 00000000..8957eec8
Binary files /dev/null and b/resources/aws/network/elb-classic-load-balancer.png differ
diff --git a/resources/aws/network/elb-network-load-balancer.png b/resources/aws/network/elb-network-load-balancer.png
new file mode 100644
index 00000000..d8d880d3
Binary files /dev/null and b/resources/aws/network/elb-network-load-balancer.png differ
diff --git a/resources/aws/network/route-53-hosted-zone.png b/resources/aws/network/route-53-hosted-zone.png
new file mode 100644
index 00000000..c50c9ae6
Binary files /dev/null and b/resources/aws/network/route-53-hosted-zone.png differ
diff --git a/resources/aws/network/vpc-customer-gateway.png b/resources/aws/network/vpc-customer-gateway.png
new file mode 100644
index 00000000..9cb40030
Binary files /dev/null and b/resources/aws/network/vpc-customer-gateway.png differ
diff --git a/resources/aws/network/vpc-elastic-network-adapter.png b/resources/aws/network/vpc-elastic-network-adapter.png
new file mode 100644
index 00000000..d845ca76
Binary files /dev/null and b/resources/aws/network/vpc-elastic-network-adapter.png differ
diff --git a/resources/aws/network/vpc-elastic-network-interface.png b/resources/aws/network/vpc-elastic-network-interface.png
new file mode 100644
index 00000000..a13bec34
Binary files /dev/null and b/resources/aws/network/vpc-elastic-network-interface.png differ
diff --git a/resources/aws/network/vpc-flow-logs.png b/resources/aws/network/vpc-flow-logs.png
new file mode 100644
index 00000000..a9e7a4b5
Binary files /dev/null and b/resources/aws/network/vpc-flow-logs.png differ
diff --git a/resources/aws/network/vpc-traffic-mirroring.png b/resources/aws/network/vpc-traffic-mirroring.png
new file mode 100644
index 00000000..4606c62c
Binary files /dev/null and b/resources/aws/network/vpc-traffic-mirroring.png differ
diff --git a/resources/aws/network/vpn-connection.png b/resources/aws/network/vpn-connection.png
new file mode 100644
index 00000000..c735cb3f
Binary files /dev/null and b/resources/aws/network/vpn-connection.png differ
diff --git a/resources/aws/network/vpn-gateway.png b/resources/aws/network/vpn-gateway.png
new file mode 100644
index 00000000..d7e9ec54
Binary files /dev/null and b/resources/aws/network/vpn-gateway.png differ
diff --git a/resources/aws/quantum/quantum-technologies.png b/resources/aws/quantum/quantum-technologies.png
new file mode 100644
index 00000000..93178772
Binary files /dev/null and b/resources/aws/quantum/quantum-technologies.png differ
diff --git a/resources/aws/robotics/robomaker-cloud-extension-ros.png b/resources/aws/robotics/robomaker-cloud-extension-ros.png
new file mode 100644
index 00000000..3732a5d0
Binary files /dev/null and b/resources/aws/robotics/robomaker-cloud-extension-ros.png differ
diff --git a/resources/aws/robotics/robomaker-development-environment.png b/resources/aws/robotics/robomaker-development-environment.png
new file mode 100644
index 00000000..5761f06d
Binary files /dev/null and b/resources/aws/robotics/robomaker-development-environment.png differ
diff --git a/resources/aws/robotics/robomaker-fleet-management.png b/resources/aws/robotics/robomaker-fleet-management.png
new file mode 100644
index 00000000..3be903a9
Binary files /dev/null and b/resources/aws/robotics/robomaker-fleet-management.png differ
diff --git a/resources/aws/satellite/satellite.png b/resources/aws/satellite/satellite.png
new file mode 100644
index 00000000..e3df2df2
Binary files /dev/null and b/resources/aws/satellite/satellite.png differ
diff --git a/resources/aws/security/ad-connector.png b/resources/aws/security/ad-connector.png
new file mode 100644
index 00000000..e7c046b5
Binary files /dev/null and b/resources/aws/security/ad-connector.png differ
diff --git a/resources/aws/security/certificate-authority.png b/resources/aws/security/certificate-authority.png
new file mode 100644
index 00000000..933b00b6
Binary files /dev/null and b/resources/aws/security/certificate-authority.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-add-on.png b/resources/aws/security/identity-and-access-management-iam-add-on.png
new file mode 100644
index 00000000..f38aab12
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-add-on.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png b/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png
new file mode 100644
index 00000000..3976e1e6
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-aws-sts-alternate.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png b/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png
new file mode 100644
index 00000000..6cc7931a
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-data-encryption-key.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-encrypted-data.png b/resources/aws/security/identity-and-access-management-iam-encrypted-data.png
new file mode 100644
index 00000000..5312dff4
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-encrypted-data.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png b/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png
new file mode 100644
index 00000000..b74afb41
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-long-term-security-credential.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-mfa-token.png b/resources/aws/security/identity-and-access-management-iam-mfa-token.png
new file mode 100644
index 00000000..ace4e451
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-mfa-token.png differ
diff --git a/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png b/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png
new file mode 100644
index 00000000..3d3d2797
Binary files /dev/null and b/resources/aws/security/identity-and-access-management-iam-temporary-security-credential.png differ
diff --git a/resources/aws/security/inspector-agent.png b/resources/aws/security/inspector-agent.png
new file mode 100644
index 00000000..1a54b1aa
Binary files /dev/null and b/resources/aws/security/inspector-agent.png differ
diff --git a/resources/aws/security/managed-microsoft-ad.png b/resources/aws/security/managed-microsoft-ad.png
new file mode 100644
index 00000000..20e1918a
Binary files /dev/null and b/resources/aws/security/managed-microsoft-ad.png differ
diff --git a/resources/aws/security/security-hub-finding.png b/resources/aws/security/security-hub-finding.png
new file mode 100644
index 00000000..ed71748a
Binary files /dev/null and b/resources/aws/security/security-hub-finding.png differ
diff --git a/resources/aws/security/shield-advanced.png b/resources/aws/security/shield-advanced.png
new file mode 100644
index 00000000..d530ded8
Binary files /dev/null and b/resources/aws/security/shield-advanced.png differ
diff --git a/resources/aws/security/simple-ad.png b/resources/aws/security/simple-ad.png
new file mode 100644
index 00000000..a83492d1
Binary files /dev/null and b/resources/aws/security/simple-ad.png differ
diff --git a/resources/aws/security/waf-filtering-rule.png b/resources/aws/security/waf-filtering-rule.png
new file mode 100644
index 00000000..65c208ce
Binary files /dev/null and b/resources/aws/security/waf-filtering-rule.png differ
diff --git a/resources/aws/storage/elastic-block-store-ebs-snapshot.png b/resources/aws/storage/elastic-block-store-ebs-snapshot.png
new file mode 100644
index 00000000..f9f45a36
Binary files /dev/null and b/resources/aws/storage/elastic-block-store-ebs-snapshot.png differ
diff --git a/resources/aws/storage/elastic-block-store-ebs-volume.png b/resources/aws/storage/elastic-block-store-ebs-volume.png
new file mode 100644
index 00000000..8bc08c55
Binary files /dev/null and b/resources/aws/storage/elastic-block-store-ebs-volume.png differ
diff --git a/resources/aws/storage/elastic-file-system-efs-file-system.png b/resources/aws/storage/elastic-file-system-efs-file-system.png
new file mode 100644
index 00000000..93b98ee8
Binary files /dev/null and b/resources/aws/storage/elastic-file-system-efs-file-system.png differ
diff --git a/resources/aws/storage/multiple-volumes-resource.png b/resources/aws/storage/multiple-volumes-resource.png
new file mode 100644
index 00000000..1b73423e
Binary files /dev/null and b/resources/aws/storage/multiple-volumes-resource.png differ
diff --git a/resources/aws/storage/s3-glacier-archive.png b/resources/aws/storage/s3-glacier-archive.png
new file mode 100644
index 00000000..eed6d9f1
Binary files /dev/null and b/resources/aws/storage/s3-glacier-archive.png differ
diff --git a/resources/aws/storage/s3-glacier-vault.png b/resources/aws/storage/s3-glacier-vault.png
new file mode 100644
index 00000000..ca35dfbf
Binary files /dev/null and b/resources/aws/storage/s3-glacier-vault.png differ
diff --git a/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png b/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png
new file mode 100644
index 00000000..88f9fa59
Binary files /dev/null and b/resources/aws/storage/simple-storage-service-s3-bucket-with-objects.png differ
diff --git a/resources/aws/storage/simple-storage-service-s3-bucket.png b/resources/aws/storage/simple-storage-service-s3-bucket.png
new file mode 100644
index 00000000..2994e207
Binary files /dev/null and b/resources/aws/storage/simple-storage-service-s3-bucket.png differ
diff --git a/resources/aws/storage/simple-storage-service-s3-object.png b/resources/aws/storage/simple-storage-service-s3-object.png
new file mode 100644
index 00000000..6098f067
Binary files /dev/null and b/resources/aws/storage/simple-storage-service-s3-object.png differ
diff --git a/resources/aws/storage/snow-family-snowball-import-export.png b/resources/aws/storage/snow-family-snowball-import-export.png
new file mode 100644
index 00000000..a4710145
Binary files /dev/null and b/resources/aws/storage/snow-family-snowball-import-export.png differ
diff --git a/resources/aws/storage/storage-gateway-cached-volume.png b/resources/aws/storage/storage-gateway-cached-volume.png
new file mode 100644
index 00000000..8b637f4a
Binary files /dev/null and b/resources/aws/storage/storage-gateway-cached-volume.png differ
diff --git a/resources/aws/storage/storage-gateway-non-cached-volume.png b/resources/aws/storage/storage-gateway-non-cached-volume.png
new file mode 100644
index 00000000..89d13219
Binary files /dev/null and b/resources/aws/storage/storage-gateway-non-cached-volume.png differ
diff --git a/resources/aws/storage/storage-gateway-virtual-tape-library.png b/resources/aws/storage/storage-gateway-virtual-tape-library.png
new file mode 100644
index 00000000..0c920710
Binary files /dev/null and b/resources/aws/storage/storage-gateway-virtual-tape-library.png differ
diff --git a/resources/azure/analytics/analysis-services.png b/resources/azure/analytics/analysis-services.png
index ae5627dc..efa3daff 100644
Binary files a/resources/azure/analytics/analysis-services.png and b/resources/azure/analytics/analysis-services.png differ
diff --git a/resources/azure/analytics/data-lake-store-gen1.png b/resources/azure/analytics/data-lake-store-gen1.png
index b8881b0b..6e861246 100644
Binary files a/resources/azure/analytics/data-lake-store-gen1.png and b/resources/azure/analytics/data-lake-store-gen1.png differ
diff --git a/resources/azure/analytics/databricks.png b/resources/azure/analytics/databricks.png
index 5842e283..42cacf60 100644
Binary files a/resources/azure/analytics/databricks.png and b/resources/azure/analytics/databricks.png differ
diff --git a/resources/azure/analytics/event-hub-clusters.png b/resources/azure/analytics/event-hub-clusters.png
index dd7e9a9b..dde0c68d 100644
Binary files a/resources/azure/analytics/event-hub-clusters.png and b/resources/azure/analytics/event-hub-clusters.png differ
diff --git a/resources/azure/analytics/event-hubs.png b/resources/azure/analytics/event-hubs.png
index 567526b2..2677ee0a 100644
Binary files a/resources/azure/analytics/event-hubs.png and b/resources/azure/analytics/event-hubs.png differ
diff --git a/resources/azure/analytics/hdinsightclusters.png b/resources/azure/analytics/hdinsightclusters.png
index 5d382b16..42fc1d14 100644
Binary files a/resources/azure/analytics/hdinsightclusters.png and b/resources/azure/analytics/hdinsightclusters.png differ
diff --git a/resources/azure/analytics/log-analytics-workspaces.png b/resources/azure/analytics/log-analytics-workspaces.png
index 01001212..d3f462ad 100644
Binary files a/resources/azure/analytics/log-analytics-workspaces.png and b/resources/azure/analytics/log-analytics-workspaces.png differ
diff --git a/resources/azure/analytics/stream-analytics-jobs.png b/resources/azure/analytics/stream-analytics-jobs.png
index fb957eee..a9fceb32 100644
Binary files a/resources/azure/analytics/stream-analytics-jobs.png and b/resources/azure/analytics/stream-analytics-jobs.png differ
diff --git a/resources/azure/analytics/synapse-analytics.png b/resources/azure/analytics/synapse-analytics.png
new file mode 100644
index 00000000..7966c325
Binary files /dev/null and b/resources/azure/analytics/synapse-analytics.png differ
diff --git a/resources/azure/compute/app-services.png b/resources/azure/compute/app-services.png
new file mode 100644
index 00000000..f7ca7fb0
Binary files /dev/null and b/resources/azure/compute/app-services.png differ
diff --git a/resources/azure/compute/automanaged-vm.png b/resources/azure/compute/automanaged-vm.png
new file mode 100644
index 00000000..ec8365b5
Binary files /dev/null and b/resources/azure/compute/automanaged-vm.png differ
diff --git a/resources/azure/compute/availability-sets.png b/resources/azure/compute/availability-sets.png
index 57664dd2..988e9a6c 100644
Binary files a/resources/azure/compute/availability-sets.png and b/resources/azure/compute/availability-sets.png differ
diff --git a/resources/azure/compute/batch-accounts.png b/resources/azure/compute/batch-accounts.png
index c3afcc09..8f41434e 100644
Binary files a/resources/azure/compute/batch-accounts.png and b/resources/azure/compute/batch-accounts.png differ
diff --git a/resources/azure/compute/cloud-services-classic.png b/resources/azure/compute/cloud-services-classic.png
index 4a784eb7..c3fa4d1b 100644
Binary files a/resources/azure/compute/cloud-services-classic.png and b/resources/azure/compute/cloud-services-classic.png differ
diff --git a/resources/azure/compute/container-instances.png b/resources/azure/compute/container-instances.png
index 9ec2a8c8..6be6aacc 100644
Binary files a/resources/azure/compute/container-instances.png and b/resources/azure/compute/container-instances.png differ
diff --git a/resources/azure/compute/disk-encryption-sets.png b/resources/azure/compute/disk-encryption-sets.png
new file mode 100644
index 00000000..17b3126a
Binary files /dev/null and b/resources/azure/compute/disk-encryption-sets.png differ
diff --git a/resources/azure/compute/disk-snapshots.png b/resources/azure/compute/disk-snapshots.png
index cc83dda9..b6f6b69b 100644
Binary files a/resources/azure/compute/disk-snapshots.png and b/resources/azure/compute/disk-snapshots.png differ
diff --git a/resources/azure/compute/disks.png b/resources/azure/compute/disks.png
index dbaab8a6..effee0b1 100644
Binary files a/resources/azure/compute/disks.png and b/resources/azure/compute/disks.png differ
diff --git a/resources/azure/compute/function-apps.png b/resources/azure/compute/function-apps.png
index 1a34e258..b6c7f67d 100644
Binary files a/resources/azure/compute/function-apps.png and b/resources/azure/compute/function-apps.png differ
diff --git a/resources/azure/compute/image-definitions.png b/resources/azure/compute/image-definitions.png
new file mode 100644
index 00000000..de6a2b3d
Binary files /dev/null and b/resources/azure/compute/image-definitions.png differ
diff --git a/resources/azure/compute/image-versions.png b/resources/azure/compute/image-versions.png
new file mode 100644
index 00000000..b62ab430
Binary files /dev/null and b/resources/azure/compute/image-versions.png differ
diff --git a/resources/azure/compute/kubernetes-services.png b/resources/azure/compute/kubernetes-services.png
index a96f3598..11c37ef8 100644
Binary files a/resources/azure/compute/kubernetes-services.png and b/resources/azure/compute/kubernetes-services.png differ
diff --git a/resources/azure/compute/mesh-applications.png b/resources/azure/compute/mesh-applications.png
index b65ba3e7..468f4e5c 100644
Binary files a/resources/azure/compute/mesh-applications.png and b/resources/azure/compute/mesh-applications.png differ
diff --git a/resources/azure/compute/os-images.png b/resources/azure/compute/os-images.png
new file mode 100644
index 00000000..fbbcf8e1
Binary files /dev/null and b/resources/azure/compute/os-images.png differ
diff --git a/resources/azure/compute/service-fabric-clusters.png b/resources/azure/compute/service-fabric-clusters.png
index be522e37..a03a2194 100644
Binary files a/resources/azure/compute/service-fabric-clusters.png and b/resources/azure/compute/service-fabric-clusters.png differ
diff --git a/resources/azure/compute/shared-image-galleries.png b/resources/azure/compute/shared-image-galleries.png
new file mode 100644
index 00000000..364a0915
Binary files /dev/null and b/resources/azure/compute/shared-image-galleries.png differ
diff --git a/resources/azure/compute/spring-cloud.png b/resources/azure/compute/spring-cloud.png
new file mode 100644
index 00000000..58fae815
Binary files /dev/null and b/resources/azure/compute/spring-cloud.png differ
diff --git a/resources/azure/compute/vm-classic.png b/resources/azure/compute/vm-classic.png
index e470d3a3..70cced29 100644
Binary files a/resources/azure/compute/vm-classic.png and b/resources/azure/compute/vm-classic.png differ
diff --git a/resources/azure/compute/vm-images.png b/resources/azure/compute/vm-images.png
index 42ed0178..fbbcf8e1 100644
Binary files a/resources/azure/compute/vm-images.png and b/resources/azure/compute/vm-images.png differ
diff --git a/resources/azure/compute/vm-scale-set.png b/resources/azure/compute/vm-scale-set.png
new file mode 100644
index 00000000..d2deec75
Binary files /dev/null and b/resources/azure/compute/vm-scale-set.png differ
diff --git a/resources/azure/compute/vm.png b/resources/azure/compute/vm.png
index 5c419476..99a05570 100644
Binary files a/resources/azure/compute/vm.png and b/resources/azure/compute/vm.png differ
diff --git a/resources/azure/compute/workspaces.png b/resources/azure/compute/workspaces.png
new file mode 100644
index 00000000..fa399bfb
Binary files /dev/null and b/resources/azure/compute/workspaces.png differ
diff --git a/resources/azure/database/cache-for-redis.png b/resources/azure/database/cache-for-redis.png
index cbe96de0..c3919b2a 100644
Binary files a/resources/azure/database/cache-for-redis.png and b/resources/azure/database/cache-for-redis.png differ
diff --git a/resources/azure/database/cosmos-db.png b/resources/azure/database/cosmos-db.png
index bc9cdbb4..64b9796d 100644
Binary files a/resources/azure/database/cosmos-db.png and b/resources/azure/database/cosmos-db.png differ
diff --git a/resources/azure/database/data-explorer-clusters.png b/resources/azure/database/data-explorer-clusters.png
new file mode 100644
index 00000000..cb317abc
Binary files /dev/null and b/resources/azure/database/data-explorer-clusters.png differ
diff --git a/resources/azure/database/data-factory.png b/resources/azure/database/data-factory.png
new file mode 100644
index 00000000..78d97d26
Binary files /dev/null and b/resources/azure/database/data-factory.png differ
diff --git a/resources/azure/database/database-for-mariadb-servers.png b/resources/azure/database/database-for-mariadb-servers.png
index d7023871..170251e1 100644
Binary files a/resources/azure/database/database-for-mariadb-servers.png and b/resources/azure/database/database-for-mariadb-servers.png differ
diff --git a/resources/azure/database/database-for-mysql-servers.png b/resources/azure/database/database-for-mysql-servers.png
index 26dce53a..a70b63c0 100644
Binary files a/resources/azure/database/database-for-mysql-servers.png and b/resources/azure/database/database-for-mysql-servers.png differ
diff --git a/resources/azure/database/database-for-postgresql-servers.png b/resources/azure/database/database-for-postgresql-servers.png
index c7c5f052..91875ae0 100644
Binary files a/resources/azure/database/database-for-postgresql-servers.png and b/resources/azure/database/database-for-postgresql-servers.png differ
diff --git a/resources/azure/database/elastic-database-pools.png b/resources/azure/database/elastic-database-pools.png
index b53ed5f5..d5ed1d4a 100644
Binary files a/resources/azure/database/elastic-database-pools.png and b/resources/azure/database/elastic-database-pools.png differ
diff --git a/resources/azure/database/elastic-job-agents.png b/resources/azure/database/elastic-job-agents.png
index 4af86031..dc82cee7 100644
Binary files a/resources/azure/database/elastic-job-agents.png and b/resources/azure/database/elastic-job-agents.png differ
diff --git a/resources/azure/database/instance-pools.png b/resources/azure/database/instance-pools.png
new file mode 100644
index 00000000..ccf66287
Binary files /dev/null and b/resources/azure/database/instance-pools.png differ
diff --git a/resources/azure/database/managed-databases.png b/resources/azure/database/managed-databases.png
index 00ab8256..2035ee34 100644
Binary files a/resources/azure/database/managed-databases.png and b/resources/azure/database/managed-databases.png differ
diff --git a/resources/azure/database/sql-databases.png b/resources/azure/database/sql-databases.png
index b5da5a4b..60d0f169 100644
Binary files a/resources/azure/database/sql-databases.png and b/resources/azure/database/sql-databases.png differ
diff --git a/resources/azure/database/sql-datawarehouse.png b/resources/azure/database/sql-datawarehouse.png
index c712f929..2aeeeeaa 100644
Binary files a/resources/azure/database/sql-datawarehouse.png and b/resources/azure/database/sql-datawarehouse.png differ
diff --git a/resources/azure/database/sql-managed-instances.png b/resources/azure/database/sql-managed-instances.png
index 62f9fb85..2cfe47e7 100644
Binary files a/resources/azure/database/sql-managed-instances.png and b/resources/azure/database/sql-managed-instances.png differ
diff --git a/resources/azure/database/sql-server-stretch-databases.png b/resources/azure/database/sql-server-stretch-databases.png
index 8aa364c5..2aeeeeaa 100644
Binary files a/resources/azure/database/sql-server-stretch-databases.png and b/resources/azure/database/sql-server-stretch-databases.png differ
diff --git a/resources/azure/database/sql-servers.png b/resources/azure/database/sql-servers.png
index d76abf39..a45391ba 100644
Binary files a/resources/azure/database/sql-servers.png and b/resources/azure/database/sql-servers.png differ
diff --git a/resources/azure/database/sql-vm.png b/resources/azure/database/sql-vm.png
new file mode 100644
index 00000000..c7ce579d
Binary files /dev/null and b/resources/azure/database/sql-vm.png differ
diff --git a/resources/azure/database/sql.png b/resources/azure/database/sql.png
new file mode 100644
index 00000000..d3b46f09
Binary files /dev/null and b/resources/azure/database/sql.png differ
diff --git a/resources/azure/database/ssis-lift-and-shift-ir.png b/resources/azure/database/ssis-lift-and-shift-ir.png
new file mode 100644
index 00000000..8ff629c5
Binary files /dev/null and b/resources/azure/database/ssis-lift-and-shift-ir.png differ
diff --git a/resources/azure/database/synapse-analytics.png b/resources/azure/database/synapse-analytics.png
new file mode 100644
index 00000000..7966c325
Binary files /dev/null and b/resources/azure/database/synapse-analytics.png differ
diff --git a/resources/azure/database/virtual-clusters.png b/resources/azure/database/virtual-clusters.png
index ca559883..c676bd50 100644
Binary files a/resources/azure/database/virtual-clusters.png and b/resources/azure/database/virtual-clusters.png differ
diff --git a/resources/azure/devops/application-insights.png b/resources/azure/devops/application-insights.png
index 58d8f7ed..f80e0173 100644
Binary files a/resources/azure/devops/application-insights.png and b/resources/azure/devops/application-insights.png differ
diff --git a/resources/azure/devops/devtest-labs.png b/resources/azure/devops/devtest-labs.png
index 7f64b581..75b82c12 100644
Binary files a/resources/azure/devops/devtest-labs.png and b/resources/azure/devops/devtest-labs.png differ
diff --git a/resources/azure/devops/lab-services.png b/resources/azure/devops/lab-services.png
new file mode 100644
index 00000000..abbe48da
Binary files /dev/null and b/resources/azure/devops/lab-services.png differ
diff --git a/resources/azure/general/allresources.png b/resources/azure/general/allresources.png
index f2d94553..d2b2ccc7 100644
Binary files a/resources/azure/general/allresources.png and b/resources/azure/general/allresources.png differ
diff --git a/resources/azure/general/helpsupport.png b/resources/azure/general/helpsupport.png
index d975d146..d5172d37 100644
Binary files a/resources/azure/general/helpsupport.png and b/resources/azure/general/helpsupport.png differ
diff --git a/resources/azure/general/information.png b/resources/azure/general/information.png
index 3d0e8aca..34af9729 100644
Binary files a/resources/azure/general/information.png and b/resources/azure/general/information.png differ
diff --git a/resources/azure/general/managementgroups.png b/resources/azure/general/managementgroups.png
index 1322348d..94044f40 100644
Binary files a/resources/azure/general/managementgroups.png and b/resources/azure/general/managementgroups.png differ
diff --git a/resources/azure/general/marketplace.png b/resources/azure/general/marketplace.png
index 1217b9d4..311506f4 100644
Binary files a/resources/azure/general/marketplace.png and b/resources/azure/general/marketplace.png differ
diff --git a/resources/azure/general/quickstartcenter.png b/resources/azure/general/quickstartcenter.png
index c3aaa53c..8a8d92ee 100644
Binary files a/resources/azure/general/quickstartcenter.png and b/resources/azure/general/quickstartcenter.png differ
diff --git a/resources/azure/general/recent.png b/resources/azure/general/recent.png
index c4389d18..7d7fb4a4 100644
Binary files a/resources/azure/general/recent.png and b/resources/azure/general/recent.png differ
diff --git a/resources/azure/general/reservations.png b/resources/azure/general/reservations.png
index 2f4ba07e..ec2ebad6 100644
Binary files a/resources/azure/general/reservations.png and b/resources/azure/general/reservations.png differ
diff --git a/resources/azure/general/resourcegroups.png b/resources/azure/general/resourcegroups.png
index eff189d9..f0177acf 100644
Binary files a/resources/azure/general/resourcegroups.png and b/resources/azure/general/resourcegroups.png differ
diff --git a/resources/azure/general/subscriptions.png b/resources/azure/general/subscriptions.png
index 72eed905..9a510f98 100644
Binary files a/resources/azure/general/subscriptions.png and b/resources/azure/general/subscriptions.png differ
diff --git a/resources/azure/general/tag.png b/resources/azure/general/tag.png
index 92b7d10d..5d0ee16e 100644
Binary files a/resources/azure/general/tag.png and b/resources/azure/general/tag.png differ
diff --git a/resources/azure/identity/active-directory-connect-health.png b/resources/azure/identity/active-directory-connect-health.png
index a39d673f..5dea39e6 100644
Binary files a/resources/azure/identity/active-directory-connect-health.png and b/resources/azure/identity/active-directory-connect-health.png differ
diff --git a/resources/azure/identity/active-directory.png b/resources/azure/identity/active-directory.png
index ed59b58a..b12a71bb 100644
Binary files a/resources/azure/identity/active-directory.png and b/resources/azure/identity/active-directory.png differ
diff --git a/resources/azure/identity/ad-b2c.png b/resources/azure/identity/ad-b2c.png
index 9269ae71..dab723f4 100644
Binary files a/resources/azure/identity/ad-b2c.png and b/resources/azure/identity/ad-b2c.png differ
diff --git a/resources/azure/identity/ad-domain-services.png b/resources/azure/identity/ad-domain-services.png
index 9eb472b9..c4056d91 100644
Binary files a/resources/azure/identity/ad-domain-services.png and b/resources/azure/identity/ad-domain-services.png differ
diff --git a/resources/azure/identity/ad-identity-protection.png b/resources/azure/identity/ad-identity-protection.png
index 4d4f7a47..503df013 100644
Binary files a/resources/azure/identity/ad-identity-protection.png and b/resources/azure/identity/ad-identity-protection.png differ
diff --git a/resources/azure/identity/app-registrations.png b/resources/azure/identity/app-registrations.png
index 9ba2c2bf..755dc76e 100644
Binary files a/resources/azure/identity/app-registrations.png and b/resources/azure/identity/app-registrations.png differ
diff --git a/resources/azure/identity/enterprise-applications.png b/resources/azure/identity/enterprise-applications.png
index efd78ea0..f14e0c98 100644
Binary files a/resources/azure/identity/enterprise-applications.png and b/resources/azure/identity/enterprise-applications.png differ
diff --git a/resources/azure/identity/groups.png b/resources/azure/identity/groups.png
new file mode 100644
index 00000000..b859b014
Binary files /dev/null and b/resources/azure/identity/groups.png differ
diff --git a/resources/azure/identity/identity-governance.png b/resources/azure/identity/identity-governance.png
index b4eb671a..fe46559a 100644
Binary files a/resources/azure/identity/identity-governance.png and b/resources/azure/identity/identity-governance.png differ
diff --git a/resources/azure/identity/managed-identities.png b/resources/azure/identity/managed-identities.png
index 20c4093d..d191007d 100644
Binary files a/resources/azure/identity/managed-identities.png and b/resources/azure/identity/managed-identities.png differ
diff --git a/resources/azure/identity/users.png b/resources/azure/identity/users.png
new file mode 100644
index 00000000..0da5d6d0
Binary files /dev/null and b/resources/azure/identity/users.png differ
diff --git a/resources/azure/integration/api-for-fhir.png b/resources/azure/integration/api-for-fhir.png
index c5b0a19a..801d438b 100644
Binary files a/resources/azure/integration/api-for-fhir.png and b/resources/azure/integration/api-for-fhir.png differ
diff --git a/resources/azure/integration/api-management.png b/resources/azure/integration/api-management.png
index 4889260e..1d7db0b9 100644
Binary files a/resources/azure/integration/api-management.png and b/resources/azure/integration/api-management.png differ
diff --git a/resources/azure/integration/data-catalog.png b/resources/azure/integration/data-catalog.png
index d3c2f6bf..6f571571 100644
Binary files a/resources/azure/integration/data-catalog.png and b/resources/azure/integration/data-catalog.png differ
diff --git a/resources/azure/integration/event-grid-domains.png b/resources/azure/integration/event-grid-domains.png
index 1d290648..53e285a4 100644
Binary files a/resources/azure/integration/event-grid-domains.png and b/resources/azure/integration/event-grid-domains.png differ
diff --git a/resources/azure/integration/event-grid-subscriptions.png b/resources/azure/integration/event-grid-subscriptions.png
index deaaa840..53e285a4 100644
Binary files a/resources/azure/integration/event-grid-subscriptions.png and b/resources/azure/integration/event-grid-subscriptions.png differ
diff --git a/resources/azure/integration/event-grid-topics.png b/resources/azure/integration/event-grid-topics.png
index f19379d3..04213c30 100644
Binary files a/resources/azure/integration/event-grid-topics.png and b/resources/azure/integration/event-grid-topics.png differ
diff --git a/resources/azure/integration/integration-accounts.png b/resources/azure/integration/integration-accounts.png
index cf3b8342..a729534f 100644
Binary files a/resources/azure/integration/integration-accounts.png and b/resources/azure/integration/integration-accounts.png differ
diff --git a/resources/azure/integration/logic-apps.png b/resources/azure/integration/logic-apps.png
index 06369812..b07f52c5 100644
Binary files a/resources/azure/integration/logic-apps.png and b/resources/azure/integration/logic-apps.png differ
diff --git a/resources/azure/integration/partner-topic.png b/resources/azure/integration/partner-topic.png
new file mode 100644
index 00000000..0631a558
Binary files /dev/null and b/resources/azure/integration/partner-topic.png differ
diff --git a/resources/azure/integration/service-bus-relays.png b/resources/azure/integration/service-bus-relays.png
index f936e867..f255f05f 100644
Binary files a/resources/azure/integration/service-bus-relays.png and b/resources/azure/integration/service-bus-relays.png differ
diff --git a/resources/azure/integration/software-as-a-service.png b/resources/azure/integration/software-as-a-service.png
index d44945f4..de893bc8 100644
Binary files a/resources/azure/integration/software-as-a-service.png and b/resources/azure/integration/software-as-a-service.png differ
diff --git a/resources/azure/integration/system-topic.png b/resources/azure/integration/system-topic.png
new file mode 100644
index 00000000..83e941b3
Binary files /dev/null and b/resources/azure/integration/system-topic.png differ
diff --git a/resources/azure/iot/device-provisioning-services.png b/resources/azure/iot/device-provisioning-services.png
index 95ce7026..f0fba925 100644
Binary files a/resources/azure/iot/device-provisioning-services.png and b/resources/azure/iot/device-provisioning-services.png differ
diff --git a/resources/azure/iot/iot-central-applications.png b/resources/azure/iot/iot-central-applications.png
index e2e91513..0400504c 100644
Binary files a/resources/azure/iot/iot-central-applications.png and b/resources/azure/iot/iot-central-applications.png differ
diff --git a/resources/azure/iot/iot-hub.png b/resources/azure/iot/iot-hub.png
index 198dec19..664bc23f 100644
Binary files a/resources/azure/iot/iot-hub.png and b/resources/azure/iot/iot-hub.png differ
diff --git a/resources/azure/iot/maps.png b/resources/azure/iot/maps.png
index 1fcef393..ed1c5e16 100644
Binary files a/resources/azure/iot/maps.png and b/resources/azure/iot/maps.png differ
diff --git a/resources/azure/iot/time-series-insights-environments.png b/resources/azure/iot/time-series-insights-environments.png
index 66f39234..8ddbc0ca 100644
Binary files a/resources/azure/iot/time-series-insights-environments.png and b/resources/azure/iot/time-series-insights-environments.png differ
diff --git a/resources/azure/iot/time-series-insights-events-sources.png b/resources/azure/iot/time-series-insights-events-sources.png
index 4c4e716b..80d33f6c 100644
Binary files a/resources/azure/iot/time-series-insights-events-sources.png and b/resources/azure/iot/time-series-insights-events-sources.png differ
diff --git a/resources/azure/migration/data-box-edge.png b/resources/azure/migration/data-box-edge.png
new file mode 100644
index 00000000..76d55602
Binary files /dev/null and b/resources/azure/migration/data-box-edge.png differ
diff --git a/resources/azure/migration/data-box.png b/resources/azure/migration/data-box.png
new file mode 100644
index 00000000..b316d506
Binary files /dev/null and b/resources/azure/migration/data-box.png differ
diff --git a/resources/azure/migration/database-migration-services.png b/resources/azure/migration/database-migration-services.png
index 95d69907..9f66d088 100644
Binary files a/resources/azure/migration/database-migration-services.png and b/resources/azure/migration/database-migration-services.png differ
diff --git a/resources/azure/migration/migration-projects.png b/resources/azure/migration/migration-projects.png
index 1d9d553d..71394c0b 100644
Binary files a/resources/azure/migration/migration-projects.png and b/resources/azure/migration/migration-projects.png differ
diff --git a/resources/azure/migration/recovery-services-vaults.png b/resources/azure/migration/recovery-services-vaults.png
index a766c96a..1275988e 100644
Binary files a/resources/azure/migration/recovery-services-vaults.png and b/resources/azure/migration/recovery-services-vaults.png differ
diff --git a/resources/azure/ml/bot-services.png b/resources/azure/ml/bot-services.png
index f7c9f46c..04036722 100644
Binary files a/resources/azure/ml/bot-services.png and b/resources/azure/ml/bot-services.png differ
diff --git a/resources/azure/ml/cognitive-services.png b/resources/azure/ml/cognitive-services.png
index 08681246..651f7303 100644
Binary files a/resources/azure/ml/cognitive-services.png and b/resources/azure/ml/cognitive-services.png differ
diff --git a/resources/azure/ml/machine-learning-studio-web-service-plans.png b/resources/azure/ml/machine-learning-studio-web-service-plans.png
index 1dbf0383..e347017b 100644
Binary files a/resources/azure/ml/machine-learning-studio-web-service-plans.png and b/resources/azure/ml/machine-learning-studio-web-service-plans.png differ
diff --git a/resources/azure/ml/machine-learning-studio-web-services.png b/resources/azure/ml/machine-learning-studio-web-services.png
index 77bfc1ab..6885fc3b 100644
Binary files a/resources/azure/ml/machine-learning-studio-web-services.png and b/resources/azure/ml/machine-learning-studio-web-services.png differ
diff --git a/resources/azure/ml/machine-learning-studio-workspaces.png b/resources/azure/ml/machine-learning-studio-workspaces.png
index 7b98af9c..781de23d 100644
Binary files a/resources/azure/ml/machine-learning-studio-workspaces.png and b/resources/azure/ml/machine-learning-studio-workspaces.png differ
diff --git a/resources/azure/mobile/app-service---mobile.png b/resources/azure/mobile/app-service---mobile.png
deleted file mode 100644
index 28ec8b60..00000000
Binary files a/resources/azure/mobile/app-service---mobile.png and /dev/null differ
diff --git a/resources/azure/mobile/app-service-mobile.png b/resources/azure/mobile/app-service-mobile.png
new file mode 100644
index 00000000..a851bea3
Binary files /dev/null and b/resources/azure/mobile/app-service-mobile.png differ
diff --git a/resources/azure/mobile/mobile-engagement.png b/resources/azure/mobile/mobile-engagement.png
index d42a91bb..fe02c590 100644
Binary files a/resources/azure/mobile/mobile-engagement.png and b/resources/azure/mobile/mobile-engagement.png differ
diff --git a/resources/azure/mobile/notification-hubs.png b/resources/azure/mobile/notification-hubs.png
index 1d69e504..ad3129f4 100644
Binary files a/resources/azure/mobile/notification-hubs.png and b/resources/azure/mobile/notification-hubs.png differ
diff --git a/resources/azure/network/application-gateway.png b/resources/azure/network/application-gateway.png
index a88f21c4..33b9bb60 100644
Binary files a/resources/azure/network/application-gateway.png and b/resources/azure/network/application-gateway.png differ
diff --git a/resources/azure/network/cdn-profiles.png b/resources/azure/network/cdn-profiles.png
index 9b1ca9e4..abf28b27 100644
Binary files a/resources/azure/network/cdn-profiles.png and b/resources/azure/network/cdn-profiles.png differ
diff --git a/resources/azure/network/connections.png b/resources/azure/network/connections.png
index cceef7a4..ba2f81ff 100644
Binary files a/resources/azure/network/connections.png and b/resources/azure/network/connections.png differ
diff --git a/resources/azure/network/ddos-protection-plans.png b/resources/azure/network/ddos-protection-plans.png
index 90a6a889..a9f93003 100644
Binary files a/resources/azure/network/ddos-protection-plans.png and b/resources/azure/network/ddos-protection-plans.png differ
diff --git a/resources/azure/network/dns-zones.png b/resources/azure/network/dns-zones.png
index 37b8f0d5..cd0e0546 100644
Binary files a/resources/azure/network/dns-zones.png and b/resources/azure/network/dns-zones.png differ
diff --git a/resources/azure/network/expressroute-circuits.png b/resources/azure/network/expressroute-circuits.png
index 207646f6..cb86bb1e 100644
Binary files a/resources/azure/network/expressroute-circuits.png and b/resources/azure/network/expressroute-circuits.png differ
diff --git a/resources/azure/network/firewall.png b/resources/azure/network/firewall.png
index dd8879ab..d2f12c96 100644
Binary files a/resources/azure/network/firewall.png and b/resources/azure/network/firewall.png differ
diff --git a/resources/azure/network/front-doors.png b/resources/azure/network/front-doors.png
index 0dc539d5..baa09faf 100644
Binary files a/resources/azure/network/front-doors.png and b/resources/azure/network/front-doors.png differ
diff --git a/resources/azure/network/load-balancers.png b/resources/azure/network/load-balancers.png
index aa968112..803c5225 100644
Binary files a/resources/azure/network/load-balancers.png and b/resources/azure/network/load-balancers.png differ
diff --git a/resources/azure/network/local-network-gateways.png b/resources/azure/network/local-network-gateways.png
index 5a9d4223..11e7bf9c 100644
Binary files a/resources/azure/network/local-network-gateways.png and b/resources/azure/network/local-network-gateways.png differ
diff --git a/resources/azure/network/network-interfaces.png b/resources/azure/network/network-interfaces.png
index 1c4e0ba0..c60606c9 100644
Binary files a/resources/azure/network/network-interfaces.png and b/resources/azure/network/network-interfaces.png differ
diff --git a/resources/azure/network/network-security-groups-classic.png b/resources/azure/network/network-security-groups-classic.png
index d9555caf..4a7e8eee 100644
Binary files a/resources/azure/network/network-security-groups-classic.png and b/resources/azure/network/network-security-groups-classic.png differ
diff --git a/resources/azure/network/network-watcher.png b/resources/azure/network/network-watcher.png
index 98a15adb..1323f62c 100644
Binary files a/resources/azure/network/network-watcher.png and b/resources/azure/network/network-watcher.png differ
diff --git a/resources/azure/network/public-ip-addresses.png b/resources/azure/network/public-ip-addresses.png
index f1c81609..2cb57240 100644
Binary files a/resources/azure/network/public-ip-addresses.png and b/resources/azure/network/public-ip-addresses.png differ
diff --git a/resources/azure/network/reserved-ip-addresses-classic.png b/resources/azure/network/reserved-ip-addresses-classic.png
index 7a784120..086da895 100644
Binary files a/resources/azure/network/reserved-ip-addresses-classic.png and b/resources/azure/network/reserved-ip-addresses-classic.png differ
diff --git a/resources/azure/network/route-filters.png b/resources/azure/network/route-filters.png
index 92bcb587..797b5119 100644
Binary files a/resources/azure/network/route-filters.png and b/resources/azure/network/route-filters.png differ
diff --git a/resources/azure/network/route-tables.png b/resources/azure/network/route-tables.png
index 1c1ea36a..9d7ff779 100644
Binary files a/resources/azure/network/route-tables.png and b/resources/azure/network/route-tables.png differ
diff --git a/resources/azure/network/service-endpoint-policies.png b/resources/azure/network/service-endpoint-policies.png
index c13e57a7..e9fa41fe 100644
Binary files a/resources/azure/network/service-endpoint-policies.png and b/resources/azure/network/service-endpoint-policies.png differ
diff --git a/resources/azure/network/subnets.png b/resources/azure/network/subnets.png
new file mode 100644
index 00000000..eb4b1f59
Binary files /dev/null and b/resources/azure/network/subnets.png differ
diff --git a/resources/azure/network/traffic-manager-profiles.png b/resources/azure/network/traffic-manager-profiles.png
index 889a3d3f..fa7fa8fe 100644
Binary files a/resources/azure/network/traffic-manager-profiles.png and b/resources/azure/network/traffic-manager-profiles.png differ
diff --git a/resources/azure/network/virtual-network-classic.png b/resources/azure/network/virtual-network-classic.png
index 42a30259..58703249 100644
Binary files a/resources/azure/network/virtual-network-classic.png and b/resources/azure/network/virtual-network-classic.png differ
diff --git a/resources/azure/network/virtual-network-gateways.png b/resources/azure/network/virtual-network-gateways.png
index 9645786b..5e66c940 100644
Binary files a/resources/azure/network/virtual-network-gateways.png and b/resources/azure/network/virtual-network-gateways.png differ
diff --git a/resources/azure/network/virtual-networks.png b/resources/azure/network/virtual-networks.png
index 5066d26c..d2f947bb 100644
Binary files a/resources/azure/network/virtual-networks.png and b/resources/azure/network/virtual-networks.png differ
diff --git a/resources/azure/network/virtual-wans.png b/resources/azure/network/virtual-wans.png
index fc5e589d..58c17293 100644
Binary files a/resources/azure/network/virtual-wans.png and b/resources/azure/network/virtual-wans.png differ
diff --git a/resources/azure/security/application-security-groups.png b/resources/azure/security/application-security-groups.png
new file mode 100644
index 00000000..38066668
Binary files /dev/null and b/resources/azure/security/application-security-groups.png differ
diff --git a/resources/azure/security/conditional-access.png b/resources/azure/security/conditional-access.png
new file mode 100644
index 00000000..37d5ab17
Binary files /dev/null and b/resources/azure/security/conditional-access.png differ
diff --git a/resources/azure/security/defender.png b/resources/azure/security/defender.png
new file mode 100644
index 00000000..35ee099b
Binary files /dev/null and b/resources/azure/security/defender.png differ
diff --git a/resources/azure/security/extended-security-updates.png b/resources/azure/security/extended-security-updates.png
new file mode 100644
index 00000000..b77dfda6
Binary files /dev/null and b/resources/azure/security/extended-security-updates.png differ
diff --git a/resources/azure/security/security-center.png b/resources/azure/security/security-center.png
index e0fa97e2..2aef4991 100644
Binary files a/resources/azure/security/security-center.png and b/resources/azure/security/security-center.png differ
diff --git a/resources/azure/security/sentinel.png b/resources/azure/security/sentinel.png
index ecceee66..949a3a63 100644
Binary files a/resources/azure/security/sentinel.png and b/resources/azure/security/sentinel.png differ
diff --git a/resources/azure/storage/data-box-edge---data-box-gateway.png b/resources/azure/storage/data-box-edge---data-box-gateway.png
deleted file mode 100644
index 8eec00e4..00000000
Binary files a/resources/azure/storage/data-box-edge---data-box-gateway.png and /dev/null differ
diff --git a/resources/azure/storage/data-box-edge-data-box-gateway.png b/resources/azure/storage/data-box-edge-data-box-gateway.png
new file mode 100644
index 00000000..76d55602
Binary files /dev/null and b/resources/azure/storage/data-box-edge-data-box-gateway.png differ
diff --git a/resources/azure/storage/data-box.png b/resources/azure/storage/data-box.png
index c80eb2fa..b316d506 100644
Binary files a/resources/azure/storage/data-box.png and b/resources/azure/storage/data-box.png differ
diff --git a/resources/azure/storage/netapp-files.png b/resources/azure/storage/netapp-files.png
index 84e1c669..cda140e6 100644
Binary files a/resources/azure/storage/netapp-files.png and b/resources/azure/storage/netapp-files.png differ
diff --git a/resources/azure/storage/storage-accounts-classic.png b/resources/azure/storage/storage-accounts-classic.png
index 81369a9e..1379991d 100644
Binary files a/resources/azure/storage/storage-accounts-classic.png and b/resources/azure/storage/storage-accounts-classic.png differ
diff --git a/resources/azure/storage/storage-accounts.png b/resources/azure/storage/storage-accounts.png
index 8f57412e..61e3dd1c 100644
Binary files a/resources/azure/storage/storage-accounts.png and b/resources/azure/storage/storage-accounts.png differ
diff --git a/resources/azure/storage/storage-sync-services.png b/resources/azure/storage/storage-sync-services.png
index c2ddfdae..6d22924a 100644
Binary files a/resources/azure/storage/storage-sync-services.png and b/resources/azure/storage/storage-sync-services.png differ
diff --git a/resources/azure/storage/storsimple-data-managers.png b/resources/azure/storage/storsimple-data-managers.png
index 7f736062..e66b8006 100644
Binary files a/resources/azure/storage/storsimple-data-managers.png and b/resources/azure/storage/storsimple-data-managers.png differ
diff --git a/resources/azure/storage/storsimple-device-managers.png b/resources/azure/storage/storsimple-device-managers.png
index b29ce455..35d26d87 100644
Binary files a/resources/azure/storage/storsimple-device-managers.png and b/resources/azure/storage/storsimple-device-managers.png differ
diff --git a/resources/azure/web/app-service-certificates.png b/resources/azure/web/app-service-certificates.png
index 66e533f9..1c63f126 100644
Binary files a/resources/azure/web/app-service-certificates.png and b/resources/azure/web/app-service-certificates.png differ
diff --git a/resources/azure/web/app-service-domains.png b/resources/azure/web/app-service-domains.png
index 26b3b799..afeea0c0 100644
Binary files a/resources/azure/web/app-service-domains.png and b/resources/azure/web/app-service-domains.png differ
diff --git a/resources/azure/web/app-service-environments.png b/resources/azure/web/app-service-environments.png
index 39c7a5f4..6f764a28 100644
Binary files a/resources/azure/web/app-service-environments.png and b/resources/azure/web/app-service-environments.png differ
diff --git a/resources/azure/web/app-service-plans.png b/resources/azure/web/app-service-plans.png
index 65d774da..1be8fe61 100644
Binary files a/resources/azure/web/app-service-plans.png and b/resources/azure/web/app-service-plans.png differ
diff --git a/resources/azure/web/app-services.png b/resources/azure/web/app-services.png
index 2cb88f60..f7ca7fb0 100644
Binary files a/resources/azure/web/app-services.png and b/resources/azure/web/app-services.png differ
diff --git a/resources/azure/web/media-services.png b/resources/azure/web/media-services.png
index 38001ecc..f787f0f6 100644
Binary files a/resources/azure/web/media-services.png and b/resources/azure/web/media-services.png differ
diff --git a/resources/azure/web/notification-hub-namespaces.png b/resources/azure/web/notification-hub-namespaces.png
index 1d69e504..ad3129f4 100644
Binary files a/resources/azure/web/notification-hub-namespaces.png and b/resources/azure/web/notification-hub-namespaces.png differ
diff --git a/resources/azure/web/search.png b/resources/azure/web/search.png
index 5cd48eed..c92d6582 100644
Binary files a/resources/azure/web/search.png and b/resources/azure/web/search.png differ
diff --git a/resources/gcp/operations/monitoring.png b/resources/gcp/operations/monitoring.png
new file mode 100644
index 00000000..427babb7
Binary files /dev/null and b/resources/gcp/operations/monitoring.png differ
diff --git a/resources/ibm/analytics/analytics.png b/resources/ibm/analytics/analytics.png
new file mode 100644
index 00000000..5a0b024a
Binary files /dev/null and b/resources/ibm/analytics/analytics.png differ
diff --git a/resources/ibm/analytics/data-integration.png b/resources/ibm/analytics/data-integration.png
new file mode 100644
index 00000000..6cba3f02
Binary files /dev/null and b/resources/ibm/analytics/data-integration.png differ
diff --git a/resources/ibm/analytics/data-repositories.png b/resources/ibm/analytics/data-repositories.png
new file mode 100644
index 00000000..cd511228
Binary files /dev/null and b/resources/ibm/analytics/data-repositories.png differ
diff --git a/resources/ibm/analytics/device-analytics.png b/resources/ibm/analytics/device-analytics.png
new file mode 100644
index 00000000..1f3109a2
Binary files /dev/null and b/resources/ibm/analytics/device-analytics.png differ
diff --git a/resources/ibm/analytics/streaming-computing.png b/resources/ibm/analytics/streaming-computing.png
new file mode 100644
index 00000000..4eced106
Binary files /dev/null and b/resources/ibm/analytics/streaming-computing.png differ
diff --git a/resources/ibm/applications/actionable-insight.png b/resources/ibm/applications/actionable-insight.png
new file mode 100644
index 00000000..6cc05e12
Binary files /dev/null and b/resources/ibm/applications/actionable-insight.png differ
diff --git a/resources/ibm/applications/annotate.png b/resources/ibm/applications/annotate.png
new file mode 100644
index 00000000..07a7c9ae
Binary files /dev/null and b/resources/ibm/applications/annotate.png differ
diff --git a/resources/ibm/applications/api-developer-portal.png b/resources/ibm/applications/api-developer-portal.png
new file mode 100644
index 00000000..e16d3dd1
Binary files /dev/null and b/resources/ibm/applications/api-developer-portal.png differ
diff --git a/resources/ibm/applications/api-polyglot-runtimes.png b/resources/ibm/applications/api-polyglot-runtimes.png
new file mode 100644
index 00000000..fc8de117
Binary files /dev/null and b/resources/ibm/applications/api-polyglot-runtimes.png differ
diff --git a/resources/ibm/applications/app-server.png b/resources/ibm/applications/app-server.png
new file mode 100644
index 00000000..00b43145
Binary files /dev/null and b/resources/ibm/applications/app-server.png differ
diff --git a/resources/ibm/applications/application-logic.png b/resources/ibm/applications/application-logic.png
new file mode 100644
index 00000000..4d6c19fb
Binary files /dev/null and b/resources/ibm/applications/application-logic.png differ
diff --git a/resources/ibm/applications/enterprise-applications.png b/resources/ibm/applications/enterprise-applications.png
new file mode 100644
index 00000000..e42badea
Binary files /dev/null and b/resources/ibm/applications/enterprise-applications.png differ
diff --git a/resources/ibm/applications/index.png b/resources/ibm/applications/index.png
new file mode 100644
index 00000000..82966910
Binary files /dev/null and b/resources/ibm/applications/index.png differ
diff --git a/resources/ibm/applications/iot-application.png b/resources/ibm/applications/iot-application.png
new file mode 100644
index 00000000..38a03e67
Binary files /dev/null and b/resources/ibm/applications/iot-application.png differ
diff --git a/resources/ibm/applications/microservice.png b/resources/ibm/applications/microservice.png
new file mode 100644
index 00000000..e0bbd371
Binary files /dev/null and b/resources/ibm/applications/microservice.png differ
diff --git a/resources/ibm/applications/mobile-app.png b/resources/ibm/applications/mobile-app.png
new file mode 100644
index 00000000..523aa498
Binary files /dev/null and b/resources/ibm/applications/mobile-app.png differ
diff --git a/resources/ibm/applications/ontology.png b/resources/ibm/applications/ontology.png
new file mode 100644
index 00000000..5ea679c8
Binary files /dev/null and b/resources/ibm/applications/ontology.png differ
diff --git a/resources/ibm/applications/open-source-tools.png b/resources/ibm/applications/open-source-tools.png
new file mode 100644
index 00000000..da9e0c05
Binary files /dev/null and b/resources/ibm/applications/open-source-tools.png differ
diff --git a/resources/ibm/applications/runtime-services.png b/resources/ibm/applications/runtime-services.png
new file mode 100644
index 00000000..c70dbace
Binary files /dev/null and b/resources/ibm/applications/runtime-services.png differ
diff --git a/resources/ibm/applications/saas-applications.png b/resources/ibm/applications/saas-applications.png
new file mode 100644
index 00000000..2250997b
Binary files /dev/null and b/resources/ibm/applications/saas-applications.png differ
diff --git a/resources/ibm/applications/service-broker.png b/resources/ibm/applications/service-broker.png
new file mode 100644
index 00000000..218b3b75
Binary files /dev/null and b/resources/ibm/applications/service-broker.png differ
diff --git a/resources/ibm/applications/speech-to-text.png b/resources/ibm/applications/speech-to-text.png
new file mode 100644
index 00000000..23988aba
Binary files /dev/null and b/resources/ibm/applications/speech-to-text.png differ
diff --git a/resources/ibm/applications/visual-recognition.png b/resources/ibm/applications/visual-recognition.png
new file mode 100644
index 00000000..44939c5b
Binary files /dev/null and b/resources/ibm/applications/visual-recognition.png differ
diff --git a/resources/ibm/applications/visualization.png b/resources/ibm/applications/visualization.png
new file mode 100644
index 00000000..c0ae690a
Binary files /dev/null and b/resources/ibm/applications/visualization.png differ
diff --git a/resources/ibm/blockchain/blockchain-developer.png b/resources/ibm/blockchain/blockchain-developer.png
new file mode 100644
index 00000000..d535ac19
Binary files /dev/null and b/resources/ibm/blockchain/blockchain-developer.png differ
diff --git a/resources/ibm/blockchain/blockchain.png b/resources/ibm/blockchain/blockchain.png
new file mode 100644
index 00000000..db0af98c
Binary files /dev/null and b/resources/ibm/blockchain/blockchain.png differ
diff --git a/resources/ibm/blockchain/certificate-authority.png b/resources/ibm/blockchain/certificate-authority.png
new file mode 100644
index 00000000..8d5964a1
Binary files /dev/null and b/resources/ibm/blockchain/certificate-authority.png differ
diff --git a/resources/ibm/blockchain/client-application.png b/resources/ibm/blockchain/client-application.png
new file mode 100644
index 00000000..07c97036
Binary files /dev/null and b/resources/ibm/blockchain/client-application.png differ
diff --git a/resources/ibm/blockchain/communication.png b/resources/ibm/blockchain/communication.png
new file mode 100644
index 00000000..a50ed874
Binary files /dev/null and b/resources/ibm/blockchain/communication.png differ
diff --git a/resources/ibm/blockchain/consensus.png b/resources/ibm/blockchain/consensus.png
new file mode 100644
index 00000000..764baac3
Binary files /dev/null and b/resources/ibm/blockchain/consensus.png differ
diff --git a/resources/ibm/blockchain/event-listener.png b/resources/ibm/blockchain/event-listener.png
new file mode 100644
index 00000000..9b025810
Binary files /dev/null and b/resources/ibm/blockchain/event-listener.png differ
diff --git a/resources/ibm/blockchain/event.png b/resources/ibm/blockchain/event.png
new file mode 100644
index 00000000..1b7a39cd
Binary files /dev/null and b/resources/ibm/blockchain/event.png differ
diff --git a/resources/ibm/blockchain/existing-enterprise-systems.png b/resources/ibm/blockchain/existing-enterprise-systems.png
new file mode 100644
index 00000000..41a18046
Binary files /dev/null and b/resources/ibm/blockchain/existing-enterprise-systems.png differ
diff --git a/resources/ibm/blockchain/hyperledger-fabric.png b/resources/ibm/blockchain/hyperledger-fabric.png
new file mode 100644
index 00000000..916c22fd
Binary files /dev/null and b/resources/ibm/blockchain/hyperledger-fabric.png differ
diff --git a/resources/ibm/blockchain/key-management.png b/resources/ibm/blockchain/key-management.png
new file mode 100644
index 00000000..9b81f431
Binary files /dev/null and b/resources/ibm/blockchain/key-management.png differ
diff --git a/resources/ibm/blockchain/ledger.png b/resources/ibm/blockchain/ledger.png
new file mode 100644
index 00000000..4bb718b0
Binary files /dev/null and b/resources/ibm/blockchain/ledger.png differ
diff --git a/resources/ibm/blockchain/membership-services-provider-api.png b/resources/ibm/blockchain/membership-services-provider-api.png
new file mode 100644
index 00000000..790113f4
Binary files /dev/null and b/resources/ibm/blockchain/membership-services-provider-api.png differ
diff --git a/resources/ibm/blockchain/membership.png b/resources/ibm/blockchain/membership.png
new file mode 100644
index 00000000..c3ad05fb
Binary files /dev/null and b/resources/ibm/blockchain/membership.png differ
diff --git a/resources/ibm/blockchain/message-bus.png b/resources/ibm/blockchain/message-bus.png
new file mode 100644
index 00000000..807a14cf
Binary files /dev/null and b/resources/ibm/blockchain/message-bus.png differ
diff --git a/resources/ibm/blockchain/node.png b/resources/ibm/blockchain/node.png
new file mode 100644
index 00000000..332c881a
Binary files /dev/null and b/resources/ibm/blockchain/node.png differ
diff --git a/resources/ibm/blockchain/services.png b/resources/ibm/blockchain/services.png
new file mode 100644
index 00000000..9797f56e
Binary files /dev/null and b/resources/ibm/blockchain/services.png differ
diff --git a/resources/ibm/blockchain/smart-contract.png b/resources/ibm/blockchain/smart-contract.png
new file mode 100644
index 00000000..55508218
Binary files /dev/null and b/resources/ibm/blockchain/smart-contract.png differ
diff --git a/resources/ibm/blockchain/transaction-manager.png b/resources/ibm/blockchain/transaction-manager.png
new file mode 100644
index 00000000..bb85a47a
Binary files /dev/null and b/resources/ibm/blockchain/transaction-manager.png differ
diff --git a/resources/ibm/blockchain/wallet.png b/resources/ibm/blockchain/wallet.png
new file mode 100644
index 00000000..772e2c86
Binary files /dev/null and b/resources/ibm/blockchain/wallet.png differ
diff --git a/resources/ibm/compute/Instance.png b/resources/ibm/compute/Instance.png
new file mode 100644
index 00000000..c606725f
Binary files /dev/null and b/resources/ibm/compute/Instance.png differ
diff --git a/resources/ibm/compute/Key.png b/resources/ibm/compute/Key.png
new file mode 100644
index 00000000..332bd123
Binary files /dev/null and b/resources/ibm/compute/Key.png differ
diff --git a/resources/ibm/compute/bare-metal-server.png b/resources/ibm/compute/bare-metal-server.png
new file mode 100644
index 00000000..3dd53a05
Binary files /dev/null and b/resources/ibm/compute/bare-metal-server.png differ
diff --git a/resources/ibm/compute/image-service.png b/resources/ibm/compute/image-service.png
new file mode 100644
index 00000000..c64c97f6
Binary files /dev/null and b/resources/ibm/compute/image-service.png differ
diff --git a/resources/ibm/compute/power-instance.png b/resources/ibm/compute/power-instance.png
new file mode 100644
index 00000000..2441e6de
Binary files /dev/null and b/resources/ibm/compute/power-instance.png differ
diff --git a/resources/ibm/data/caches.png b/resources/ibm/data/caches.png
new file mode 100644
index 00000000..aef8a63c
Binary files /dev/null and b/resources/ibm/data/caches.png differ
diff --git a/resources/ibm/data/cloud.png b/resources/ibm/data/cloud.png
new file mode 100644
index 00000000..3f97fa1d
Binary files /dev/null and b/resources/ibm/data/cloud.png differ
diff --git a/resources/ibm/data/conversation-trained-deployed.png b/resources/ibm/data/conversation-trained-deployed.png
new file mode 100644
index 00000000..0df3a862
Binary files /dev/null and b/resources/ibm/data/conversation-trained-deployed.png differ
diff --git a/resources/ibm/data/data-services.png b/resources/ibm/data/data-services.png
new file mode 100644
index 00000000..0969f748
Binary files /dev/null and b/resources/ibm/data/data-services.png differ
diff --git a/resources/ibm/data/data-sources.png b/resources/ibm/data/data-sources.png
new file mode 100644
index 00000000..93fdfc70
Binary files /dev/null and b/resources/ibm/data/data-sources.png differ
diff --git a/resources/ibm/data/device-identity-service.png b/resources/ibm/data/device-identity-service.png
new file mode 100644
index 00000000..6e900e69
Binary files /dev/null and b/resources/ibm/data/device-identity-service.png differ
diff --git a/resources/ibm/data/device-registry.png b/resources/ibm/data/device-registry.png
new file mode 100644
index 00000000..daffdb88
Binary files /dev/null and b/resources/ibm/data/device-registry.png differ
diff --git a/resources/ibm/data/enterprise-data.png b/resources/ibm/data/enterprise-data.png
new file mode 100644
index 00000000..767c3dde
Binary files /dev/null and b/resources/ibm/data/enterprise-data.png differ
diff --git a/resources/ibm/data/enterprise-user-directory.png b/resources/ibm/data/enterprise-user-directory.png
new file mode 100644
index 00000000..e55d76a6
Binary files /dev/null and b/resources/ibm/data/enterprise-user-directory.png differ
diff --git a/resources/ibm/data/file-repository.png b/resources/ibm/data/file-repository.png
new file mode 100644
index 00000000..f39e948f
Binary files /dev/null and b/resources/ibm/data/file-repository.png differ
diff --git a/resources/ibm/data/ground-truth.png b/resources/ibm/data/ground-truth.png
new file mode 100644
index 00000000..8dc410f2
Binary files /dev/null and b/resources/ibm/data/ground-truth.png differ
diff --git a/resources/ibm/data/model.png b/resources/ibm/data/model.png
new file mode 100644
index 00000000..7cc6b8ce
Binary files /dev/null and b/resources/ibm/data/model.png differ
diff --git a/resources/ibm/data/tms-data-interface.png b/resources/ibm/data/tms-data-interface.png
new file mode 100644
index 00000000..b88e20f9
Binary files /dev/null and b/resources/ibm/data/tms-data-interface.png differ
diff --git a/resources/ibm/devops/artifact-management.png b/resources/ibm/devops/artifact-management.png
new file mode 100644
index 00000000..45be3b10
Binary files /dev/null and b/resources/ibm/devops/artifact-management.png differ
diff --git a/resources/ibm/devops/build-test.png b/resources/ibm/devops/build-test.png
new file mode 100644
index 00000000..f84ca437
Binary files /dev/null and b/resources/ibm/devops/build-test.png differ
diff --git a/resources/ibm/devops/code-editor.png b/resources/ibm/devops/code-editor.png
new file mode 100644
index 00000000..e7dabbde
Binary files /dev/null and b/resources/ibm/devops/code-editor.png differ
diff --git a/resources/ibm/devops/collaborative-development.png b/resources/ibm/devops/collaborative-development.png
new file mode 100644
index 00000000..32e68e95
Binary files /dev/null and b/resources/ibm/devops/collaborative-development.png differ
diff --git a/resources/ibm/devops/configuration-management.png b/resources/ibm/devops/configuration-management.png
new file mode 100644
index 00000000..e80c25e5
Binary files /dev/null and b/resources/ibm/devops/configuration-management.png differ
diff --git a/resources/ibm/devops/continuous-deploy.png b/resources/ibm/devops/continuous-deploy.png
new file mode 100644
index 00000000..6f10680c
Binary files /dev/null and b/resources/ibm/devops/continuous-deploy.png differ
diff --git a/resources/ibm/devops/continuous-testing.png b/resources/ibm/devops/continuous-testing.png
new file mode 100644
index 00000000..a97fe57c
Binary files /dev/null and b/resources/ibm/devops/continuous-testing.png differ
diff --git a/resources/ibm/devops/devops.png b/resources/ibm/devops/devops.png
new file mode 100644
index 00000000..f6620067
Binary files /dev/null and b/resources/ibm/devops/devops.png differ
diff --git a/resources/ibm/devops/provision.png b/resources/ibm/devops/provision.png
new file mode 100644
index 00000000..1b6edb84
Binary files /dev/null and b/resources/ibm/devops/provision.png differ
diff --git a/resources/ibm/devops/release-management.png b/resources/ibm/devops/release-management.png
new file mode 100644
index 00000000..99d8f78d
Binary files /dev/null and b/resources/ibm/devops/release-management.png differ
diff --git a/resources/ibm/general/Enterprise.png b/resources/ibm/general/Enterprise.png
new file mode 100644
index 00000000..6cc34790
Binary files /dev/null and b/resources/ibm/general/Enterprise.png differ
diff --git a/resources/ibm/general/Internet.png b/resources/ibm/general/Internet.png
new file mode 100644
index 00000000..91714467
Binary files /dev/null and b/resources/ibm/general/Internet.png differ
diff --git a/resources/ibm/general/cloud-messaging.png b/resources/ibm/general/cloud-messaging.png
new file mode 100644
index 00000000..f0d82943
Binary files /dev/null and b/resources/ibm/general/cloud-messaging.png differ
diff --git a/resources/ibm/general/cloud-services.png b/resources/ibm/general/cloud-services.png
new file mode 100644
index 00000000..01b3fa39
Binary files /dev/null and b/resources/ibm/general/cloud-services.png differ
diff --git a/resources/ibm/general/cloudant.png b/resources/ibm/general/cloudant.png
new file mode 100644
index 00000000..7b62f807
Binary files /dev/null and b/resources/ibm/general/cloudant.png differ
diff --git a/resources/ibm/general/cognitive-services.png b/resources/ibm/general/cognitive-services.png
new file mode 100644
index 00000000..51ff39b9
Binary files /dev/null and b/resources/ibm/general/cognitive-services.png differ
diff --git a/resources/ibm/general/data-security.png b/resources/ibm/general/data-security.png
new file mode 100644
index 00000000..a9471728
Binary files /dev/null and b/resources/ibm/general/data-security.png differ
diff --git a/resources/ibm/general/governance-risk-compliance.png b/resources/ibm/general/governance-risk-compliance.png
new file mode 100644
index 00000000..af4c2c9c
Binary files /dev/null and b/resources/ibm/general/governance-risk-compliance.png differ
diff --git a/resources/ibm/general/ibm-containers.png b/resources/ibm/general/ibm-containers.png
new file mode 100644
index 00000000..216eae21
Binary files /dev/null and b/resources/ibm/general/ibm-containers.png differ
diff --git a/resources/ibm/general/ibm-public-cloud.png b/resources/ibm/general/ibm-public-cloud.png
new file mode 100644
index 00000000..ae95534b
Binary files /dev/null and b/resources/ibm/general/ibm-public-cloud.png differ
diff --git a/resources/ibm/general/identity-access-management.png b/resources/ibm/general/identity-access-management.png
new file mode 100644
index 00000000..ed499fe4
Binary files /dev/null and b/resources/ibm/general/identity-access-management.png differ
diff --git a/resources/ibm/general/identity-provider.png b/resources/ibm/general/identity-provider.png
new file mode 100644
index 00000000..0eca324a
Binary files /dev/null and b/resources/ibm/general/identity-provider.png differ
diff --git a/resources/ibm/general/infrastructure-security.png b/resources/ibm/general/infrastructure-security.png
new file mode 100644
index 00000000..660b93b4
Binary files /dev/null and b/resources/ibm/general/infrastructure-security.png differ
diff --git a/resources/ibm/general/iot-cloud.png b/resources/ibm/general/iot-cloud.png
new file mode 100644
index 00000000..990fdc9f
Binary files /dev/null and b/resources/ibm/general/iot-cloud.png differ
diff --git a/resources/ibm/general/microservices-application.png b/resources/ibm/general/microservices-application.png
new file mode 100644
index 00000000..3ddbe108
Binary files /dev/null and b/resources/ibm/general/microservices-application.png differ
diff --git a/resources/ibm/general/microservices-mesh.png b/resources/ibm/general/microservices-mesh.png
new file mode 100644
index 00000000..0b57d52c
Binary files /dev/null and b/resources/ibm/general/microservices-mesh.png differ
diff --git a/resources/ibm/general/monitoring-logging.png b/resources/ibm/general/monitoring-logging.png
new file mode 100644
index 00000000..33de7743
Binary files /dev/null and b/resources/ibm/general/monitoring-logging.png differ
diff --git a/resources/ibm/general/monitoring.png b/resources/ibm/general/monitoring.png
new file mode 100644
index 00000000..1c2946d5
Binary files /dev/null and b/resources/ibm/general/monitoring.png differ
diff --git a/resources/ibm/general/object-storage.png b/resources/ibm/general/object-storage.png
new file mode 100644
index 00000000..ad26d4c4
Binary files /dev/null and b/resources/ibm/general/object-storage.png differ
diff --git a/resources/ibm/general/offline-capabilities.png b/resources/ibm/general/offline-capabilities.png
new file mode 100644
index 00000000..f36cd2ad
Binary files /dev/null and b/resources/ibm/general/offline-capabilities.png differ
diff --git a/resources/ibm/general/openwhisk.png b/resources/ibm/general/openwhisk.png
new file mode 100644
index 00000000..3eb6c02d
Binary files /dev/null and b/resources/ibm/general/openwhisk.png differ
diff --git a/resources/ibm/general/peer-cloud.png b/resources/ibm/general/peer-cloud.png
new file mode 100644
index 00000000..cf1121cb
Binary files /dev/null and b/resources/ibm/general/peer-cloud.png differ
diff --git a/resources/ibm/general/retrieve-rank.png b/resources/ibm/general/retrieve-rank.png
new file mode 100644
index 00000000..14d8b828
Binary files /dev/null and b/resources/ibm/general/retrieve-rank.png differ
diff --git a/resources/ibm/general/scalable.png b/resources/ibm/general/scalable.png
new file mode 100644
index 00000000..729b6169
Binary files /dev/null and b/resources/ibm/general/scalable.png differ
diff --git a/resources/ibm/general/service-discovery-configuration.png b/resources/ibm/general/service-discovery-configuration.png
new file mode 100644
index 00000000..493e20ab
Binary files /dev/null and b/resources/ibm/general/service-discovery-configuration.png differ
diff --git a/resources/ibm/general/text-to-speech.png b/resources/ibm/general/text-to-speech.png
new file mode 100644
index 00000000..f4f2302f
Binary files /dev/null and b/resources/ibm/general/text-to-speech.png differ
diff --git a/resources/ibm/general/transformation-connectivity.png b/resources/ibm/general/transformation-connectivity.png
new file mode 100644
index 00000000..e0afec52
Binary files /dev/null and b/resources/ibm/general/transformation-connectivity.png differ
diff --git a/resources/ibm/infrastructure/channels.png b/resources/ibm/infrastructure/channels.png
new file mode 100644
index 00000000..62cbd980
Binary files /dev/null and b/resources/ibm/infrastructure/channels.png differ
diff --git a/resources/ibm/infrastructure/cloud-messaging.png b/resources/ibm/infrastructure/cloud-messaging.png
new file mode 100644
index 00000000..2fb1d678
Binary files /dev/null and b/resources/ibm/infrastructure/cloud-messaging.png differ
diff --git a/resources/ibm/infrastructure/dashboard.png b/resources/ibm/infrastructure/dashboard.png
new file mode 100644
index 00000000..1bda27ce
Binary files /dev/null and b/resources/ibm/infrastructure/dashboard.png differ
diff --git a/resources/ibm/infrastructure/diagnostics.png b/resources/ibm/infrastructure/diagnostics.png
new file mode 100644
index 00000000..2032935d
Binary files /dev/null and b/resources/ibm/infrastructure/diagnostics.png differ
diff --git a/resources/ibm/infrastructure/edge-services.png b/resources/ibm/infrastructure/edge-services.png
new file mode 100644
index 00000000..05a127a0
Binary files /dev/null and b/resources/ibm/infrastructure/edge-services.png differ
diff --git a/resources/ibm/infrastructure/enterprise-messaging.png b/resources/ibm/infrastructure/enterprise-messaging.png
new file mode 100644
index 00000000..04b2f16c
Binary files /dev/null and b/resources/ibm/infrastructure/enterprise-messaging.png differ
diff --git a/resources/ibm/infrastructure/event-feed.png b/resources/ibm/infrastructure/event-feed.png
new file mode 100644
index 00000000..bf474412
Binary files /dev/null and b/resources/ibm/infrastructure/event-feed.png differ
diff --git a/resources/ibm/infrastructure/infrastructure-services.png b/resources/ibm/infrastructure/infrastructure-services.png
new file mode 100644
index 00000000..33719df2
Binary files /dev/null and b/resources/ibm/infrastructure/infrastructure-services.png differ
diff --git a/resources/ibm/infrastructure/interservice-communication.png b/resources/ibm/infrastructure/interservice-communication.png
new file mode 100644
index 00000000..9de54733
Binary files /dev/null and b/resources/ibm/infrastructure/interservice-communication.png differ
diff --git a/resources/ibm/infrastructure/load-balancing-routing.png b/resources/ibm/infrastructure/load-balancing-routing.png
new file mode 100644
index 00000000..b6eb6172
Binary files /dev/null and b/resources/ibm/infrastructure/load-balancing-routing.png differ
diff --git a/resources/ibm/infrastructure/microservices-mesh.png b/resources/ibm/infrastructure/microservices-mesh.png
new file mode 100644
index 00000000..c492d17e
Binary files /dev/null and b/resources/ibm/infrastructure/microservices-mesh.png differ
diff --git a/resources/ibm/infrastructure/mobile-backend.png b/resources/ibm/infrastructure/mobile-backend.png
new file mode 100644
index 00000000..d6b154e6
Binary files /dev/null and b/resources/ibm/infrastructure/mobile-backend.png differ
diff --git a/resources/ibm/infrastructure/mobile-provider-network.png b/resources/ibm/infrastructure/mobile-provider-network.png
new file mode 100644
index 00000000..9080cda4
Binary files /dev/null and b/resources/ibm/infrastructure/mobile-provider-network.png differ
diff --git a/resources/ibm/infrastructure/monitoring-logging.png b/resources/ibm/infrastructure/monitoring-logging.png
new file mode 100644
index 00000000..7fa17adb
Binary files /dev/null and b/resources/ibm/infrastructure/monitoring-logging.png differ
diff --git a/resources/ibm/infrastructure/monitoring.png b/resources/ibm/infrastructure/monitoring.png
new file mode 100644
index 00000000..417153de
Binary files /dev/null and b/resources/ibm/infrastructure/monitoring.png differ
diff --git a/resources/ibm/infrastructure/peer-services.png b/resources/ibm/infrastructure/peer-services.png
new file mode 100644
index 00000000..7b1f1c1f
Binary files /dev/null and b/resources/ibm/infrastructure/peer-services.png differ
diff --git a/resources/ibm/infrastructure/service-discovery-configuration.png b/resources/ibm/infrastructure/service-discovery-configuration.png
new file mode 100644
index 00000000..c3124dc8
Binary files /dev/null and b/resources/ibm/infrastructure/service-discovery-configuration.png differ
diff --git a/resources/ibm/infrastructure/transformation-connectivity.png b/resources/ibm/infrastructure/transformation-connectivity.png
new file mode 100644
index 00000000..dbe9301d
Binary files /dev/null and b/resources/ibm/infrastructure/transformation-connectivity.png differ
diff --git a/resources/ibm/management/alert-notification.png b/resources/ibm/management/alert-notification.png
new file mode 100644
index 00000000..e2417e46
Binary files /dev/null and b/resources/ibm/management/alert-notification.png differ
diff --git a/resources/ibm/management/api-management.png b/resources/ibm/management/api-management.png
new file mode 100644
index 00000000..a1ea07f0
Binary files /dev/null and b/resources/ibm/management/api-management.png differ
diff --git a/resources/ibm/management/cloud-management.png b/resources/ibm/management/cloud-management.png
new file mode 100644
index 00000000..efc561df
Binary files /dev/null and b/resources/ibm/management/cloud-management.png differ
diff --git a/resources/ibm/management/cluster-management.png b/resources/ibm/management/cluster-management.png
new file mode 100644
index 00000000..14c46353
Binary files /dev/null and b/resources/ibm/management/cluster-management.png differ
diff --git a/resources/ibm/management/content-management.png b/resources/ibm/management/content-management.png
new file mode 100644
index 00000000..de3b5b95
Binary files /dev/null and b/resources/ibm/management/content-management.png differ
diff --git a/resources/ibm/management/data-services.png b/resources/ibm/management/data-services.png
new file mode 100644
index 00000000..a470a493
Binary files /dev/null and b/resources/ibm/management/data-services.png differ
diff --git a/resources/ibm/management/device-management.png b/resources/ibm/management/device-management.png
new file mode 100644
index 00000000..ce51b242
Binary files /dev/null and b/resources/ibm/management/device-management.png differ
diff --git a/resources/ibm/management/information-governance.png b/resources/ibm/management/information-governance.png
new file mode 100644
index 00000000..ed822ea1
Binary files /dev/null and b/resources/ibm/management/information-governance.png differ
diff --git a/resources/ibm/management/it-service-management.png b/resources/ibm/management/it-service-management.png
new file mode 100644
index 00000000..c15505a7
Binary files /dev/null and b/resources/ibm/management/it-service-management.png differ
diff --git a/resources/ibm/management/management.png b/resources/ibm/management/management.png
new file mode 100644
index 00000000..6e6c60ba
Binary files /dev/null and b/resources/ibm/management/management.png differ
diff --git a/resources/ibm/management/monitoring-metrics.png b/resources/ibm/management/monitoring-metrics.png
new file mode 100644
index 00000000..d66fa226
Binary files /dev/null and b/resources/ibm/management/monitoring-metrics.png differ
diff --git a/resources/ibm/management/process-management.png b/resources/ibm/management/process-management.png
new file mode 100644
index 00000000..7932b938
Binary files /dev/null and b/resources/ibm/management/process-management.png differ
diff --git a/resources/ibm/management/provider-cloud-portal-service.png b/resources/ibm/management/provider-cloud-portal-service.png
new file mode 100644
index 00000000..dfefa7c5
Binary files /dev/null and b/resources/ibm/management/provider-cloud-portal-service.png differ
diff --git a/resources/ibm/management/push-notifications.png b/resources/ibm/management/push-notifications.png
new file mode 100644
index 00000000..b97e80b4
Binary files /dev/null and b/resources/ibm/management/push-notifications.png differ
diff --git a/resources/ibm/management/service-management-tools.png b/resources/ibm/management/service-management-tools.png
new file mode 100644
index 00000000..14677bb2
Binary files /dev/null and b/resources/ibm/management/service-management-tools.png differ
diff --git a/resources/ibm/network/Bridge.png b/resources/ibm/network/Bridge.png
new file mode 100644
index 00000000..43e3369b
Binary files /dev/null and b/resources/ibm/network/Bridge.png differ
diff --git a/resources/ibm/network/Enterprise.png b/resources/ibm/network/Enterprise.png
new file mode 100644
index 00000000..c80ee603
Binary files /dev/null and b/resources/ibm/network/Enterprise.png differ
diff --git a/resources/ibm/network/Firewall.png b/resources/ibm/network/Firewall.png
new file mode 100644
index 00000000..f2405d9f
Binary files /dev/null and b/resources/ibm/network/Firewall.png differ
diff --git a/resources/ibm/network/Gateway.png b/resources/ibm/network/Gateway.png
new file mode 100644
index 00000000..dd640044
Binary files /dev/null and b/resources/ibm/network/Gateway.png differ
diff --git a/resources/ibm/network/Region.png b/resources/ibm/network/Region.png
new file mode 100644
index 00000000..92ea7bdf
Binary files /dev/null and b/resources/ibm/network/Region.png differ
diff --git a/resources/ibm/network/Router.png b/resources/ibm/network/Router.png
new file mode 100644
index 00000000..b6fa9966
Binary files /dev/null and b/resources/ibm/network/Router.png differ
diff --git a/resources/ibm/network/Rules.png b/resources/ibm/network/Rules.png
new file mode 100644
index 00000000..df44b87e
Binary files /dev/null and b/resources/ibm/network/Rules.png differ
diff --git a/resources/ibm/network/Subnet.png b/resources/ibm/network/Subnet.png
new file mode 100644
index 00000000..0f0fc0d1
Binary files /dev/null and b/resources/ibm/network/Subnet.png differ
diff --git a/resources/ibm/network/VPC.png b/resources/ibm/network/VPC.png
new file mode 100644
index 00000000..eabb6b25
Binary files /dev/null and b/resources/ibm/network/VPC.png differ
diff --git a/resources/ibm/network/direct-link.png b/resources/ibm/network/direct-link.png
new file mode 100644
index 00000000..a4c4de3f
Binary files /dev/null and b/resources/ibm/network/direct-link.png differ
diff --git a/resources/ibm/network/floating-ip.png b/resources/ibm/network/floating-ip.png
new file mode 100644
index 00000000..68a627b2
Binary files /dev/null and b/resources/ibm/network/floating-ip.png differ
diff --git a/resources/ibm/network/internet-services.png b/resources/ibm/network/internet-services.png
new file mode 100644
index 00000000..b8980aa2
Binary files /dev/null and b/resources/ibm/network/internet-services.png differ
diff --git a/resources/ibm/network/load-balancer-listener.png b/resources/ibm/network/load-balancer-listener.png
new file mode 100644
index 00000000..c0e5f8d4
Binary files /dev/null and b/resources/ibm/network/load-balancer-listener.png differ
diff --git a/resources/ibm/network/load-balancer-pool.png b/resources/ibm/network/load-balancer-pool.png
new file mode 100644
index 00000000..376eed58
Binary files /dev/null and b/resources/ibm/network/load-balancer-pool.png differ
diff --git a/resources/ibm/network/load-balancer.png b/resources/ibm/network/load-balancer.png
new file mode 100644
index 00000000..6f53b5c2
Binary files /dev/null and b/resources/ibm/network/load-balancer.png differ
diff --git a/resources/ibm/network/load-balancing-routing.png b/resources/ibm/network/load-balancing-routing.png
new file mode 100644
index 00000000..9bcf29b2
Binary files /dev/null and b/resources/ibm/network/load-balancing-routing.png differ
diff --git a/resources/ibm/network/public-gateway.png b/resources/ibm/network/public-gateway.png
new file mode 100644
index 00000000..9bda09fd
Binary files /dev/null and b/resources/ibm/network/public-gateway.png differ
diff --git a/resources/ibm/network/transit-gateway.png b/resources/ibm/network/transit-gateway.png
new file mode 100644
index 00000000..0d4c4783
Binary files /dev/null and b/resources/ibm/network/transit-gateway.png differ
diff --git a/resources/ibm/network/vpn-connection.png b/resources/ibm/network/vpn-connection.png
new file mode 100644
index 00000000..91613596
Binary files /dev/null and b/resources/ibm/network/vpn-connection.png differ
diff --git a/resources/ibm/network/vpn-gateway.png b/resources/ibm/network/vpn-gateway.png
new file mode 100644
index 00000000..c1613fef
Binary files /dev/null and b/resources/ibm/network/vpn-gateway.png differ
diff --git a/resources/ibm/network/vpn-policy.png b/resources/ibm/network/vpn-policy.png
new file mode 100644
index 00000000..6fec2da6
Binary files /dev/null and b/resources/ibm/network/vpn-policy.png differ
diff --git a/resources/ibm/security/api-security.png b/resources/ibm/security/api-security.png
new file mode 100644
index 00000000..142d1e90
Binary files /dev/null and b/resources/ibm/security/api-security.png differ
diff --git a/resources/ibm/security/blockchain-security-service.png b/resources/ibm/security/blockchain-security-service.png
new file mode 100644
index 00000000..90e07afa
Binary files /dev/null and b/resources/ibm/security/blockchain-security-service.png differ
diff --git a/resources/ibm/security/data-security.png b/resources/ibm/security/data-security.png
new file mode 100644
index 00000000..117a1054
Binary files /dev/null and b/resources/ibm/security/data-security.png differ
diff --git a/resources/ibm/security/firewall.png b/resources/ibm/security/firewall.png
new file mode 100644
index 00000000..55e75709
Binary files /dev/null and b/resources/ibm/security/firewall.png differ
diff --git a/resources/ibm/security/gateway.png b/resources/ibm/security/gateway.png
new file mode 100644
index 00000000..54d707f9
Binary files /dev/null and b/resources/ibm/security/gateway.png differ
diff --git a/resources/ibm/security/governance-risk-compliance.png b/resources/ibm/security/governance-risk-compliance.png
new file mode 100644
index 00000000..57626ad2
Binary files /dev/null and b/resources/ibm/security/governance-risk-compliance.png differ
diff --git a/resources/ibm/security/identity-access-management.png b/resources/ibm/security/identity-access-management.png
new file mode 100644
index 00000000..c98bffd0
Binary files /dev/null and b/resources/ibm/security/identity-access-management.png differ
diff --git a/resources/ibm/security/identity-provider.png b/resources/ibm/security/identity-provider.png
new file mode 100644
index 00000000..74325f7f
Binary files /dev/null and b/resources/ibm/security/identity-provider.png differ
diff --git a/resources/ibm/security/infrastructure-security.png b/resources/ibm/security/infrastructure-security.png
new file mode 100644
index 00000000..3f7ab383
Binary files /dev/null and b/resources/ibm/security/infrastructure-security.png differ
diff --git a/resources/ibm/security/physical-security.png b/resources/ibm/security/physical-security.png
new file mode 100644
index 00000000..b7377086
Binary files /dev/null and b/resources/ibm/security/physical-security.png differ
diff --git a/resources/ibm/security/security-monitoring-intelligence.png b/resources/ibm/security/security-monitoring-intelligence.png
new file mode 100644
index 00000000..a9c2fc96
Binary files /dev/null and b/resources/ibm/security/security-monitoring-intelligence.png differ
diff --git a/resources/ibm/security/security-services.png b/resources/ibm/security/security-services.png
new file mode 100644
index 00000000..d6a49d68
Binary files /dev/null and b/resources/ibm/security/security-services.png differ
diff --git a/resources/ibm/security/trustend-computing.png b/resources/ibm/security/trustend-computing.png
new file mode 100644
index 00000000..5c47988b
Binary files /dev/null and b/resources/ibm/security/trustend-computing.png differ
diff --git a/resources/ibm/security/vpn.png b/resources/ibm/security/vpn.png
new file mode 100644
index 00000000..1837c350
Binary files /dev/null and b/resources/ibm/security/vpn.png differ
diff --git a/resources/ibm/social/communities.png b/resources/ibm/social/communities.png
new file mode 100644
index 00000000..a73892f6
Binary files /dev/null and b/resources/ibm/social/communities.png differ
diff --git a/resources/ibm/social/file-sync.png b/resources/ibm/social/file-sync.png
new file mode 100644
index 00000000..99d3fe8d
Binary files /dev/null and b/resources/ibm/social/file-sync.png differ
diff --git a/resources/ibm/social/live-collaboration.png b/resources/ibm/social/live-collaboration.png
new file mode 100644
index 00000000..b8e7d602
Binary files /dev/null and b/resources/ibm/social/live-collaboration.png differ
diff --git a/resources/ibm/social/messaging.png b/resources/ibm/social/messaging.png
new file mode 100644
index 00000000..9307bc5b
Binary files /dev/null and b/resources/ibm/social/messaging.png differ
diff --git a/resources/ibm/social/networking.png b/resources/ibm/social/networking.png
new file mode 100644
index 00000000..e4e55df2
Binary files /dev/null and b/resources/ibm/social/networking.png differ
diff --git a/resources/ibm/storage/block-storage.png b/resources/ibm/storage/block-storage.png
new file mode 100644
index 00000000..c31bf5fc
Binary files /dev/null and b/resources/ibm/storage/block-storage.png differ
diff --git a/resources/ibm/storage/object-storage.png b/resources/ibm/storage/object-storage.png
new file mode 100644
index 00000000..e239629f
Binary files /dev/null and b/resources/ibm/storage/object-storage.png differ
diff --git a/resources/ibm/user/browser.png b/resources/ibm/user/browser.png
new file mode 100644
index 00000000..12556076
Binary files /dev/null and b/resources/ibm/user/browser.png differ
diff --git a/resources/ibm/user/device.png b/resources/ibm/user/device.png
new file mode 100644
index 00000000..e637f1b1
Binary files /dev/null and b/resources/ibm/user/device.png differ
diff --git a/resources/ibm/user/integrated-digital-experiences.png b/resources/ibm/user/integrated-digital-experiences.png
new file mode 100644
index 00000000..933c2a67
Binary files /dev/null and b/resources/ibm/user/integrated-digital-experiences.png differ
diff --git a/resources/ibm/user/physical-entity.png b/resources/ibm/user/physical-entity.png
new file mode 100644
index 00000000..51304eb6
Binary files /dev/null and b/resources/ibm/user/physical-entity.png differ
diff --git a/resources/ibm/user/sensor.png b/resources/ibm/user/sensor.png
new file mode 100644
index 00000000..ccbc9505
Binary files /dev/null and b/resources/ibm/user/sensor.png differ
diff --git a/resources/ibm/user/user.png b/resources/ibm/user/user.png
new file mode 100644
index 00000000..2ac69c61
Binary files /dev/null and b/resources/ibm/user/user.png differ
diff --git a/resources/onprem/analytics/powerbi.png b/resources/onprem/analytics/powerbi.png
new file mode 100644
index 00000000..9783fc94
Binary files /dev/null and b/resources/onprem/analytics/powerbi.png differ
diff --git a/resources/onprem/analytics/presto.png b/resources/onprem/analytics/presto.png
new file mode 100644
index 00000000..7d975196
Binary files /dev/null and b/resources/onprem/analytics/presto.png differ
diff --git a/resources/onprem/analytics/superset.png b/resources/onprem/analytics/superset.png
new file mode 100644
index 00000000..e5272ac7
Binary files /dev/null and b/resources/onprem/analytics/superset.png differ
diff --git a/resources/onprem/auth/boundary.png b/resources/onprem/auth/boundary.png
new file mode 100644
index 00000000..d5751ae4
Binary files /dev/null and b/resources/onprem/auth/boundary.png differ
diff --git a/resources/onprem/ci/github-actions.png b/resources/onprem/ci/github-actions.png
new file mode 100644
index 00000000..b077f3bd
Binary files /dev/null and b/resources/onprem/ci/github-actions.png differ
diff --git a/resources/onprem/container/containerd.png b/resources/onprem/container/containerd.png
new file mode 100644
index 00000000..40032b6d
Binary files /dev/null and b/resources/onprem/container/containerd.png differ
diff --git a/resources/onprem/container/crio.png b/resources/onprem/container/crio.png
new file mode 100644
index 00000000..dab25ba1
Binary files /dev/null and b/resources/onprem/container/crio.png differ
diff --git a/resources/onprem/container/firecracker.png b/resources/onprem/container/firecracker.png
new file mode 100644
index 00000000..522ffa3e
Binary files /dev/null and b/resources/onprem/container/firecracker.png differ
diff --git a/resources/onprem/container/gvisor.png b/resources/onprem/container/gvisor.png
new file mode 100644
index 00000000..258ce7a1
Binary files /dev/null and b/resources/onprem/container/gvisor.png differ
diff --git a/resources/onprem/dns/coredns.png b/resources/onprem/dns/coredns.png
new file mode 100644
index 00000000..3e10191a
Binary files /dev/null and b/resources/onprem/dns/coredns.png differ
diff --git a/resources/onprem/dns/powerdns.png b/resources/onprem/dns/powerdns.png
new file mode 100644
index 00000000..62bca8bf
Binary files /dev/null and b/resources/onprem/dns/powerdns.png differ
diff --git a/resources/onprem/groupware/nextcloud.png b/resources/onprem/groupware/nextcloud.png
new file mode 100644
index 00000000..813d01f6
Binary files /dev/null and b/resources/onprem/groupware/nextcloud.png differ
diff --git a/resources/onprem/monitoring/cortex.png b/resources/onprem/monitoring/cortex.png
new file mode 100644
index 00000000..c241cef3
Binary files /dev/null and b/resources/onprem/monitoring/cortex.png differ
diff --git a/resources/onprem/monitoring/humio.png b/resources/onprem/monitoring/humio.png
new file mode 100644
index 00000000..bd36be10
Binary files /dev/null and b/resources/onprem/monitoring/humio.png differ
diff --git a/resources/onprem/monitoring/newrelic.png b/resources/onprem/monitoring/newrelic.png
new file mode 100644
index 00000000..908ccd08
Binary files /dev/null and b/resources/onprem/monitoring/newrelic.png differ
diff --git a/resources/onprem/network/ambassador.png b/resources/onprem/network/ambassador.png
new file mode 100644
index 00000000..671e02fd
Binary files /dev/null and b/resources/onprem/network/ambassador.png differ
diff --git a/resources/onprem/queue/nats.png b/resources/onprem/queue/nats.png
new file mode 100644
index 00000000..446b4072
Binary files /dev/null and b/resources/onprem/queue/nats.png differ
diff --git a/resources/onprem/security/bitwarden.png b/resources/onprem/security/bitwarden.png
new file mode 100644
index 00000000..adb75cbb
Binary files /dev/null and b/resources/onprem/security/bitwarden.png differ
diff --git a/resources/onprem/tracing/jaeger.png b/resources/onprem/tracing/jaeger.png
new file mode 100644
index 00000000..4af0b7aa
Binary files /dev/null and b/resources/onprem/tracing/jaeger.png differ
diff --git a/resources/onprem/vcs/gitea.png b/resources/onprem/vcs/gitea.png
new file mode 100644
index 00000000..8f2e3467
Binary files /dev/null and b/resources/onprem/vcs/gitea.png differ
diff --git a/resources/programming/flowchart/action.png b/resources/programming/flowchart/action.png
new file mode 100644
index 00000000..28205f4b
Binary files /dev/null and b/resources/programming/flowchart/action.png differ
diff --git a/resources/programming/flowchart/collate.png b/resources/programming/flowchart/collate.png
new file mode 100644
index 00000000..2d5be1c8
Binary files /dev/null and b/resources/programming/flowchart/collate.png differ
diff --git a/resources/programming/flowchart/database.png b/resources/programming/flowchart/database.png
new file mode 100644
index 00000000..78eb1718
Binary files /dev/null and b/resources/programming/flowchart/database.png differ
diff --git a/resources/programming/flowchart/decision.png b/resources/programming/flowchart/decision.png
new file mode 100644
index 00000000..40b9293d
Binary files /dev/null and b/resources/programming/flowchart/decision.png differ
diff --git a/resources/programming/flowchart/delay.png b/resources/programming/flowchart/delay.png
new file mode 100644
index 00000000..b859d173
Binary files /dev/null and b/resources/programming/flowchart/delay.png differ
diff --git a/resources/programming/flowchart/display.png b/resources/programming/flowchart/display.png
new file mode 100644
index 00000000..1d50abfc
Binary files /dev/null and b/resources/programming/flowchart/display.png differ
diff --git a/resources/programming/flowchart/document.png b/resources/programming/flowchart/document.png
new file mode 100644
index 00000000..02bb83c8
Binary files /dev/null and b/resources/programming/flowchart/document.png differ
diff --git a/resources/programming/flowchart/input-output.png b/resources/programming/flowchart/input-output.png
new file mode 100644
index 00000000..4211d0a7
Binary files /dev/null and b/resources/programming/flowchart/input-output.png differ
diff --git a/resources/programming/flowchart/inspection.png b/resources/programming/flowchart/inspection.png
new file mode 100644
index 00000000..64fbdc0d
Binary files /dev/null and b/resources/programming/flowchart/inspection.png differ
diff --git a/resources/programming/flowchart/internal-storage.png b/resources/programming/flowchart/internal-storage.png
new file mode 100644
index 00000000..65baf6ef
Binary files /dev/null and b/resources/programming/flowchart/internal-storage.png differ
diff --git a/resources/programming/flowchart/loop-limit.png b/resources/programming/flowchart/loop-limit.png
new file mode 100644
index 00000000..29813f99
Binary files /dev/null and b/resources/programming/flowchart/loop-limit.png differ
diff --git a/resources/programming/flowchart/manual-input.png b/resources/programming/flowchart/manual-input.png
new file mode 100644
index 00000000..517786ac
Binary files /dev/null and b/resources/programming/flowchart/manual-input.png differ
diff --git a/resources/programming/flowchart/manual-loop.png b/resources/programming/flowchart/manual-loop.png
new file mode 100644
index 00000000..13d1e9f0
Binary files /dev/null and b/resources/programming/flowchart/manual-loop.png differ
diff --git a/resources/programming/flowchart/merge.png b/resources/programming/flowchart/merge.png
new file mode 100644
index 00000000..d6a5851b
Binary files /dev/null and b/resources/programming/flowchart/merge.png differ
diff --git a/resources/programming/flowchart/multiple-documents.png b/resources/programming/flowchart/multiple-documents.png
new file mode 100644
index 00000000..ed376aac
Binary files /dev/null and b/resources/programming/flowchart/multiple-documents.png differ
diff --git a/resources/programming/flowchart/off-page-connector-left.png b/resources/programming/flowchart/off-page-connector-left.png
new file mode 100644
index 00000000..afc8d5bb
Binary files /dev/null and b/resources/programming/flowchart/off-page-connector-left.png differ
diff --git a/resources/programming/flowchart/off-page-connector-right.png b/resources/programming/flowchart/off-page-connector-right.png
new file mode 100644
index 00000000..a1282501
Binary files /dev/null and b/resources/programming/flowchart/off-page-connector-right.png differ
diff --git a/resources/programming/flowchart/or.png b/resources/programming/flowchart/or.png
new file mode 100644
index 00000000..2cb2402f
Binary files /dev/null and b/resources/programming/flowchart/or.png differ
diff --git a/resources/programming/flowchart/predefined-process.png b/resources/programming/flowchart/predefined-process.png
new file mode 100644
index 00000000..f052d7bf
Binary files /dev/null and b/resources/programming/flowchart/predefined-process.png differ
diff --git a/resources/programming/flowchart/preparation.png b/resources/programming/flowchart/preparation.png
new file mode 100644
index 00000000..50aab196
Binary files /dev/null and b/resources/programming/flowchart/preparation.png differ
diff --git a/resources/programming/flowchart/sort.png b/resources/programming/flowchart/sort.png
new file mode 100644
index 00000000..08718b4a
Binary files /dev/null and b/resources/programming/flowchart/sort.png differ
diff --git a/resources/programming/flowchart/start-end.png b/resources/programming/flowchart/start-end.png
new file mode 100644
index 00000000..4772c367
Binary files /dev/null and b/resources/programming/flowchart/start-end.png differ
diff --git a/resources/programming/flowchart/stored-data.png b/resources/programming/flowchart/stored-data.png
new file mode 100644
index 00000000..972e5609
Binary files /dev/null and b/resources/programming/flowchart/stored-data.png differ
diff --git a/resources/programming/flowchart/summing-junction.png b/resources/programming/flowchart/summing-junction.png
new file mode 100644
index 00000000..47e876b3
Binary files /dev/null and b/resources/programming/flowchart/summing-junction.png differ
diff --git a/resources/programming/framework/fastapi.png b/resources/programming/framework/fastapi.png
new file mode 100644
index 00000000..d79d51bf
Binary files /dev/null and b/resources/programming/framework/fastapi.png differ
diff --git a/resources/programming/framework/micronaut.png b/resources/programming/framework/micronaut.png
new file mode 100644
index 00000000..9bdc9780
Binary files /dev/null and b/resources/programming/framework/micronaut.png differ
diff --git a/resources/programming/language/scala.png b/resources/programming/language/scala.png
new file mode 100644
index 00000000..b77d7231
Binary files /dev/null and b/resources/programming/language/scala.png differ
diff --git a/resources/saas/alerting/newrelic.png b/resources/saas/alerting/newrelic.png
new file mode 100644
index 00000000..908ccd08
Binary files /dev/null and b/resources/saas/alerting/newrelic.png differ
diff --git a/resources/saas/chat/discord.png b/resources/saas/chat/discord.png
new file mode 100644
index 00000000..db0e70d5
Binary files /dev/null and b/resources/saas/chat/discord.png differ
diff --git a/resources/saas/filesharing/nextcloud.png b/resources/saas/filesharing/nextcloud.png
new file mode 100644
index 00000000..4370ddfe
Binary files /dev/null and b/resources/saas/filesharing/nextcloud.png differ
diff --git a/resources/saas/logging/newrelic.png b/resources/saas/logging/newrelic.png
new file mode 100644
index 00000000..908ccd08
Binary files /dev/null and b/resources/saas/logging/newrelic.png differ
diff --git a/scripts/generate.py b/scripts/generate.py
index f1568d24..d757b9cf 100644
--- a/scripts/generate.py
+++ b/scripts/generate.py
@@ -2,7 +2,7 @@ import os
import sys
from typing import Iterable
-from jinja2 import Environment, FileSystemLoader, Template
+from jinja2 import Environment, FileSystemLoader, Template, exceptions
import config as cfg
from . import app_root_dir, doc_root_dir, resource_dir, template_dir
@@ -41,7 +41,12 @@ def gen_classes(pvd: str, typ: str, paths: Iterable[str]) -> str:
def gen_apidoc(pvd: str, typ_paths: dict) -> str:
- tmpl = load_tmpl(cfg.TMPL_APIDOC)
+ try:
+ default_tmp = cfg.TMPL_APIDOC.split('.')
+ tmpl_file = f"{default_tmp[0]}_{pvd}.{default_tmp[1]}"
+ tmpl = load_tmpl(tmpl_file)
+ except exceptions.TemplateNotFound:
+ tmpl = load_tmpl(cfg.TMPL_APIDOC)
# TODO: remove
def _gen_class_name(path: str) -> str:
diff --git a/scripts/resource.py b/scripts/resource.py
index e36432b0..0cab4038 100644
--- a/scripts/resource.py
+++ b/scripts/resource.py
@@ -56,6 +56,16 @@ def cleaner_gcp(f):
return f.lower()
+def cleaner_ibm(f):
+ f = f.replace("_", "-")
+ f = "-".join(f.split())
+ for p in cfg.FILE_PREFIXES["ibm"]:
+ if f.startswith(p):
+ f = f[len(p) :]
+ break
+ return f.lower()
+
+
def cleaner_firebase(f):
f = f.replace("_", "-")
f = "-".join(f.split())
@@ -122,6 +132,7 @@ cleaners = {
"aws": cleaner_aws,
"azure": cleaner_azure,
"gcp": cleaner_gcp,
+ "ibm": cleaner_ibm,
"firebase": cleaner_firebase,
"k8s": cleaner_k8s,
"alibabacloud": cleaner_alibabacloud,
diff --git a/templates/apidoc_custom.tmpl b/templates/apidoc_custom.tmpl
new file mode 100644
index 00000000..d3c88200
--- /dev/null
+++ b/templates/apidoc_custom.tmpl
@@ -0,0 +1,6 @@
+---
+id: {{ pvd }}
+title: {{ pvd|up_or_title(pvd) }}
+---
+
+For a full example check: [Here](https://diagrams.mingrammer.com/docs/getting-started/examples#rabbitmq-consumers-with-custom-nodes).
diff --git a/website/i18n/en.json b/website/i18n/en.json
index 00bb5536..4a47825a 100644
--- a/website/i18n/en.json
+++ b/website/i18n/en.json
@@ -32,6 +32,9 @@
"nodes/azure": {
"title": "Azure"
},
+ "nodes/custom": {
+ "title": "Custom"
+ },
"nodes/elastic": {
"title": "Elastic"
},
@@ -44,6 +47,9 @@
"nodes/generic": {
"title": "Generic"
},
+ "nodes/ibm": {
+ "title": "IBM"
+ },
"nodes/k8s": {
"title": "K8S"
},
diff --git a/website/package-lock.json b/website/package-lock.json
index 07c5267e..8a918a2f 100644
--- a/website/package-lock.json
+++ b/website/package-lock.json
@@ -3,326 +3,321 @@
"lockfileVersion": 1,
"dependencies": {
"@babel/code-frame": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
- "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
+ "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
"dev": true,
"requires": {
- "@babel/highlight": "^7.8.3"
+ "@babel/highlight": "^7.10.4"
}
},
"@babel/compat-data": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.6.tgz",
- "integrity": "sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g==",
- "dev": true,
- "requires": {
- "browserslist": "^4.11.1",
- "invariant": "^2.2.4",
- "semver": "^5.5.0"
- }
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz",
+ "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==",
+ "dev": true
},
"@babel/core": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.6.tgz",
- "integrity": "sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.8.3",
- "@babel/generator": "^7.9.6",
- "@babel/helper-module-transforms": "^7.9.0",
- "@babel/helpers": "^7.9.6",
- "@babel/parser": "^7.9.6",
- "@babel/template": "^7.8.6",
- "@babel/traverse": "^7.9.6",
- "@babel/types": "^7.9.6",
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz",
+ "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helpers": "^7.12.5",
+ "@babel/parser": "^7.12.7",
+ "@babel/template": "^7.12.7",
+ "@babel/traverse": "^7.12.9",
+ "@babel/types": "^7.12.7",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
- "lodash": "^4.17.13",
+ "lodash": "^4.17.19",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
}
},
"@babel/generator": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
- "integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz",
+ "integrity": "sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==",
"dev": true,
"requires": {
- "@babel/types": "^7.9.6",
+ "@babel/types": "^7.12.5",
"jsesc": "^2.5.1",
- "lodash": "^4.17.13",
"source-map": "^0.5.0"
}
},
"@babel/helper-annotate-as-pure": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
- "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
+ "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
- "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
+ "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
"dev": true,
"requires": {
- "@babel/helper-explode-assignable-expression": "^7.8.3",
- "@babel/types": "^7.8.3"
+ "@babel/helper-explode-assignable-expression": "^7.10.4",
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-builder-react-jsx": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz",
- "integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz",
+ "integrity": "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==",
"dev": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/types": "^7.9.0"
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-builder-react-jsx-experimental": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz",
- "integrity": "sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==",
+ "version": "7.12.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz",
+ "integrity": "sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==",
"dev": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/helper-module-imports": "^7.8.3",
- "@babel/types": "^7.9.5"
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-module-imports": "^7.12.1",
+ "@babel/types": "^7.12.1"
}
},
"@babel/helper-compilation-targets": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz",
- "integrity": "sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz",
+ "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==",
"dev": true,
"requires": {
- "@babel/compat-data": "^7.9.6",
- "browserslist": "^4.11.1",
- "invariant": "^2.2.4",
- "levenary": "^1.1.1",
+ "@babel/compat-data": "^7.12.5",
+ "@babel/helper-validator-option": "^7.12.1",
+ "browserslist": "^4.14.5",
"semver": "^5.5.0"
}
},
"@babel/helper-create-class-features-plugin": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.6.tgz",
- "integrity": "sha512-6N9IeuyHvMBRyjNYOMJHrhwtu4WJMrYf8hVbEHD3pbbbmNOk1kmXSQs7bA4dYDUaIx4ZEzdnvo6NwC3WHd/Qow==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
+ "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
"dev": true,
"requires": {
- "@babel/helper-function-name": "^7.9.5",
- "@babel/helper-member-expression-to-functions": "^7.8.3",
- "@babel/helper-optimise-call-expression": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-replace-supers": "^7.9.6",
- "@babel/helper-split-export-declaration": "^7.8.3"
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.12.1",
+ "@babel/helper-split-export-declaration": "^7.10.4"
}
},
"@babel/helper-create-regexp-features-plugin": {
- "version": "7.8.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
- "integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz",
+ "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==",
"dev": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/helper-regex": "^7.8.3",
- "regexpu-core": "^4.7.0"
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "regexpu-core": "^4.7.1"
}
},
"@babel/helper-define-map": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
- "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
+ "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
"dev": true,
"requires": {
- "@babel/helper-function-name": "^7.8.3",
- "@babel/types": "^7.8.3",
- "lodash": "^4.17.13"
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/types": "^7.10.5",
+ "lodash": "^4.17.19"
}
},
"@babel/helper-explode-assignable-expression": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
- "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
+ "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
"dev": true,
"requires": {
- "@babel/traverse": "^7.8.3",
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.12.1"
}
},
"@babel/helper-function-name": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
- "integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
+ "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
"dev": true,
"requires": {
- "@babel/helper-get-function-arity": "^7.8.3",
- "@babel/template": "^7.8.3",
- "@babel/types": "^7.9.5"
+ "@babel/helper-get-function-arity": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-get-function-arity": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
- "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
+ "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-hoist-variables": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
- "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
+ "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.10.4"
}
},
"@babel/helper-member-expression-to-functions": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
- "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
+ "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.12.7"
}
},
"@babel/helper-module-imports": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
- "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
+ "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
- "integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
+ "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
"dev": true,
"requires": {
- "@babel/helper-module-imports": "^7.8.3",
- "@babel/helper-replace-supers": "^7.8.6",
- "@babel/helper-simple-access": "^7.8.3",
- "@babel/helper-split-export-declaration": "^7.8.3",
- "@babel/template": "^7.8.6",
- "@babel/types": "^7.9.0",
- "lodash": "^4.17.13"
+ "@babel/helper-module-imports": "^7.12.1",
+ "@babel/helper-replace-supers": "^7.12.1",
+ "@babel/helper-simple-access": "^7.12.1",
+ "@babel/helper-split-export-declaration": "^7.11.0",
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.12.1",
+ "@babel/types": "^7.12.1",
+ "lodash": "^4.17.19"
}
},
"@babel/helper-optimise-call-expression": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
- "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz",
+ "integrity": "sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.12.7"
}
},
"@babel/helper-plugin-utils": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
- "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
"dev": true
},
- "@babel/helper-regex": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
- "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
+ "@babel/helper-remap-async-to-generator": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
+ "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
"dev": true,
"requires": {
- "lodash": "^4.17.13"
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-wrap-function": "^7.10.4",
+ "@babel/types": "^7.12.1"
}
},
- "@babel/helper-remap-async-to-generator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
- "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
+ "@babel/helper-replace-supers": {
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz",
+ "integrity": "sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==",
"dev": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/helper-wrap-function": "^7.8.3",
- "@babel/template": "^7.8.3",
- "@babel/traverse": "^7.8.3",
- "@babel/types": "^7.8.3"
+ "@babel/helper-member-expression-to-functions": "^7.12.1",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
- "@babel/helper-replace-supers": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz",
- "integrity": "sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==",
+ "@babel/helper-simple-access": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
+ "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
"dev": true,
"requires": {
- "@babel/helper-member-expression-to-functions": "^7.8.3",
- "@babel/helper-optimise-call-expression": "^7.8.3",
- "@babel/traverse": "^7.9.6",
- "@babel/types": "^7.9.6"
+ "@babel/types": "^7.12.1"
}
},
- "@babel/helper-simple-access": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
- "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
+ "@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
+ "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
"dev": true,
"requires": {
- "@babel/template": "^7.8.3",
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.12.1"
}
},
"@babel/helper-split-export-declaration": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
- "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
+ "version": "7.11.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
+ "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
"dev": true,
"requires": {
- "@babel/types": "^7.8.3"
+ "@babel/types": "^7.11.0"
}
},
"@babel/helper-validator-identifier": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
- "integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/helper-validator-option": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz",
+ "integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==",
"dev": true
},
"@babel/helper-wrap-function": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
- "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
+ "version": "7.12.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
+ "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
"dev": true,
"requires": {
- "@babel/helper-function-name": "^7.8.3",
- "@babel/template": "^7.8.3",
- "@babel/traverse": "^7.8.3",
- "@babel/types": "^7.8.3"
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
}
},
"@babel/helpers": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.6.tgz",
- "integrity": "sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
+ "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"dev": true,
"requires": {
- "@babel/template": "^7.8.3",
- "@babel/traverse": "^7.9.6",
- "@babel/types": "^7.9.6"
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.12.5",
+ "@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz",
- "integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
+ "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
"dev": true,
"requires": {
- "@babel/helper-validator-identifier": "^7.9.0",
+ "@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
@@ -347,111 +342,142 @@
}
},
"@babel/parser": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
- "integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz",
+ "integrity": "sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==",
"dev": true
},
"@babel/plugin-proposal-async-generator-functions": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
- "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
+ "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-remap-async-to-generator": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-remap-async-to-generator": "^7.12.1",
"@babel/plugin-syntax-async-generators": "^7.8.0"
}
},
"@babel/plugin-proposal-class-properties": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz",
- "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
+ "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
"dev": true,
"requires": {
- "@babel/helper-create-class-features-plugin": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-create-class-features-plugin": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-proposal-dynamic-import": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz",
- "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
+ "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.0"
}
},
+ "@babel/plugin-proposal-export-namespace-from": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
+ "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
+ }
+ },
"@babel/plugin-proposal-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz",
- "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
+ "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.0"
}
},
+ "@babel/plugin-proposal-logical-assignment-operators": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
+ "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
+ }
+ },
"@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
+ "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz",
- "integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz",
+ "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
}
},
"@babel/plugin-proposal-object-rest-spread": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz",
- "integrity": "sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
+ "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
- "@babel/plugin-transform-parameters": "^7.9.5"
+ "@babel/plugin-transform-parameters": "^7.12.1"
}
},
"@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
+ "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
}
},
"@babel/plugin-proposal-optional-chaining": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz",
- "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz",
+ "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
}
},
+ "@babel/plugin-proposal-private-methods": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
+ "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
"@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.8.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz",
- "integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
+ "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
"dev": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.8.8",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-async-generators": {
@@ -463,6 +489,15 @@
"@babel/helper-plugin-utils": "^7.8.0"
}
},
+ "@babel/plugin-syntax-class-properties": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
+ "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
"@babel/plugin-syntax-dynamic-import": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
@@ -472,6 +507,15 @@
"@babel/helper-plugin-utils": "^7.8.0"
}
},
+ "@babel/plugin-syntax-export-namespace-from": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.3"
+ }
+ },
"@babel/plugin-syntax-json-strings": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
@@ -482,12 +526,21 @@
}
},
"@babel/plugin-syntax-jsx": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
- "integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
+ "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-logical-assignment-operators": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-nullish-coalescing-operator": {
@@ -500,12 +553,12 @@
}
},
"@babel/plugin-syntax-numeric-separator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz",
- "integrity": "sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==",
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-syntax-object-rest-spread": {
@@ -536,376 +589,391 @@
}
},
"@babel/plugin-syntax-top-level-await": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
- "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
+ "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-arrow-functions": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
- "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
+ "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-async-to-generator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz",
- "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
+ "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
"dev": true,
"requires": {
- "@babel/helper-module-imports": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-remap-async-to-generator": "^7.8.3"
+ "@babel/helper-module-imports": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-remap-async-to-generator": "^7.12.1"
}
},
"@babel/plugin-transform-block-scoped-functions": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz",
- "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
+ "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-block-scoping": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
- "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
+ "integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "lodash": "^4.17.13"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-classes": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz",
- "integrity": "sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/helper-define-map": "^7.8.3",
- "@babel/helper-function-name": "^7.9.5",
- "@babel/helper-optimise-call-expression": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-replace-supers": "^7.8.6",
- "@babel/helper-split-export-declaration": "^7.8.3",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
+ "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-define-map": "^7.10.4",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.12.1",
+ "@babel/helper-split-export-declaration": "^7.10.4",
"globals": "^11.1.0"
}
},
"@babel/plugin-transform-computed-properties": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz",
- "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
+ "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-destructuring": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz",
- "integrity": "sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
+ "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-dotall-regex": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
- "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
+ "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
"dev": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-duplicate-keys": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz",
- "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
+ "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-exponentiation-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz",
- "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
+ "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
"dev": true,
"requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-for-of": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz",
- "integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
+ "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-function-name": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz",
- "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
+ "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
"dev": true,
"requires": {
- "@babel/helper-function-name": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-literals": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz",
- "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
+ "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-member-expression-literals": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz",
- "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
+ "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-modules-amd": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.6.tgz",
- "integrity": "sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
+ "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
"dev": true,
"requires": {
- "@babel/helper-module-transforms": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4",
"babel-plugin-dynamic-import-node": "^2.3.3"
}
},
"@babel/plugin-transform-modules-commonjs": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz",
- "integrity": "sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
+ "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
"dev": true,
"requires": {
- "@babel/helper-module-transforms": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-simple-access": "^7.8.3",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-simple-access": "^7.12.1",
"babel-plugin-dynamic-import-node": "^2.3.3"
}
},
"@babel/plugin-transform-modules-systemjs": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.6.tgz",
- "integrity": "sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
+ "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
"dev": true,
"requires": {
- "@babel/helper-hoist-variables": "^7.8.3",
- "@babel/helper-module-transforms": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
+ "@babel/helper-hoist-variables": "^7.10.4",
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-validator-identifier": "^7.10.4",
"babel-plugin-dynamic-import-node": "^2.3.3"
}
},
"@babel/plugin-transform-modules-umd": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz",
- "integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
+ "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
"dev": true,
"requires": {
- "@babel/helper-module-transforms": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-module-transforms": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
- "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
+ "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
"dev": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin": "^7.12.1"
}
},
"@babel/plugin-transform-new-target": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz",
- "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
+ "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-object-super": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz",
- "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
+ "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-replace-supers": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.12.1"
}
},
"@babel/plugin-transform-parameters": {
- "version": "7.9.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz",
- "integrity": "sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
+ "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
"dev": true,
"requires": {
- "@babel/helper-get-function-arity": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-property-literals": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz",
- "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
+ "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-react-display-name": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz",
- "integrity": "sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz",
+ "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.9.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz",
- "integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz",
+ "integrity": "sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==",
"dev": true,
"requires": {
- "@babel/helper-builder-react-jsx": "^7.9.0",
- "@babel/helper-builder-react-jsx-experimental": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-syntax-jsx": "^7.8.3"
+ "@babel/helper-builder-react-jsx": "^7.10.4",
+ "@babel/helper-builder-react-jsx-experimental": "^7.12.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.12.1"
}
},
"@babel/plugin-transform-react-jsx-development": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz",
- "integrity": "sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz",
+ "integrity": "sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg==",
"dev": true,
"requires": {
- "@babel/helper-builder-react-jsx-experimental": "^7.9.0",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-syntax-jsx": "^7.8.3"
+ "@babel/helper-builder-react-jsx-experimental": "^7.12.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.12.1"
}
},
"@babel/plugin-transform-react-jsx-self": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz",
- "integrity": "sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz",
+ "integrity": "sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-syntax-jsx": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-react-jsx-source": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz",
- "integrity": "sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz",
+ "integrity": "sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-syntax-jsx": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-pure-annotations": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz",
+ "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-regenerator": {
- "version": "7.8.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz",
- "integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
+ "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
"dev": true,
"requires": {
"regenerator-transform": "^0.14.2"
}
},
"@babel/plugin-transform-reserved-words": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz",
- "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
+ "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-shorthand-properties": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
- "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
+ "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
- "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
+ "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
}
},
"@babel/plugin-transform-sticky-regex": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz",
- "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz",
+ "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/helper-regex": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-template-literals": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz",
- "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
+ "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
"dev": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-typeof-symbol": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz",
- "integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
+ "integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-unicode-escapes": {
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
+ "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-unicode-regex": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz",
- "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
+ "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
"dev": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/polyfill": {
- "version": "7.8.7",
- "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.8.7.tgz",
- "integrity": "sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz",
+ "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==",
"dev": true,
"requires": {
"core-js": "^2.6.5",
@@ -913,77 +981,83 @@
}
},
"@babel/preset-env": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.6.tgz",
- "integrity": "sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.9.6",
- "@babel/helper-compilation-targets": "^7.9.6",
- "@babel/helper-module-imports": "^7.8.3",
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-proposal-async-generator-functions": "^7.8.3",
- "@babel/plugin-proposal-dynamic-import": "^7.8.3",
- "@babel/plugin-proposal-json-strings": "^7.8.3",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-proposal-numeric-separator": "^7.8.3",
- "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
- "@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
- "@babel/plugin-proposal-optional-chaining": "^7.9.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz",
+ "integrity": "sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.12.7",
+ "@babel/helper-compilation-targets": "^7.12.5",
+ "@babel/helper-module-imports": "^7.12.5",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-validator-option": "^7.12.1",
+ "@babel/plugin-proposal-async-generator-functions": "^7.12.1",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-dynamic-import": "^7.12.1",
+ "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
+ "@babel/plugin-proposal-json-strings": "^7.12.1",
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-proposal-numeric-separator": "^7.12.7",
+ "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
+ "@babel/plugin-proposal-optional-chaining": "^7.12.7",
+ "@babel/plugin-proposal-private-methods": "^7.12.1",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
"@babel/plugin-syntax-async-generators": "^7.8.0",
+ "@babel/plugin-syntax-class-properties": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
"@babel/plugin-syntax-json-strings": "^7.8.0",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
- "@babel/plugin-syntax-numeric-separator": "^7.8.0",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.0",
- "@babel/plugin-syntax-top-level-await": "^7.8.3",
- "@babel/plugin-transform-arrow-functions": "^7.8.3",
- "@babel/plugin-transform-async-to-generator": "^7.8.3",
- "@babel/plugin-transform-block-scoped-functions": "^7.8.3",
- "@babel/plugin-transform-block-scoping": "^7.8.3",
- "@babel/plugin-transform-classes": "^7.9.5",
- "@babel/plugin-transform-computed-properties": "^7.8.3",
- "@babel/plugin-transform-destructuring": "^7.9.5",
- "@babel/plugin-transform-dotall-regex": "^7.8.3",
- "@babel/plugin-transform-duplicate-keys": "^7.8.3",
- "@babel/plugin-transform-exponentiation-operator": "^7.8.3",
- "@babel/plugin-transform-for-of": "^7.9.0",
- "@babel/plugin-transform-function-name": "^7.8.3",
- "@babel/plugin-transform-literals": "^7.8.3",
- "@babel/plugin-transform-member-expression-literals": "^7.8.3",
- "@babel/plugin-transform-modules-amd": "^7.9.6",
- "@babel/plugin-transform-modules-commonjs": "^7.9.6",
- "@babel/plugin-transform-modules-systemjs": "^7.9.6",
- "@babel/plugin-transform-modules-umd": "^7.9.0",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
- "@babel/plugin-transform-new-target": "^7.8.3",
- "@babel/plugin-transform-object-super": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.9.5",
- "@babel/plugin-transform-property-literals": "^7.8.3",
- "@babel/plugin-transform-regenerator": "^7.8.7",
- "@babel/plugin-transform-reserved-words": "^7.8.3",
- "@babel/plugin-transform-shorthand-properties": "^7.8.3",
- "@babel/plugin-transform-spread": "^7.8.3",
- "@babel/plugin-transform-sticky-regex": "^7.8.3",
- "@babel/plugin-transform-template-literals": "^7.8.3",
- "@babel/plugin-transform-typeof-symbol": "^7.8.4",
- "@babel/plugin-transform-unicode-regex": "^7.8.3",
+ "@babel/plugin-syntax-top-level-await": "^7.12.1",
+ "@babel/plugin-transform-arrow-functions": "^7.12.1",
+ "@babel/plugin-transform-async-to-generator": "^7.12.1",
+ "@babel/plugin-transform-block-scoped-functions": "^7.12.1",
+ "@babel/plugin-transform-block-scoping": "^7.12.1",
+ "@babel/plugin-transform-classes": "^7.12.1",
+ "@babel/plugin-transform-computed-properties": "^7.12.1",
+ "@babel/plugin-transform-destructuring": "^7.12.1",
+ "@babel/plugin-transform-dotall-regex": "^7.12.1",
+ "@babel/plugin-transform-duplicate-keys": "^7.12.1",
+ "@babel/plugin-transform-exponentiation-operator": "^7.12.1",
+ "@babel/plugin-transform-for-of": "^7.12.1",
+ "@babel/plugin-transform-function-name": "^7.12.1",
+ "@babel/plugin-transform-literals": "^7.12.1",
+ "@babel/plugin-transform-member-expression-literals": "^7.12.1",
+ "@babel/plugin-transform-modules-amd": "^7.12.1",
+ "@babel/plugin-transform-modules-commonjs": "^7.12.1",
+ "@babel/plugin-transform-modules-systemjs": "^7.12.1",
+ "@babel/plugin-transform-modules-umd": "^7.12.1",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
+ "@babel/plugin-transform-new-target": "^7.12.1",
+ "@babel/plugin-transform-object-super": "^7.12.1",
+ "@babel/plugin-transform-parameters": "^7.12.1",
+ "@babel/plugin-transform-property-literals": "^7.12.1",
+ "@babel/plugin-transform-regenerator": "^7.12.1",
+ "@babel/plugin-transform-reserved-words": "^7.12.1",
+ "@babel/plugin-transform-shorthand-properties": "^7.12.1",
+ "@babel/plugin-transform-spread": "^7.12.1",
+ "@babel/plugin-transform-sticky-regex": "^7.12.7",
+ "@babel/plugin-transform-template-literals": "^7.12.1",
+ "@babel/plugin-transform-typeof-symbol": "^7.12.1",
+ "@babel/plugin-transform-unicode-escapes": "^7.12.1",
+ "@babel/plugin-transform-unicode-regex": "^7.12.1",
"@babel/preset-modules": "^0.1.3",
- "@babel/types": "^7.9.6",
- "browserslist": "^4.11.1",
- "core-js-compat": "^3.6.2",
- "invariant": "^2.2.2",
- "levenary": "^1.1.1",
+ "@babel/types": "^7.12.7",
+ "core-js-compat": "^3.7.0",
"semver": "^5.5.0"
}
},
"@babel/preset-modules": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz",
- "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz",
+ "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
@@ -994,77 +1068,78 @@
}
},
"@babel/preset-react": {
- "version": "7.9.4",
- "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.4.tgz",
- "integrity": "sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.7.tgz",
+ "integrity": "sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ==",
"dev": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.8.3",
- "@babel/plugin-transform-react-display-name": "^7.8.3",
- "@babel/plugin-transform-react-jsx": "^7.9.4",
- "@babel/plugin-transform-react-jsx-development": "^7.9.0",
- "@babel/plugin-transform-react-jsx-self": "^7.9.0",
- "@babel/plugin-transform-react-jsx-source": "^7.9.0"
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-transform-react-display-name": "^7.12.1",
+ "@babel/plugin-transform-react-jsx": "^7.12.7",
+ "@babel/plugin-transform-react-jsx-development": "^7.12.7",
+ "@babel/plugin-transform-react-jsx-self": "^7.12.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.12.1",
+ "@babel/plugin-transform-react-pure-annotations": "^7.12.1"
}
},
"@babel/register": {
- "version": "7.9.0",
- "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.9.0.tgz",
- "integrity": "sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q==",
+ "version": "7.12.1",
+ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.1.tgz",
+ "integrity": "sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==",
"dev": true,
"requires": {
"find-cache-dir": "^2.0.0",
- "lodash": "^4.17.13",
+ "lodash": "^4.17.19",
"make-dir": "^2.1.0",
"pirates": "^4.0.0",
"source-map-support": "^0.5.16"
}
},
"@babel/runtime": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
- "integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
+ "version": "7.12.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
+ "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/template": {
- "version": "7.8.6",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
- "integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
+ "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
"dev": true,
"requires": {
- "@babel/code-frame": "^7.8.3",
- "@babel/parser": "^7.8.6",
- "@babel/types": "^7.8.6"
+ "@babel/code-frame": "^7.10.4",
+ "@babel/parser": "^7.12.7",
+ "@babel/types": "^7.12.7"
}
},
"@babel/traverse": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.6.tgz",
- "integrity": "sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==",
+ "version": "7.12.9",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz",
+ "integrity": "sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==",
"dev": true,
"requires": {
- "@babel/code-frame": "^7.8.3",
- "@babel/generator": "^7.9.6",
- "@babel/helper-function-name": "^7.9.5",
- "@babel/helper-split-export-declaration": "^7.8.3",
- "@babel/parser": "^7.9.6",
- "@babel/types": "^7.9.6",
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.12.5",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.11.0",
+ "@babel/parser": "^7.12.7",
+ "@babel/types": "^7.12.7",
"debug": "^4.1.0",
"globals": "^11.1.0",
- "lodash": "^4.17.13"
+ "lodash": "^4.17.19"
}
},
"@babel/types": {
- "version": "7.9.6",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
- "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "version": "7.12.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz",
+ "integrity": "sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==",
"dev": true,
"requires": {
- "@babel/helper-validator-identifier": "^7.9.5",
- "lodash": "^4.17.13",
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
@@ -1091,24 +1166,18 @@
"dev": true
},
"@types/cheerio": {
- "version": "0.22.18",
- "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.18.tgz",
- "integrity": "sha512-Fq7R3fINAPSdUEhOyjG4iVxgHrOnqDJbY0/BUuiN0pvD/rfmZWekVZnv+vcs8TtpA2XF50uv50LaE4EnpEL/Hw==",
+ "version": "0.22.22",
+ "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.22.tgz",
+ "integrity": "sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
- "@types/color-name": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
- "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
- "dev": true
- },
"@types/node": {
- "version": "14.0.1",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.1.tgz",
- "integrity": "sha512-FAYBGwC+W6F9+huFIDtn43cpy7+SzG+atzRiTfdp3inUKL2hXnd4rG8hylJLIh4+hqrQy1P17kvJByE/z825hA==",
+ "version": "14.14.10",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz",
+ "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==",
"dev": true
},
"@types/q": {
@@ -1134,9 +1203,9 @@
"dev": true
},
"ajv": {
- "version": "6.12.2",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz",
- "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==",
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"requires": {
"fast-deep-equal": "^3.1.1",
@@ -1209,9 +1278,9 @@
}
},
"arch": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz",
- "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
+ "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
"dev": true
},
"archive-type": {
@@ -1355,37 +1424,18 @@
}
},
"autoprefixer": {
- "version": "9.7.6",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.6.tgz",
- "integrity": "sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ==",
+ "version": "9.8.6",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz",
+ "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==",
"dev": true,
"requires": {
- "browserslist": "^4.11.1",
- "caniuse-lite": "^1.0.30001039",
- "chalk": "^2.4.2",
+ "browserslist": "^4.12.0",
+ "caniuse-lite": "^1.0.30001109",
+ "colorette": "^1.2.1",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
- "postcss": "^7.0.27",
- "postcss-value-parser": "^4.0.3"
- },
- "dependencies": {
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true
- }
+ "postcss": "^7.0.32",
+ "postcss-value-parser": "^4.1.0"
}
},
"aws-sign2": {
@@ -1395,9 +1445,9 @@
"dev": true
},
"aws4": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz",
- "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==",
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
+ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==",
"dev": true
},
"babel-code-frame": {
@@ -1527,9 +1577,9 @@
}
},
"base64-js": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
- "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"dev": true
},
"bcrypt-pbkdf": {
@@ -1786,9 +1836,9 @@
}
},
"bl": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
- "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==",
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz",
+ "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
"dev": true,
"requires": {
"readable-stream": "^2.3.5",
@@ -1918,25 +1968,26 @@
}
},
"browserslist": {
- "version": "4.12.0",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
- "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
+ "version": "4.15.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.15.0.tgz",
+ "integrity": "sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ==",
"dev": true,
"requires": {
- "caniuse-lite": "^1.0.30001043",
- "electron-to-chromium": "^1.3.413",
- "node-releases": "^1.1.53",
- "pkg-up": "^2.0.0"
+ "caniuse-lite": "^1.0.30001164",
+ "colorette": "^1.2.1",
+ "electron-to-chromium": "^1.3.612",
+ "escalade": "^3.1.1",
+ "node-releases": "^1.1.67"
}
},
"buffer": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
- "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"dev": true,
"requires": {
- "base64-js": "^1.0.2",
- "ieee754": "^1.1.4"
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
}
},
"buffer-alloc": {
@@ -2045,6 +2096,16 @@
}
}
},
+ "call-bind": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz",
+ "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.0"
+ }
+ },
"call-me-maybe": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
@@ -2104,9 +2165,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30001061",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001061.tgz",
- "integrity": "sha512-SMICCeiNvMZnyXpuoO+ot7FHpMVPlrsR+HmfByj6nY4xYDHXLqMTbgH7ecEkDNXWkH1vaip+ZS0D7VTXwM1KYQ==",
+ "version": "1.0.30001164",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001164.tgz",
+ "integrity": "sha512-G+A/tkf4bu0dSp9+duNiXc7bGds35DioCyC6vgK2m/rjA4Krpy5WeZgZyfH2f0wj2kI6yAWWucyap6oOwmY1mg==",
"dev": true
},
"caseless": {
@@ -2138,12 +2199,11 @@
},
"dependencies": {
"ansi-styles": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
- "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"requires": {
- "@types/color-name": "^1.1.1",
"color-convert": "^2.0.1"
}
},
@@ -2169,9 +2229,9 @@
"dev": true
},
"supports-color": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
- "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"requires": {
"has-flag": "^4.0.0"
@@ -2387,13 +2447,13 @@
}
},
"color": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz",
- "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz",
+ "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==",
"dev": true,
"requires": {
"color-convert": "^1.9.1",
- "color-string": "^1.5.2"
+ "color-string": "^1.5.4"
}
},
"color-convert": {
@@ -2412,15 +2472,21 @@
"dev": true
},
"color-string": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
- "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz",
+ "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==",
"dev": true,
"requires": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
}
},
+ "colorette": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz",
+ "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==",
+ "dev": true
+ },
"combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
@@ -2548,18 +2614,18 @@
"dev": true
},
"core-js": {
- "version": "2.6.11",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz",
- "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==",
+ "version": "2.6.12",
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
+ "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==",
"dev": true
},
"core-js-compat": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
- "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.0.tgz",
+ "integrity": "sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==",
"dev": true,
"requires": {
- "browserslist": "^4.8.5",
+ "browserslist": "^4.14.7",
"semver": "7.0.0"
},
"dependencies": {
@@ -2664,9 +2730,9 @@
}
},
"css-what": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz",
- "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
+ "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==",
"dev": true
},
"cssesc": {
@@ -2753,28 +2819,28 @@
"dev": true
},
"csso": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz",
- "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
+ "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
"dev": true,
"requires": {
- "css-tree": "1.0.0-alpha.39"
+ "css-tree": "^1.1.2"
},
"dependencies": {
"css-tree": {
- "version": "1.0.0-alpha.39",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz",
- "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz",
+ "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==",
"dev": true,
"requires": {
- "mdn-data": "2.0.6",
+ "mdn-data": "2.0.14",
"source-map": "^0.6.1"
}
},
"mdn-data": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz",
- "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==",
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
+ "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
"dev": true
},
"source-map": {
@@ -2804,12 +2870,12 @@
}
},
"debug": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
- "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
+ "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"requires": {
- "ms": "^2.1.1"
+ "ms": "2.1.2"
}
},
"decamelize": {
@@ -3094,21 +3160,21 @@
}
},
"docusaurus": {
- "version": "1.14.4",
- "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.4.tgz",
- "integrity": "sha512-KALmrlZBc0E+AB0ITR4POGKv8WcrcSSxvmgq7nC3TdpS+S2hrlXN/2tV3tVOZ8q8m+zhcMs7l9mAIhGFQyQwIw==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.7.4",
- "@babel/plugin-proposal-class-properties": "^7.7.4",
- "@babel/plugin-proposal-object-rest-spread": "^7.7.4",
- "@babel/polyfill": "^7.7.0",
- "@babel/preset-env": "^7.7.4",
- "@babel/preset-react": "^7.7.4",
- "@babel/register": "^7.7.4",
- "@babel/traverse": "^7.7.4",
- "@babel/types": "^7.7.4",
- "autoprefixer": "^9.7.2",
+ "version": "1.14.6",
+ "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.6.tgz",
+ "integrity": "sha512-Hpo6xqYIHwazwuhXW25AKYv/os+dWoJ87qql/m1j1xp83h/BnfYV2l8PA8zLggF1wGUbJQbTx7GWo6QvD8z+4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.9.0",
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
+ "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
+ "@babel/polyfill": "^7.8.7",
+ "@babel/preset-env": "^7.9.0",
+ "@babel/preset-react": "^7.9.4",
+ "@babel/register": "^7.9.0",
+ "@babel/traverse": "^7.9.0",
+ "@babel/types": "^7.9.0",
+ "autoprefixer": "^9.7.5",
"babylon": "^6.18.0",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
@@ -3139,7 +3205,7 @@
"react-dom": "^16.8.4",
"remarkable": "^2.0.0",
"request": "^2.88.0",
- "shelljs": "^0.8.3",
+ "shelljs": "^0.8.4",
"sitemap": "^3.2.2",
"tcp-port-used": "^1.0.1",
"tiny-lr": "^1.1.1",
@@ -3158,9 +3224,9 @@
},
"dependencies": {
"domelementtype": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
- "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz",
+ "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==",
"dev": true
}
}
@@ -3191,9 +3257,9 @@
}
},
"dot-prop": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
- "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
+ "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
"dev": true,
"requires": {
"is-obj": "^2.0.0"
@@ -3242,9 +3308,9 @@
}
},
"duplexer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
- "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
+ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
"dev": true
},
"duplexer3": {
@@ -3270,9 +3336,9 @@
"dev": true
},
"electron-to-chromium": {
- "version": "1.3.441",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.441.tgz",
- "integrity": "sha512-leBfJwLuyGs1jEei2QioI+PjVMavmUIvPYidE8dCCYWLAq0uefhN3NYgDNb8WxD3uiUNnJ3ScMXg0upSlwySzQ==",
+ "version": "1.3.614",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.614.tgz",
+ "integrity": "sha512-JMDl46mg4G+n6q/hAJkwy9eMTj5FJjsE+8f/irAGRMLM4yeRVbMuRrdZrbbGGOrGVcZc4vJPjUpEUWNb/fA6hg==",
"dev": true
},
"emoji-regex": {
@@ -3303,9 +3369,9 @@
}
},
"entities": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz",
- "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz",
+ "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==",
"dev": true
},
"error": {
@@ -3327,22 +3393,23 @@
}
},
"es-abstract": {
- "version": "1.17.5",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz",
- "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==",
+ "version": "1.18.0-next.1",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
+ "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
"dev": true,
"requires": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
- "is-callable": "^1.1.5",
- "is-regex": "^1.0.5",
- "object-inspect": "^1.7.0",
+ "is-callable": "^1.2.2",
+ "is-negative-zero": "^2.0.0",
+ "is-regex": "^1.1.1",
+ "object-inspect": "^1.8.0",
"object-keys": "^1.1.1",
- "object.assign": "^4.1.0",
- "string.prototype.trimleft": "^2.1.1",
- "string.prototype.trimright": "^2.1.1"
+ "object.assign": "^4.1.1",
+ "string.prototype.trimend": "^1.0.1",
+ "string.prototype.trimstart": "^1.0.1"
}
},
"es-to-primitive": {
@@ -3356,6 +3423,12 @@
"is-symbol": "^1.0.2"
}
},
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true
+ },
"escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -3739,9 +3812,9 @@
"dev": true
},
"fast-deep-equal": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
- "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==",
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true
},
"fast-glob": {
@@ -3783,9 +3856,9 @@
}
},
"feed": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/feed/-/feed-4.1.0.tgz",
- "integrity": "sha512-dAXWXM8QMxZ1DRnAxDmy1MaWZFlh1Ku7TU3onbXgHrVJynsxkNGPUed1AxszVW8AXo43xExronVkIqK+ACsoBA==",
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.1.tgz",
+ "integrity": "sha512-l28KKcK1J/u3iq5dRDmmoB2p7dtBfACC2NqJh4dI2kFptxH0asfjmOfcxqh5Sv8suAlVa73gZJ4REY5RrafVvg==",
"dev": true,
"requires": {
"xml-js": "^1.6.11"
@@ -3912,12 +3985,12 @@
}
},
"find-up": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"requires": {
- "locate-path": "^2.0.0"
+ "locate-path": "^3.0.0"
}
},
"find-versions": {
@@ -4068,11 +4141,22 @@
}
},
"gensync": {
- "version": "1.0.0-beta.1",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
- "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==",
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
"dev": true
},
+ "get-intrinsic": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz",
+ "integrity": "sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1"
+ }
+ },
"get-proxy": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
@@ -4260,13 +4344,13 @@
}
},
"globule": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.1.tgz",
- "integrity": "sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz",
+ "integrity": "sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA==",
"dev": true,
"requires": {
"glob": "~7.1.1",
- "lodash": "~4.17.12",
+ "lodash": "~4.17.10",
"minimatch": "~3.0.2"
}
},
@@ -4308,12 +4392,6 @@
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
"dev": true
},
- "graceful-readlink": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
- "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
- "dev": true
- },
"gray-matter": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz",
@@ -4366,12 +4444,12 @@
"dev": true
},
"har-validator": {
- "version": "5.1.3",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
- "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
+ "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
"dev": true,
"requires": {
- "ajv": "^6.5.5",
+ "ajv": "^6.12.3",
"har-schema": "^2.0.0"
}
},
@@ -4459,9 +4537,9 @@
"dev": true
},
"highlight.js": {
- "version": "9.18.1",
- "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz",
- "integrity": "sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg==",
+ "version": "9.18.5",
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.5.tgz",
+ "integrity": "sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==",
"dev": true
},
"hosted-git-info": {
@@ -4549,9 +4627,9 @@
}
},
"http-parser-js": {
- "version": "0.4.10",
- "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz",
- "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=",
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz",
+ "integrity": "sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==",
"dev": true
},
"http-signature": {
@@ -4575,9 +4653,9 @@
}
},
"ieee754": {
- "version": "1.1.13",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
- "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
"dev": true
},
"ignore": {
@@ -4797,9 +4875,9 @@
}
},
"interpret": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
- "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
+ "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
"dev": true
},
"into-stream": {
@@ -4812,15 +4890,6 @@
"p-is-promise": "^1.1.0"
}
},
- "invariant": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
- "dev": true,
- "requires": {
- "loose-envify": "^1.0.0"
- }
- },
"ip-regex": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
@@ -4881,9 +4950,9 @@
"dev": true
},
"is-callable": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
- "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
+ "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==",
"dev": true
},
"is-color-stop": {
@@ -4900,6 +4969,15 @@
"rgba-regex": "^1.0.0"
}
},
+ "is-core-module": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz",
+ "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
"is-data-descriptor": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
@@ -5005,6 +5083,12 @@
"integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=",
"dev": true
},
+ "is-negative-zero": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz",
+ "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=",
+ "dev": true
+ },
"is-number": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
@@ -5032,9 +5116,9 @@
"dev": true
},
"is-object": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
- "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+ "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
"dev": true
},
"is-plain-obj": {
@@ -5059,12 +5143,12 @@
"dev": true
},
"is-regex": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
- "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz",
+ "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==",
"dev": true,
"requires": {
- "has": "^1.0.3"
+ "has-symbols": "^1.0.1"
}
},
"is-resolvable": {
@@ -5202,9 +5286,9 @@
"dev": true
},
"js-yaml": {
- "version": "3.13.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
- "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
+ "version": "3.14.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz",
+ "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==",
"dev": true,
"requires": {
"argparse": "^1.0.7",
@@ -5313,21 +5397,6 @@
"set-getter": "^0.1.0"
}
},
- "leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true
- },
- "levenary": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz",
- "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==",
- "dev": true,
- "requires": {
- "leven": "^3.1.0"
- }
- },
"list-item": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz",
@@ -5428,19 +5497,19 @@
}
},
"locate-path": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"requires": {
- "p-locate": "^2.0.0",
+ "p-locate": "^3.0.0",
"path-exists": "^3.0.0"
}
},
"lodash": {
- "version": "4.17.19",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
- "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "version": "4.17.20",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
+ "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==",
"dev": true
},
"lodash._reinterpolate": {
@@ -5745,9 +5814,9 @@
"dev": true
},
"merge2": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz",
- "integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==",
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"dev": true
},
"methods": {
@@ -5873,9 +5942,9 @@
"dev": true
},
"nan": {
- "version": "2.14.1",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz",
- "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==",
+ "version": "2.14.2",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz",
+ "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==",
"dev": true,
"optional": true
},
@@ -5917,9 +5986,9 @@
"dev": true
},
"node-releases": {
- "version": "1.1.55",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.55.tgz",
- "integrity": "sha512-H3R3YR/8TjT5WPin/wOoHOUPHgvj8leuU/Keta/rwelEQN9pA/S2Dx8/se4pZ2LBxSd0nAGzsNzhqwa77v7F1w==",
+ "version": "1.1.67",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz",
+ "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==",
"dev": true
},
"normalize-package-data": {
@@ -6038,9 +6107,9 @@
}
},
"object-inspect": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
- "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz",
+ "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==",
"dev": true
},
"object-keys": {
@@ -6059,25 +6128,26 @@
}
},
"object.assign": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
- "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+ "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
"dev": true,
"requires": {
- "define-properties": "^1.1.2",
- "function-bind": "^1.1.1",
- "has-symbols": "^1.0.0",
- "object-keys": "^1.0.11"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3",
+ "has-symbols": "^1.0.1",
+ "object-keys": "^1.1.1"
}
},
"object.getownpropertydescriptors": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz",
- "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz",
+ "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==",
"dev": true,
"requires": {
+ "call-bind": "^1.0.0",
"define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.1"
+ "es-abstract": "^1.18.0-next.1"
}
},
"object.pick": {
@@ -6090,14 +6160,14 @@
}
},
"object.values": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
- "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz",
+ "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==",
"dev": true,
"requires": {
+ "call-bind": "^1.0.0",
"define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.1",
- "function-bind": "^1.1.1",
+ "es-abstract": "^1.18.0-next.1",
"has": "^1.0.3"
}
},
@@ -6200,21 +6270,21 @@
"dev": true
},
"p-limit": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
- "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
- "p-try": "^1.0.0"
+ "p-try": "^2.0.0"
}
},
"p-locate": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"requires": {
- "p-limit": "^1.1.0"
+ "p-limit": "^2.0.0"
}
},
"p-map-series": {
@@ -6248,9 +6318,9 @@
}
},
"p-try": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
- "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"parse-json": {
@@ -6377,77 +6447,77 @@
"dev": true,
"requires": {
"find-up": "^3.0.0"
+ }
+ },
+ "pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
+ "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
},
"dependencies": {
"find-up": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
"dev": true,
"requires": {
- "locate-path": "^3.0.0"
+ "locate-path": "^2.0.0"
}
},
"locate-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
"dev": true,
"requires": {
- "p-locate": "^3.0.0",
+ "p-locate": "^2.0.0",
"path-exists": "^3.0.0"
}
},
"p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
"dev": true,
"requires": {
- "p-try": "^2.0.0"
+ "p-try": "^1.0.0"
}
},
"p-locate": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
"dev": true,
"requires": {
- "p-limit": "^2.0.0"
+ "p-limit": "^1.1.0"
}
},
"p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
"dev": true
}
}
},
- "pkg-up": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
- "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
- "dev": true,
- "requires": {
- "find-up": "^2.1.0"
- }
- },
"portfinder": {
- "version": "1.0.26",
- "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.26.tgz",
- "integrity": "sha512-Xi7mKxJHHMI3rIUrnm/jjUgwhbYMkp/XKEcZX3aG4BrumLpq3nmoQMX+ClYnDZnZ/New7IatC1no5RX0zo1vXQ==",
+ "version": "1.0.28",
+ "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz",
+ "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==",
"dev": true,
"requires": {
"async": "^2.6.2",
"debug": "^3.1.1",
- "mkdirp": "^0.5.1"
+ "mkdirp": "^0.5.5"
},
"dependencies": {
"debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"requires": {
"ms": "^2.1.1"
@@ -6462,9 +6532,9 @@
"dev": true
},
"postcss": {
- "version": "7.0.30",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.30.tgz",
- "integrity": "sha512-nu/0m+NtIzoubO+xdAlwZl/u5S5vi/y6BCsoL8D+8IxsD3XvBS8X4YEADNIVXKVuQvduiucnRv+vPIqj56EGMQ==",
+ "version": "7.0.35",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
+ "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
"dev": true,
"requires": {
"chalk": "^2.4.2",
@@ -6518,9 +6588,9 @@
}
},
"postcss-calc": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.2.tgz",
- "integrity": "sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ==",
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz",
+ "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==",
"dev": true,
"requires": {
"postcss": "^7.0.27",
@@ -6950,14 +7020,15 @@
}
},
"postcss-selector-parser": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
- "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "version": "6.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
+ "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
"dev": true,
"requires": {
"cssesc": "^3.0.0",
"indexes-of": "^1.0.1",
- "uniq": "^1.0.1"
+ "uniq": "^1.0.1",
+ "util-deprecate": "^1.0.2"
}
},
"postcss-svgo": {
@@ -7004,20 +7075,14 @@
"dev": true
},
"prismjs": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.21.0.tgz",
- "integrity": "sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw==",
+ "version": "1.22.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.22.0.tgz",
+ "integrity": "sha512-lLJ/Wt9yy0AiSYBf212kK3mM5L8ycwlyTlSxHBAneXLR0nzFMlZ5y7riFPF3E33zXOF2IH95xdY5jIyZbM9z/w==",
"dev": true,
"requires": {
"clipboard": "^2.0.0"
}
},
- "private": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
- "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
- "dev": true
- },
"process-nextick-args": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
@@ -7103,9 +7168,9 @@
}
},
"querystringify": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz",
- "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
+ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
"dev": true
},
"randomatic": {
@@ -7146,9 +7211,9 @@
}
},
"react": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
- "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
+ "version": "16.14.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz",
+ "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==",
"dev": true,
"requires": {
"loose-envify": "^1.1.0",
@@ -7245,49 +7310,6 @@
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"dev": true
},
- "find-up": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
- "dev": true,
- "requires": {
- "locate-path": "^3.0.0"
- }
- },
- "locate-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
- "dev": true,
- "requires": {
- "p-locate": "^3.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "requires": {
- "p-try": "^2.0.0"
- }
- },
- "p-locate": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
- "dev": true,
- "requires": {
- "p-limit": "^2.0.0"
- }
- },
- "p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true
- },
"strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
@@ -7300,9 +7322,9 @@
}
},
"react-dom": {
- "version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz",
- "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==",
+ "version": "16.14.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz",
+ "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==",
"dev": true,
"requires": {
"loose-envify": "^1.1.0",
@@ -7312,9 +7334,9 @@
}
},
"react-error-overlay": {
- "version": "6.0.7",
- "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.7.tgz",
- "integrity": "sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==",
+ "version": "6.0.8",
+ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.8.tgz",
+ "integrity": "sha512-HvPuUQnLp5H7TouGq3kzBeioJmXms1wHy9EGjz2OURWBp4qZO6AfGEcnxts1D/CbwPLRAgTMPCEgYhA3sEM4vw==",
"dev": true
},
"react-is": {
@@ -7439,9 +7461,9 @@
}
},
"regenerate": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
- "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
"dev": true
},
"regenerate-unicode-properties": {
@@ -7454,19 +7476,18 @@
}
},
"regenerator-runtime": {
- "version": "0.13.5",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
- "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
+ "version": "0.13.7",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
+ "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==",
"dev": true
},
"regenerator-transform": {
- "version": "0.14.4",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz",
- "integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==",
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
+ "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
"dev": true,
"requires": {
- "@babel/runtime": "^7.8.4",
- "private": "^0.1.8"
+ "@babel/runtime": "^7.8.4"
}
},
"regex-not": {
@@ -7480,9 +7501,9 @@
}
},
"regexpu-core": {
- "version": "4.7.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
- "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
+ "version": "4.7.1",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
+ "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
"dev": true,
"requires": {
"regenerate": "^1.4.0",
@@ -7494,9 +7515,9 @@
}
},
"regjsgen": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz",
- "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==",
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
+ "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
"dev": true
},
"regjsparser": {
@@ -7517,9 +7538,9 @@
}
},
"remarkable": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-2.0.0.tgz",
- "integrity": "sha512-3gvKFAgL4xmmVRKAMNm6UzDo/rO2gPVkZrWagp6AXEA4JvCcMcRx9aapYbb7AJAmLLvi/u06+EhzqoS7ha9qOg==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-2.0.1.tgz",
+ "integrity": "sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA==",
"dev": true,
"requires": {
"argparse": "^1.0.10",
@@ -7527,9 +7548,9 @@
},
"dependencies": {
"autolinker": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-3.14.1.tgz",
- "integrity": "sha512-yvsRHIaY51EYDml6MGlbqyJGfl4n7zezGYf+R7gvM8c5LNpRGc4SISkvgAswSS8SWxk/OrGCylKV9mJyVstz7w==",
+ "version": "3.14.2",
+ "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-3.14.2.tgz",
+ "integrity": "sha512-VO66nXUCZFxTq7fVHAaiAkZNXRQ1l3IFi6D5P7DLoyIEAn2E8g7TWbyEgLlz1uW74LfWmu1A17IPWuPQyGuNVg==",
"dev": true,
"requires": {
"tslib": "^1.9.3"
@@ -7605,11 +7626,12 @@
"dev": true
},
"resolve": {
- "version": "1.17.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
- "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
+ "version": "1.19.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz",
+ "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==",
"dev": true,
"requires": {
+ "is-core-module": "^2.1.0",
"path-parse": "^1.0.6"
}
},
@@ -7678,9 +7700,9 @@
"dev": true
},
"rxjs": {
- "version": "6.5.5",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.5.tgz",
- "integrity": "sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==",
+ "version": "6.6.3",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz",
+ "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==",
"dev": true,
"requires": {
"tslib": "^1.9.0"
@@ -7730,22 +7752,19 @@
}
},
"seek-bzip": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz",
- "integrity": "sha1-z+kXyz0nS8/6x5J1ivUxc+sfq9w=",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
+ "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
"dev": true,
"requires": {
- "commander": "~2.8.1"
+ "commander": "^2.8.1"
},
"dependencies": {
"commander": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
- "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
- "dev": true,
- "requires": {
- "graceful-readlink": ">= 1.0.0"
- }
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true
}
}
},
@@ -8083,9 +8102,9 @@
},
"dependencies": {
"debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"requires": {
"ms": "^2.1.1"
@@ -8155,9 +8174,9 @@
"dev": true
},
"spdx-correct": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
- "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+ "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
"dev": true,
"requires": {
"spdx-expression-parse": "^3.0.0",
@@ -8181,9 +8200,9 @@
}
},
"spdx-license-ids": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
- "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz",
+ "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==",
"dev": true
},
"split-string": {
@@ -8335,45 +8354,23 @@
}
},
"string.prototype.trimend": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz",
- "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5"
- }
- },
- "string.prototype.trimleft": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz",
- "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==",
- "dev": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5",
- "string.prototype.trimstart": "^1.0.0"
- }
- },
- "string.prototype.trimright": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz",
- "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz",
+ "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==",
"dev": true,
"requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5",
- "string.prototype.trimend": "^1.0.0"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
}
},
"string.prototype.trimstart": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz",
- "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz",
+ "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==",
"dev": true,
"requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.5"
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
}
},
"string_decoder": {
@@ -8637,9 +8634,9 @@
},
"dependencies": {
"debug": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
- "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"requires": {
"ms": "^2.1.1"
@@ -8751,9 +8748,9 @@
}
},
"tree-node-cli": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/tree-node-cli/-/tree-node-cli-1.3.0.tgz",
- "integrity": "sha512-7B5IvFiDQMnBjmxHQ4YMdIqklofqla1mINa/ddlxUHC4seEJHdig19C49NONVHmAom/O9dByGvN0PLReCCqqqQ==",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/tree-node-cli/-/tree-node-cli-1.4.0.tgz",
+ "integrity": "sha512-hBc/cp7rTSHFSFvaTzmHNYyJv87UJBsxsfCoq2DtDQuMES4vhnLuvXZit/asGtZG8edWTCydWeFWoBz9LYkJdQ==",
"dev": true,
"requires": {
"commander": "^5.0.0"
@@ -8801,9 +8798,9 @@
}
},
"tslib": {
- "version": "1.13.0",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
- "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==",
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"dev": true
},
"tunnel-agent": {
@@ -8838,9 +8835,9 @@
"dev": true
},
"unbzip2-stream": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.2.tgz",
- "integrity": "sha512-pZMVAofMrrHX6Ik39hCk470kulCbmZ2SWfQLPmTWqfJV/oUm0gn1CblvHdUu4+54Je6Jq34x8kY6XjTy6dMkOg==",
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
+ "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
"dev": true,
"requires": {
"buffer": "^5.2.1",
@@ -8964,9 +8961,9 @@
"dev": true
},
"uri-js": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
- "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz",
+ "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==",
"dev": true,
"requires": {
"punycode": "^2.1.0"
@@ -9025,6 +9022,27 @@
"es-abstract": "^1.17.2",
"has-symbols": "^1.0.1",
"object.getownpropertydescriptors": "^2.1.0"
+ },
+ "dependencies": {
+ "es-abstract": {
+ "version": "1.17.7",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
+ "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
+ "dev": true,
+ "requires": {
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1",
+ "is-callable": "^1.2.2",
+ "is-regex": "^1.1.1",
+ "object-inspect": "^1.8.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.1",
+ "string.prototype.trimend": "^1.0.1",
+ "string.prototype.trimstart": "^1.0.1"
+ }
+ }
}
},
"utils-merge": {
@@ -9079,12 +9097,12 @@
"dev": true
},
"websocket-driver": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz",
- "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==",
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz",
+ "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
"dev": true,
"requires": {
- "http-parser-js": ">=0.4.0 <0.4.11",
+ "http-parser-js": ">=0.5.1",
"safe-buffer": ">=5.1.0",
"websocket-extensions": ">=0.1.1"
}
diff --git a/website/package.json b/website/package.json
index e5035e2a..41e0f89d 100644
--- a/website/package.json
+++ b/website/package.json
@@ -9,7 +9,7 @@
"rename-version": "docusaurus-rename-version"
},
"devDependencies": {
- "docusaurus": "^1.14.4"
+ "docusaurus": "^1.14.6"
},
"dependencies": {
"minimist": "^1.2.5"
diff --git a/website/sidebars.json b/website/sidebars.json
index a9697114..0f53f300 100644
--- a/website/sidebars.json
+++ b/website/sidebars.json
@@ -24,7 +24,8 @@
"nodes/elastic",
"nodes/generic",
"nodes/programming",
- "nodes/saas"
+ "nodes/saas",
+ "nodes/custom"
]
}
-}
\ No newline at end of file
+}
diff --git a/website/static/img/custom_local.png b/website/static/img/custom_local.png
new file mode 100644
index 00000000..55b81766
Binary files /dev/null and b/website/static/img/custom_local.png differ
diff --git a/website/static/img/custom_remote.png b/website/static/img/custom_remote.png
new file mode 100644
index 00000000..31e2b1bb
Binary files /dev/null and b/website/static/img/custom_remote.png differ
diff --git a/website/yarn.lock b/website/yarn.lock
index acaa1fd9..725d8617 100644
--- a/website/yarn.lock
+++ b/website/yarn.lock
@@ -9,54 +9,56 @@
dependencies:
"@babel/highlight" "^7.0.0"
-"@babel/code-frame@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
- integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
- dependencies:
- "@babel/highlight" "^7.8.3"
-
-"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c"
- integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g==
- dependencies:
- browserslist "^4.9.1"
- invariant "^2.2.4"
- semver "^5.5.0"
-
-"@babel/core@^7.7.4":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e"
- integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.9.0"
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helpers" "^7.9.0"
- "@babel/parser" "^7.9.0"
- "@babel/template" "^7.8.6"
- "@babel/traverse" "^7.9.0"
- "@babel/types" "^7.9.0"
+"@babel/code-frame@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
+ integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+ dependencies:
+ "@babel/highlight" "^7.10.4"
+
+"@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
+ integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
+
+"@babel/core@^7.9.0":
+ version "7.12.9"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
+ integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.12.5"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helpers" "^7.12.5"
+ "@babel/parser" "^7.12.7"
+ "@babel/template" "^7.12.7"
+ "@babel/traverse" "^7.12.9"
+ "@babel/types" "^7.12.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.1"
json5 "^2.1.2"
- lodash "^4.17.13"
+ lodash "^4.17.19"
resolve "^1.3.2"
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/generator@^7.9.0":
- version "7.9.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.4.tgz#12441e90c3b3c4159cdecf312075bf1a8ce2dbce"
- integrity sha512-rjP8ahaDy/ouhrvCoU1E5mqaitWrxwuNGU+dy1EpaoK48jZay4MdkskKGIMHLZNewg8sAsqpGSREJwP0zH3YQA==
+"@babel/generator@^7.12.5":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
+ integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
dependencies:
- "@babel/types" "^7.9.0"
+ "@babel/types" "^7.12.5"
jsesc "^2.5.1"
- lodash "^4.17.13"
source-map "^0.5.0"
+"@babel/helper-annotate-as-pure@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
+ integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
"@babel/helper-annotate-as-pure@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
@@ -64,53 +66,59 @@
dependencies:
"@babel/types" "^7.8.3"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
- integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
+ integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/helper-explode-assignable-expression" "^7.10.4"
+ "@babel/types" "^7.10.4"
-"@babel/helper-builder-react-jsx-experimental@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.0.tgz#066d80262ade488f9c1b1823ce5db88a4cedaa43"
- integrity sha512-3xJEiyuYU4Q/Ar9BsHisgdxZsRlsShMe90URZ0e6przL26CCs8NJbDoxH94kKT17PcxlMhsCAwZd90evCo26VQ==
+"@babel/helper-builder-react-jsx-experimental@^7.12.4":
+ version "7.12.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48"
+ integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/types" "^7.9.0"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-module-imports" "^7.12.1"
+ "@babel/types" "^7.12.1"
-"@babel/helper-builder-react-jsx@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32"
- integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==
+"@babel/helper-builder-react-jsx@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
+ integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/types" "^7.9.0"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/types" "^7.10.4"
-"@babel/helper-compilation-targets@^7.8.7":
- version "7.8.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde"
- integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw==
+"@babel/helper-compilation-targets@^7.12.5":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
+ integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
dependencies:
- "@babel/compat-data" "^7.8.6"
- browserslist "^4.9.1"
- invariant "^2.2.4"
- levenary "^1.1.1"
+ "@babel/compat-data" "^7.12.5"
+ "@babel/helper-validator-option" "^7.12.1"
+ browserslist "^4.14.5"
semver "^5.5.0"
-"@babel/helper-create-class-features-plugin@^7.8.3":
- version "7.8.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz#243a5b46e2f8f0f674dc1387631eb6b28b851de0"
- integrity sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg==
+"@babel/helper-create-class-features-plugin@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
+ integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-member-expression-to-functions" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.6"
- "@babel/helper-split-export-declaration" "^7.8.3"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-member-expression-to-functions" "^7.12.1"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.12.1"
+ "@babel/helper-split-export-declaration" "^7.10.4"
+
+"@babel/helper-create-regexp-features-plugin@^7.12.1":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
+ integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ regexpu-core "^4.7.1"
"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8":
version "7.8.8"
@@ -121,85 +129,91 @@
"@babel/helper-regex" "^7.8.3"
regexpu-core "^4.7.0"
-"@babel/helper-define-map@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
- integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
+"@babel/helper-define-map@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
+ integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/types" "^7.8.3"
- lodash "^4.17.13"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/types" "^7.10.5"
+ lodash "^4.17.19"
-"@babel/helper-explode-assignable-expression@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
- integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
+"@babel/helper-explode-assignable-expression@^7.10.4":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"
+ integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
dependencies:
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.1"
-"@babel/helper-function-name@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
- integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
+"@babel/helper-function-name@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
+ integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
dependencies:
- "@babel/helper-get-function-arity" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/helper-get-function-arity" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.4"
-"@babel/helper-get-function-arity@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
- integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
+"@babel/helper-get-function-arity@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
+ integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.10.4"
-"@babel/helper-hoist-variables@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
- integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
+"@babel/helper-hoist-variables@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
+ integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.10.4"
-"@babel/helper-member-expression-to-functions@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
- integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
+"@babel/helper-member-expression-to-functions@^7.12.1":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
+ integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.7"
-"@babel/helper-module-imports@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
- integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
+"@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
+ integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.5"
-"@babel/helper-module-transforms@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
- integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==
- dependencies:
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.6"
- "@babel/helper-simple-access" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
- "@babel/template" "^7.8.6"
- "@babel/types" "^7.9.0"
- lodash "^4.17.13"
+"@babel/helper-module-transforms@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
+ integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
+ dependencies:
+ "@babel/helper-module-imports" "^7.12.1"
+ "@babel/helper-replace-supers" "^7.12.1"
+ "@babel/helper-simple-access" "^7.12.1"
+ "@babel/helper-split-export-declaration" "^7.11.0"
+ "@babel/helper-validator-identifier" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.12.1"
+ "@babel/types" "^7.12.1"
+ lodash "^4.17.19"
-"@babel/helper-optimise-call-expression@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
- integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
+"@babel/helper-optimise-call-expression@^7.10.4":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c"
+ integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.7"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
+"@babel/helper-plugin-utils@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
+ integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
+
"@babel/helper-regex@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
@@ -207,67 +221,81 @@
dependencies:
lodash "^4.17.13"
-"@babel/helper-remap-async-to-generator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
- integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
+"@babel/helper-remap-async-to-generator@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
+ integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-wrap-function" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-wrap-function" "^7.10.4"
+ "@babel/types" "^7.12.1"
-"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6":
- version "7.8.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8"
- integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==
+"@babel/helper-replace-supers@^7.12.1":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9"
+ integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
dependencies:
- "@babel/helper-member-expression-to-functions" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/traverse" "^7.8.6"
- "@babel/types" "^7.8.6"
+ "@babel/helper-member-expression-to-functions" "^7.12.1"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/traverse" "^7.12.5"
+ "@babel/types" "^7.12.5"
-"@babel/helper-simple-access@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
- integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
+"@babel/helper-simple-access@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
+ integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
dependencies:
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.1"
-"@babel/helper-split-export-declaration@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
- integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
+"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
+ integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
dependencies:
- "@babel/types" "^7.8.3"
+ "@babel/types" "^7.12.1"
+
+"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
+ integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
+ dependencies:
+ "@babel/types" "^7.11.0"
+
+"@babel/helper-validator-identifier@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
+ integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
"@babel/helper-validator-identifier@^7.9.0":
version "7.9.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed"
integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==
-"@babel/helper-wrap-function@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
- integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
+"@babel/helper-validator-option@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz#175567380c3e77d60ff98a54bb015fe78f2178d9"
+ integrity sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==
+
+"@babel/helper-wrap-function@^7.10.4":
+ version "7.12.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9"
+ integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
-"@babel/helpers@^7.9.0":
- version "7.9.2"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f"
- integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==
+"@babel/helpers@^7.12.5":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
+ integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
dependencies:
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.9.0"
- "@babel/types" "^7.9.0"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.12.5"
+ "@babel/types" "^7.12.5"
-"@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3":
+"@babel/highlight@^7.0.0":
version "7.9.0"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==
@@ -276,85 +304,128 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.8.6", "@babel/parser@^7.9.0":
- version "7.9.4"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
- integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
+"@babel/highlight@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
+ integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.10.4"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
-"@babel/plugin-proposal-async-generator-functions@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
- integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
+"@babel/parser@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
+ integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
+
+"@babel/plugin-proposal-async-generator-functions@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e"
+ integrity sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-remap-async-to-generator" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.12.1"
"@babel/plugin-syntax-async-generators" "^7.8.0"
-"@babel/plugin-proposal-class-properties@^7.7.4":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e"
- integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
+"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.8.3":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
+ integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-create-class-features-plugin" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-proposal-dynamic-import@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
- integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
+"@babel/plugin-proposal-dynamic-import@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"
+ integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
-"@babel/plugin-proposal-json-strings@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b"
- integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==
+"@babel/plugin-proposal-export-namespace-from@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"
+ integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-json-strings@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c"
+ integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.0"
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
- integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
+"@babel/plugin-proposal-logical-assignment-operators@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751"
+ integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
+ integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
-"@babel/plugin-proposal-numeric-separator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8"
- integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==
+"@babel/plugin-proposal-numeric-separator@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
+ integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-"@babel/plugin-proposal-object-rest-spread@^7.7.4", "@babel/plugin-proposal-object-rest-spread@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz#a28993699fc13df165995362693962ba6b061d6f"
- integrity sha512-UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow==
+"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.9.0":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
+ integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+ "@babel/plugin-transform-parameters" "^7.12.1"
-"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
- integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
+"@babel/plugin-proposal-optional-catch-binding@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942"
+ integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
-"@babel/plugin-proposal-optional-chaining@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58"
- integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==
+"@babel/plugin-proposal-optional-chaining@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
+ integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
-"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3":
+"@babel/plugin-proposal-private-methods@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389"
+ integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072"
+ integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
version "7.8.8"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d"
integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==
@@ -369,6 +440,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
+"@babel/plugin-syntax-class-properties@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978"
+ integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
"@babel/plugin-syntax-dynamic-import@^7.8.0":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
@@ -376,6 +454,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
"@babel/plugin-syntax-json-strings@^7.8.0":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
@@ -383,12 +468,19 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-jsx@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94"
- integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==
+"@babel/plugin-syntax-jsx@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
+ integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
version "7.8.3"
@@ -397,12 +489,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f"
- integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==
+"@babel/plugin-syntax-numeric-separator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
version "7.8.3"
@@ -425,73 +517,80 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-top-level-await@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391"
- integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==
+"@babel/plugin-syntax-top-level-await@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0"
+ integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-arrow-functions@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
- integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
+"@babel/plugin-transform-arrow-functions@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"
+ integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-async-to-generator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
- integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
+"@babel/plugin-transform-async-to-generator@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1"
+ integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
dependencies:
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-remap-async-to-generator" "^7.8.3"
+ "@babel/helper-module-imports" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.12.1"
-"@babel/plugin-transform-block-scoped-functions@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
- integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
+"@babel/plugin-transform-block-scoped-functions@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"
+ integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-block-scoping@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
- integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
+"@babel/plugin-transform-block-scoping@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz#f0ee727874b42a208a48a586b84c3d222c2bbef1"
+ integrity sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- lodash "^4.17.13"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-classes@^7.9.0":
- version "7.9.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.2.tgz#8603fc3cc449e31fdbdbc257f67717536a11af8d"
- integrity sha512-TC2p3bPzsfvSsqBZo0kJnuelnoK9O3welkUpqSqBQuBF6R5MN2rysopri8kNvtlGIb2jmUO7i15IooAZJjZuMQ==
+"@babel/plugin-transform-classes@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6"
+ integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-define-map" "^7.8.3"
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.6"
- "@babel/helper-split-export-declaration" "^7.8.3"
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-define-map" "^7.10.4"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.12.1"
+ "@babel/helper-split-export-declaration" "^7.10.4"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
- integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
+"@babel/plugin-transform-computed-properties@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852"
+ integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-destructuring@^7.8.3":
- version "7.8.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.8.tgz#fadb2bc8e90ccaf5658de6f8d4d22ff6272a2f4b"
- integrity sha512-eRJu4Vs2rmttFCdhPUM3bV0Yo/xPSdPw6ML9KHs/bjB4bLA5HXlbvYXPOD5yASodGod+krjYx21xm1QmL8dCJQ==
+"@babel/plugin-transform-destructuring@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847"
+ integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-dotall-regex@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975"
+ integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3":
+"@babel/plugin-transform-dotall-regex@^7.4.4":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
@@ -499,297 +598,315 @@
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
"@babel/helper-plugin-utils" "^7.8.3"
-"@babel/plugin-transform-duplicate-keys@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1"
- integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==
+"@babel/plugin-transform-duplicate-keys@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228"
+ integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-exponentiation-operator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
- integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
+"@babel/plugin-transform-exponentiation-operator@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"
+ integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-for-of@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e"
- integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==
+"@babel/plugin-transform-for-of@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
+ integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-function-name@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
- integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
+"@babel/plugin-transform-function-name@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667"
+ integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-literals@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
- integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
+"@babel/plugin-transform-literals@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"
+ integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-member-expression-literals@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
- integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
+"@babel/plugin-transform-member-expression-literals@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad"
+ integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-modules-amd@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4"
- integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q==
+"@babel/plugin-transform-modules-amd@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9"
+ integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
dependencies:
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
- babel-plugin-dynamic-import-node "^2.3.0"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-commonjs@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940"
- integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g==
+"@babel/plugin-transform-modules-commonjs@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648"
+ integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
dependencies:
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-simple-access" "^7.8.3"
- babel-plugin-dynamic-import-node "^2.3.0"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-simple-access" "^7.12.1"
+ babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-systemjs@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90"
- integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ==
+"@babel/plugin-transform-modules-systemjs@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086"
+ integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
dependencies:
- "@babel/helper-hoist-variables" "^7.8.3"
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
- babel-plugin-dynamic-import-node "^2.3.0"
+ "@babel/helper-hoist-variables" "^7.10.4"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-validator-identifier" "^7.10.4"
+ babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-umd@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697"
- integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==
+"@babel/plugin-transform-modules-umd@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"
+ integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
dependencies:
- "@babel/helper-module-transforms" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
- integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753"
+ integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.8.3"
+ "@babel/helper-create-regexp-features-plugin" "^7.12.1"
-"@babel/plugin-transform-new-target@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43"
- integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==
+"@babel/plugin-transform-new-target@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0"
+ integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-object-super@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
- integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
+"@babel/plugin-transform-object-super@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e"
+ integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.12.1"
-"@babel/plugin-transform-parameters@^7.8.7":
- version "7.9.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.3.tgz#3028d0cc20ddc733166c6e9c8534559cee09f54a"
- integrity sha512-fzrQFQhp7mIhOzmOtPiKffvCYQSK10NR8t6BBz2yPbeUHb9OLW8RZGtgDRBn8z2hGcwvKDL3vC7ojPTLNxmqEg==
+"@babel/plugin-transform-parameters@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
+ integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
dependencies:
- "@babel/helper-get-function-arity" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-property-literals@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
- integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
+"@babel/plugin-transform-property-literals@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd"
+ integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-react-display-name@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5"
- integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
+"@babel/plugin-transform-react-display-name@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d"
+ integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-react-jsx-development@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754"
- integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==
+"@babel/plugin-transform-react-jsx-development@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz#4c2a647de79c7e2b16bfe4540677ba3121e82a08"
+ integrity sha512-Rs3ETtMtR3VLXFeYRChle5SsP/P9Jp/6dsewBQfokDSzKJThlsuFcnzLTDRALiUmTC48ej19YD9uN1mupEeEDg==
dependencies:
- "@babel/helper-builder-react-jsx-experimental" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
+ "@babel/helper-builder-react-jsx-experimental" "^7.12.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.12.1"
-"@babel/plugin-transform-react-jsx-self@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b"
- integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==
+"@babel/plugin-transform-react-jsx-self@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28"
+ integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-react-jsx-source@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0"
- integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==
+"@babel/plugin-transform-react-jsx-source@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b"
+ integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-react-jsx@^7.9.4":
- version "7.9.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f"
- integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==
+"@babel/plugin-transform-react-jsx@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz#8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f"
+ integrity sha512-YFlTi6MEsclFAPIDNZYiCRbneg1MFGao9pPG9uD5htwE0vDbPaMUMeYd6itWjw7K4kro4UbdQf3ljmFl9y48dQ==
dependencies:
- "@babel/helper-builder-react-jsx" "^7.9.0"
- "@babel/helper-builder-react-jsx-experimental" "^7.9.0"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
+ "@babel/helper-builder-react-jsx" "^7.10.4"
+ "@babel/helper-builder-react-jsx-experimental" "^7.12.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.12.1"
+
+"@babel/plugin-transform-react-pure-annotations@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42"
+ integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-regenerator@^7.8.7":
- version "7.8.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8"
- integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==
+"@babel/plugin-transform-regenerator@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
+ integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
dependencies:
regenerator-transform "^0.14.2"
-"@babel/plugin-transform-reserved-words@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5"
- integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==
+"@babel/plugin-transform-reserved-words@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"
+ integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-shorthand-properties@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
- integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
+"@babel/plugin-transform-shorthand-properties@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3"
+ integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-spread@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
- integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
+"@babel/plugin-transform-spread@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"
+ integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
-"@babel/plugin-transform-sticky-regex@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
- integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
+"@babel/plugin-transform-sticky-regex@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
+ integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-regex" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-template-literals@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
- integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
+"@babel/plugin-transform-template-literals@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843"
+ integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-typeof-symbol@^7.8.4":
- version "7.8.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412"
- integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==
+"@babel/plugin-transform-typeof-symbol@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz#9ca6be343d42512fbc2e68236a82ae64bc7af78a"
+ integrity sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/plugin-transform-unicode-regex@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
- integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
+"@babel/plugin-transform-unicode-escapes@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709"
+ integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-unicode-regex@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb"
+ integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.1"
+ "@babel/helper-plugin-utils" "^7.10.4"
-"@babel/polyfill@^7.7.0":
- version "7.8.7"
- resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f"
- integrity sha512-LeSfP9bNZH2UOZgcGcZ0PIHUt1ZuHub1L3CVmEyqLxCeDLm4C5Gi8jRH8ZX2PNpDhQCo0z6y/+DIs2JlliXW8w==
+"@babel/polyfill@^7.8.7":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.12.1.tgz#1f2d6371d1261bbd961f3c5d5909150e12d0bd96"
+ integrity sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==
dependencies:
core-js "^2.6.5"
regenerator-runtime "^0.13.4"
-"@babel/preset-env@^7.7.4":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8"
- integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==
- dependencies:
- "@babel/compat-data" "^7.9.0"
- "@babel/helper-compilation-targets" "^7.8.7"
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-proposal-async-generator-functions" "^7.8.3"
- "@babel/plugin-proposal-dynamic-import" "^7.8.3"
- "@babel/plugin-proposal-json-strings" "^7.8.3"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-proposal-numeric-separator" "^7.8.3"
- "@babel/plugin-proposal-object-rest-spread" "^7.9.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
- "@babel/plugin-proposal-optional-chaining" "^7.9.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
+"@babel/preset-env@^7.9.0":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55"
+ integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==
+ dependencies:
+ "@babel/compat-data" "^7.12.7"
+ "@babel/helper-compilation-targets" "^7.12.5"
+ "@babel/helper-module-imports" "^7.12.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-validator-option" "^7.12.1"
+ "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
+ "@babel/plugin-proposal-class-properties" "^7.12.1"
+ "@babel/plugin-proposal-dynamic-import" "^7.12.1"
+ "@babel/plugin-proposal-export-namespace-from" "^7.12.1"
+ "@babel/plugin-proposal-json-strings" "^7.12.1"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
+ "@babel/plugin-proposal-numeric-separator" "^7.12.7"
+ "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.12.7"
+ "@babel/plugin-proposal-private-methods" "^7.12.1"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
"@babel/plugin-syntax-async-generators" "^7.8.0"
+ "@babel/plugin-syntax-class-properties" "^7.12.1"
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-syntax-json-strings" "^7.8.0"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
- "@babel/plugin-syntax-numeric-separator" "^7.8.0"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
- "@babel/plugin-syntax-top-level-await" "^7.8.3"
- "@babel/plugin-transform-arrow-functions" "^7.8.3"
- "@babel/plugin-transform-async-to-generator" "^7.8.3"
- "@babel/plugin-transform-block-scoped-functions" "^7.8.3"
- "@babel/plugin-transform-block-scoping" "^7.8.3"
- "@babel/plugin-transform-classes" "^7.9.0"
- "@babel/plugin-transform-computed-properties" "^7.8.3"
- "@babel/plugin-transform-destructuring" "^7.8.3"
- "@babel/plugin-transform-dotall-regex" "^7.8.3"
- "@babel/plugin-transform-duplicate-keys" "^7.8.3"
- "@babel/plugin-transform-exponentiation-operator" "^7.8.3"
- "@babel/plugin-transform-for-of" "^7.9.0"
- "@babel/plugin-transform-function-name" "^7.8.3"
- "@babel/plugin-transform-literals" "^7.8.3"
- "@babel/plugin-transform-member-expression-literals" "^7.8.3"
- "@babel/plugin-transform-modules-amd" "^7.9.0"
- "@babel/plugin-transform-modules-commonjs" "^7.9.0"
- "@babel/plugin-transform-modules-systemjs" "^7.9.0"
- "@babel/plugin-transform-modules-umd" "^7.9.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
- "@babel/plugin-transform-new-target" "^7.8.3"
- "@babel/plugin-transform-object-super" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.8.7"
- "@babel/plugin-transform-property-literals" "^7.8.3"
- "@babel/plugin-transform-regenerator" "^7.8.7"
- "@babel/plugin-transform-reserved-words" "^7.8.3"
- "@babel/plugin-transform-shorthand-properties" "^7.8.3"
- "@babel/plugin-transform-spread" "^7.8.3"
- "@babel/plugin-transform-sticky-regex" "^7.8.3"
- "@babel/plugin-transform-template-literals" "^7.8.3"
- "@babel/plugin-transform-typeof-symbol" "^7.8.4"
- "@babel/plugin-transform-unicode-regex" "^7.8.3"
+ "@babel/plugin-syntax-top-level-await" "^7.12.1"
+ "@babel/plugin-transform-arrow-functions" "^7.12.1"
+ "@babel/plugin-transform-async-to-generator" "^7.12.1"
+ "@babel/plugin-transform-block-scoped-functions" "^7.12.1"
+ "@babel/plugin-transform-block-scoping" "^7.12.1"
+ "@babel/plugin-transform-classes" "^7.12.1"
+ "@babel/plugin-transform-computed-properties" "^7.12.1"
+ "@babel/plugin-transform-destructuring" "^7.12.1"
+ "@babel/plugin-transform-dotall-regex" "^7.12.1"
+ "@babel/plugin-transform-duplicate-keys" "^7.12.1"
+ "@babel/plugin-transform-exponentiation-operator" "^7.12.1"
+ "@babel/plugin-transform-for-of" "^7.12.1"
+ "@babel/plugin-transform-function-name" "^7.12.1"
+ "@babel/plugin-transform-literals" "^7.12.1"
+ "@babel/plugin-transform-member-expression-literals" "^7.12.1"
+ "@babel/plugin-transform-modules-amd" "^7.12.1"
+ "@babel/plugin-transform-modules-commonjs" "^7.12.1"
+ "@babel/plugin-transform-modules-systemjs" "^7.12.1"
+ "@babel/plugin-transform-modules-umd" "^7.12.1"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
+ "@babel/plugin-transform-new-target" "^7.12.1"
+ "@babel/plugin-transform-object-super" "^7.12.1"
+ "@babel/plugin-transform-parameters" "^7.12.1"
+ "@babel/plugin-transform-property-literals" "^7.12.1"
+ "@babel/plugin-transform-regenerator" "^7.12.1"
+ "@babel/plugin-transform-reserved-words" "^7.12.1"
+ "@babel/plugin-transform-shorthand-properties" "^7.12.1"
+ "@babel/plugin-transform-spread" "^7.12.1"
+ "@babel/plugin-transform-sticky-regex" "^7.12.7"
+ "@babel/plugin-transform-template-literals" "^7.12.1"
+ "@babel/plugin-transform-typeof-symbol" "^7.12.1"
+ "@babel/plugin-transform-unicode-escapes" "^7.12.1"
+ "@babel/plugin-transform-unicode-regex" "^7.12.1"
"@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.9.0"
- browserslist "^4.9.1"
- core-js-compat "^3.6.2"
- invariant "^2.2.2"
- levenary "^1.1.1"
+ "@babel/types" "^7.12.7"
+ core-js-compat "^3.7.0"
semver "^5.5.0"
"@babel/preset-modules@^0.1.3":
@@ -803,25 +920,26 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/preset-react@^7.7.4":
- version "7.9.4"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d"
- integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==
+"@babel/preset-react@^7.9.4":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.7.tgz#36d61d83223b07b6ac4ec55cf016abb0f70be83b"
+ integrity sha512-wKeTdnGUP5AEYCYQIMeXMMwU7j+2opxrG0WzuZfxuuW9nhKvvALBjl67653CWamZJVefuJGI219G591RSldrqQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-transform-react-display-name" "^7.8.3"
- "@babel/plugin-transform-react-jsx" "^7.9.4"
- "@babel/plugin-transform-react-jsx-development" "^7.9.0"
- "@babel/plugin-transform-react-jsx-self" "^7.9.0"
- "@babel/plugin-transform-react-jsx-source" "^7.9.0"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-transform-react-display-name" "^7.12.1"
+ "@babel/plugin-transform-react-jsx" "^7.12.7"
+ "@babel/plugin-transform-react-jsx-development" "^7.12.7"
+ "@babel/plugin-transform-react-jsx-self" "^7.12.1"
+ "@babel/plugin-transform-react-jsx-source" "^7.12.1"
+ "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
-"@babel/register@^7.7.4":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.9.0.tgz#02464ede57548bddbb5e9f705d263b7c3f43d48b"
- integrity sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q==
+"@babel/register@^7.9.0":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.1.tgz#cdb087bdfc4f7241c03231f22e15d211acf21438"
+ integrity sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==
dependencies:
find-cache-dir "^2.0.0"
- lodash "^4.17.13"
+ lodash "^4.17.19"
make-dir "^2.1.0"
pirates "^4.0.0"
source-map-support "^0.5.16"
@@ -833,37 +951,37 @@
dependencies:
regenerator-runtime "^0.13.4"
-"@babel/template@^7.8.3", "@babel/template@^7.8.6":
- version "7.8.6"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
- integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/parser" "^7.8.6"
- "@babel/types" "^7.8.6"
-
-"@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892"
- integrity sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.9.0"
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
- "@babel/parser" "^7.9.0"
- "@babel/types" "^7.9.0"
+"@babel/template@^7.10.4", "@babel/template@^7.12.7":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
+ integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/parser" "^7.12.7"
+ "@babel/types" "^7.12.7"
+
+"@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9", "@babel/traverse@^7.9.0":
+ version "7.12.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f"
+ integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.12.5"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.11.0"
+ "@babel/parser" "^7.12.7"
+ "@babel/types" "^7.12.7"
debug "^4.1.0"
globals "^11.1.0"
- lodash "^4.17.13"
+ lodash "^4.17.19"
-"@babel/types@^7.4.4", "@babel/types@^7.7.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0":
- version "7.9.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5"
- integrity sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng==
+"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.9.0":
+ version "7.12.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13"
+ integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==
dependencies:
- "@babel/helper-validator-identifier" "^7.9.0"
- lodash "^4.17.13"
+ "@babel/helper-validator-identifier" "^7.10.4"
+ lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@mrmlnc/readdir-enhanced@^2.2.1":
@@ -1113,18 +1231,18 @@ autolinker@~0.28.0:
dependencies:
gulp-header "^1.7.1"
-autoprefixer@^9.7.2:
- version "9.7.5"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.5.tgz#8df10b9ff9b5814a8d411a5cfbab9c793c392376"
- integrity sha512-URo6Zvt7VYifomeAfJlMFnYDhow1rk2bufwkbamPEAtQFcL11moLk4PnR7n9vlu7M+BkXAZkHFA0mIcY7tjQFg==
+autoprefixer@^9.7.5:
+ version "9.8.6"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
+ integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
dependencies:
- browserslist "^4.11.0"
- caniuse-lite "^1.0.30001036"
- chalk "^2.4.2"
+ browserslist "^4.12.0"
+ caniuse-lite "^1.0.30001109"
+ colorette "^1.2.1"
normalize-range "^0.1.2"
num2fraction "^1.2.2"
- postcss "^7.0.27"
- postcss-value-parser "^4.0.3"
+ postcss "^7.0.32"
+ postcss-value-parser "^4.1.0"
aws-sign2@~0.7.0:
version "0.7.0"
@@ -1145,10 +1263,10 @@ babel-code-frame@^6.22.0:
esutils "^2.0.2"
js-tokens "^3.0.2"
-babel-plugin-dynamic-import-node@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
- integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
+babel-plugin-dynamic-import-node@^2.3.3:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
+ integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
dependencies:
object.assign "^4.1.0"
@@ -1324,7 +1442,7 @@ browserslist@4.7.0:
electron-to-chromium "^1.3.247"
node-releases "^1.1.29"
-browserslist@^4.0.0, browserslist@^4.11.0, browserslist@^4.8.3, browserslist@^4.9.1:
+browserslist@^4.0.0:
version "4.11.0"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.0.tgz#aef4357b10a8abda00f97aac7cd587b2082ba1ad"
integrity sha512-WqEC7Yr5wUH5sg6ruR++v2SGOQYpyUdYYd4tZoAq1F7y+QXoLoYGXVbxhtaIqWmAJjtNTRjVD3HuJc1OXTel2A==
@@ -1334,6 +1452,17 @@ browserslist@^4.0.0, browserslist@^4.11.0, browserslist@^4.8.3, browserslist@^4.
node-releases "^1.1.52"
pkg-up "^3.1.0"
+browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.14.7:
+ version "4.15.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.15.0.tgz#3d48bbca6a3f378e86102ffd017d9a03f122bdb0"
+ integrity sha512-IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ==
+ dependencies:
+ caniuse-lite "^1.0.30001164"
+ colorette "^1.2.1"
+ electron-to-chromium "^1.3.612"
+ escalade "^3.1.1"
+ node-releases "^1.1.67"
+
buffer-alloc-unsafe@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0"
@@ -1455,11 +1584,16 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001036:
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001035:
version "1.0.30001037"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001037.tgz#cf666560b14f8dfa18abc235db1ef2699273af6e"
integrity sha512-qQP40FzWQ1i9RTjxppOUnpM8OwTBFL5DQbjoR9Az32EtM7YUZOw9orFO6rj1C+xWAGzz+X3bUe09Jf5Ep+zpuA==
+caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001164:
+ version "1.0.30001164"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001164.tgz#5bbfd64ca605d43132f13cc7fdabb17c3036bfdc"
+ integrity sha512-G+A/tkf4bu0dSp9+duNiXc7bGds35DioCyC6vgK2m/rjA4Krpy5WeZgZyfH2f0wj2kI6yAWWucyap6oOwmY1mg==
+
caseless@~0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
@@ -1654,6 +1788,11 @@ color@^3.0.0:
color-convert "^1.9.1"
color-string "^1.5.2"
+colorette@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
+ integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
+
combined-stream@^1.0.6, combined-stream@~1.0.6:
version "1.0.8"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
@@ -1755,12 +1894,12 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-core-js-compat@^3.6.2:
- version "3.6.4"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.4.tgz#938476569ebb6cda80d339bcf199fae4f16fff17"
- integrity sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==
+core-js-compat@^3.7.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.0.tgz#3248c6826f4006793bd637db608bca6e4cd688b1"
+ integrity sha512-o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==
dependencies:
- browserslist "^4.8.3"
+ browserslist "^4.14.7"
semver "7.0.0"
core-js@^2.6.5:
@@ -2143,21 +2282,21 @@ dir-glob@2.0.0:
arrify "^1.0.1"
path-type "^3.0.0"
-docusaurus@^1.14.4:
- version "1.14.4"
- resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.14.4.tgz#1ef3ebe8c2aaaf1dec6c2e0e177e83be78aeaca3"
- integrity sha512-KALmrlZBc0E+AB0ITR4POGKv8WcrcSSxvmgq7nC3TdpS+S2hrlXN/2tV3tVOZ8q8m+zhcMs7l9mAIhGFQyQwIw==
- dependencies:
- "@babel/core" "^7.7.4"
- "@babel/plugin-proposal-class-properties" "^7.7.4"
- "@babel/plugin-proposal-object-rest-spread" "^7.7.4"
- "@babel/polyfill" "^7.7.0"
- "@babel/preset-env" "^7.7.4"
- "@babel/preset-react" "^7.7.4"
- "@babel/register" "^7.7.4"
- "@babel/traverse" "^7.7.4"
- "@babel/types" "^7.7.4"
- autoprefixer "^9.7.2"
+docusaurus@^1.14.6:
+ version "1.14.6"
+ resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.14.6.tgz#ffab9f6dafe8c48c477e0ebc7f491e554143b2b5"
+ integrity sha512-Hpo6xqYIHwazwuhXW25AKYv/os+dWoJ87qql/m1j1xp83h/BnfYV2l8PA8zLggF1wGUbJQbTx7GWo6QvD8z+4Q==
+ dependencies:
+ "@babel/core" "^7.9.0"
+ "@babel/plugin-proposal-class-properties" "^7.8.3"
+ "@babel/plugin-proposal-object-rest-spread" "^7.9.0"
+ "@babel/polyfill" "^7.8.7"
+ "@babel/preset-env" "^7.9.0"
+ "@babel/preset-react" "^7.9.4"
+ "@babel/register" "^7.9.0"
+ "@babel/traverse" "^7.9.0"
+ "@babel/types" "^7.9.0"
+ autoprefixer "^9.7.5"
babylon "^6.18.0"
chalk "^3.0.0"
classnames "^2.2.6"
@@ -2188,7 +2327,7 @@ docusaurus@^1.14.4:
react-dom "^16.8.4"
remarkable "^2.0.0"
request "^2.88.0"
- shelljs "^0.8.3"
+ shelljs "^0.8.4"
sitemap "^3.2.2"
tcp-port-used "^1.0.1"
tiny-lr "^1.1.1"
@@ -2314,6 +2453,11 @@ electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.380:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.384.tgz#ca1d5710a4c53168431f1cbef39c8a971b646bf8"
integrity sha512-9jGNF78o450ymPf63n7/j1HrRAD4xGTsDkKY2X6jtCAWaYgph2A9xQjwfwRpj+AovkARMO+JfZuVCFTdandD6w==
+electron-to-chromium@^1.3.612:
+ version "1.3.614"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.614.tgz#ff359e8d2249e2ce859a4c2bc34c22bd2e2eb0a2"
+ integrity sha512-JMDl46mg4G+n6q/hAJkwy9eMTj5FJjsE+8f/irAGRMLM4yeRVbMuRrdZrbbGGOrGVcZc4vJPjUpEUWNb/fA6hg==
+
"emoji-regex@>=6.0.0 <=6.1.1":
version "6.1.1"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
@@ -2386,6 +2530,11 @@ es-to-primitive@^1.2.1:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
+escalade@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+ integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+
escape-html@~1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
@@ -3187,9 +3336,9 @@ hex-color-regex@^1.1.0:
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
highlight.js@^9.16.2:
- version "9.18.1"
- resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c"
- integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg==
+ version "9.18.5"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz#d18a359867f378c138d6819edfc2a8acd5f29825"
+ integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==
hosted-git-info@^2.1.4:
version "2.8.8"
@@ -3413,13 +3562,6 @@ into-stream@^3.1.0:
from2 "^2.1.1"
p-is-promise "^1.1.0"
-invariant@^2.2.2, invariant@^2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
- integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
- dependencies:
- loose-envify "^1.0.0"
-
ip-regex@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
@@ -3897,18 +4039,6 @@ lazy-cache@^2.0.2:
dependencies:
set-getter "^0.1.0"
-leven@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
- integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-
-levenary@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
- integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
- dependencies:
- leven "^3.1.0"
-
list-item@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56"
@@ -4065,10 +4195,10 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@~4.17.12:
- version "4.17.19"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
- integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
+lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@~4.17.12:
+ version "4.17.20"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
+ integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
logalot@^2.0.0:
version "2.1.0"
@@ -4083,7 +4213,7 @@ longest@^1.0.0:
resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
+loose-envify@^1.1.0, loose-envify@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
@@ -4374,6 +4504,11 @@ node-releases@^1.1.29, node-releases@^1.1.52:
dependencies:
semver "^6.3.0"
+node-releases@^1.1.67:
+ version "1.1.67"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
+ integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
+
normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
version "2.5.0"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -5099,15 +5234,20 @@ postcss-value-parser@^3.0.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
-postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3:
+postcss-value-parser@^4.0.2:
version "4.0.3"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d"
integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27:
- version "7.0.27"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
- integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
+postcss-value-parser@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
+ integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
+
+postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27, postcss@^7.0.32:
+ version "7.0.35"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
+ integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
dependencies:
chalk "^2.4.2"
source-map "^0.6.1"
@@ -5426,6 +5566,18 @@ regexpu-core@^4.7.0:
unicode-match-property-ecmascript "^1.0.4"
unicode-match-property-value-ecmascript "^1.2.0"
+regexpu-core@^4.7.1:
+ version "4.7.1"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
+ integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
+ dependencies:
+ regenerate "^1.4.0"
+ regenerate-unicode-properties "^8.2.0"
+ regjsgen "^0.5.1"
+ regjsparser "^0.6.4"
+ unicode-match-property-ecmascript "^1.0.4"
+ unicode-match-property-value-ecmascript "^1.2.0"
+
regjsgen@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
@@ -5732,10 +5884,10 @@ shell-quote@1.7.2:
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
-shelljs@^0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097"
- integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==
+shelljs@^0.8.4:
+ version "0.8.4"
+ resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2"
+ integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==
dependencies:
glob "^7.0.0"
interpret "^1.0.0"